* {
	
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Manrope', sans-serif;
	-webkit-user-select: none; 
	(Chrome/Safari/Opera)
-moz-user-select: none;hero-btn
(Firefox)
-ms-user-select: none;
(IE/Edge)
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,500;1,600&display=swap');

@font-face {
    font-family: "Termina W00 Demi";
	src: url(../font/termina-font.woff2);
	/*font-family: "Termina W00 Demi";*/
 /* src: url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.eot");*/
 /* src: url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.eot?#iefix")format("embedded-opentype"),*/
 /* url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.woff2")format("woff2"),*/
 /* url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.woff")format("woff"),*/
 /* url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.ttf")format("truetype"),*/
 /* url("https://db.onlinewebfonts.com/t/faec7b39028890b34621e55089f6e247.svg#Termina W00 Demi")format("svg");*/
}
body{
	cursor: url(../images/plane-pointer.png),
	auto;
}
a:hover, a:focus {
	color: #000000;
	text-decoration: none!important;
	outline: none;
}
/* side scrollbar */
/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	/* border-radius: 10px; */
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #fe9435; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: rgb(0,0,0);
	background: linear-gradient(208deg, rgba(0,0,0,1) 0%, rgba(254,148,53,1) 87%);
  }
/* header Css */

.white {
	color: #fff;
}

.black {
	color: #000;
}

.orange {
	color: #FE9435;
}

:root {
	--primary-color: #FE9435;
	--secondary-color: #000;
	--light-white: #f1f1f1;
	--light-gray: #a8a8a8;
}

.navbar-toggler-icon {
	border-radius: 15px;
	background: #000;
	padding: 15px;
	width: auto!important;
	height: auto!important;
}

.top-header {
	background-color: var(--secondary-color);
	padding: 12px;
}
/* left side box email and mobile  */
.icon-wrapper ul{
    padding: 0;
    margin: 0;
}
.icon-wrapper ul li{
    display: inline-block;
}
.icon-wrapper ul li a{
    color: var(--light-gray);
    text-decoration: none;
}
.icon-wrapper ul li i{
    color: var(--primary-color);
}
.icon-wrapper ul li:nth-child(2){
    border-left: 2px solid var(--light-gray);
    border-right: 2px solid var(--light-gray);
    padding: 0 15px;
    margin: 0 15px;
}
/* right side box social icon  */

.nav-list p{
    margin: 0;
}
.nav-list p a{
    color: var(--light-gray);
    text-decoration: none;
}
.nav-list p a:nth-child(2){
    border-left: 2px solid var(--light-gray);
    border-right: 2px solid var(--light-gray);
    padding: 0 15px;
    margin: 0 15px;
}
.social-list span{
	margin-left: 15px;
    display: inline-block;
}

.social-list i{
	transition: all .2s ease-in-out;
    color: var(--light-white);
}
.social-list i:hover{
	color: #ff9632;
	transform: scale(1.1);
	background: #fff;
	padding: 4px;
	border-radius: 5px;
   
}
/* search btn style  */
.search-btn div {
	margin-right: 20px;
}

.search-btn i {
	font-size: 25px;
	color: var(--secondary-color);
}
figure {
    margin:0 0 1rem;
}
/* header btn style  */
.hero-btn {
	color: var(--light-white);
	padding: 10px 25px;
	border-radius: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hero-btn::before {
	content: "";
	width: 200%;
	height: 100%;
	position: absolute;
	background: linear-gradient(90deg, var(--secondary-color) 50%, var(--primary-color) 50%);
	top: 0;
	left: -100%;
	z-index: -1;
	transition: .5s ease-in-out;
}

.hero-btn:hover::before {
	left: 0;
}

.hero-btn:hover {
	color: #fff;
}


/* side pop form  */

.sidebar-contact{
	position:fixed;
	top:60%;
	left:-350px;
	transform:translateY(-50%);
	width:350px;
	height:auto;
	padding:40px;
	background:#fff;
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
	box-sizing:border-box;
	transition:0.5s;
	z-index: 99999;
  }
  .sidebar-contact.active{
	left:0;
  }
  /* .sidebar-contact:hover {
	width:30%; 
	left: 0;
  } */
  
  .sidebar-contact h3{
	margin:0 0 20px;
	padding:0;
  }
  
  .toggle{
	position:absolute;
	height:48px;
	width:38px;
	text-align:center;
	cursor:pointer;
	background:#fe9435;
	top:100px;
	right:-36px;
	line-height:48px;
  }
  
  @media(max-width:768px)
  {
	.sidebar-contact{
	  width:100%;
	  height:100%;
	  left:-100%;
	}
	.sidebar-contact .toggle{
	  top:50%;
	  transform:translateY(-50%);
	  transition:0.5s;
	}
	.sidebar-contact.active .toggle
	{
	  top:0;
	  right:0;
	  transform:translateY(0);
	}
	.scroll{
	  width:100%;
	  height:100%;
	  overflow-y:auto;
	}
	.content{
	  padding:50px 50px;
	}
  }
.side-form h5{
    font-size:15px;
	border: 1px solid #fe9435;
	color: #fff;
    display: flex;
	font-family: "Termina W00 Demi";
    background: #000;
    width: 100%;
    height: 220px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    justify-content: center;
    align-items: center;
	
}

 /************************* Back to top *************************/
 .rocket-top {
	width: 85px;
	position: fixed;
	bottom: -180px;
	right: 30px;
	z-index: 999;
	opacity: 1;
	cursor: pointer;
  }
  .rocket-top.show {
	bottom: 10% !important;
	-webkit-transition: 1.0s;
	-moz-transition: 1.0s;
	transition: 1.0s;
  }
  .rocket-top.rocket-run {
	bottom: 100% !important;
	-webkit-transition: 1.0s;
	-moz-transition: 1.0s;
	transition: 1.0s;
  }
  .rocket-top.rocket-down {
	-webkit-transition: 1.0s;
	-ms-transition: 1.0s;
	-o-transition: 1.0s;
	-moz-transition: 1.0s;
	transition: 1.0s;
  }
  .rocket-top:before, .rocket-top:after {
	content: "";
	position: absolute;
	-o-transition: 0.2s;
	-webkit-transition: 0.2s;
	-ms-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
	opacity: 0;
  }
  .rocket-top:hover:before, .rocket-top:hover:after, .rocket-top.rocket-run:before, .rocket-top.rocket-run:after {
	opacity: 1;
  }
  .rocket-top.default:before, .rocket-top.default.rocket-run:before {
	top: -1px;
	left: 6px;
	width: 85px;
	height: 89px;
	background: url(img/rocket-focus.png) no-repeat 0 0;
  }
  /* Back to Top - Custom */
  .rocket-top.back_to_top_type-custom img {
	max-width: 100%;
	width: auto;
	height: auto;
  }
  .rocket-top.back_to_top_type-custom.rocket-run:before, .rocket-top.back_to_top_type-custom:before {
	top: 0;
	width: 100%;
	height: 100%;
	background-image: inherit;
	background-size: cover !important;
	background-position: center center !important;
  }
  .rocket-top.back_to_top_type-custom:hover:before {
	opacity: 1;
  }
  /* Back to Top - Custom */
 
	
/* PRELOADER CSS */
#preloader{
	position: relative;
}
.container-preloader {
	align-items:center; cursor:none; display:flex; height:100%;
  justify-content:center; position:fixed; left:0; top:0; width:100%; z-index:9999;
}
.container-preloader .animation-preloader {
	position:absolute; z-index: 100;}
/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
	background-image: url(../images/plane.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: spinner 1s infinite linear;
	border-radius: 50%;  border: 10px solid rgba(0, 0, 0, 0.2);
  border-top-color: 000; /* It is not in alphabetical order so that you do not overwrite it */
  height: 9em;  margin: 0 auto 3.5em auto; width: 9em;
}
/* Loading text */
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em 'Montserrat', sans-serif;
	text-align: center;	user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  animation: characters 4s infinite;  color: orange;
  content: attr(preloader-text);  left: 0;
  opacity: 0;  position: absolute;  top: 0;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters {
	color: rgba(0, 0, 0, 0.2);	position: relative;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
  animation-delay: 1.2s;
}
.container-preloader .loader-section {
  background-color: #ffffff;  height: 100%;
  position: fixed;  top: 0;  width: calc(50% + 1px);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}
/* Fade effect on loading animation */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Curtain effect */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
/* Animation of the preloader */
@keyframes spinner {
to {
	transform: rotateZ(360deg);
}}
/* Animation of letters loading from the preloader */
@keyframes characters {
  0%,
  75%,
  100% {
 opacity: 0;
 transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }}
/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {
	/* Preloader */
	/* Spinner Loading */	
	.container-preloader .animation-preloader .spinner {
	height: 8em;
	width: 8em;
	}
	/* Text Loading */
	.container-preloader .animation-preloader .txt-loading {
	  font: bold 3.5em 'Montserrat', sans-serif;
	}}
@media screen and (max-width: 500px) {
	/* Prelaoder */
	/* Spinner Loading */
	.container-preloader .animation-preloader .spinner {
	height: 7em;
	width: 7em;
	}
	/*Loading text */
	.container-preloader .animation-preloader .txt-loading {
	  font: bold 2em 'Montserrat', sans-serif;
	}}
.origin{text-decoration:none;
font-size:45px;}


 
  /* footer */
  #footer{
	clip-path: polygon(49% 0, 100% 8%, 100% 100%, 0 100%, 0 8%);
	padding: 50px;
  }
  ul {
	font-size: 16px;
	list-style: none!important;
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.single-cta {
	margin: 15px 0px;
}
.cta-text {
  padding-left: 15px;
  display: grid;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span a{
	text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
	
   background-color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-social-icon i:hover{
	color: #fe9435;
}
.fa-facebook-f{
	color: #3B5998;
}
.fa-linkedin{
	color: #006192;
}
.fa-x-twitter{
	color: #000;
}
.fa-instagram{
	color: #FF00A3;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;  
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.footer-widget ul li {
    position: relative;
    
}

.footer-widget ul li:before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    background: #fff;
    height: 1px;
    transition: .35s
}

.footer-widget ul li:hover:before {
    width: 50%;
    left: 0;
    right: auto
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{

  background: #fe9435;
  padding: 15px 0;
}
.copyright-text p {
	font-family: "Termina W00 Demi";
  margin: 0;
  font-size: 14px;
  color: #000000;
}
.copyright-text p a{
	
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
	text-decoration: none;
	font-family: "Termina W00 Demi";
  font-size: 14px;
  color: #000000;
}
/*  */


 /* header menu Css */
 .navigation {
	width: 100%;
	height: 70px;
	display: table;
	position: relative;
	font-family: inherit;
	background-color: #fff;
  }
  
  .navigation * {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
  }
  
  .navigation-portrait {
	height: 48px;
  }
  
  .navigation-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 19998;
  }
  
  .navigation-hidden {
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
  }
  
  .align-to-right {
	float: right;
  }
  
  .nav-header {
	float: left;
  }
  
  .navigation-hidden .nav-header {
	display: none;
  }
  
  .nav-brand {
	line-height: 70px;
	padding: 0;
	color: #343a40;
	font-size: 24px;
	text-decoration: none !important;
  }
  
  .nav-brand:hover,
  .nav-brand:focus {
	color: #343a40;
  }
  
  .navigation-portrait .nav-brand {
	font-size: 18px;
	line-height: 48px;
  }
  
  .nav-logo > img {
	height: 48px;
	margin: 11px auto;
	padding: 0 15px;
	float: left;
  }
  
  .nav-logo:focus > img {
	outline: initial;
  }
  
  .navigation-portrait .nav-logo > img {
	height: 36px;
	margin: 6px auto 6px 15px;
	padding: 0;
  }
  
  .nav-toggle {
	width: 30px;
	height: 30px;
	padding: 6px 2px 0;
	position: absolute;
	top: 50%;
	margin-top: -14px;
	right: 15px;
	display: none;
	cursor: pointer;
  }
  
  .nav-toggle:before {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #343a40;
	border-radius: 10px;
	box-shadow: 0 0.5em 0 0 #343a40, 0 1em 0 0 #343a40;
  }
  
  .navigation-portrait .nav-toggle {
	display: block;
  }
  
  .navigation-portrait .nav-menus-wrapper {
	width: 320px;
	height: 100%;
	top: 0;
	left: -400px;
	position: fixed;
	background-color: #fff;
	z-index: 20000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition-duration: 0.2s;
	transition-timing-function: ease;
  }
  
  .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
	left: auto;
	right: -400px;
  }
  
  .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
	left: 0;
  }
  
  .navigation-portrait
	.nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
	left: auto;
	right: 0;
  }
  
  .nav-menus-wrapper-close-button {
	width: 30px;
	height: 40px;
	margin: 10px 7px;
	display: none;
	float: right;
	color: #343a40;
	font-size: 26px;
	cursor: pointer;
  }
  
  .navigation-portrait .nav-menus-wrapper-close-button {
	display: block;
  }
  
  .nav-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	font-size: 0;
  }
  
  .navigation-portrait .nav-menu {
	width: 100%;
  }
  
  .navigation-landscape .nav-menu.nav-menu-centered {
	float: none;
	text-align: center;
  }
  
  .navigation-landscape .nav-menu.nav-menu-centered > li {
	float: none;
  }
  
  .nav-menu > li {
	display: inline-block;
	float: left;
	text-align: left;
  }
  
  .navigation-portrait .nav-menu > li {
	width: 100%;
	position: relative;
	border-top: solid 1px #f0f0f0;
  }
  
  .navigation-portrait .nav-menu > li:last-child {
	border-bottom: solid 1px #f0f0f0;
  }
  
  .nav-menu + .nav-menu > li:first-child {
	border-top: none;
  }
  
  .nav-menu > li > a {
	font-family: "Termina W00 Demi";
	font-weight: 500;
	height: 70px;
	padding: 26px 15px;
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color: #343a40;
	transition: color 0.3s, background 0.3s;
  }
  
  .navigation-portrait .nav-menu > li > a {
	width: 100%;
	height: auto;
	padding: 12px 15px 12px 26px;
  }
  
  .nav-menu > li:hover > a,
  .nav-menu > li.active > a,
  .nav-menu > li.focus > a {
	color: #ff6b00;
  }
  
  .nav-menu > li > a > i,
  .nav-menu > li > a > [class*="ion-"] {
	width: 18px;
	height: 16px;
	line-height: 16px;
	transform: scale(1.4);
  }
  
  .nav-menu > li > a > [class*="ion-"] {
	width: 16px;
	display: inline-block;
	transform: scale(1.8);
  }
  
  .navigation-portrait .nav-menu.nav-menu-social {
	width: 100%;
	text-align: center;
  }
  
  .nav-menu.nav-menu-social > li {
	text-align: center;
	float: none;
	border: none !important;
  }
  
  .navigation-portrait .nav-menu.nav-menu-social > li {
	width: auto;
  }
  
  .nav-menu.nav-menu-social > li > a > [class*="ion-"] {
	font-size: 12px;
  }
  
  .nav-menu.nav-menu-social > li > a > .fa {
	font-size: 14px;
  }
  
  .navigation-portrait .nav-menu.nav-menu-social > li > a {
	padding: 15px;
  }
  
  .submenu-indicator {
	margin-left: 6px;
	margin-top: 6px;
	float: right;
	transition: all 0.2s;
  }
  
  .navigation-portrait .submenu-indicator {
	width: 54px;
	height: 44px;
	margin-top: 0;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	z-index: 20000;
  }
  
  .submenu-indicator-chevron {
	height: 6px;
	width: 6px;
	display: block;
	border-style: solid;
	border-width: 0 1px 1px 0;
	border-color: transparent #70798b #70798b transparent;
	transform: rotate(45deg);
	transition: border 0.2s;
  }
  
  .navigation-portrait .submenu-indicator-chevron {
	position: absolute;
	top: 18px;
	left: 24px;
  }
  
  .nav-menu > li:hover > a .submenu-indicator-chevron,
  .nav-menu > .active > a .submenu-indicator-chevron,
  .nav-menu > .focus > a .submenu-indicator-chevron {
	border-color: transparent #967adc #967adc transparent;
  }
  
  .navigation-portrait .submenu-indicator.submenu-indicator-up {
	transform: rotate(-180deg);
  }
  
  .nav-overlay-panel {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: none;
	z-index: 19999;
  }
  
  .no-scroll {
	width: 100%;
	height: 100%;
	overflow: hidden;
  }
  
  .nav-search {
	height: 70px;
	float: right;
	z-index: 19998;
  }
  
  .navigation-portrait .nav-search {
	height: 48px;
	padding: 0 10px;
	margin-right: 52px;
  }
  
  .navigation-hidden .nav-search {
	display: none;
  }
  
  .nav-search-button {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	cursor: pointer;
	background-color: #fbfcfd;
  }
  
  .navigation-portrait .nav-search-button {
	width: 50px;
	height: 48px;
	line-height: 46px;
	font-size: 22px;
  }
  
  .nav-search-icon {
	width: 14px;
	height: 14px;
	margin: 2px 8px 8px 4px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	color: #343a40;
	text-align: left;
	text-indent: -9999px;
	border: 2px solid;
	border-radius: 50%;
	transform: rotate(-45deg);
  }
  
  .nav-search-icon:after,
  .nav-search-icon:before {
	content: "";
	pointer-events: none;
  }
  
  .nav-search-icon:before {
	width: 2px;
	height: 11px;
	top: 11px;
	position: absolute;
	left: 50%;
	border-radius: 0 0 1px 1px;
	box-shadow: inset 0 0 0 32px;
	transform: translateX(-50%);
  }
  
  .nav-search-button:hover .nav-search-icon {
	color: #ff6b00;
  }
  
  .nav-search > form {
	width: 100%;
	height: 100%;
	padding: 0 auto;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 99;
  }
  
  .nav-search-inner {
	width: 70%;
	height: 70px;
	margin: auto;
	display: table;
  }
  
  .navigation-portrait .nav-search-inner {
	height: 48px;
  }
  
  .nav-search-inner input[type="text"],
  .nav-search-inner input[type="search"] {
	height: 70px;
	width: 100%;
	margin: 0;
	padding: 0 12px;
	font-size: 26px;
	text-align: center;
	color: #343a40;
	outline: none;
	line-height: 70px;
	border: none;
	background-color: transparent;
	transition: all 0.3s;
  }
  
  .navigation-portrait .nav-search-inner input[type="text"],
  .navigation-portrait .nav-search-inner input[type="search"] {
	height: 48px;
	font-size: 18px;
	line-height: 48px;
  }
  
  .nav-search-close-button {
	width: 28px;
	height: 28px;
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
	line-height: normal;
	color: #343a40;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
  }
  
  .navigation-portrait .nav-search-close-button {
	top: 10px;
	right: 14px;
  }
  
  .nav-button {
	margin: 18px 15px 0;
	padding: 8px 14px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
  }
  
  .nav-button:hover,
  .nav-button:focus {
	color: #fff;
	text-decoration: none;
  }
  
  .navigation-portrait .nav-button {
	width: calc(100% - 52px);
	margin: 17px 26px;
  }
  
  .nav-text {
	margin: 25px 15px;
	display: inline-block;
	color: #343a40;
	font-size: 14px;
  }
  
  .navigation-portrait .nav-text {
	width: calc(100% - 52px);
	margin: 12px 26px 0;
  }
  
  .navigation-portrait .nav-text + ul {
	margin-top: 15px;
  }
  
  .nav-dropdown {
	min-width: 180px;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	list-style: none;
	z-index: 98;
	white-space: nowrap;
  }
  
  .navigation-portrait .nav-dropdown {
	width: 100%;
	position: static;
	left: 0;
  }
  
  .nav-dropdown .nav-dropdown {
	left: 100%;
  }
  
  .nav-menu > li > .nav-dropdown {
	border-top: solid 1px #f0f0f0;
  }
  
  .nav-dropdown > li {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	text-align: left;
  }
  
  .nav-dropdown > li > a {
	font-family: "Termina W00 Demi";
	width: 100%;
	padding: 16px 20px;
	display: inline-block;
	text-decoration: none;
	float: left;
	font-size: 13px;
	color: #343a40;
	background-color: #fdfdfd;
  }
  
  .nav-dropdown > li:hover > a,
  .nav-dropdown > li.focus > a {
	color: #ff6b00;
  }
  
  .nav-dropdown.nav-dropdown-left {
	right: 0;
  }
  
  .nav-dropdown > li > .nav-dropdown-left {
	left: auto;
	right: 100%;
  }
  
  .navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
	text-align: right;
  }
  
  .navigation-portrait .nav-dropdown > li > a {
	padding: 12px 20px 12px 30px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > a {
	padding-left: 50px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
	padding-left: 70px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
	padding-left: 90px;
  }
  
  .navigation-portrait
	.nav-dropdown
	> li
	> ul
	> li
	> ul
	> li
	> ul
	> li
	> ul
	> li
	> a {
	padding-left: 110px;
  }
  
  .nav-dropdown .submenu-indicator {
	right: 15px;
	top: 10px;
	position: absolute;
  }
  
  .navigation-portrait .nav-dropdown .submenu-indicator {
	right: 0;
	top: 0;
  }
  
  .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
	transform: rotate(-45deg);
  }
  
  .navigation-portrait
	.nav-dropdown
	.submenu-indicator
	.submenu-indicator-chevron {
	transform: rotate(45deg);
  }
  
  .nav-dropdown > li:hover > a .submenu-indicator-chevron,
  .nav-dropdown > .focus > a .submenu-indicator-chevron {
	border-color: transparent #ff6b00 #ff6b00 transparent;
  }
  
  .navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
	left: 10px;
  }
  
  .navigation-landscape
	.nav-dropdown.nav-dropdown-left
	.submenu-indicator
	.submenu-indicator-chevron {
	transform: rotate(135deg);
  }
  .nav-dropdown-horizontal {
	width: 100%;
	left: 0;
	background-color: #fdfdfd;
	border-top: solid 1px #f0f0f0;
  }
  
  .nav-dropdown-horizontal .nav-dropdown-horizontal {
	width: 100%;
	top: 100%;
	left: 0;
  }
  
  .navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
	border-top: none;
  }
  
  .nav-dropdown-horizontal > li {
	width: auto;
	clear: none;
	position: static;
  }
  
  .navigation-portrait .nav-dropdown-horizontal > li {
	width: 100%;
  }
  
  .nav-dropdown-horizontal > li > a {
	position: relative;
  }
  
  .nav-dropdown-horizontal .submenu-indicator {
	height: 18px;
	top: 11px;
	transform: rotate(90deg);
  }
  
  .navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
	height: 42px;
	top: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  
  .navigation-portrait
	.nav-dropdown-horizontal
	.submenu-indicator.submenu-indicator-up {
	transform: rotate(-180deg);
  }
  
  .megamenu-panel {
	width: 100%;
	padding: 15px;
	display: none;
	position: absolute;
	font-size: 14px;
	z-index: 98;
	text-align: left;
	color: inherit;
	border-top: solid 1px #f0f0f0;
	background-color: #fdfdfd;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
  }
  
  .navigation-portrait .megamenu-panel {
	padding: 25px;
	position: static;
	display: block;
  }
  
  .megamenu-panel [class*="container"] {
	width: 100%;
  }
  
  .megamenu-panel [class*="container"] [class*="col-"] {
	padding: 0;
  }
  
  .megamenu-panel-half {
	width: 50%;
  }
  
  .megamenu-panel-quarter {
	width: 25%;
  }
  
  .navigation-portrait .megamenu-panel-half,
  .navigation-portrait .megamenu-panel-quarter {
	width: 100%;
  }
  
  .megamenu-panel-row {
	width: 100%;
  }
  
  .megamenu-panel-row:before,
  .megamenu-panel-row:after {
	content: "";
	display: table;
	line-height: 0;
  }
  
  .megamenu-panel-row:after {
	clear: both;
  }
  
  .megamenu-panel-row [class*="col-"] {
	display: block;
	min-height: 20px;
	float: left;
	margin-left: 3%;
  }
  
  .megamenu-panel-row [class*="col-"]:first-child {
	margin-left: 0;
  }
  
  .navigation-portrait .megamenu-panel-row [class*="col-"] {
	float: none;
	display: block;
	width: 100% !important;
	margin-left: 0;
	margin-top: 15px;
  }
  
  .navigation-portrait
	.megamenu-panel-row:first-child
	[class*="col-"]:first-child {
	margin-top: 0;
  }
  
  .megamenu-panel-row .col-1 {
	width: 5.583333333333%;
  }
  
  .megamenu-panel-row .col-2 {
	width: 14.166666666666%;
  }
  
  .megamenu-panel-row .col-3 {
	width: 22.75%;
  }
  
  .megamenu-panel-row .col-4 {
	width: 31.333333333333%;
  }
  
  .megamenu-panel-row .col-5 {
	width: 39.916666666667%;
  }
  
  .megamenu-panel-row .col-6 {
	width: 48.5%;
  }
  
  .megamenu-panel-row .col-7 {
	width: 57.083333333333%;
  }
  
  .megamenu-panel-row .col-8 {
	width: 65.666666666667%;
  }
  
  .megamenu-panel-row .col-9 {
	width: 74.25%;
  }
  
  .megamenu-panel-row .col-10 {
	width: 82.833333333334%;
  }
  
  .megamenu-panel-row .col-11 {
	width: 91.416666666667%;
  }
  
  .megamenu-panel-row .col-12 {
	width: 100%;
  }
  
  .megamenu-tabs {
	width: 100%;
	float: left;
	display: block;
  }
  
  .megamenu-tabs-nav {
	width: 20%;
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
  }
  
  .navigation-portrait .megamenu-tabs-nav {
	width: 100%;
  }
  
  .megamenu-tabs-nav > li > a {
	width: 100%;
	padding: 10px 16px;
	float: left;
	font-size: 13px;
	text-decoration: none;
	color: #343a40;
	border: solid 1px #eff0f2;
	outline: 0;
	background-color: #fff;
  }
  
  .megamenu-tabs-nav > li.active a,
  .megamenu-tabs-nav > li:hover a {
	background-color: #f5f5f5;
  }
  
  .megamenu-tabs-pane {
	width: 80%;
	min-height: 30px;
	padding: 20px;
	float: right;
	display: none;
	font-size: 13px;
	color: #343a40;
	border: solid 1px #eff0f2;
	background-color: #fff;
  }
  
  .megamenu-tabs-pane.active {
	display: block;
  }
  
  .navigation-portrait .megamenu-tabs-pane {
	width: 100%;
  }
  
  .megamenu-lists {
	width: 100%;
	display: table;
  }
  
  .megamenu-list {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	display: inline-block;
	float: left;
	list-style: none;
  }
  
  .megamenu-list:last-child {
	margin: 0;
	border: none;
  }
  
  .navigation-landscape .megamenu-list {
	margin: -15px 0;
	padding: 20px 0;
	border-right: solid 1px #f0f0f0;
  }
  
  .navigation-landscape .megamenu-list:last-child {
	border: none;
  }
  
  .megamenu-list > li > a {
	font-family: "Termina W00 Demi";
	width: 100%;
	padding: 10px 15px;
	display: inline-block;
	color: #343a40;
	text-decoration: none;
	font-size: 13px;
  }
  
  .megamenu-list > li > a:hover {
	background-color: #ff6b00;
	color: #fff;
  }
  
  .megamenu-list > li.megamenu-list-title > a {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fe9435 ;
  }
  
  .megamenu-list > li.megamenu-list-title > a:hover {
	background-color: transparent;
  }
  
  .navigation-landscape .list-col-2 {
	width: 50%;
  }
  
  .navigation-landscape .list-col-3 {
	width: 33%;
  }
  
  .navigation-landscape .list-col-4 {
	width: 25%;
  }
  
  .navigation-landscape .list-col-5 {
	width: 20%;
  }
  
  .nav-menu > li > a {
	
	color: #343a40;
	text-transform: uppercase;
  }
  
  .nav-dropdown > li > a {
	color: #343a40;
	padding: 10px 20px;
	border-bottom: 1px solid #f6f6f6;
  }
  
  .nav-dropdown > li > a:hover,
  .nav-dropdown > li > a:focus {
	color: #ff6b00;
  }
  
  .main_header_area.sticky {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 9999;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .transparent-menu {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
  }
  
  .navigation-portrait .nav-menu > li > a {
	width: 100%;
	height: auto;
	padding: 10px 10px 10px 30px;
  }
  
  @media only screen and (min-width: 320px) and (max-width: 770px) {
	.nav-dropdown > li > a,
	.megamenu-list > li > a {
	  /* width: 65%; */
	  width: 100%;
	}
	.megamenu-panel {
		width: 100%;
	}
  }
  header#header-fix{
	background-color: #fff;
	z-index:99;
	padding: 10px 0px;
  }