.auto-container {
  position: static;
  max-width: 1210px;
  padding: 0px 20px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #222;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

button {
  outline: none !important;
  cursor: pointer;
}

.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

.icon-search-box > button {
  background: none;
}
.icon-search-box > button i {
  font-size: 22px;
  font-weight: bold;
}
.icon-search-box form {
  height: 50px;
  width: 280px;
  padding: 5px;
  border-radius: 4px;
  margin: 36px 0 0;
  left: auto;
  right: 0;
  border: none;
  position: absolute;
  right: 0 !important;
  left: inherit !important;
  transform: translate3d(-50px, 64px, 0) !important;
}
.icon-search-box form input {
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  width: 100%;
  height: 100%;
  background: transparent;
  color: #9e9e9e;
  border: 1px solid #f7f7f7;
  padding: 0 47px 0 10px;
  font-size: 15px;
}
.icon-search-box form button {
  display: block;
  width: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  background: #000;
}

.icon-search-box .dropdown-toggle::after {
  display: none;
}

.main-header.two .icon-search-box > button {
  background: none;
  color: #ffffff;
}

/*** Scroll To Top style ***/
.scroll-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 50px;
  line-height: 60px;
  font-size: 16px;
  z-index: 99;
  display: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  -webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.06);
  background: #2a2a2f;
  border-radius: 50%;
  transition: 0.5s;
}
.scroll-to-top span {
  font-weight: 900;
}
.scroll-to-top span:before {
}
.scroll-to-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: -o-radial-gradient(
    center,
    ellipse,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

.scroll-to-top:hover {
  background-color: var(--color-primary);
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/*** 
 =========================================
     Mobile Menu
 =========================================
 ***/
.mobile-menu {
  position: fixed;
  left: -350px;
  top: 0;
  width: 320px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 999999;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  background-color: #1c1f26;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 20px 20px;
  text-align: left;
}
.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 100px;
  bottom: 80px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #1c1f26;
  padding: 0px 0px;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.mobile-menu .menu-box.style-two {
  bottom: 0px;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .close-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  font-size: 14px;
  color: #202020;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .navigation {
  position: relative;
  width: 100%;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid #2c2f37;
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 13px 55px;
  font-size: 14px;
  color: #eee;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-menu .navigation li > a:before {
  position: absolute;
  content: "";
  background: #2f333b;
  height: 6px;
  width: 6px;
  left: 30px;
  top: 23px;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 15px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #ebebeb;
  cursor: pointer;
  z-index: 5;
  background: #1c1f26;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 103;
  width: 100%;
  display: none;
  background: rgba(20, 20, 20, 0.7);
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  cursor: zoom-out;
}

/* ========= Menu Bar Style =========== */
/* -------------------------------- 
  Title: Animated Menu Button
  Descr: A menu button w/ a morphing icon
  -------------------------------- */

.navbar-btn-wrap {
  position: relative;
  background: #1c1e25;
  text-align: center;
}
/* .anim-menu-btn {
  width: var(--anim-menu-btn-size);
  height: var(--anim-menu-btn-size);
  background: transparent;
  color: #fff;
  position: relative;
}
.anim-menu-btn:before {
  position: absolute;
  content: "MENU";
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  top: 8px;
  left: -60px;
  letter-spacing: 5px;
}
.anim-menu-btn__icon {
  position: relative;
  display: block;
  font-size: var(--anim-menu-btn-icon-size);
  width: 1em;
  height: var(--anim-menu-btn-icon-stroke);
  color: var(--color-contrast-high);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(currentColor),
    to(currentColor)
  );
  background-image: -o-linear-gradient(currentColor, currentColor);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.anim-menu-btn__icon::before,
.anim-menu-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 100%;
  background-image: inherit;
  border-radius: inherit;
}
.anim-menu-btn__icon--close {
  background-size: 100% 100%;
  will-change: transform, background-size;
  -webkit-transition: background-size 0.2s, -webkit-transform 0.2s;
  transition: background-size 0.2s, -webkit-transform 0.2s;
  -o-transition: transform 0.2s, background-size 0.2s;
  transition: transform 0.2s, background-size 0.2s;
  transition: transform 0.2s, background-size 0.2s, -webkit-transform 0.2s;
}
.anim-menu-btn:active .anim-menu-btn__icon--close {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.anim-menu-btn__icon--close::before,
.anim-menu-btn__icon--close::after {
  will-change: inherit;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.anim-menu-btn__icon--close::before {
  -webkit-transform: translateY(-0.25em) rotate(0);
  -ms-transform: translateY(-0.25em) rotate(0);
  transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--close::after {
  -webkit-transform: translateY(0.25em) rotate(0);
  -ms-transform: translateY(0.25em) rotate(0);
  transform: translateY(0.25em) rotate(0);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close {
  background-size: 0% 100%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
} */

/*================================================
            Sticky Header
==================================================*/

.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f1f1;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sticky-header .logo {
  padding: 15px 0px;
}
.sticky-header .logo a {
  display: inline-block;
}
.fixed-header .sticky-header {
  z-index: 99999;
  opacity: 1;
  visibility: visible;
}

.main-header .sticky-header .main-menu .navigation > li {
  margin-right: 0px;
  margin: 0px;
  padding: 5px 0;
}

.main-header .sticky-header .main-menu .navigation > li > a {
  color: #1c1f26;
  padding: 20px 15px;
  line-height: 30px;
  font-size: 17px;
  font-weight: 600;
  min-height: 0px;
  background: none;
  border: 0px;
  margin-right: 0px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .sticky-header .nav-outer .mobile-nav-toggler {
  padding: 19.5px 30px;
}

.main-header .sticky-header .main-menu .navigation > li:hover > a,
.main-header .sticky-header .main-menu .navigation > li.current > a,
.main-header .sticky-header .main-menu .navigation > li.current-menu-item > a {
  opacity: 1;
  color: var(--color-primary);
}

/*** 
==================================================
    Main Header style
==================================================
***/
.main-header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}
.main-header .outer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main-header .header-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*=== Header Top ===*/
.header_top {
  position: relative;
  background: var(--color-primary);
  padding: 14px 0 15px;
}
.header_top_inner {
  position: relative;
}
.header_top_one_box {
  position: relative;
}
.header_top_one_box ul {
  display: block;
  overflow: hidden;
}
.header_top_one_box ul li {
  position: relative;
  display: inline-block;
  float: left;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding-right: 16px;
  margin-right: 15px;
}
.header_top_one_box ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.header_top_one_box ul li:before {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}
.header_top_one_box ul li:last-child:before {
  display: none;
}
.header_top_one_box ul li span:before {
  position: relative;
  display: inline-block;
  padding-right: 7px;
}
.header_top_one_box ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.header_top_two_box {
  position: relative;
  display: block;
}
.header_top_two_box .opening_hour {
  position: relative;
  display: block;
  float: left;
  padding-right: 21px;
  margin-right: 20px;
}
.header_top_two_box .opening_hour:before {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.header_top_two_box .opening_hour p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.header_top_two_box .opening_hour p span {
  display: inline-block;
  padding-right: 7px;
}

.header_top_two_box .social_links_1 {
  display: inline-flex;
}
.social_links_1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.social_links_1 a + a {
  margin-left: 10px;
}
.social_links_1 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*=== Header Upper ===*/
.header_upper {
  position: relative;
  background: #fff;
  z-index: 9999;
}
.header_upper_inner {
  position: relative;
  display: block;
}
.header_upper_one_box {
  position: relative;
}
.header_upper_one_box .logo {
  position: relative;
  display: block;
  padding: 25px 0;
}
.header_upper_one_box .logo a {
  display: inline-block;
}

.logo img {
  max-width: 200px;
  max-height: 50px;
}

.main-header .nav-outer {
  position: relative;
  padding: 0;
  min-height: 70px;
  margin: 0;
  float: left;
}
.nav-outer .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  line-height: 16px;
  cursor: pointer;
  color: #fff;
  padding: 12px 12px 12px;
  right: 0;
  background-color: var(--color-primary);
  top: 16px;
  border-radius: 5px;
}
.nav-outer .mobile-nav-toggler span {
  font-size: 30px;
}
.main-header .nav-outer .nav-inner {
  position: relative;
  background-color: #fff;
}
.main-header .nav-outer .nav-inner.close-menu {
  pointer-events: none;
}
.main-header .main-box {
  position: relative;
  float: left;
  left: 0px;
  top: 0px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header_upper_two_box .icon-search-box {
  position: relative;
  display: block;
  padding: 35px 0;
  float: right;
  margin-left: 100px;
}

.main-menu {
  position: relative;
}
.main-menu .navbar-collapse {
  padding: 0px;
}
.main-menu .navigation {
  position: relative;
  margin: 0px;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 40px 0px;
  margin-right: 50px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu.two .navigation > li {
  padding: 25px 0;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  padding: 0px 0px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  color: #201630;
  opacity: 1;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: var(--color-primary);
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 110%;
  width: 245px;
  z-index: 100;
  opacity: 1;
  padding: 20px 0 20px;
  background: #fff;
  border-top: 1px solid #fff;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0 30px;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 19px;
  font-weight: 500;
  font-size: 17px;
  text-align: left;
  color: #222;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: var(--color-primary);
  text-decoration: underline;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 5 Brands";
  content: "\f078";
  position: absolute;
  right: 0px;
  top: 9px;
  width: 10px;
  display: block;
  line-height: 19px;
  font-size: 16px;
  color: #000;
  font-weight: normal;
  text-align: center;
  z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 110%;
  top: 0;
  width: 225px;
  z-index: 100;
  opacity: 1;
  padding: 20px 0 30px;
  background: #fff;
  border-top: 1px solid #fff;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0 25px;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 19px;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #888;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  text-transform: uppercase;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--color-primary);
}
.main-menu .navigation > li > ul > li > ul > li:last-child > a {
  border-bottom: 0;
}

.main-menu .navigation > li.dropdown:hover > ul {
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 5px;
}
.main-menu .navigation > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  left: 100%;
  margin-left: 5px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li.dropdown > ul.from-right {
  left: auto;
  right: 110%;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul.from-right {
  left: auto;
  right: 100%;
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}
.main-header .outer-box {
  position: absolute;
  right: 0;
  top: 0;
}

/* Nav Toggler */
.main-header .nav-toggler {
  position: relative;
  text-align: center;
}
.main-header .nav-toggler .nav-btn {
  position: relative;
  color: #ffffff;
  font-size: 28px;
  line-height: 39px;
  padding: 15px 0;
  width: 80px;
  font-weight: normal;
  background: none;
}
.main-header .nav-toggler .nav-btn .icon {
  display: inline-block;
}

/*** 
==================================================
    Main Header Two Css
==================================================
***/
.main-header.two {
  position: absolute;
  background: none;
}
.main-header.two .header_top_one_box {
  padding: 6px 0;
}
.main-header.two .header_top_one_box h4 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}

.header_upper-two {
}
.header_upper-two_inner {
  position: relative;
  display: block;
  padding: 40px 0;
}
.header_upper_two_box {
  position: relative;
  display: block;
}
.header_upper_two_box .logo {
  padding: 5px 0;
}
.header_upper_two-right_box {
}
.header_upper_two-right_box ul {
  float: left;
  display: block;
}
.header_upper_two-right_box ul li {
  position: relative;
  display: block;
  float: left;
  padding-left: 60px;
  margin-right: 50px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.header_upper_two-right_box ul li:last-child {
  margin-right: 0;
}
.header_upper_two-right_box ul li .address_icon {
  position: absolute;
  top: 0;
  left: 0;
}
.header_upper_two-right_box ul li .address_icon span {
  font-size: 40px;
  color: var(--color-primary);
  line-height: 60px;
}
.header_upper_two-right_box ul li .address_title {
}
.header_upper_two-right_box ul li .address_title h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}
.header_upper_two-right_box ul li .address_title p {
  font-size: 16px;
  color: var(--text-color);
  margin: 0;
}
.header_upper_two_box-btn {
  display: block;
  float: right;
  margin-left: 45px;
}
.header_upper_two_box-btn a {
  font-size: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgb(0, 0, 0, 0.1);
  display: inline-block;
  padding: 15px 40px;
}

.main-header-two-nav-box {
  position: relative;
  display: block;
}
.main-header-two-nav-box-inner {
  position: relative;
  display: block;
  background: #112540;
  padding: 0 30px;
}
.main-header-two-nav-box .nav-outer {
  float: left;
}
.main-header-two-nav-box .icon-search-box {
  padding: 22px 0;
  float: right;
}
.main-header-two-nav-box .icon-search-box a {
  color: #ffffff;
}
.main-header-two-nav-box .nav-outer .nav-inner {
  background: transparent;
}
.main-menu.two .navigation > li > a {
  color: #ffffff;
}
.main-menu.two .navigation > li:hover > a,
.main-menu.two .navigation > li.current > a {
  color: var(--color-primary);
}

@media only screen and (min-width: 1200px) {
  .mobile-menu .menu-box {
    display: none;
  }
  .nav-outer .mobile-nav-toggler {
    display: none;
  }
  .mobile-menu {
    pointer-events: none;
    background: transparent;
  }
}

@media only screen and (min-width: 991px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_upper_two_box .icon-search-box {
    float: left;
    margin-left: 0;
    margin-right: 25px;
  }
  .main-header .nav-outer {
    float: right;
  }
  .main-header-two-nav-box .icon-search-box {
    float: right;
    margin-right: 5px;
  }
  .main-header-two-nav-box .nav-outer {
    float: left;
  }
}

@media only screen and (max-width: 1199px) {
  .main-header-two-nav-box-inner {
    padding: 0 17px;
  }
  .header_upper-two_inner {
    padding: 18px 0;
  }
  .fixed-header .sticky-header {
    display: none;
  }

  .header_upper_two_box .icon-search-box {
    padding: 23px 0;
  }
  .header_upper_two_box.one {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 991px) {
  .header_upper_one_box .logo {
    position: relative;
    display: block;
    padding: 14px 0 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_top {
    display: none;
  }
  .header_upper_two_box .icon-search-box {
    float: left;
    margin-left: 0;
    margin-right: 25px;
  }
  .main-header .nav-outer {
    float: right;
  }
  .main-header.two .header_top {
    display: none;
  }

  .header_upper_two-right_box {
    display: none;
  }

  .main-header-two-nav-box .icon-search-box {
    float: right;
    margin-right: 5px;
  }
  .main-header-two-nav-box .nav-outer {
    float: left;
  }
  .header_upper_two_box {
    float: none;
    text-align: center;
  }

  .header_upper_two_box.one .icon-search-box {
    float: right;
  }
}

@media only screen and (max-width: 767px) {
  .header_top {
    display: none;
  }
  .header_upper_two_box .icon-search-box {
    display: none;
  }
  .main-header.two .header_top {
    display: none;
  }

  .header_upper_two-right_box {
    display: none;
  }
  .main-header-two-nav-box .icon-search-box {
    float: right;
    margin-right: 5px;
  }
  .main-header-two-nav-box .nav-outer {
    float: left;
  }
  .header_upper_two_box {
    float: none;
    text-align: center;
  }
  .header_upper_two_box.one .nav-outer {
    float: right;
  }
}
