/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	background-color: rgb(27, 21, 106);
	padding: 20px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
	max-height: 46px;
	margin-right: 8px;
}

.header .logo-text-title {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--theme-secondary-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header .logo-text-title { 
	color: #fff;
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	background: #00002e;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

.navmenu a, .navmenu a:focus {
	color: color-mix(in srgb, var(--nav-color), transparent 20%);
	font-size: 15px;
	padding: 0 2px;
	font-family: var(--nav-font);
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

.navmenu > ul > li > a::before {
	content: "";
	position: absolute;
	height: 2px;
	bottom: -6px;
	left: 0;
	background: var(--theme-secondary-color);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

.navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
	color: var(--theme-secondary-color);
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--theme-primary-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--theme-secondary-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px; 
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--theme-secondary-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px; 
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

.mobile-nav-active .navmenu {
	position: fixed;
	overflow: hidden;
	inset: 0;
	background: var(--theme-primary-color);
	transition: 0.3s;
}

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 
.footer-section {
	background: #040836;
	padding-top: 65px;
	overflow: hidden;
}
.footer-about, .footer-widget { 
	height: 100%;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 
.footer-logo {
	width: 110px;
	margin-bottom: 20px;
}
 .contact-widget {
	position: relative;
	z-index: 1;
}  
.footer-section .widget-title {
	margin-bottom: 30px;
	font-size: 17px;
}
.footer-section p,
.footer-section a  {
	color: #adb5bd;
}  
.social-media li {
	list-style: none;
	display: inline-block;
	padding-right: 12px;
}
.social-media i {
	background: linear-gradient(45deg, var(--theme-orange) 0%, #00075e 50%);
	color: #fff;
	width: 35px;
	text-align: center;
	height: 35px;
	position: relative;
	display: inline-block;
	line-height: 35px;
	border-radius: 5px;
	font-size: 17px;
	transition: 0.5s all ease-in-out;
	box-shadow: 0px 4px 5px -3px #000000ed;
}
.social-media i:hover {
	transform: rotate(360deg);
	border-radius: 50%;
}
.footer-widget li {
	margin-bottom: 12px;
	list-style: none;
}
.footer-widget li:last-child {
	margin-bottom: 0;
}

.footer-widget li a:hover {
	color: var(--bs-white);
	margin-left: 10px;
}

.footer-widget li a {
	font-weight: 500;
	font-size: 15px;
}
.footer-widget li a i {
	font-size: 12px;
	margin-right: 3px;
}
.contact-widget .address {
	margin-top: 30px;
}
.contact-widget .address li {
	display: flex;
	margin-bottom: 40px;
}
.contact-widget .address li i {
	display: inline-block;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 50%;
	margin-right: 20px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--bs-white);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	font-weight: 300;
	font-size: 18px;
}

.contact-widget .address li:last-child {
	margin-bottom: 0;
}

.contact-widget .address li strong {
	display: block;
	text-transform: uppercase;
	color: var(--bs-white);
	font-size: 15px;
}
/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	z-index: 1;
	position: relative;
	background:#040836;
}

.footer-bottom ul li {
	display: inline-block;
	margin-left: 15px;
}

.footer-bottom p {
	margin: 0;
}
.footer-bottom p,
.footer-bottom a {
	color: #adb5bd;
}
.footer-bottom a {
	font-size: 14px;
}
.footer-bottom a:hover {
	color: var(--bs-white);
}
@media only screen and (min-width:768px) {
.footer-about, .footer-widget { 
	border-bottom: none;
}
.footer-about, .footer-service-widget {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 40px;
	margin-right: 10px;
}
}
@media only screen and (min-width:992px) {
.contact-widget::after { 
    top: -200px; 
  }
  .contact-widget::after {
	position: absolute;
	left: -50px;
	top: -28px;
	height: 300%;
	width: 500%;
	background: #090e49;
	content: "";
	z-index: -1;
}
  .footer-about, .footer-service-widget {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
} 
@media only screen and (min-width:1200px) {
.contact-widget::after { 
    top: -200px; 
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}