.e-con>.e-con-inner {
    max-width: 1320px !important;
}


/* =========================================================
   1. TOP BAR
   ========================================================= */
.designmora-topbar {
    background-color: var(--designmora-primary-dark);
    color: #ffffff;
    font-size: 18px;
    padding: 5px;
}

.designmora-topbar .topbar-info li {
	margin-right: 20px;
}

.designmora-topbar .topbar-info i {
    color: #ffffff;
    margin-right: 6px;
}

.designmora-topbar a {
	color: #ffffff;
}

.designmora-topbar a:hover {
	color: var(--designmora-secondary);
}

.designmora-topbar .topbar-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	margin-left: 6px;
	color: #fff;
}

.designmora-topbar .topbar-social a:hover {
	background: var(--designmora-secondary);
	color: var(--designmora-text-dark);
}

/* =========================================================
   2. MAIN HEADER
   ========================================================= */
.designmora-main-header {
	background-color: #ffffff;
	border-bottom: 1px solid var(--designmora-border);
}

.designmora-sticky-header {
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow 0.3s ease;
}

.designmora-sticky-header.is-scrolled .designmora-main-header {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.designmora-logo img {
	max-height: 100px;
	width: auto;
}

.designmora-logo .navbar-brand {
	color: var(--designmora-primary);
}

/* Nav menu links */

/* =========================================================
   Header Navigation
   ========================================================= */

.designmora-header .navbar-nav{
	gap:8px;
}

.designmora-header .navbar-nav .nav-link {
    position: relative;
    padding: 9px 18px;
    font-size: 20px;
    font-weight: 600;
    color: var(--designmora-text-dark);
    border-radius: 50px;
    transition: all .35s ease;
    z-index: 1;
}

/* Background Animation */
.designmora-header .navbar-nav .nav-link::before{
	content:"";
	position:absolute;
	inset:0;
	background:var(--designmora-primary);
	border-radius:50px;
	transform:scale(.75);
	opacity:0;
	transition:all .35s ease;
	z-index:-1;
}

/* Bottom Accent Line */
.designmora-header .navbar-nav .nav-link::after{
	content:"";
	position:absolute;
	left:50%;
	bottom:4px;
	width:0;
	height:3px;
	background:var(--designmora-secondary);
	border-radius:30px;
	transform:translateX(-50%);
	transition:all .35s ease;
}

/* Hover & Active */
.designmora-header .navbar-nav .nav-link:hover,
.designmora-header .navbar-nav .nav-link:focus,
.designmora-header .navbar-nav .current-menu-item>.nav-link,
.designmora-header .navbar-nav .current-menu-parent>.nav-link{
	color:#fff;
	transform:translateY(-2px);
}

.designmora-header .navbar-nav .nav-link:hover::before,
.designmora-header .navbar-nav .nav-link:focus::before,
.designmora-header .navbar-nav .current-menu-item>.nav-link::before,
.designmora-header .navbar-nav .current-menu-parent>.nav-link::before{
	transform:scale(1);
	opacity:1;
}

.designmora-header .navbar-nav .nav-link:hover::after,
.designmora-header .navbar-nav .nav-link:focus::after,
.designmora-header .navbar-nav .current-menu-item>.nav-link::after,
.designmora-header .navbar-nav .current-menu-parent>.nav-link::after{
	width:28px;
}

/* Dropdown */

.designmora-header .dropdown-menu{
	border:none;
	border-radius:16px;
	padding:12px 0;
	margin-top:18px;
	min-width:240px;
	box-shadow:0 18px 45px rgba(0,0,0,.12);
	animation:dropdownFade .25s ease;
}

@keyframes dropdownFade{

	from{
		opacity:0;
		transform:translateY(12px);
	}

	to{
		opacity:1;
		transform:translateY(0);
	}

}

.designmora-header .dropdown-item{
	position:relative;
	padding:12px 24px;
	font-weight:500;
	color:var(--designmora-text-dark);
	transition:all .3s;
}

.designmora-header .dropdown-item::before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:4px;
	height:100%;
	background:var(--designmora-secondary);
	transform:scaleY(0);
	transition:.3s;
}

.designmora-header .dropdown-item:hover{
	background:rgba(44,110,73,.08);
	color:var(--designmora-primary);
	padding-left:30px;
}

.designmora-header .dropdown-item:hover::before{
	transform:scaleY(1);
}

/* Header CTA Button */
.designmora-header-btn {
    background-color: var(--designmora-primary);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    border: none;
    font-size: 20px;
}

.designmora-header-btn:hover {
	background-color: var(--designmora-primary-dark);
	color: #ffffff !important;
}

/* Mobile toggler */
.navbar-toggler:focus {
	box-shadow: none;
}

/* =========================================================
   3. BLOG / CONTENT AREA
   ========================================================= */
.designmora-blog-card {
	background: #fff;
	border: 1px solid var(--designmora-border);
	border-radius: var(--designmora-radius);
	padding: 15px;
}

.designmora-blog-card .blog-card-title a {
	color: var(--designmora-text-dark);
}

.designmora-blog-card .blog-card-title a:hover {
	color: var(--designmora-primary);
}

.designmora-readmore {
	color: var(--designmora-primary);
	font-weight: 600;
}

.designmora-readmore:hover {
	color: var(--designmora-primary-dark);
}

.designmora-sidebar .widget {
	background: var(--designmora-bg-light);
	padding: 20px;
	border-radius: var(--designmora-radius);
}


/* =========================================================
   4. FOOTER
   ========================================================= */

.designmora-footer{
	background: var(--footer-bg, #5A8F2D);
	color:#fff;
	font-size:18px;
	line-height:1.8;
}

.designmora-footer-top{
	padding:80px 0;
}

.designmora-footer img{
	max-width:180px;
	height:auto;
}

.designmora-footer p{
	color:rgba(255,255,255,.9);
	margin-bottom:0;
}

/*------------------------------------
  Footer Titles
------------------------------------*/

.footer-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 12px;
}

.footer-title::after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:80px;
	height:3px;
	background:#fff;
	border-radius:50px;
}

/*------------------------------------
  Footer Menu
------------------------------------*/

.footer-menu{
	padding:0;
	margin:0;
	list-style:none;
}

.footer-menu li{
	margin-bottom:16px;
}

.footer-menu li:last-child{
	margin-bottom:0;
}

.footer-menu li a{
	position:relative;
	display:inline-block;
	padding-left:18px;
	color:#fff;
	text-decoration:none;
	font-weight:500;
	transition:.3s;
}

.footer-menu li a::before{
	content:"\F285";
	font-family:"bootstrap-icons";
	position:absolute;
	left:0;
	top:1px;
	font-size:12px;
}

.footer-menu li a:hover{
	color:var(--designmora-secondary);
	padding-left:24px;
}

/*------------------------------------
  Contact
------------------------------------*/

.footer-contact{
	list-style:none;
	padding:0;
	margin:0;
}

.footer-contact li{
	display:flex;
	align-items:flex-start;
	gap:14px;
	margin-bottom:18px;
}

.footer-contact li:last-child{
	margin-bottom:0;
}

.footer-contact i{
	font-size:18px;
	color:#fff;
	margin-top:4px;
	min-width:18px;
}

.footer-contact a,
.footer-contact span{
	color:#fff;
	text-decoration:none;
	font-weight:500;
}

.footer-contact a:hover{
	color:var(--designmora-secondary);
}

/*------------------------------------
  Bottom Bar
------------------------------------*/

.designmora-footer-bottom{
	background:var(--footer-bottom-bg,#214F7A);
	border-top:3px solid var(--designmora-secondary);
	padding:18px 0;
}

.designmora-footer-bottom p{
	margin:0;
	color:#fff;
}

/*------------------------------------
  Social
------------------------------------*/

.footer-social{
	display:flex;
	justify-content:flex-end;
	align-items:center;
	gap:12px;
}

.footer-social a{
	width:42px;
	height:42px;
	border-radius:50%;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	color:#fff;
	background:rgba(255,255,255,.15);
	transition:.3s;
}

.footer-social a:hover{
	background:var(--designmora-secondary);
	color:#fff;
	transform:translateY(-3px);
}

/*------------------------------------
  Responsive
------------------------------------*/

@media (max-width:991px){

	.designmora-footer-top{
		padding:60px 0;
	}

	.footer-title{
		margin-top:10px;
	}

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

	.designmora-footer-bottom{
		text-align:center;
	}
}

/* =========================================================
   5. RESPONSIVE (Mobile Menu)
   ========================================================= */
@media (max-width: 991.98px) {
	.designmora-header .navbar-collapse {
		background: #ffffff;
		padding: 15px;
		margin-top: 10px;
		border-radius: var(--designmora-radius);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

	.designmora-header-btn {
		display: inline-block;
		text-align: center;
	}

	.designmora-footer .footer-menu li {
		display: block;
		margin: 0 0 8px 0;
	}
}
