/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

body {
	padding-top: var(--header-height, 140px);
}
img[title]:hover::after {
  display: none !important;
}
header {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	height: 140px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	width: 100%;
	gap: 36px;
}

.logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #000;
}

.logo-img {
	height: 80px;
	object-fit: contain;
}

nav {
	height: 100%;
	margin-left: auto;
}

.nav-links {
	display: flex;
	list-style: none;
	height: 100%;
	align-items: center;
	gap: 36px;
	margin: 0;
	padding: 0;
}

.nav-links>li {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.nav-links>li>a {
	text-decoration: none;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	align-items: center;
}

.nav-links>li:hover>a,
.nav-links>li.active>a {
	color: #002FA7;
}

/* Megamenu base styles */
.megamenu {
	position: absolute;
	top: calc(100% - 15px);
	left: 50%;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	padding: 55px 65px;
	display: flex;
	gap: 50px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(10px);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	justify-content: space-between;
}

/* Fixed Megamenu Widths */
.megamenu-about {
	width: 715px;
}

.megamenu-services {
	width: 1378px;
	padding: 45px;
}

.megamenu-serve {
	width: 1010px;
}

.megamenu-projects {
	width: 1075px;
}

.megamenu-projects .menu-col:first-child {
	flex: 0 0 350px;
	position: relative;
}

.megamenu-projects .menu-col:first-child::after {
	content: '';
	position: absolute;
	right: -25px;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: #eaeaea;
}

.megamenu-projects .menu-col:last-child {
	flex: 1;
}

.megamenu-resources {
	width: 1132px;
}

.megamenu-contact {
	width: 715px;
}

/* .nav-links>li:hover .megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
} */
 /* Hover Effect */
.nav-links > li:hover .megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

/* Right aligned menus */
.nav-links > li:nth-last-child(-n+3) .megamenu {
	left: auto;
	right: -20px;
	transform: translateY(30px);
}

.nav-links > li:nth-last-child(-n+3):hover .megamenu {
	transform: translateY(0);
}

/* Adjust last items so they don't overflow the right edge */
/* .nav-links>li:nth-last-child(-n+3) .megamenu {
	left: auto;
	right: -20px;
	transform: translateY(10px);
}

.nav-links>li:nth-last-child(-n+3):hover .megamenu {
	transform: translateY(0);
} */

/* Invisible bridge so hover doesn't drop when moving to megamenu */
.megamenu::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
}

.menu-col {
	display: flex;
	flex-direction: column;
	min-width: 200px;
}

.menu-col>a {
	text-decoration: none;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	padding: 10px 0;
	transition: all 0.2s ease;
}

.menu-col>a:hover {
	color: #002FA7;
}



.menu-col>a.sub-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: #000;
	padding: 6px 0;
}

.menu-col>a.sub-link:hover {
	color: #002FA7;
}

.image-col {
	min-width: unset;
	width: 340px;
	flex-shrink: 0;
	margin-right: -60px;
	margin-top: -50px;
	margin-bottom: -50px;
}

.image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    object-position: top center;
}

.btn-estimate {
	background: linear-gradient(90deg, #003b93 0%, #00a896 100%);
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0;
	padding: 14px 24px;
	border-radius: 4px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-estimate:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 168, 150, 0.3);
}

/* New Services Grid */
.services-grid {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	width: 100%;
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: transform 0.5s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card img {
	width: 197px;
	height: 186px;
	object-fit: cover;
	border-radius: 16px;
}

.home_box_inner .fusion-layout-column.colome_img img {
    height: 360px;
    object-fit: cover;
}

.service-card h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
	color: #000;
	line-height: 1.4;
	letter-spacing: 0.04em;
	margin-bottom: 0;
}

.service-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #000;
	margin-top: 8px;
	line-height: 1.4;
	letter-spacing: 0;
}

/* Hamburger Icon */
.hamburger {
	display: none;
	cursor: pointer;
	z-index: 101;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background-color: #000;
	margin: 5px;
	transition: all 0.3s ease;
}

.hamburger.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.toggle .line2 {
	opacity: 0;
}

.hamburger.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}

.megamenu-serve .menu-col,
.megamenu-resources .menu-col {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 50px;
	align-items: start;
	height: max-content;
}

.megamenu-serve .menu-col>a,
.megamenu-resources .menu-col>a {
	grid-column: span 6;
}

.resources_section .resources_section .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 33px;
    row-gap: 16px;
    margin-bottom: 43px;
}
.resources_section .resources_section .tabs button.tab {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 4%;
    color: #000000;
    border-bottom: 0.44px solid transparent;
    background: transparent;
    border-width: 0px 0px 2px 0px;
	cursor: pointer;
    padding: 0px 0px 8px 0px;
}
.resources_section .resources_section .tabs button.tab:hover {
    border-bottom: 2px solid #002FA7;
	color: #002FA7;
}
.resources_section .resources_section .tabs button.tab.active {
    border-bottom: 2px solid #002FA7;
	color: #002FA7;
}
.resources_section .resources_section .resources_grid {
    column-gap: 20px;
    row-gap: 40px;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.resources_section .resources_section .card {
	overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: fadeUp .45s ease both;
	flex: calc(33.000% - 20px);
	max-width: calc(33.000% - 20px);
	display: flex;
    flex-direction: column;
}

.resources_section .resources_section .card .card_img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
	height: 100%;
}
.resources_section .resources_section .card:hover .card_img img {
    transform: scale(1.04);
}
.resources_section .resources_section .card .card_img {
	overflow: hidden;
    position: relative;
	aspect-ratio: 4 / 3;
	flex-shrink: 0;
	height: 200px;
}
.resources_section .resources_section .card .card_cotent {
    padding: 20px 20px 100px;
    background: #F0F4F8;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.resources_section .resources_section .card .card_cotent h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
}
.resources_section .resources_section .card .card_cotent h2 a {
    color: #000;
	display: block;
}
.resources_section .resources_section .card .card_cotent p {
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 0;
}
.resources_section .resources_section .card .card_cotent p {
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.resources_section .resources_section .card .card_cotent a.card_readmore_btn {
    display: block;
    background-image: linear-gradient(to right, #002FA7, #00A79D);
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    text-align: center;
    max-width: 200px;
    margin: auto;
    width: 100%;
    margin-top: 24px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.type-resource ul.slides a {
    pointer-events: none;
}
.resources_section .resources_section .card .card_cotent a.card_readmore_btn:hover {
	background-image: linear-gradient(to right, #00A79D, #002FA7);
}
.resources_section .resources_section .load-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.resources_section .resources_section .load-more-wrap button#loadMoreBtn {
    background-image: linear-gradient(to right, #002FA7, #00A79D);
    border: none;
    color: white;
    padding: 13px 24px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    text-align: center;
    max-width: 250px;
    margin: auto;
    width: 100%;
    margin-top: 64px;
	cursor: pointer;
}
.resources_section .resources_section .load-more-wrap button#loadMoreBtn:hover {
	background-image: linear-gradient(to right, #00A79D, #002FA7);
}
.resources_section .resources_section .card .card_cotent h2 a:hover {
    background-image: linear-gradient(to right, #002FA7, #00A79D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.resources_section .resources_section .card .card_cotent h2 a {
	transition: transform .4s ease;
}
.resources_section .resources_section .card:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(18px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.single-resource section#content {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
}
.single-resource article.resource {
    margin-top: 50px;
}
.single-resource article.resource ul.slides {
    margin-bottom: 40px;
}
.single-resource article.resource .post-content h2 {
    margin-bottom: 16px;
    color: #002FA7;
	font-size: 32px;
	font-weight: 600;
}
.single-resource article.resource .post-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
	font-size: 24px;
	font-weight: 600;
}
.single-resource article.resource .post-content h4 {
    margin-top: 0;
    margin-bottom: 16px;
	font-size: 28px;
	font-weight: 600;
}
.single-resource article.resource .post-content h5 {
    margin-top: 0;
    margin-bottom: 16px;
	font-size: 24px;
	font-weight: 600;
}
.single-resource article.resource .post-content h6 {
    margin-top: 0;
    margin-bottom: 16px;
	font-size: 20px;
	font-weight: 600;
}
.single-resource article.resource .post-content p {
    font-size: 18px;
}
.single-resource article.resource .post-content li {
    font-size: 18px;
    margin-bottom: 10px;
}
.single-resource article.resource .post-content li a, .single-resource article.resource .post-content p a {
	color: #002FA7;
	text-decoration: underline;
}
.single-resource article.resource .post-content li a:hover, .single-resource article.resource .post-content p a:hover {
	text-decoration: none;
}
.single-resource section#content .single-navigation {
    display: flex;
    justify-content: space-between;
}
.single-resource section#content .single-navigation a[rel="next"] {
    text-align: right;
}
.single-resource section#content .single-navigation a[rel="prev"] {
    text-align: left;
}
.single-resource section#content .single-navigation:before{
	display: none;
}
.single-resource section#content .single-navigation:after{
	display: none;
}
.single-navigation a[rel=prev] {
    margin-left: 1em;
    margin-right: 15px;
}
.img_right_space .fusion-column-wrapper {
    margin-right: 0px !important;
}
.nav-links>li>a:focus, .menu-col>a:focus {
    color: #002FA7;
}
.Foundation_img {
    aspect-ratio: 16 / 9;
}
.Foundation_titles h2.fusion-title-heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
}
.fusion-title h2.fusion-title-heading p {
    margin: 0;
}
.Foundation_row .fusion-builder-row:last-child {
    margin-top: 35px;
}
.top_bar_icon {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.header_top_bar {
    background: linear-gradient(90deg, #003b93 0%, #00a896 100%);
    padding: 10px 40px;
}
.header_top_bar .number a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}
.top_bar_icon .icon {
    line-height: 1;
}

.header_main {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.dredge-2-sec-bg {
    background-position: bottom center !important;
}
body main#main {
    padding-top: 52px !important;
}
.social_media_icons i.fa {
    color: #000;
    font: normal normal normal 18px / 1 FontAwesome;
}
.social_media_icons .social_icon {
	padding: 6px;
    background: #fff;
    border-radius: 100%;
    min-width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social_media_icons {
    display: flex;
    gap: 10px;
}
.social_media_icons a:hover span.social_icon {
    background: #000;
}
.social_media_icons a:hover span.social_icon i.fa {
	color: #fff;
}
.system-boxes .content-box-wrapper.col {
    border: 1px solid #e2e7ef;
    border-radius: 12px;
    transition: box-shadow .2s, transform .2s;
    padding-bottom: 20px;
	height: 100% !important;
}
.system-boxes .content-box-wrapper.col .image img {
    height: 200px;
    border-radius: 12px 12px 0px 0px;
    object-fit: cover;
	width: 100%;
}
.system-boxes .content-box-wrapper.col .content-container {
    padding-left: 15px;
    padding-right: 15px;
}
.system-boxes .content-box-wrapper.col:hover {
    box-shadow: 0 16px 38px rgba(0, 28, 100, 0.13);
    transform: translateY(-3px);
}


.Decking_Materials_iteam .fusion-column-wrapper.fusion-content-layout-column {
	border: 1px solid #e2e7ef;
    border-radius: 12px;
    transition: box-shadow .2s, transform .2s;
    padding-bottom: 20px;
	padding-top: 30px;
}
.Decking_Materials_iteam .fusion-column-wrapper.fusion-content-layout-column:hover {
        box-shadow: 0 16px 38px rgba(0, 28, 100, 0.13);
    transform: translateY(-3px);
	border: 1px solid #e2e7ef !important;
}
.Decking_Materials_iteam .fusion-column-wrapper.fusion-content-layout-column .box_disc {
    padding-left: 15px;
    padding-right: 15px;
}
.Decking_Materials_iteam .fusion-column-wrapper.fusion-content-layout-column .fusion-title.fusion-title-center {
    padding-left: 15px;
    padding-right: 15px;
}
.Decking_Materials_iteam {
    height: 100%;
}
/* .Decking_Materials_iteam .fusion-column-wrapper.fusion-content-layout-column .fusion-image-element img {
    height: 200px;
    border-radius: 12px 12px 0px 0px;
    object-fit: cover;
} */
/* Responsive Styles */
@media (max-width: 1600px) {
	body {
		padding-top: var(--header-height, 100px);
	}

	header {
		padding: 0 30px;
		height: 100px;
		gap: 30px;
	}

	.hide-mobile {
		display: none;
	}

	.btn-estimate {
		font-size: 16px;
		font-weight: 500;
		padding: 14px 20px;
	}

	.logo-img {
		height: 70px;
	}

	.nav-links {
		gap: 22px;
	}

	.nav-links>li>a {
		font-size: 16px;
	}

	.megamenu {
		padding: 25px 35px;
		gap: 30px;
	}

	.megamenu-services {
		width: 1300px;
		padding: 20px;
	}

	.image-col {
		width: 300px;
		margin-right: -30px;
		margin-top: -20px;
		margin-bottom: -20px;
	}

	.nav-links>li .megamenu.megamenu-services {
		transform: translateX(-41%) translateY(10px);
	}

	.nav-links>li:hover .megamenu.megamenu-services {
		transform: translateX(-41%) translateY(0);
	}

	.megamenu-resources {
		width: 1000px;
	}

	.menu-col>a {
		font-size: 18px;
	}

	.megamenu-contact,
	.megamenu-about {
		width: 600px;
	}

	.megamenu-serve,
	.megamenu-projects {
		width: 920px;
	}
	.megamenu-serve .menu-col, .megamenu-resources .menu-col {
		column-gap: 30px;
	}

	.megamenu-projects .menu-col:first-child::after {
		right: -15px;
	}

	.menu-col>a.sub-link {
		font-size: 15px;
	}
}

@media (max-width: 1420px) and (min-width: 1280px) {
	.nav-links>li>a {
		font-size: 14px;
	}
	.btn-estimate {
        font-size: 14px;
    }
	.nav-links {
        gap: 16px;
    }
	.menu-col>a {
        font-size: 14px;
    }
	.service-card h4 {
		font-size: 18px;
	}
	.service-card p {
		font-size: 14px;
	}
}

@media (max-width: 1280px) {
	.hamburger {
		display: block;
	}
	.header_top_bar {
		padding: 10px 20px;
	}


	header {
		padding: 0 20px;
	}

	.btn-estimate {
		display: block;
		padding: 10px 15px;
		font-size: 14px;
		margin-right: 15px;
		margin-left: auto;
	}

	.nav-links {
		position: absolute;
		right: 0;
		top: 140px;
		background-color: #fff;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		height: auto;
		padding: 20px 40px;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		transform: translateY(-150%);
		transition: transform 0.3s ease-in;
		z-index: 99;
		gap: 0;
		border-top: 1px solid #eee;
		max-height: calc(100dvh - 100px);
        overflow-y: auto;
	}

	.nav-links.nav-active {
		transform: translateY(0);
	}

	.nav-links>li {
		width: 100%;
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-links>li>a {
		padding: 15px 0;
		width: 100%;
		text-align: left;
		justify-content: space-between;
	}

	.has-megamenu>a::after {
		content: '+';
		font-size: 25px;
		padding: 10px 8px;
		line-height: 0;
	}
	.has-megamenu.no-megamenu>a::after {
		display: none;
	}

	.mobile-expanded>a::after {
		content: '-';
	}

	/* Mobile Megamenu Accordion */
	/* .megamenu {
		position: static;
		width: 100%;
		box-shadow: none;
		padding: 0 0 15px 15px;
		opacity: 1;
		visibility: visible;
		transform: none !important;
		pointer-events: auto;
		display: none;
		flex-direction: column;
		gap: 0px;
		border-radius: 0;
	} */
	 .megamenu {
		position: absolute;
		top: calc(100% + 10px);
		left: 50%;
		background-color: #fff;
		border-radius: 20px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
		padding: 55px 65px;
		display: flex;
		gap: 50px;
		justify-content: space-between;

		/* Animation */
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(30px);
		transition:
			opacity 0.45s ease,
			transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.45s;

		pointer-events: none;
		will-change: transform, opacity;
	}

	.menu-col>a>br {
		display: none;
	}

	.megamenu-about,
	.megamenu-services,
	.megamenu-serve,
	.megamenu-projects,
	.megamenu-resources,
	.megamenu-contact {
		width: 100%;
	}

	/* .nav-links>li:hover .megamenu {
		display: none;
	} */

	.nav-links>li.mobile-expanded .megamenu,
	.nav-links>li.mobile-expanded:hover .megamenu {
		display: flex;
		padding: 0 15px 10px;
        margin: 0
	}
	.megamenu-serve .menu-col, .megamenu-resources .menu-col {
		display: block;
	}

	.menu-col {
		min-width: 100%;
	}

	.services-grid {
		flex-direction: column;
		gap: 15px;
	}

	.service-card {
		flex-direction: column;
		width: 100%;
		gap: 5px;
		text-align: left;
		align-items: flex-start;
	}

	.service-card img {
		display: none;
	}

	.service-card h4 {
		text-align: left;
		margin-top: 0;
		font-size: 16px;
	}

	.service-card p {
		text-align: left;
		margin-top: 4px;
	}

	.image-col {
		display: none;
	}

	.megamenu-projects .menu-col:first-child {
		flex: 0;
	}

	.menu-col>a.sub-link {
		padding-left: 20px;
	}

	.megamenu-serve .menu-col>a,
	.megamenu-resources .menu-col>a {
		grid-column: span 12;
	}
}

@media (min-width: 768px) {
	.btn-estimate.mobile {
		display: none;
	}
}

@media (max-width: 600px) {
	.Foundation_coll {
		margin-bottom: 35px !important;
	}
	.Foundation_row .fusion-builder-row:last-child {
		margin-top: 0px;
	}
	.Foundation_titles {
		margin-top: 0px !important;
	}

}
@media (max-width: 767px) {
	.btn-estimate {
		display: none;
	}
	.btn-estimate.mobile {
		color: #fff !important;
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
		justify-content: center;
	}
	.home_box_inner .fusion-layout-column.colome_img img {
		height: 240px;
	}
}

.career_form {
	max-width: 664px;
	margin: auto;
}

.career_form .gfield {
	grid-column: span 6;
}

.career_form .gfield.gfield--type-html,
.career_form .gfield.gfield--type-radio,
.career_form .gfield.gfield--type-textarea {
	grid-column: span 12;
}

.career_form .gfield.gfield--type-html h3 {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #fff;
}

.fusion-text.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
	margin-bottom: 20px !important;
}
.fusion-text.hero_eyebrow p {
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #b9e3ff;
	margin-bottom: 0 !important;
	line-height:normal;
}
.hero_eyebrow:before {
	content: '';
	display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00a79d;
    box-shadow: 0 0 0 4px rgba(0, 184, 163, 0.18);
}
.hero_eyebrow:after {
	content: '';
	display: inline-block;
    width: 36px;
    height: 1px;
    background: rgba(185, 227, 255, 0.45);
}
.hone_title .fusion-title-heading.title-heading-left strong {
    font-weight: inherit !important;
    color: #0eaca3;
}
.network_h2 h2.fusion-title-heading.title-heading-left {
    font-size: clamp(26px, 2.6vw, 38px) !important;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #002fa7 !important;
    max-width: 18ch;
}
.border_row .fusion-builder-row {
    border-bottom: 1px solid #d8dee8;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper {
    margin-left: var(--awb-spacing-left);
    margin-right: var(--awb-spacing-right);
    position: relative;
    background: white;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 24px 50px -22px rgba(10, 37, 64, 0.28);
    border-color: transparent;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #002fa7 0%, #24a0d9 55%, #00a79d 100%);
    opacity: 0.95;
	z-index: 99;
}
/* table design css  */
.custom-table-wrapper {
    width: 100%;
}

.custom-responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.custom-responsive-table th {
    background-color: #003b93;
    color: #fff;
    text-align: left;
    padding: 12px 10px;
    border: 1px solid #bdbdbd;
    font-weight: 700;
	line-height: 1.5em;
	font-size: 16px;
}

.custom-responsive-table td {
    padding: 12px 10px;
    border: 1px solid #c9c9c9;
    vertical-align: top;
    line-height: 1.4;
	font-weight: 500;
}

.custom-responsive-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.custom-responsive-table tbody tr:hover {
    background-color: #ececec;
}

/* Mobile Responsive */

/* table css end  */

.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row {
    margin: 0 !important;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 28px 32px 24px 36px !important;
    border-bottom: 1px solid #eef2f7;
    margin: 0;
    width: 96%;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper>* {
	margin: 0!important;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper .logo_box {
    width: 88px;
    height: 88px;
    background: #f5f8fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d8dee8;
    padding: 5px;
}

.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper h2.fusion-title-heading.title-heading-left {
    font-size: 24px !important;
    font-weight: 700;
    color: #0a1220;
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin: 0;
}

.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper .fusion-text p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2f7;
    color: #0a2540;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;
    line-height: normal;
    margin: 0 !important;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper .fusion-text p:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002fa7%0A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s-7-6.5-7-12a7 7 0 1 1 14 0c0 5.5-7 12-7 12Z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
	width: 12px;
    height: 12px;
	display: inline-block;	
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-text {
    padding: 10px 32px 0 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>div:last-child {
    margin-top: auto;
    padding: 18px 32px 28px 36px;
    border-top: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper .fusion-button-default-type.text_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #002fa7 !important;
    transition: gap .2s ease;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper .fusion-button-default-type.text_btn span.fusion-button-text.awb-button__text.awb-button__text--default {
    color: inherit;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper .fusion-button-default-type.text_btn:after {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'%3E%3C/path%3E%3C/svg%3E"), linear-gradient(135deg, #002fa7 0%, #24a0d9 55%, #00a79d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
}
.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper .fusion-button-default-type.text_btn:hover {
	gap: 18px;
}
.bottom_cta h2.fusion-title-heading.title-heading-left {
    max-width: 18ch;
    line-height: normal;
}
.bottom_cta p a {
    text-decoration: underline;
}
.bottom_cta p a:hover {
    color: #fff;
}
.bottom_cta .center_align .fusion-column-wrapper.fusion-column-has-shadow.fusion-flex-justify-content-flex-start.fusion-content-layout-column {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.single-resource article.resource .post-content h3 b {
    font-weight: 600;
}
.icon_box_iteams_style .fusion-column .image img {
    width: 100%;
    height: 323px !important;
}
.sparater_title {
    gap: 10px;
    margin: 0 0 26px !important;
}
.sparater_title .title-sep-container-right {
    padding-top: 3px;
}
.Types_disc {
    max-width: 780px !important;
    margin: 0 auto 30px !important;
}
.features_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 56px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.features_list ul li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid #e2e7ef;
    font-size: 15.5px;
    line-height: 1.55;
    color: #000;
}
.features_list ul li b {
    color: #002fa7;
    font-weight: 700;
}
.features_list ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 21px;
    width: 9px;
    height: 9px;
    background: #2BB6A8;
    transform: rotate(45deg);
    border-radius: 1px;
}
.box_img img {
    z-index: 1;
    width: 196px;
    height: 234px;
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
    box-shadow: 0 18px 30px -16px rgba(0, 28, 100, 0.30);
    position: relative;
    margin: auto;
}
.box_img {
    width: 100%;
    text-align: center;
}
body .box_title {
    margin: 0px !important;
    z-index: 9;
}
.box_title h3 {
    display: inline-block;
    border-radius: 7px;
    padding: 12px 26px !important;
    box-shadow: 0 8px 20px -12px rgba(0, 28, 100, 0.30);
    margin-top: -16px !important;
    margin-bottom: 0px ! IMPORTANT;
    background: linear-gradient(90deg, #003b93 0%, #00a896 100%);
    color: #FFF !important;
}

.box_disc {
    margin-bottom: 0px !important;
    margin-top: 12px !important;
}
.box_disc p {
    margin: 0px !important;
}
.header_top_bar .number {
    line-height: 1;
}
.top_bar_icon .icon svg {
	fill: #fff;
	display: block;
}
.top_bar_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_bar_icon .number a:hover {
    opacity: 0.8;
}
@media screen and (max-width: 1475px) {
	.serv-areas-banner-btn a {
		font-size: 18px !important;
	}
}

@media screen and (max-width:1150px) {
	.resources_section .resources_section .card {
		flex: calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
	.resources_section .resources_section .card .card_cotent h2 {
		font-size: 20px;
	}
	.resources_section .resources_section .card .card_cotent p {
		font-size: 16px;
	}
	.resources_section .resources_section .load-more-wrap button#loadMoreBtn {
		margin-top: 48px;
	}
	.home_box_inner .fusion-layout-column.colome_img img {
		height: 320px;
	}
}


@media screen and (max-width:991px) {
	.single-resource article.resource h1.entry-title {
    	font-size: 30px !important;
		line-height: 1.2;
	}
	.single-resource article.resource .post-content h2 {
		font-size: 32px !important;
		line-height: 1.2;
	}
	.single-resource article.resource .post-content h3 {
		font-size: 24px !important;
		line-height: 1.2;
	}
	.single-resource article.resource .post-content h4 {
		font-size: 24px !important;
		line-height: 1.2;
	}
	.home_box_inner .fusion-layout-column.colome_img img {
		height: 280px;
	}
	.resources_section .resources_section .card .card_img {
		 height: 190px;
	}
	.sparater_title h4.fusion-title-heading {
		font-size: 13px !important;
	}
	.box_title h3.fusion-title-heading {
		font-size: 18px !important;
	}
	.header_top_bar .number a {
		font-size: 16px;
		font-weight: 500;
	}
	.top_bar_icon .icon svg {
    	width: 18px;
		height: 18px;
	}
}
@media screen and (max-width:749px) {
	.resources_section .resources_section .card {
		flex: calc(100% - 0px);
		max-width: calc(100% - 0px);
	}
	.resources_section .resources_section .card .card_cotent h2 {
		font-size: 20px;
	}
	.resources_section .resources_section .resources_grid {
		row-gap: 20px;
	}
	.resources_section .resources_section .load-more-wrap button#loadMoreBtn {
		margin-top: 40px;
	}
	.resources_section .resources_section .tabs button.tab {
		font-size: 16px;
		padding: 0px 0px 4px 0px;
	}
	.resources_section .resources_section .tabs {
		column-gap: 24px;
		row-gap: 10px;
		margin-bottom: 24px;
	}
	.single-resource article.resource {
		margin-bottom: 30px;
	}
	.single-resource article.resource h1.entry-title {
    	font-size: 32px !important;
	}
	.single-resource article.resource .post-content h2 {
		font-size: 28px !important;
	}
	.single-resource article.resource .post-content h3 {
		font-size: 20px !important;
	}
	.single-resource article.resource .post-content h4 {
		font-size: 20px !important;
	}
	.single-resource section#content .single-navigation {
		margin-bottom: 0;
	}
	.single-resource article.resource .post-content p {
		font-size: 16px !important;
	}
	.single-resource article.resource .post-content li {
		font-size: 16px !important;
	}
	.features_list ul {
		grid-template-columns: 1fr;
		gap: 8px 40px;
	}
}

@media (max-width: 1280px) {

	.megamenu,
	.megamenu-about,
	.megamenu-services,
	.megamenu-serve,
	.megamenu-projects,
	.megamenu-resources,
	.megamenu-contact {

		position: static;
		width: 100% !important;
		max-width: 100%;
		padding: 20px;
		margin-top: 10px;
		border-radius: 12px;

		display: none;
		flex-direction: column;
		gap: 20px;

		opacity: 1;
		visibility: visible;
		transform: none !important;
		box-shadow: none;

		transition: none;
	}

	/* Open submenu on active class */
	.nav-links li.active .megamenu {
		display: flex;
	}

	.image-col {
		width: 100%;
		margin: 0;
	}

	.image-col img {
		height: 220px;
		object-fit: cover;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.megamenu-projects .menu-col:first-child::after {
		display: none;
	}
	.menu-col > a {
		display: block;
	}
}

@media (max-width: 1023px) {
	.network_boxes_row .fusion-row .fusion-flex-column.network_box>.fusion-column-wrapper>.fusion-builder-row .fusion-column-wrapper {
		display: flex;
		gap: 16px;
		align-items: flex-start;
		padding: 20px 32px 24px 36px !important;
	}
}