/*=============================
         	Menu Area
===============================*/
.header-style-two{
	background-color: #fff;
	padding: 8px 0;
}

.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

#header-fixed-height.active-height {
    display: block;
    height: 96px;
}

.menu-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.menu-nav  img
{
	width: 100px;
}

.navbar-wrap {
	display: flex;
	flex-grow: 1;
}
.navbar-wrap ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
    padding: 0 0;
	margin: 0 0 0 auto;
}
.navbar-wrap ul li {
    list-style: none;
	display: block;
	position: relative;
}
.navbar-wrap ul li a {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #fff;
	letter-spacing: 1.5px;
	padding: 40px 15px;
	display: block;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.navbar-wrap > ul > li.active > a,
.navbar-wrap > ul > li:hover > a {
	color: #4BC7EA;
}
.navbar-wrap > ul > li.menu-item-has-children > a::after {
	content: "\f107";
	font-weight: 700;
	font-family: "FontAwesome";
	color: #000000;
	margin-left: 8px;
	transition: all 0.3s ease-out 0s;
}
.navbar-wrap > ul > li.menu-item-has-children:hover > a::after,
.navbar-wrap > ul > li.menu-item-has-children.active > a::after {
	color: #4BC7EA;
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}
.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.header-action > ul li {
	position: relative;
	margin-left: 25px;
}
.header-action ul li:first-child {
	margin-left: 0;
}
.header-action ul li a {
	color: var(--tg-heading-font-color);
	font-size: 14px;
}
.header-action ul li.header-search {
	line-height: 0;
}
.header-action ul li.header-search a {
	color: #000;
	font-size: 25px;
	line-height: 0;
	transition: all 0.3s ease-out 0s;
}
.header-action ul li.header-search a:hover {
	color: #0055FF;
}
.header-action .header-btn .btn {
	color: var(--tg-white);
	font-size: 15px;
	padding: 16px 33px;
	border: 2px solid transparent;
}
.header-action .header-btn .btn::before {
	display: none;
}
.header-action .header-btn .btn:hover {
	background: transparent;
	border-color: #0055FF;
	color: #0055FF;
}
.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 200px;
    border: 1px solid #f5f5f5;
    background: #ffffff;
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 5px;
    padding: 10px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
}
.navbar-wrap ul li .sub-menu .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
}
.navbar-wrap ul li .sub-menu li {
	margin-left: 0;
	text-align: left;
	display: block;
}
.navbar-wrap ul li .sub-menu li a {
	padding:5px;
	line-height: 25px;
    font-size: 15px;
	font-weight: 500;
	color: #000000;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar-wrap ul li .sub-menu li a::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: #4BC7EA;
    transition: .3s ease-in-out;
}
.navbar-wrap ul li .sub-menu > li.active > a,
.navbar-wrap ul li .sub-menu li a:hover {
    color:#4BC7EA;
}
.navbar-wrap ul li .sub-menu > li.active > a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
    width: 10px;
}
.navbar-wrap ul li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.sticky-menu {
	position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 999999;
    background: transparent;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 2px 2px 8px 0px rgba(255, 255, 255, 0.3) inset;
    background: rgba(34, 32, 32, 0.04);
    background-blend-mode: luminosity; 
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);  
}

.header-style-two .navbar-wrap ul li a {
	padding: 18px 15px;
	text-decoration: none;
}

.header-contact-two {
	display: flex;
	align-items: center;
	margin-right: 30px;
}



.header-style-two .navbar-wrap ul
.header-cta a
{
        position: relative;
    display: inline-block;
    overflow: hidden;
    background: #0A1617;
    border: 2px solid var(--primary-color);
    color: var(--white-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
    z-index: 1;
    margin-top: 10px;
}

/* Fill Layer */
.header-style-two .navbar-wrap ul
.header-cta a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.45s cubic-bezier(0.77,0,0.175,1);
    z-index: -1;
}

/* Hover */
.header-style-two .navbar-wrap ul
.header-cta a:hover{
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.header-style-two .navbar-wrap ul
.header-cta a:hover::before{
    width: 100%;
}


.header-style-two .header-action ul > li > a {
	padding: 25px 10px;
	display: block;
	min-height: 80px;
	display: flex;
	align-items: end;
}
.header-action .offcanvas-menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	min-width: 26px;
	padding: 29px 29px;
	justify-content: center;
}
.header-action .offcanvas-menu a span {
	width: 30px;
	height: 3px;
	background: rgba(0, 0, 0, 1);
	transition: .3s linear;
}
.header-action .offcanvas-menu a span:nth-child(2) {
	width: 20px;
}
.header-action .offcanvas-menu a span:nth-child(3) {
	width: 15px;
}
.header-style-two .header-action .offcanvas-menu a:hover span {
	background: #0055FF;
}
.header-style-two .header-action > ul li {
    margin-left: 0;
}

.header-style-two .header-action > ul li:first-child::before {
	display: none;
}
.header-style-two.sticky-menu .heder-top-wrap {
	display: none;
}
.header-style-two.sticky-menu .menu-area {
	box-shadow: none;
}

/*=============================
	 Mobile Menu Css
===============================*/

.nav-outer .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	display: none;
	color: var(--tg-white);
	margin-right: 30px;
	top: 15px;
}
.nav-logo img {
	max-width: 135px;
}
.mobile-search {
	padding: 0 20px 25px 25px;
}
.mobile-search form {
	position: relative;
}
.mobile-search input {
	display: block;
	width: 100%;
	border: none;
	padding: 10px 45px 10px 20px;
	font-size: 14px;
	font-weight: 500;
	height: 45px;
	background: var(--tg-gray);
	color: var(--tg-secondary-color);
}
.mobile-search input::placeholder {
	font-size: 14px;
	font-weight: 500;
	color: var(--tg-heading-font-color);
}
.mobile-search button {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	border: none;
	padding: 0;
	right: 20px;
	line-height: 1;
	background: transparent;
	color: var(--tg-secondary-color);
}
.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	padding-right: 30px;
	max-width: 100%;
	height: 100vh;
	z-index: 9999;
	border-radius: 0px;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
	-o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.mobile-menu .navbar-collapse {
	display: block !important;
}
.mobile-menu .nav-logo {
	position: relative;
	padding: 20px;
	text-align: left;
}
.mobile-menu-visible {
	overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
	-webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .navigation li.current>a:before {
	height: 100%;
}
.menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
}
.mobile-menu-visible .menu-backdrop {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #102B32;
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}
.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .close-btn {
    position: absolute;
	background: firebrick;
    right: 15px;
    top: 30px;
    line-height: 30px;
    width: 30px;
	height: 30px;
    text-align: center;
	border-radius: 30px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}
.mobile-menu .navigation ul {
	padding: 0;
	margin: 0;
}
.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.mobile-menu .navigation li ul li > a {
	font-size: 16px;
	margin-left: 20px;
	text-transform: capitalize;
}
.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}
.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}
.mobile-menu .navigation li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #fffdff;
	background: #2C3687;
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color: #0055FF;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
	display: none;
}

.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 27px;
	cursor: pointer;
	line-height: 1;
	color:var(--white-color);
	display: none;
	margin-top: 6px;
	padding: 5px 10px;
	border: 2px solid var(--white-color);
}

/*=============================
	     Search
===============================*/
.search-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.90);
    height: 100%;
    width: 100%;
    z-index: 9999;
    padding: 100px 0;
    display: none;
}
.search-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.search-wrap .title {
	font-size: 35px;
    margin: 0px 0px 70px;
    font-weight: 700;
    color: #2C3687;
}
.search-form {
	position: relative;
}
.search-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #2C3687;
    padding: 10px 50px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
	background: transparent;
    color: #000000;
}
.search-form input::placeholder {
	font-size: 30px;
    color: var(--tg-heading-font-color);
	opacity: .5;
}
.search-btn {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0;
    font-size: 25px;
    color: #13BECF;
    top: 50%;
    transform: translateY(-50%);
}
.search-close {
	position: absolute;
	top: 5%;
	right: 5%;
	font-size: 30px;
	color: #2C3687;
	cursor: pointer;
}

/*=============================
	     OffCanvas
===============================*/
.extra-info {
	background: #ffffff none repeat scroll 0 0;
	height: 100%;
	padding: 30px;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.7s ease 0s;
	width: 340px;
	z-index: 99999;
	overflow-y: scroll;
	transform: translateX(100%);
}
.extra-info.active {
	transform: translateX(0);
}
.close-icon {
	margin-top: -16px;
	text-align: right;
}
.close-icon > button {
    background: transparent;
    border: 0 none;
    color:#2C3687;
    cursor: pointer;
    font-size: 25px;
    padding: 0;
}
.extra-info .logo-side img {
	max-width: 151px;
}
.side-info {
	border-top: 1px solid #2C3687;
	padding-top: 15px;
}
.contact-list h4 {
	font-family: "Century Gothic", sans-serif;
	color: #2C3687;
	font-weight: 700;
	font-size: 18px;
}
.contact-list p {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
    color: #000;
    margin: 0;
    margin-bottom: 2px;
    line-height: 25px;	
}

.contact-list p  a{
	font-family: "Poppins", sans-serif;
	color: #000;
 }

.side-instagram {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}
.side-instagram li {
    width: 33.3333%;
    flex: 0 0 33.3333%;
    padding: 5px;
}
.side-instagram li > a {
	display: block;
}
.side-instagram img {
	width: 100%;
	border-radius: 5px;
}
.social-icon-right > a {
	color: #0055FF;
	display: inline-block;
	margin-right: 20px;
	text-align: center;
}
.social-icon-right > a:hover {
    color: var(--tg-secondary-color);
}
.offcanvas-overly {
	position: fixed;
	background: var(--tg-black);
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.offcanvas-overly.active {
	opacity: .5;
	visibility: visible;
}

.extra-info::-webkit-scrollbar {
    width: 0px;
}

/*=========*****======== Mega Menu =======*****============== */

.navbar-wrap ul li .mega-menu {
    min-width: 720px;
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
	z-index: 9999;
}
.navbar-wrap ul li .mega-menu > li {
    border-right:2px solid #2C3687;
}
.navbar-wrap ul li .mega-menu > li:last-child {
    border: none;
}
.mega-menu > li > .mega-sub-menu {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    margin-left: 10px !important;
}

.mobile-menu .mega-menu-wrap {
    display: none;
    width: auto;
}
.mobile-menu .mega-menu > li > .mega-sub-menu {
    display: flex !important;
    flex-direction: column;
    min-width: auto;
    margin-left: 0 !important;
}
.mobile-menu .mega-menu > li > .mega-sub-menu a {
    margin-left: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.mobile-menu .navigation li > .mega-menu > li .mega-sub-menu li:first-child {
    border: none;
}

.mb-20 {
	margin-bottom: 20px;
}

.list-wrap {
	margin: 0px;
	padding: 0px;
}
.list-wrap li {
	list-style: none
}

/*==========***== Mobile Menu ==***========== */


.social-links a:after,
.social-links a:before {
	content: "";
	position: absolute;
	transition: 0.5s;
  }
  
.social-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
	margin-top: 20px;
  }
  .social-links
  li {
	list-style: none;
	margin: 25px;
  }
  .social-links
  li:nth-child(1) a {
	background-color: #007bb5;
  }
  .social-links
  li:nth-child(1) a:before {
	background-color: #006a9c;
  }
  .social-links
  li:nth-child(1) a:after {
	background-color: #0089c9;
  }
  .social-links
  li:nth-child(2) a {
	background-color: #1877f2;
  }
  .social-links
  li:nth-child(2) a:before {
	background-color: #0d6ae4;
  }
  .social-links
  li:nth-child(2) a:after {
	background-color: #2b82f3;
  }
  .social-links
  li:nth-child(3) a {
	background-color: #c32aa3;
  }
  .social-links
  li:nth-child(3) a:before {
	background-color: #ae2591;
  }
  .social-links
  li:nth-child(3) a:after {
	background-color: #d22fb0;
  }
  .social-links
  li:nth-child(4) a {
	background-color: #1da1f2;
  }
  .social-links
  li:nth-child(4) a:before {
	background-color: #0d95e8;
  }
  .social-links
  li:nth-child(4) a:after {
	background-color: #30a9f3;
  }
  .social-links
  li:nth-child(5) a {
	background-color: #ff0000;
  }
  .social-links
  li:nth-child(5) a:before {
	background-color: #e60000;
  }
  .social-links
  li:nth-child(5) a:after {
	background-color: #ff1414;
  }
  .social-links
  li:hover .fa {
	color: #fff;
  }

  .social-links
  a {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	text-align: center;
	box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
	transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
	transition: 0.5s;
  }
  .social-links
  a:before {
	top: 10px;
	left: -20px;
	height: 100%;
	width: 20px;
	transform: rotate(0deg) skewY(-45deg);
  }
  .social-links
  a:after {
	bottom: -20px;
	left: -10px;
	height: 20px;
	width: 100%;
	transform: rotate(0deg) skewX(-45deg);
  }
  .social-links
  a:hover {
	transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
	box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
  }
  .social-links 
  .fa {
	font-size: 25px;
	color: #fff;
	line-height: 48px;
	transition: 0.5s;
  }