* {
	outline: 0 !important;
	text-decoration: none !important;
}

body {
	font-family: var(--font);
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: var(--defaultColor);
}

p {
	color: var(--defaultColor);
}

.main-wrapper {
	overflow: hidden;
	position: relative;
}

.container {
	max-width: 1260px;
	padding: 0 30px;
}

img {
	max-width: 100%;
	height: auto;
}

ul,
ol,
li {
	padding: 0;
	margin: 0;
	list-style: none;
}

a {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

a:hover {
	color: var(--secondaryColor);
}

a:focus,
input:focus,
button:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

img {
	max-width: 100%;
	display: block
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--headingColor);
	margin-bottom: 15px;
	font-weight: 600;
	font-family: var(--font);
}

.bg_primary {
	background: var(--primaryColor);
}

.bg_secondary {
	background: var(--secondaryColor);
}

h1,
.h1 {
	font-size: 56px;
	line-height: 64px;
	letter-spacing: -1px;
}

h2,
.h2 {
	font-size: 32px;
	line-height: 40px;
}

h3,
.h3 {
	font-size: 20px;
	line-height: 28px;
}

h4,
.h4 {
	font-size: 24px;
	line-height: 32px;
}

p {
	margin-bottom: 20px;
}

p:last-of-type {
	margin-bottom: 0;
}

.row {
	margin: 0 -16px;
}

.row [class*="col-"] {
	padding: 0 16px;
}

.cta-btn {
	color: var(--whiteColor);
	display: inline-block;
	background: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	padding: 13px 28px;
	border-radius: 12px;
	text-align: center;
	font-weight: 500;
}

.cta-btn:hover {
	background: var(--secondaryColor);
	border-color: var(--secondaryColor);
	color: var(--whiteColor);
}

.btn-border {
	color: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	background: transparent;
}

.btn-border:hover {
	background: var(--secondaryColor);
	border-color: var(--secondaryColor);
	color: var(--whiteColor);
}

.btn-border-secondary {
	background: transparent;
	border-color: var(--secondaryColor);
	color: var(--secondaryColor);
}

.btn-border-secondary:hover {
	color: var(--whiteColor);
	border: 1px solid var(--primaryColor);
	background: var(--primaryColor);
}

.cta-btn-secondary {
	background: var(--secondaryColor);
	border-color: var(--secondaryColor);
}

.cta-btn-secondary:hover {
	background: var(--primaryColor);
	border-color: var(--primaryColor);
}

.btn-white {
	color: var(--headingColor);
	border: 1px solid var(--whiteColor);
	background: var(--whiteColor);
}

.btn-white:hover {
	color: var(--whiteColor);
	border: 1px solid var(--whiteColor);
	background: transparent;
}

.btn-white-border {
	color: var(--whiteColor);
	border: 1px solid var(--whiteColor);
	background: transparent;
}

.btn-white-border:hover {
	color: var(--primaryColor);
	border: 1px solid var(--whiteColor);
	background: var(--whiteColor);
}

/*=== HEADER ===*/

header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 777;
	background: var(--whiteColor);
	border-bottom: 1px solid var(--borderColor);
	font-size: 16px;
	line-height: 24px;
}

header .container {
	max-width: 1436px;
}

header .logo {
	margin-right: 64px;
}

header .logo img {
	max-width: 200px;
}

header nav {
	display: flex;
	align-items: center;
}

.header-right {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.header-right a {
	margin-left: 16px;
}

header nav>ul {
	display: flex;
	align-items: center;
	margin-right: 15px;
}

header nav>ul>li {
	margin-right: 39px;
	padding: 32px 0;
}

header nav>ul>li.has-submenu {
	position: relative;
}

header nav>ul>li .sub-menu {
	background: var(--whiteColor);
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
	position: absolute;
	width: 250px;
	top: 100%;
	left: 0;
	padding: 13px 0;
	border-top: 1px solid #e9edf0;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s all;
}

header nav>ul>li.menu-item-has-children>a {
	padding-right: 30px;
	position: relative;
}

header nav>ul>li.menu-item-has-children>a:after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	border: 1px solid var(--primaryColor);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	right: 0;
	top: 2px;
}

header nav>ul>li.menu-item-has-children:hover>a:after {
	border-color: var(--secondaryColor);
}

header nav>ul>li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

header nav>ul>li .sub-menu li a {
    padding: 3px 20px;
    display: table;
    font-weight: 600;
}

header nav>ul>li a {
	color: var(--headingColor);
}

header nav>ul>li:hover>a,
header nav>ul>li a:hover {
	color: var(--secondaryColor);
}

.megamenu-wrap .menu-link:hover strong {
	color: var(--secondaryColor);
}

header nav>ul>li.active>a {
	color: var(--secondaryColor);
	font-weight: 800;
}

.header-call-btn svg {
	margin-right: 10px;
}

header .cta-btn {
	padding: 11px 19px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 24px;
}

.megamenu-wrap {
	position: absolute;
	top: 100%;
	left: 0;
	border-top: 1px solid #e9edf0;
	width: 100%;
	padding: 50px 0;
}

@media(min-width: 1301px) {

	.megamenu-wrap {
		visibility: hidden;
	}

	.megamenu-wrap:after {
		content: "";
		background: #fff;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 0px;
		transition: 0.1s all;
	}
	
	.megamenu-wrap .container {
		position: relative;
		z-index: 2;
		opacity: 0;
		visibility: hidden;
		transition: 0.1s all;
	}
	
	li.has-megamenu.show > .megamenu-wrap {
		visibility: visible;
	}

	li.has-megamenu.show > .megamenu-wrap .container {
		opacity: 1;
		transition: 0.3s all;
		transition-delay: 0.4s;
		visibility: visible;
	}

	li.has-megamenu.show .megamenu-wrap:after {
		height: 100%;
		transition: 0.4s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
	}

	.has-megamenu > a {
		position: relative;
	}

	.has-megamenu > a:before {
		content: "";
		background: var(--secondaryColor);
		height: 0px;
		opacity: 0;
		transition: 0.3s all;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
	}

	.has-megamenu.show > a:before {
		height: 4px;
		opacity: 1;
	}

	.has-megamenu.show > a {
		color: var(--secondaryColor);
	}

	.has-megamenu.show > a:after {
	    border: 1px solid var(--secondaryColor);
    	border-width: 0 2px 2px 0;
	}

}

.megamenu-wrap .container {
	max-width: 1200px;
}

.megamenu-wrap .menu-link {
	margin-bottom: 25px;
	display: table;
}

.menu-cta strong,
.megamenu-wrap .menu-link strong {
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
	padding-bottom: 8px;
}

.megamenu-wrap .menu-link strong {
	transition: 0.3s all;
}

.menu-cta span,
.megamenu-wrap .menu-link span {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: var(--defaultColor);
}

.menu-cta {
	padding: 30px;
	background: rgba(7, 52, 89, 0.04);
}

.menu-cta a {
	color: var(--primaryColor);
	background: transparent;
	display: table;
	margin-top: 15px;
	border: 1px solid var(--primaryColor);
	padding: 4px 10px;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
}

.menu-cta a:hover {
	background: var(--primaryColor);
	border-color: var(--primaryColor);
	color: var(--whiteColor);
}

.megamenu-wrap .menu-link.alt {
    margin-bottom: 10px;
}

.header-call-btn svg {
	width: 22px;
	height: 23px;
}

@media(min-width: 768px) {
	
	.megamenu-wrap .menu-link:last-of-type {
		margin-bottom: 0px;
	}	
}

section {
	padding: 81px 0;
}

.hero {
	padding: 129px 0;
	border-bottom: 1px solid #ddd;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.hero h1 {
	margin-bottom: 23px;
}

.hero p {
	color: var(--headingColor);
}

.hero .btn__group {
	margin-top: 31px;
}

.hero .btn__group a {
	margin-right: 12px;
}

.sborder {
	border-bottom: 1px solid var(--borderColor);
}

.head {
	margin-bottom: 49px;
}

.services {
	padding: 95px 0;
}

.service-card {
	border: 1px solid var(--borderColor);
	box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	overflow: hidden;
	height: calc(100% - 42px);
	margin-bottom: 42px;
	padding-bottom: 54px;
	position: relative;
	background-color: var(--whiteColor);
	transition: 0.3s all;
	top: 0;
}

.service-card:hover {
	top: -5px;
	box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.16), 0px 8px 12px -4px rgba(0, 0, 0, 0.08);
}

.service-card .thumb {
	height: 203px;
	overflow: hidden;
	background: #d9d9d9;
}

.service-card .thumb img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.service-card .text {
	padding: 32px;
}

.service-card .text h3 {
	margin-bottom: 8px;
}

.service-card .text p {
	font-size: 16px;
	line-height: 24px;
	color: #474747;
}

.service-card span.link {
	font-size: 16px;
	line-height: 24px;
	color: var(--secondaryColor) !important;
	font-weight: 500;
	position: absolute;
	bottom: 32px;
	left: 32px;
}

.service-card span svg {
	margin-left: 8px;
}

.service-card span svg path {
	stroke: var(--secondaryColor) !important;
	stroke-opacity: 1;
}

a.link {
	color: var(--primaryColor);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--primaryColor);
}

a.link span {
	border-bottom: 1px solid;
}

a.link:hover {
	color: var(--secondaryColor);
}

a.link svg {
	margin-left: 8px;
}

.icon-teaser .item {
	margin-top: 31px;
}

.icon-teaser .item .icon {
	padding: 12px;
	width: 48px;
	height: 48px;
	background: rgba(13, 126, 170, 0.05);
	border-radius: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-teaser .item .icon svg {
    stroke: var(--primaryColor)
}

.icon-teaser h4 {
	margin: 15px 0 8px;
}

.icon-teaser .item p {
	font-size: 16px;
	line-height: 24px;
}

.cta {
	padding: 96px 0;
}

.testimonials {
	padding: 96px 0;
}

.testimonials .slick-list {
	margin: 0 -20px;
}

.testimonials .slide {
	padding: 0 20px;
}

.testimonials .ts-author {
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
	margin-bottom: 24px;
}

.testimonials .item p {
	font-size: 16px;
	line-height: 24px;
}

.testimonials .ts-rating {
	margin-top: 23px;
}

.testimonials a.link {
	margin-top: 47px;
	display: table;
}

.faqs {
	padding: 96px 0;
}

.accordion-item {
	border: none;
	border-top: 1px solid rgba(7, 52, 89, 0.1) !important;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15.5px 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.accordion-header h3 {
	font-size: 16px;
	line-height: 24px;
	margin: 0;
}

.accordion-header .toggle-icon {
	position: absolute;
	top: calc(50% - 5px);
	right: 0;
}

.accordion-header .toggle-icon:after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	border: 1px solid var(--secondaryColor);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	right: 10px;
	top: 0;
	transition: 0.4s all;
}

.accordion-header.active .toggle-icon:after {
    transform: rotate(-135deg);
}

.accordion-header.active .toggle-icon {
	top: calc(50% - 1px);
}

.accordion-content {
	padding: 0 0 5px;
	display: none;
	font-size: 17px;
	margin-top: -5px;
}

.cta.alt {
	position: relative;
}

.cta.alt:before {
    content: "";
    background: linear-gradient(to bottom, var(--headingColor) 0%,var(--headingColor) 64%,var(--headingColor) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.94;
}

.cta.alt:after {
    content: "";
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 64%,var(--headingColor) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cta.alt .container {
	position: relative;
	z-index: 2;
}

.cta.alt p {
	color: #fff
}

.cta.alt .cta-btn {
	margin-top: 48px;
}

footer {
	font-size: 14px;
	line-height: 20px;
	color: var(--whiteColor);
	padding: 51px 0 48px;
	background: var(--headingColor);
}

footer ul {
	display: flex;
	margin-bottom: 26px;
}

footer ul li {
	margin-right: 15px;
}

footer ul li a {
	font-size: 15px;
}

footer a {
	color: var(--whiteColor);
}

.social {
	display: flex;
	justify-content: right;
	margin-bottom: 20px;
}

.social a {
	font-size: 26px;
	margin-left: 22px
}

footer a:hover,
.social a:hover {
	color: var(--whiteColor);
	opacity: 0.5;
}

footer ul li a {
	display: table;
	position: relative;
	color: var(--whiteColor) !important;
}

footer ul li a:after {
	content: "";
	background: var(--whiteColor);
	width: 0%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	transition: 0.3s all;
}

footer ul li a:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.image-text p {
	font-size: 16px;
	line-height: 24px;
}

.image-text .cta-btn {
	margin-top: 30px;
}

.image-text.alt:not([class*="bg"]) {
	background: var(--headingColor);
}

.image-text.alt p {
	color: var(--whiteColor);
}

.image-text p a {
	border-bottom: 1px solid;
	color: var(--linkColor);
}

.image-text.alt p a {
	color: var(--whiteColor);
}

@media(min-width: 1100px) {

	.image-text.alt img {
		max-width: max-content;
	}
}

.image-text.alt ul {
	font-size: 16px;
	line-height: 24px;
	color: var(--whiteColor);
	column-count: 3;
	margin: 20px 0 0 20px;
	gap: 20px;
	max-width: 420px;
}

.image-text.alt ul li {
	margin: 0 0 5px;
	list-style: disc;
}

.image-text.alt ul li::marker {
	font-size: 14px;
}

.get-started {
	padding: 100px 0;
	background: var(--borderColor);
}

.get-started form .gform_fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.get-started form .gform_fields > li  {
	padding: 0 10px;
	width: 50%;
	margin-bottom: 15px;
}

@media(max-width: 585px) {
	
	.get-started form .gform_fields > li  {
		width: 100%;
	}
	
}

.get-started form .gform_footer {
	margin-top: 10px;
}

.get-started form .gform_fields label {
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
	display: block;
	padding: 0;
	margin-bottom: 3px;
}

.get-started form .gform_fields input {
	width: 100%;
	height: 48px;
	background: var(--whiteColor);
	border: 1px solid rgba(7, 52, 89, 0.45);
	border-radius: 8px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
}

.get-started form .gform_footer input[type="submit"] {
	color: var(--whiteColor);
	display: inline-block;
	background: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	padding: 13px 28px;
	border-radius: 12px;
	text-align: center;
	font-weight: 500;
	transition: 0.3s all;
}

.get-started form .gform_footer input[type="submit"]:hover {
	background: var(--secondaryColor);
	border-color: var(--secondaryColor);
	color: var(--whiteColor);
}

::-ms-input-placeholder {
	color: var(--headingColor);
}

::placeholder {
	color: var(--headingColor);
}

.footer {
	padding: 80px 0;
	background: #F9FAFB;
}

footer p {
	color: #fff;
}

.footer .container>div {
	padding: 12px;
}

.footer .container>div>div {
	padding: 12px;
}

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

.footer ul li {
	margin: 0 10px;
}

.footer ul li a {
	margin: 0 10px;
	font-size: 14px;
	line-height: 130%;
	color: #4B5563;
	position: relative;
}

.footer ul li a:after {
	content: "";
	background: #111827;
	width: 0%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	transition: 0.3s all;
}

.footer ul li a:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.footer ul li a:hover {
	color: #111827;
}

.footer .fsocial a {
	color: #111827;
	margin-left: 15px;
}

.footer p {
	font-weight: 600;
	font-size: 12px;
	line-height: 130%;
	color: var(--defaultColor);
}

.hamburger {
	position: absolute;
	right: 30px;
	top: 21px;
	cursor: pointer;
}

.hamburger span {
	background: var(--primaryColor);
	width: 30px;
	height: 2px;
	display: block;
	margin: 8px 0;
	position: relative;
	transition: 0.3s all;
}

body.menu-act .hamburger span:nth-child(2) {
	opacity: 0;
}

body.menu-act .hamburger span:first-child {
	transform: rotate(45deg);
	top: 10px;
}

body.menu-act .hamburger span:nth-child(3) {
	transform: rotate(-45deg);
	top: -10px;
}

@media(min-width: 1301px) {

	.hamburger {
		display: none;
	}

}

.float-btn {
	position: fixed;
	bottom: 0;
	left: 0;
	background: var(--whiteColor);
	padding: 15px;
	display: none;
	justify-content: center;
	width: 100%;
	z-index: 777;
}

.float-btn a {
	margin: 0 5px;
	width: 100%;
}

@media(max-width: 767px) {

	.float-btn {
		display: flex;
	}

	.header-call-btn {
		font-size: 0;
	}

	.header-call-btn svg {
		margin: 0;
	}

}

@media(max-width: 1300px) {

	header nav>ul>li .sub-menu li a {
		padding: 3px 0px;
	}
	
	.megamenu-wrap .container {
		padding: 0;
	}	
	
	.megamenu-wrap {
		position: relative;
		top: 0%;
		left: 0;
		background: #fff;
		border-top: none;
		width: 100%;
		padding: 20px 0;
	}
	
	header .logo {
		height: 50px;
	}
	
	header nav>ul>li.act .megamenu-wrap {
	    display: block;
	}

	header nav>ul>li:not(.act) .megamenu-wrap {
	    display: none !important;
	}
	
	.main-wrapper {
		padding-top: 80px !important;
	}
	
	header .logo img {
		max-width: 120px;
	}

	header nav {
		display: block;
		position: fixed;
		top: 81px;
		left: 0;
		width: 100%;
		height: calc(100vh - 81px);
		background: var(--whiteColor);
		padding: 15px 30px 30px;
		visibility: hidden;
		opacity: 0;
		transition: 0.3s all;
		overflow: auto;
		overflow-x: hidden;
	}

	body.menu-act header nav {
		visibility: visible;
		opacity: 1;
	}

	body.menu-act {
		overflow: hidden;
	}

	header nav>ul {
		display: block;
		align-items: center;
		margin-right: 0;
		margin-bottom: 17px;
	}

	header .btn-green {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		background: #26285c;
		display: table;
	}

	header .btn-green:hover {
		background: #398f73;
		color: var(--whiteColor);
	}

	header nav>ul>li {
		margin-right: 0px;
		padding: 15px 0;
	}

	header nav>ul>li>a {
		display: table;
		width: 100%;
	}

	header nav>ul>li {
		margin-right: 0;
	}

	header nav>ul>li>span {
		width: 35px;
		height: 35px;
		position: absolute;
		top: 3px;
		right: 0;
		z-index: 2;
		cursor: pointer;
	}

	header nav>ul>li.has-megamenu>a:after ,
	header nav>ul>li.has-submenu>a:after {
		right: 10px;
	}

	header nav>ul>li .sub-menu {
		position: relative;
		top: 0;
		width: 100%;
		visibility: visible;
		opacity: 1;
		border: none;
		box-shadow: none;
		background: transparent;
		padding-bottom: 0;
		display: none;
	}

	header nav>ul>li.act .sub-menu {
		display: block;
	}

	header {
		padding: 15px 0;
	}

	.header-right {
		padding-right: 51px;
	}
	
    header nav>ul>li {
        position: relative;
    }

}

@media(max-width: 991px) {

	.cta-btn {
		padding: 11px 19px;
		border-radius: 8px;
		font-size: 16px;
		line-height: 24px;
	}

	.hero {
		padding: 70px 0;
		background-position: center !important;
	}

	h1,
	.h1 {
		font-size: 36px;
		line-height: 44px;
	}

	h2,
	.h2 {
		font-size: 27px;
		line-height: 36px;
	}

	.hero h1 {
		margin-bottom: 15px;
	}

	body {
		font-size: 16px;
		line-height: 24px;
	}

	.hero .btn__group {
		margin-top: 22px;
	}

	.services,
	.cta,
	.testimonials,
	.faqs,
	section {
		padding: 50px 0;
	}

	.footer ul li {
		margin: 0 3px;
	}

}

@media(min-width: 1301px) and (max-width: 1600px) {

	header nav>ul>li {
		margin-right: 15px;
	}

	header .logo {
		margin-right: 45px;
	}

	header nav>ul>li.menu-item-has-children>a {
	    padding-right: 20px;
	}	

}

@media(min-width: 768px) and (max-width: 1300px) {

	footer ul li {
		margin-right: 13px;
	}

	footer ul li a {
		font-size: 13px;
	}

	.header-call-btn {
		font-size: 0;
	}

	header nav {
		top: 81px;
		height: calc(100% - 81px);
	}

}

@media(max-width: 767px) {
	.cta:not(.alt) {
		text-align: center;
	}

	.cta:not(.alt) .cta-btn {
		margin-top: 25px;
	}

	footer {
		font-size: 13px;
		line-height: 20px;
		text-align: center;
		padding: 30px 0 110px;
	}

	.social {
		justify-content: center;
		margin-top: 20px;
	}

	.social a {
		margin: 0 15px;
	}

	footer ul {
		justify-content: center;
	}

	.get-started {
		padding: 50px 0;
	}

	.get-started form {
		margin-top: 20px;
	}

	.footer .container>div {
		text-align: center;
		padding: 0;
	}

	.footer ul {
		flex-wrap: wrap;
	}

	.footer ul li {
		margin: 0 6px;
	}

	.footer ul li a {
		margin: 0;
	}

	.flogo {
		display: table;
		margin: 0 auto;
	}

	.footer {
		padding: 50px 0 90px;
	}

	.image-text img {
		margin-bottom: 30px;
	}

}

@media(max-width: 585px) {

	.icon-teaser h4 {
		font-size: 16px;
		line-height: 24px;
	}

	.icon-teaser .item p {
		font-size: 14px;
		line-height: 22px;
	}

	footer ul li {
		margin: 0 4px;
	}

	footer ul {
		justify-content: space-between;
	}

	footer ul li a {
		font-size: 12px;
	}

	.image-text.alt ul {
		column-count: 2;
	}

}

.gray-bg {
	background: rgba(7, 52, 89, 0.02);
}

.white-bg {
	background: var(--whiteColor);
}

.welcome + .image-text:not(.alt):not([class*="bg"]) {
	padding-top: 0px;
}

img[src*="fl-map.png"] {
	max-width: 100% !important;
}

.main-wrapper {
	padding-top: 89px;
	position: relative;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 777;
    transition: all .35s ease-in-out;
}

body.scrolling-down header {
	position: fixed;
    transform: translateY(0) !important;
}

body.scrolling-up header {
	position: fixed;
    transform: translateY(-100%) !important;
    transition: all .8s ease-in-out;
}

.float-btn {
    bottom: -80px;
	transition: 0.3s all;
}

body.scrolling-up .float-btn {
    bottom: 0px;
}

.gform_submission_error {
	display: none;
}

.gfield_validation_message {
	color: red;
	font-size: 14px;
	font-weight: 300;
}

.gform_confirmation_message {
	padding: 50px 20px;
	background: #fff;
	border-radius: 25px;
	text-align: center;
    color: var(--headingColor);
}

.blog-listing .service-card .thumb {
    height: 240px;
}

.blog-listing .service-card .thumb img {
	object-fit: cover;
}

.blog-listing .service-card .text p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;	
	height: 96px;
}

.pagination {
	width: 100%;
}

.nav-links {
	display: flex;
	justify-content: center;
	width: 100%;
}

.nav-links a,
.nav-links span {
    color: var(--headingColor);
	border: 1px solid var(--headingColor);
	font-size: 16px;
	background: transparent;
	border-radius: 3px;
	min-width: 30px;
	text-align: center;
	padding: 0 10px;
	margin: 0 5px;
}

.nav-links a:hover,
.nav-links span {
    background: var(--headingColor);
	color: #fff;
}

.blog-listing .service-card a:after {
	content: "";
	position: absolute;
	top: -2500%;
	left: -2500%;
	width: 10000%;
	height: 10000%;
	z-index: 22;
}

.blog-single {
	padding-bottom: 70px;
}

.blog-single .sborder {
	padding: 50px 0 130px;
	margin-bottom: -80px;
}

.blog-single h1 {
	font-size: 42px;
}

.blog-single .post-thumbnail img {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 12px;
}

.blog-single .blog-single-content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.blog-single .blog-single-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.blog-single .blog-single-content h3 {
	font-size: 30px;
}

.blog-single .blog-single-content {
	font-size: 17px;
}

hr.wp-block-separator {
	margin: 40px 0;
	border-bottom: 1px solid #ddd;
	background: transparent;
}

.blog-single-content ul {
	margin: 0 0 30px 20px;
}

.blog-single-content ul li {
	list-style: disc;
	margin-bottom: 10px;
}

.blog-single-content ul li::marker {
    color: var(--headingColor);
	font-size: 20px;
}


@media (max-width: 585px) {
    .cta-btn {
        padding: 11px 14px;
        font-size: 15px;
    }
    
	footer ul li {
	    margin: 0 6px 10px;
	}

	.icon-teaser .col-6 {
		min-width: 100%;
	}

	footer ul {
	    justify-content: center;
	    flex-wrap: wrap;
	}

	footer .container {
    	padding: 0 15px;
    }    
    
    h2, .h2 {
        font-size: 24px;
        line-height: 34px;
    }
    
    .icon-teaser .head {
        margin-bottom: 30px;
    }
    
    .icon-teaser .item {
        margin-top: 25px;
        padding-left: 58px;
        position: relative;
    }

    .icon-teaser .item .icon {
        position: absolute;
        top: 0;
        left: 0;
    }
    
}

@media (max-width: 767px) {
    
a.link {
    display: table;
    margin: 0 auto;
}    
    
}

.hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

@media (min-width: 768px) {

.mm-dual {
    column-count: 2;
}

}

body.page-id-309 .faqs .head .h2 {
    display: none;
}

body:not(.page-id-309) .accordion-item {
    display: none; 
}

body:not(.page-id-309) .accordion-item:nth-child(-n+10) {
    display: block; 
}

body .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-col-4 .ti-review-item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

body .ti-widget .ti-widget-container .ti-name {
    font-weight: 400 !important;
    color: var(--headingColor) !important;
}

body .ti-widget .ti-review-content {
    color: var(--defaultColor) !important;
    margin-top: 15px;
}

body .ti-widget[data-layout-id='1'][data-set-id='light-minimal'] .ti-review-item .ti-inner ,
body .ti-widget[data-layout-id='2'][data-set-id='light-minimal'] .ti-review-item .ti-inner ,
body .ti-widget[data-layout-id='3'][data-set-id='light-minimal'] .ti-review-item .ti-inner ,
body .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-review-item .ti-inner ,
body .ti-widget[data-layout-id='5'][data-set-id='light-minimal'] .ti-review-item .ti-inner {
    padding-bottom: 60px !important;
    position: relative;
}

body .ti-widget[data-layout-id='4'][data-set-id='light-minimal'][data-pid='7db3fd5355c02109ce66fd201c2'] .ti-review-item>.ti-inner {
	background: #f5f5f5 !important;    
}



.hero .hero-dark h1 {
    color: #fff;
}

.hero .hero-dark p {
    color: #fff;
}

.get-started form .gform_fields>li.gfield--type-address {
    width: 100%;
}

.get-started form .gform_fields>li.gfield--type-address .ginput_container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    column-gap: inherit;
    margin: 0 -5px;
}

.get-started form .gform_fields>li.gfield--type-address .ginput_container>span {
    width: calc(100% - 10px);
    margin: 0 5px 15px;
    flex: inherit !important;
}

body .get-started form .gform_fields>li.gfield--type-address .ginput_container > span:not(:first-child) {
    flex: initial !important;
    width: calc(33.33333% - 10px);
    margin: 0 5px;
}

@media(max-width: 600px) {

.get-started form .gform_fields>li.gfield--type-address .ginput_container {
    margin: 0 0px;
}

.get-started form .gform_fields>li.gfield--type-address .ginput_container > span {
    width: 100%;
    margin: 0 0px 10px;
}

body .get-started form .gform_fields>li.gfield--type-address .ginput_container > span:not(:first-child) {
    width: 100%;
    margin: 0 0px 10px;
}


}

.stla_material_wrapper .gfield_description.validation_message {
    color: #000 !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
}

body .gform_wrapper.stla_material_wrapper .mdc-button {
    border-radius: 8px !important;
    box-shadow: none !important;
    text-transform: none !important;
    font-weight: bold !important;
    letter-spacing: 0 !important;
    font-size: 17px !important;
    padding: 24px 30px !important;
}

@media(min-width: 600px) {

	.hero-bg-gradient-v1:before {
        content:"";
		background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 10.09%, rgba(255, 255, 255, 0.95) 59.5%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
	}

	.hero-bg-gradient-v2:before {
        content:"";
		background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
	}

}

.hero-bg-simple-v1:before {
    content:"";
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.57), rgba(255, 255, 255, 0.57));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-bg-simple-v2:before {
    content:"";
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

@media(max-width: 599px) {

	.hero-bg-gradient-mob-v1:before {
	    content:"";
		background: linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 2;
	}	

	.hero-bg-gradient-mob-v2:before {
	    content:"";
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 2;
	}

}

@media(max-width: 767px) {

.stla_material_wrapper {
	margin-top: 30px;
}

}

.stla_material_wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px #00000017;
}


body .gform_wrapper.stla_material_wrapper .mdc-text-field--textarea .mdc-text-field__input {
    max-height: 70px;
}

body .gfield > .gfield_label {
    display: none !important;
}

header .logo img {
    width: auto;
}

@media(min-width: 1301px) {

	header nav>ul>li {
		padding: 0;
	}

	header nav>ul>li > a {
    	padding: 32px 0;
    	display: table;
	}		

	header nav>ul>li.menu-item-has-children>a:after {
	    top: calc(50% - 8px);
	}	
	
}

@media(max-width: 991px) {

	header nav {
		display: none !important;
	}

	body .mobile-menu {
		opacity: 1;
		visibility: visible;
	}

	body.menu-act .mobile-menu {
		right: 0px;
	}

}

.mobile-menu {
	opacity: 0;
	visibility: hidden;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e9edf0;
    overflow: hidden;
    transition: 0.4s all;
}

.mobile-menu > ul > li {
	border-bottom: 1px solid #EFEFEF;
}

.mobile-menu > ul > li > a {
	font-family: 'Figtree';
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
	display: table;
	width: 100%;
	padding: 15px;
	position: relative;
}

.mobile-menu > ul > li.menu-item-has-children > a:after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	border: 1px solid var(--secondaryColor);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	right: 15px;
	top: 19px;
	transition: 0.4s all;
}

.mobile-menu > ul > li.menu-item-has-children > a {
	padding-right: 35px
}

.mobile-menu > ul > li > ul {
	display: none;
	padding: 0 25px 20px 25px;
}

.mobile-menu > ul > li > ul a {
	color: var(--headingColor);
}

.mobile-menu > ul > li.show > a:after {
    transform: rotate(-135deg);
    top: 21px;
}

.mobile-menu > ul > li > ul a:hover,
.mobile-menu > ul > li.show > a {
	color: var(--secondaryColor);
}

.mobile-menu > ul > li > ul li {
	padding: 7px 0;
}

.mobile-menu > ul {
    height: calc(100% - 81px);
    overflow: auto;
    overflow-x: hidden;
}

.mm-actions {
	position: absolute;
	bottom: 0;
	padding: 15px 10px;
	display: flex;
	justify-content: space-between;
	left: 0;
	width: 100%;
}

.mm-actions a {
	width: 100%;
	margin: 0 7px;
}

.pheader {
	background: var(--secondaryColor);
}

.pheader h1 {
	color: #fff;
}

.image-text.text__white ul,
.image-text.text__white p,
.image-text.text__white h1,
.image-text.text__white h2,
.image-text.text__white h3,
.image-text.text__white h4,
.image-text.text__white h5,
.image-text.text__white h6 {
	color: #fff;
}

body .gform_wrapper.stla_material_wrapper .mdc-button {
	background: var(--primaryColor);
}

@media (min-width: 1100px) {
    .image-text.alt img {
        width: 100%;
    }
}

.image-text.white-bg {
	padding-top: 0px !important
}

body .gform_wrapper.stla_material_wrapper .mdc-button--raised:not(:disabled) {
	background: var(--primaryColor);
}


.get-started  .gform_heading {
    display: none !important;
}
.get-started form .gfield {
    flex: auto;
    padding: 0 10px;
    margin-bottom: 15px;
}

/*Form*/
.get-started form {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px #00000017;
}

body .gfield>.gfield_label {
	display: block !important;
}

.get-started form label {
	position: absolute;
	top: 16px;
	left: 26px;
	background: #fff;
	font-size: 15px !important;
	padding: 0 5px !important;
	opacity: 0;
	transition: all 0.2s
}

.get-started form fieldset legend.gfield_label {
	display: none !important
}

.get-started form fieldset>div {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	column-gap: inherit;
	margin: 0 -5px;
}

.get-started form fieldset>div>span:first-child {
	flex: initial !important;
	width: 100%;
	margin: 0 5px 15px
}

.get-started form fieldset>div>span:not(:first-child) {
	flex: initial !important;
	width: calc(33.33333% - 10px);
	margin: 0 5px;
}

.get-started form .gform_fields select,
.get-started form .gform_fields textarea {
	width: 100%;
	height: 48px;
	background: var(--whiteColor);
	border: 1px solid rgba(7, 52, 89, 0.45);
	border-radius: 8px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 24px;
	color: var(--headingColor);
}

.get-started form .gform_fields select,
.get-started form .gform_fields input {
	border-radius: 5px;
	height: 55px
}

.get-started form .gform_fields textarea {
	height: 120px
}

.get-started form .gform_fields input[type="checkbox"] {
	height: auto;
	width: 17px;
	border: 2px solid #ddd !important;
	margin-right: 15px;
	border-radius: 0 !important;
}

.get-started form fieldset>div.ginput_container_consent {
	margin-left: 10px !important;
}

.get-started form .ginput_container_consent label {
	display: block !important;
	position: inherit !important;
	top: auto;
	left: auto;
	opacity: 1;
}

.gform-body .gfield_description {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
	color: rgba(0, 0, 0, 0.38);
	font-size: var(--mdc-typography-caption-font-size, 0.75rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-caption-font-weight, 400);
	letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.03333333em);
	text-decoration: inherit;
	-webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-caption-text-transform, inherit);
	display: block;
	margin-top: 0;
	line-height: 1.25rem;
	line-height: var(--mdc-typography-caption-line-height, 1.25rem);
	padding-right: 16px;
	padding-top: 10px
}
.gform-body .gfield_description.gfield_validation_message, .gform-body .gfield_description.validation_message{
	color: #c10012;
}
.get-started form .gform_footer input[type="submit"] {
	padding: 10px 28px;
	font-weight: 700;
	font-size: 16px;
}

.get-started form .gfield {
	position: relative;
}

.get-started form fieldset>div>span {
	position: relative
}

.get-started form fieldset>div>span label {
	opacity: 1;
	left: 18px;
	font-size: 16px !important
}

.get-started form .gfield.focused-field>label {
	top: -10px;
	opacity: 1;
	color: var(--primaryColor);
	font-weight: 500;
	font-size: 12px !important
}

.get-started form .gfield:not(.gfield--type-address).focused-field input {
	border-color: var(--primaryColor);
}

.get-started form fieldset>div>span.focused-field2>label {
	top: -10px;
	opacity: 1;
	color: var(--primaryColor);
	font-weight: 500;
	font-size: 12px !important
}

.get-started form fieldset>div>span.focused-field2 input {
	border-color: var(--primaryColor);
}

.get-started form .gform_fields>li.gfield--type-address .ginput_container>span {
	position: relative
}

.get-started form .gform_fields>li.gfield--type-address .ginput_container>span label {
	opacity: 1 !important
}

body .get-started #gform_wrapper_1 {
	border: none;
	background: transparent;
	padding: 0
}

@media(max-width:767px) {
	.get-started form fieldset>div>span:not(:first-child) {
		flex: initial !important;
		width: calc(100% - 10px);
		margin: 0 5px 15px;
	}
}