.main-header {
  position: relative;
}

/* Header Top */
.main-header .header-top {
  position: relative;
  overflow: hidden;
  background-color: var(--main-color-two);
}

.main-header .header-top .top-left {
  position: relative;
  float: left;
}

.main-header .header-top .info {
  position: relative;
  padding: 13px 0px;
}

.main-header .header-top .info li {
  position: relative;
  display: inline-block;
  font-size: var(--font-15);
  color: var(--white-color);
  margin-right: var(--margin-right-20);
}

.main-header .header-top .info li .icon {
  position: absolute;
  left: 0px;
  color: var(--white-color);
}

.main-header .header-top .info li:last-child {
  margin-right: 0px;
}

.main-header .header-top .info li a {
  position: relative;
  color: var(--white-color);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  padding-left: var(--padding-left-25);
}

.main-header .header-top li a:hover {
  color: var(--main-color);
}

.main-header .header-top .social-box {
  position: relative;
  padding: 13px 0px;
}

.main-header .header-top .social-box:before {
  position: absolute;
  content: '';
  left: -170px;
  top: 0px;
  right: -1200px;
  bottom: 0px;
  transform: skewX(-30deg);
  background-color: var(--main-color);
}

.main-header .header-top .social-box li {
  position: relative;
  display: inline-block;
  margin-left: var(--margin-left-25);
}

.main-header .header-top .social-box li a {
  position: relative;
  color: var(--white-color);
  font-size: var(--font-16);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-top .social-box li a:hover {
  color: var(--main-color-two);
}

.main-header .header-upper {
  position: relative;
  background-color: var(--white-color);
}

.main-header .main-box {
  position: relative;
  padding: 0px 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  background: none;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-box .outer-container {
  position: relative;
  padding: 0px 40px;
}

.main-header .logo-box {
  position: relative;
  float: left;
  z-index: 10;
  padding: 10px 0px;
}

.main-header .logo-box .logo img {
  display: inline-block;
  max-width: 100%;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-lower {
  position: relative;
}

.main-header .header-lower .nav-outer {
  position: relative;
  float: right;
}

.main-header .header-upper .logo-box {
  position: relative;
  padding: 10px 0px 10px;
}

.main-header .header-upper .logo-box .logo {
  position: relative;
}

/* Main Menu */

.main-header .main-menu {
  position: relative;
  float: left;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-menu .navbar-collapse {
  padding: 0px;
  float: left;
  display: block !important;
}

.main-header .main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-header .main-menu .navigation>li {
  position: relative;
  float: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  margin-right: var(--margin-right-35);
}

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

.main-header .sticky-header .nav-outer .options-box {
  margin-top: var(--margin-top-40);
}

/*Sticky Header*/

.main-header .sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.main-header .sticky-header .mobile-nav-toggler {
  display: none;
  cursor: pointer;
  color: var(--black-color);
  font-size: var(--font-30)
}

.main-header .sticky-header .logo {
  position: relative;
  padding: 18px 0px;
}

.main-header.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header .main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 30px;
  letter-spacing: 0px;
  opacity: 1;
  font-weight: 600;
  padding: 35px 0px;
  font-size: var(--font-16);
  color: var(--dark-color);
  text-transform: capitalize;
  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-header .main-menu .navigation>li:last-child {
  margin-right: var(--margin-zero);
}

.main-header .main-menu .navigation>li:last-child>a {
  padding-right: 0px;
}

.main-header .sticky-header .main-menu .navigation>li {
  position: relative;
}

.main-header .sticky-header .main-menu .navigation>li:last-child {
  margin-right: var(--margin-zero);
}

.main-header .main-menu .navigation>li:last-child ul {
  right: 0px;
}

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

.main-header .main-menu .navigation>li>ul {
  position: absolute;
  width: 15rem;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-radius: 0px;
  background-color: var(--main-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.main-header .main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-header .main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-header .main-menu .navigation>li>ul>li:last-child {
  border-bottom: none;
}

.main-header .main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 12px 18px;
  line-height: 24px;
  font-weight: 500;
  font-size: var(--font-15);
  text-transform: capitalize;
  color: var(--white-color);
  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-header .main-menu .navigation>li>ul>li>a:before {
  position: absolute;
  content: '//';
  left: 10px;
  top: 11px;
  opacity: 0;
  font-weight: 700;
  font-size: var(--font-12);
  color: var(--main-color);
  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-header .main-menu .navigation>li>ul>li:hover>a::before {
  opacity: 1;
}

.main-header .sticky-header .main-menu .navigation>li>a:before {}

.main-header .main-menu .navigation>li>ul>li:hover>a {
  padding-left: 30px;
  color: var(--white-color);
  background-color: var(--main-color-two);
}

.main-header .main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'FontAwesome';
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 13px;
  width: 10px;
  height: 20px;
  display: block;
  color: var(--white-color);
  line-height: 20px;
  font-size: var(--font-16);
  font-weight: normal;
  text-align: center;
  z-index: 5;
}

.main-header .main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 15rem;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-radius: 0px;
  background-color: var(--main-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.main-header .main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-header .main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-header .main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-header .main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 12px 18px;
  line-height: 24px;
  font-weight: 500;
  font-size: var(--font-15);
  text-transform: capitalize;
  color: var(--white-color);
  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-header .main-menu .navigation>li>ul>li>ul>li:hover>a {
  color: var(--white-color);
  background-color: var(--white-color-two);
}

.main-header .main-menu .navigation>li>ul>li>ul>li>a:before {
  position: absolute;
  content: '//';
  left: 10px;
  top: 11px;
  opacity: 0;
  font-weight: 700;
  font-size: var(--font-12);
  color: var(--main-color);
  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-header .main-menu .navigation>li>ul>li>ul>li:hover>a::before {
  opacity: 1;
}

.main-header .main-menu .navigation>li>ul>li>ul>li:hover>a {
  padding-left: 30px;
  color: var(--white-color);
  background-color: var(--main-color-two);
}

.main-header .main-menu .navigation>li.dropdown:hover>ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navigation li>ul>li.dropdown:hover>ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white-color);
  line-height: 28px;
  border: 1px solid var(--white-color-opicity-two);
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-menu .navigation>li>ul>li.updates {
  padding: 12px 15px;
  color: #ffffff;
  left: 0px;
  right: 0px;
  width: auto;
  font-weight: 600;
  font-size: var(--font-16);
  background-color: var(--main-color);
}

/***
====================================================================
	Mobile Menu
====================================================================
***/

.main-header .nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  padding: 2px 0 0px;
  font-size: var(--font-26);
  line-height: 44px;
  cursor: pointer;
  color: var(--black-color);
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 20px 20px;
  text-align: left;
}

.mobile-menu .nav-logo img {
  max-width: 200px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.90);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;

  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  width: 100%;
  visibility: visible;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);


}

.mobile-menu .menu-box {
  position: absolute;
  right: -400px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: 0px 0px;
  z-index: 5;
  border-radius: 0px;

  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
  right: 0px;
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  font-size: 14px;
  color: #202020;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-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);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.mobile-menu .close-btn:hover {
  opacity: 0.50;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.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.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 15px;
  color: #404040;
  text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
  color: #111111;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #404040;
  cursor: pointer;
  z-index: 5;
}

.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.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
  display: none;
}

.mobile-menu .navigation li>ul>li>a {
  padding-left: 30px;
}

.mobile-menu .navigation li>ul>li>ul {
  padding-left: 0px;
}

.mobile-menu .navigation li>ul>li>ul>li>a {
  padding-left: 40px;
}

.main-header .mobile-menu .close-btn:hover {
  opacity: 0.50;
}

.main-header .mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li>ul>li:last-child {
  border-bottom: none;
}

.main-header .mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: var(--font-16);
  color: var(--dark-color);
  text-transform: capitalize;
}

.main-header .mobile-menu .navigation li:hover>a,
.main-header .mobile-menu .navigation li.current>a {
  color: var(--dark-text-color-two);
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  color: var(--dark-color);
  font-size: var(--font-16);
  line-height: 44px;
  cursor: pointer;
  z-index: 5;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li>ul,
.main-header .mobile-menu .navigation li>ul>li>ul {
  display: none;
}

.main-header .sticky-header .navbar-header {
  display: none;
}

.main-header .outer-box {
  position: relative;
  float: right;
  padding: 37px 0px;
  margin-left: var(--margin-left-35);
}

/* Search Box Outer */

.main-header .search-box-outer {
  position: relative;
  float: left;
  border-right: 1px solid #999999;
  margin-right: var(--margin-right-20);
  padding-right: var(--padding-right-20);
}

.main-header .search-box-btn {
  position: relative;
  top: 0px;
  display: block;
  float: left;
  font-size: var(--font-20);
  color: var(--main-color-two);
  line-height: 20px !important;
  cursor: pointer;
  background: none;
  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-header .outer-box .nav-btn {
  position: relative;
  float: left;
  cursor: pointer;
  line-height: 1em;
  font-size: var(--font-22);
  color: var(--main-color-two);
  margin-left: var(--margin-left-35);
  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-header .outer-box .nav-btn:hover,
.main-header .outer-box .search-box-btn:hover {
  color: var(--main-color);
}

/* Cart Box */

.main-header .cart-box {
  position: relative;
  float: left;
  line-height: 1em;
  background: none;
  padding-top: 3px;
  display: inline-block;
  color: var(--main-color);
  font-size: var(--font-16);
}

.main-header .cart-box .cart-box-btn {
  background: none;
  cursor: pointer;
  color: var(--main-color);
  font-size: var(--font-24);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.main-header .cart-box .cart-box-btn:after {
  display: none;
}

.main-header .cart-box .cart-box-btn .total-cart {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 18px;
  height: 18px;
  color: var(--white-color);
  font-size: var(--font-10);
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  background-color: var(--dark-color-two);
}

.main-header .cart-product {
  position: relative;
  margin-bottom: var(--margin-bottom-20);
  min-height: 90px;
  border-bottom: 1px solid #e4e4e4;
}

.main-header .cart-product .inner {
  position: relative;
  padding-left: var(--padding-left-90);
  min-height: 70px;
}

.main-header .cart-product .inner .cross-icon {
  position: absolute;
  right: 0px;
  top: -2px;
  z-index: 1;
  cursor: pointer;
  color: var(--dark-color);
  font-size: var(--font-18);
  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-header .cart-product .inner .cross-icon:hover {
  color: var(--main-color);
}

.main-header .cart-product .inner .image {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 0px;
  top: 0px;
}

.main-header .cart-product .inner h3 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: var(--font-15);
  margin: var(--margin-zero);
  text-transform: capitalize;
}

.main-header .cart-product .inner h3 a {
  color: var(--dark-color-two);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.main-header .cart-product .inner h3 a:hover {
  color: var(--main-color);
}

.main-header .cart-product .inner .quantity-text {
  position: relative;
  font-weight: 300;
  color: var(--dark-color);
  font-size: var(--font-14);
  margin-top: var(--margin-top-5);
  margin-bottom: var(--margin-zero);
}

.main-header .cart-product .inner .price {
  position: relative;
  font-weight: 700;
  font-size: var(--font-16);
  margin-top: var(--margin-top-5);
  color: var(--dark-color);
}

.main-header .cart-box .cart-panel {
  left: auto !important;
  right: 0px !important;
  border-radius: 0px;
  padding: 20px 20px;
  min-width: 300px;
  margin-top: var(--margin-top-60);
  z-index: -1;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--main-color);
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.main-header .cart-box .cart-panel .cart-total {
  color: var(-dark-color-two);
  font-size: var(--font-15);
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
}

.main-header .cart-box .cart-panel .cart-total span {
  font-weight: 800;
  font-size: var(--font-16);
}

.main-header .cart-box .cart-panel .btns-boxed {
  position: relative;
  text-align: center;
  margin-top: var(--margin-top-20);
}

.main-header .cart-box .cart-panel .btns-boxed li {
  position: relative;
  margin: 0px 5px;
  display: inline-block;
}

.main-header .cart-box .cart-panel .btns-boxed li a {
  position: relative;
  color: var(--white-color);
  font-weight: 500;
  font-size: var(--font-12);
  padding: 10px 20px 8px;
  border-radius: 2px;
  display: inline-block;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  text-transform: uppercase;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.main-header .cart-box .cart-panel .btns-boxed li a:hover {
  color: var(--main-color);
  background: none;
}

.main-header .cart-box .icon a {
  color: var(--main-color);
}

.main-header .button-box {
  position: relative;
  float: left;
  margin-top: -17px;
  margin-left: var(--margin-left-30);
}

.main-header .mobile-menu .menu-box .mCSB_scrollTools {
  width: 3px;
}

@-webkit-keyframes bg-zoom-anim {
  0% {
    background-size: 100% auto;
  }

  100% {
    background-size: 130% auto;
  }
}

@-moz-keyframes bg-zoom-anim {
  0% {
    background-size: 100% auto;
  }

  100% {
    background-size: 130% auto;
  }
}

@-o-keyframes bg-zoom-anim {
  0% {
    background-size: 100% auto;
  }

  100% {
    background-size: 130% auto;
  }
}

@keyframes bg-zoom-anim {
  0% {
    background-size: 100% auto;
  }

  100% {
    background-size: 130% auto;
  }
}

@keyframes section-animation {
  0% {
    width: 0;
  }

  15% {
    width: 100%;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 100%;
    opacity: 0;
  }

  to {
    width: 0;
    opacity: 0;
  }
}

:root {
  /* Font family */
  --unbounded: "Unbounded", sans-serif;
  --catamaran: "Catamaran", sans-serif;
  --stix: "STIX Two Text", serif;
  --movie: "Stalinist One", sans-serif;
  --fontAwesome: "Font Awesome 6 Pro";
  /* Colors variable */
  --white: #ffffff;
  --black: #000000;
  --heading-color: #020626;
  --heading-color-2: #171619;
  --subHeading-color: #0d0c0c;
  --pera-color: #686868;
  --pera-color-2: #4a4c51;
  --pera-color-3: #919191;
  --theme-color: #e10419;
  --base-color: #FF3838;
  --theme-light-color: #ffeef0;
  --theme-light-color-2: #f1b1af;
  --theme-light-color-3: #f8f6f4;
  --dark-color: #141414;
  --dark-color-2: #262420;
  --theme-yellow: #ffa200;
  --grey-eee: #eeeeee;
  --grey-f2f: #f2f2f4;
  --grey-f2f: #f2f2f4;
  --base-gradient: linear-gradient(90deg, #E10419 0%, #8F0815 100%);
  --base-color-3: #ffa200;
  --base-gradient-3: linear-gradient(45deg, #FFA200 0%, #E10419 100%);
  --base-gradient-4: linear-gradient(90deg, #E10419 0%, #8F0815 100%);
  --tna-pr-1: #E10419;
  --tna-pr-2: #E504EE;
  --tna-sd-1: #173FCF;
  --tna-heading-1: #020626;
  --tna-para-1: #686868;
  --tna-gd-1: linear-gradient(90deg, #E10419 0%, #8F0815 100%);
  --tna-gd-2: linear-gradient(90deg, #173FCF 0%, #E504EE 100%);
}

.fix {
  overflow: hidden;
}

.tx-container-fluid {
  max-width: 1830px;
}

.tx-rotate-45 {
  transform: rotate(-45deg);
}

.tx-pd-20 {
  padding: 20px;
}

.tx-pd-30 {
  padding: 30px;
}

.tx-pd-40 {
  padding: 40px;
}

.pl-0 {
  padding-left: 0 !important;
}

.tx-thumb-zoom .thumb-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
}

.tx-thumb-zoom .thumb-wrapper img {
  transition: all 0.4s ease-in-out;
}

.tx-border-all {
  border: 1px solid;
}

.tx-border-top {
  border-top: 1px solid;
}

.tx-border-bottom {
  border-bottom: 1px solid;
}

.tx-border-op-10 {
  border-color: rgba(2, 6, 28, 0.1);
}

.tx-border-theme {
  border-color: var(--theme-color);
}

.tx-radious-20 {
  border-radius: 20px;
}

.tx-radious-25 {
  border-radius: 25px;
}

.tx-radious-25 img {
  border-radius: 25px !important;
}

.tx-radious-50 {
  border-radius: 50%;
}

.tx-radious-50 a {
  border-radius: 50%;
}

.tx-radious-50 img {
  border-radius: 50% !important;
  max-width: 22px;
}

.tx-radious-60 {
  border-radius: 60px !important;
}

.tx-radious-60 img {
  border-radius: 60px !important;
}

.tx-radious-30 {
  border-radius: 30px;
}

.tx-radious-40 {
  border-radius: 40px;
}

.tx-radious-40 img {
  border-radius: 40px !important;
}

.tx-uppercase {
  text-transform: uppercase;
}

.tx-bb2px {
  border-bottom: 2px solid var(--theme-color);
}

.tx-underline {
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.7% 0px;
  background-repeat: no-repeat;
  color: inherit;
  background-size: 100% 2px;
}

.tx-input-field input,
.tx-input-field textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background: var(--theme-light-color-3);
  display: block;
  min-height: 60px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.tx-input-field input::-webkit-input-placeholder,
.tx-input-field textarea::-webkit-input-placeholder {
  color: var(--pera-color);
  opacity: 1;
}

.tx-input-field input::-moz-placeholder,
.tx-input-field textarea::-moz-placeholder {
  color: var(--pera-color);
  opacity: 1;
}

.tx-input-field input:-ms-input-placeholder,
.tx-input-field textarea:-ms-input-placeholder {
  color: var(--pera-color);
  opacity: 1;
}

.tx-input-field input:-moz-placeholder,
.tx-input-field textarea:-moz-placeholder {
  color: var(--pera-color);
  opacity: 1;
}

.tx-input-field input:focus,
.tx-input-field textarea:focus {
  border-color: var(--theme-color);
}

.tx-boxshadow {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
}

.tx-column-gap-55 {
  margin-right: calc(var(--bs-gutter-x) * -1.1);
  margin-left: calc(var(--bs-gutter-x) * -1.1);
}

.tx-column-gap-55>* {
  padding-right: calc(var(--bs-gutter-x) * 1.1);
  padding-left: calc(var(--bs-gutter-x) * 1.1);
}

.tx-column-gap-50 {
  margin-right: calc(var(--bs-gutter-x) * -1);
  margin-left: calc(var(--bs-gutter-x) * -1);
}

.tx-column-gap-50>* {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}

.tx-column-gap-30 {
  margin-right: calc(var(--bs-gutter-x) * -0.6);
  margin-left: calc(var(--bs-gutter-x) * -0.6);
}

.tx-column-gap-30>* {
  padding-right: calc(var(--bs-gutter-x) * 0.6);
  padding-left: calc(var(--bs-gutter-x) * 0.6);
}

.tx-column-gap-35 {
  margin-right: calc(var(--bs-gutter-x) * -0.7);
  margin-left: calc(var(--bs-gutter-x) * -0.7);
}

.tx-column-gap-35>* {
  padding-right: calc(var(--bs-gutter-x) * 0.7);
  padding-left: calc(var(--bs-gutter-x) * 0.7);
}

.tx-column-gap-20 {
  margin-right: calc(var(--bs-gutter-x) * -0.45);
  margin-left: calc(var(--bs-gutter-x) * -0.45);
}

.tx-column-gap-20>* {
  padding-right: calc(var(--bs-gutter-x) * 0.45);
  padding-left: calc(var(--bs-gutter-x) * 0.45);
}

.tx-column-gap-15 {
  margin-right: calc(var(--bs-gutter-x) * -0.35);
  margin-left: calc(var(--bs-gutter-x) * -0.35);
}

.tx-column-gap-15>* {
  padding-right: calc(var(--bs-gutter-x) * 0.35);
  padding-left: calc(var(--bs-gutter-x) * 0.35);
}

.tx-column-gap-10 {
  margin-right: calc(var(--bs-gutter-x) * -0.25);
  margin-left: calc(var(--bs-gutter-x) * -0.25);
}

.tx-column-gap-10>* {
  padding-right: calc(var(--bs-gutter-x) * 0.25);
  padding-left: calc(var(--bs-gutter-x) * 0.25);
}

.border-none {
  border: none !important;
}

.tx-z1 {
  z-index: 1;
}

.tx-fsz-34 {
  font-size: 34px;
}

.tx-outherHoverEffect {
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.tx-outherHoverEffect::after {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.tx-outherHoverEffect:hover::after {
  opacity: 1;
  visibility: visible;
  rotate: 7deg;
}

.mb-none-30 {
  margin-bottom: -30px;
}

.tx-img-animation {
  -webkit-transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.tx-img-animation.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.w-100 img {
  width: 100%;
}

.tx-min-auto .tx-label {
  min-width: auto !important;
}

.hide-widget-title h5 {
  display: none;
}

.tx-map-border iframe {
  border-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

/* reset css start */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--unbounded);
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 26px;
  word-wrap: break-word;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out 0s;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  font-family: var(--unbounded);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}

span {
  font-family: var(--unbounded);
  display: inline-block;
}

button:focus {
  outline: none;
}

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--unbounded);
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

table {
  width: 100%;
}

p,
li {
  color: var(--pera-color);
  margin-bottom: 0;
}

@-moz-document url-prefix() {
  .ta-gd-shape img {
    opacity: 0.2;
  }
}

.tel-footer-section-3 .tel-footer-copyright a,
.tel-footer-section-3 .tel-footer-widget .menu-widget li a:before,
.tel-footer-section-3 .tel-footer-widget .logo-widget .learn_more,
.tel-testimonials-item-3 .testimonial-text .testimonial-author span,
.tel-cta-content-3 .tel-cta-pricing-area .cta-price h3 sub,
.tel-cta-content-3 .tel-cta-pricing-area .cta-price p,
.tel-pricing-item-3 .tel-price-text h2 sub,
.tel-pricing-item-3 .tel-price-text span,
.tel-about-text-area-3 .tel-about-feature-list li:before,
.tel-about-text-area-3 .tel-slide-video-btn a i,
.tel-service-content-4 .tel-bottom-text a,
.tel-main-slider-item-3 .tel-main-slider-text-3 .tel-slider-btn-group .tel-slider-video-btn .inner-icon i,
.tel-main-slider-item-3 .tel-main-slider-text-3 h1 span,
.tel-main-slider-item-3 .tel-main-slider-text-3 .slider-slug,
.header_style_five .tx-main-menu ul li:hover a,
.header_style_six .tx-main-menu ul li:hover a,
.header_style_five .mobile_menu_button,
.header_style_six .mobile_menu_button,
.tel-section-title-4 h2 span,
.tel-section-title-4 .sub-title span {
  background: var(--base-gradient-3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  -webkit-animation: gradient_animation 3s ease infinite;
  animation: gradient_animation 3s ease infinite;
}

#tel-slider-4 .bg_image {
  z-index: 1;
  background: transparent;
}

.tel-demo-3 {
  color: #686868;
  font-size: 17px;
  background-color: #fff;
}

.tel-demo-3 .container {
  max-width: 1320px;
}

.tel-demo-3 [data-background] {
  background-color: transparent !important;
}

.tel-section-title-4 .sub-title {
  padding-left: 35px;
  display: inline-block;
}

.tel-section-title-4 .sub-title span {
  font-weight: 500;
  position: relative;
}

.tel-section-title-4 .sub-title:before {
  left: 0;
  top: -2px;
  width: 30px;
  content: "";
  height: 30px;
  position: absolute;
}

.tel-section-title-4 h2 {
  color: #020626;
  font-size: 50px;
  font-weight: 600;
}

.tel-section-title-4 p {
  padding-top: 25px;
}

.tel-btn-3 a {
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 17px 32px;
  display: inline-block;
}

.tel-btn-3 a i {
  margin-left: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tel-btn-3 a:before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: -1;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  background: var(--base-gradient-3);
  -webkit-transform: skew(13deg);
  transform: skew(13deg);
  -webkit-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  background: -webkit-gradient(linear, left top, right top, from(#FFA200), color-stop(50%, #E10419), to(#FFA200));
  background: linear-gradient(90deg, #FFA200 0%, #E10419 50%, #FFA200);
  background-size: 200%, 1px;
}

.tel-btn-3 a:hover i {
  margin-left: 15px;
}

.tel-btn-3 a:hover:before {
  background-position: 120%;
}


.theme-telnet .woosw-btn {
  display: none !important;
}

.theme-telnet .tx-wishlistButton .woosw-btn {
  display: inline-block !important;
}

.tx-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.tx-overlay.is-open {
  opacity: 0.5;
  visibility: visible;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-none-25 {
  margin-bottom: -25px;
}

@media (max-width: 575px) {
  .ssm-mt-20 {
    margin-top: 20px !important;
  }
}

@media (max-width: 1199px) {
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }

  .mt-lg-60 {
    margin-top: 60px !important;
  }
}

/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.4;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* typography css end */
.bg-white {
  background: var(--white);
}

.theme-bg {
  background: var(--theme-color);
}

.tx-white {
  color: var(--white);
}

[data-background] {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
}

.tx-dark-bg {
  background: var(--dark-color);
}

/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*-- Overlay Color --*/
[data-overlay=light]::before {
  background-color: var(--white);
}

[data-overlay=dark]::before {
  background-color: var(--black);
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="65"]::before {
  opacity: 0.65;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

.ta-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
  opacity: 0;
}

.ta-overlay.is-open {
  opacity: 0.4;
  visibility: visible;
}

.ta-overlay__dark {
  background: #131121;
}

.ta-overlay__dark.is-open {
  opacity: 0.8;
}

/* DEFAULT HEADER CSS START */

.tx-header {
  width: 100%;
  z-index: 2;
}

.tx-header__styleDefault .tx-wrapper {
  z-index: 2;
}

@media (max-width: 1599px) {
  .tx-header__styleDefault .tx-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 1199px) {
  .tx-header__styleDefault .tx-wrapper {
    padding: 10px 20px;
  }
}

@media (max-width: 475px) {
  .tx-header__styleDefault .tx-wrapper {
    padding: 10px 15px;
  }
}

.tx-header__styleDefault .tx-wrapper::before,
.tx-header__styleDefault .tx-wrapper::after {
  z-index: -1;
}

.tx-header__styleDefault .tx-wrapper::before {
  border-top-left-radius: 42px;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  max-width: 1195px;
  border-top-right-radius: 115px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1599px) {
  .tx-header__styleDefault .tx-wrapper::before {
    max-width: 890px;
  }
}

@media (max-width: 767px) {
  .tx-header__styleDefault .tx-wrapper::before {
    max-width: 45%;
  }
}

@media (max-width: 475px) {
  .tx-header__styleDefault .tx-wrapper::before {
    max-width: 60%;
  }
}

.tx-header__styleDefault .tx-wrapper::after {
  border-top-right-radius: 28px;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  max-width: 690px;
  left: auto;
  right: 0px;
  border-top-left-radius: 115px;
}

@media (max-width: 1599px) {
  .tx-header__styleDefault .tx-wrapper::after {
    max-width: 580px;
  }
}

@media (max-width: 1399px) {
  .tx-header__styleDefault .tx-wrapper::after {
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .tx-header__styleDefault .tx-wrapper::after {
    max-width: 65%;
  }
}

@media (max-width: 475px) {
  .tx-header__styleDefault .tx-wrapper::after {
    max-width: 50%;
  }
}

@media (max-width: 1599px) {
  .tx-header__styleDefault .tx-contact-info {
    padding-right: 80px;
  }
}

@media (max-width: 1599px) {
  .tx-header__styleDefault .tx-contact-info {
    padding-right: 45px;
  }
}

@media (max-width: 1815px) {
  .tx-header__styleDefault .tx-logo-wrapper {
    margin-right: 50px;
  }
}

.tx-header__styleDefault .tx-sideInfo-btn span {
  background: var(--white);
}

@media (max-width: 475px) {
  .tx-header__styleDefault .tx-logo img {
    max-width: 100px !important;
  }
}

.tx-header__styleTwo .tx-listItems {
  gap: 35px;
}

@media (max-width: 1199px) {
  .tx-header__styleTwo .tx-listItems {
    gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 475px) {
  .tx-header__styleTwo .tx-listItems {
    flex-wrap: wrap;
    gap: 5px;
  }
}

.tx-header__styleTwo .tx-listItems li {
  font-size: 12px;
  gap: 7px;
}

.tx-header__styleTwo .tx-listItems .tx-icon {
  color: var(--theme-color);
  background: var(--white);
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.tx-header__styleTwo .tx-listItems p {
  color: var(--white);
}

.tx-header__styleTwo .tx-listItems a:hover {
  color: var(--white);
}

.tx-header__styleTwo .tx-topWrapper {
  background: var(--theme-color);
  padding: 11px 35px;
  border-radius: 40px;
  margin: 10px 0 -20px 0;
}

@media (max-width: 1199px) {
  .tx-header__styleTwo .tx-topWrapper {
    padding: 11px 25px;
  }
}

.tx-header__styleTwo .tx-social-links {
  gap: 30px;
}

.tx-header__styleTwo .tx-social-links a {
  color: var(--white);
}

.tx-header__styleTwo .tx-bottomWrapper {
  background: var(--white);
  border-radius: 80px;
  padding: 0px 60px;
}

@media (max-width: 1199px) {
  .tx-header__styleTwo .tx-bottomWrapper {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .tx-header__styleTwo .tx-bottomWrapper {
    padding-top: 30px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tx-header__styleTwo .tx-lines {
  flex-direction: column;
  margin-top: 1px;
  gap: 1px;
}

.tx-header__styleTwo .tx-lines .tx-line {
  width: 100%;
  height: 1px;
  background: var(--white);
}

.tx-header__styleTwo .tx-lines .tx-line__1 {
  width: calc(100% - 200px);
}

.tx-header__styleTwo .tx-lines .tx-line__2 {
  width: calc(100% - 250px);
}

.tx-header__styleTwo .tx-lines .tx-line__3 {
  width: calc(100% - 100px);
}

@media (max-width: 767px) {
  .tx-header__styleTwo .tx-social-links {
    justify-content: center !important;
    margin-top: 15px;
  }
}

.tx-header.no-menu {
  padding-bottom: 20px;
}

.tx-header.no-menu .tx-wrapper::before {
  display: none;
}

.tx-header .tx-menu-wrapper .tx-sideInfo-btn {
  display: none !important;
}

.tx-headerUnit .tx-wrapper::after {
  display: none;
}

.tx-headerUnit .tx-wrapper::before {
  max-width: 100% !important;
}

@media (max-width: 1199px) {
  .tx-headerUnit .tx-wrapper::before {
    border-top-right-radius: 40px;
  }
}

@media (max-width: 1199px) {
  .tx-headerUnit .tx-wraper {
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .tx-headerUnit .tx-menu-wrapper .tx-sideInfo-btn {
    display: flex !important;
  }
}

.tx-headerUnit .tx-menu-wrapper .tx-sideInfo-btn span {
  background: var(--heading-color) !important;
}

.elementor-editor-active .tx-header {
  position: static !important;
}

.elementor-editor-active section {
  margin-bottom: 0px !important;
}

.header-top-content-area {
  z-index: 1;
  overflow: hidden;
  padding: 10px 0px;
  background-color: #FFF6ED;
}

.header-top-content-area:before {
  top: 0;
  width: 42%;
  left: -25px;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background: var(--base-gradient-3);
  -webkit-transform: skew(40deg);
  transform: skew(40deg);
}

.header-top-content-area .top-cta-info {
  color: #fff;
  font-size: 14px;
}

.header-top-content-area .top-cta-info i {
  margin-right: 8px;
}

.header-top-content-area .top-cta-social span {
  color: #020626;
  font-size: 14px;
  margin-right: 5px;
}

.header-top-content-area .top-cta-social a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  margin-left: 13px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--base-color-3);
  border: 1px solid var(--base-color-3);
}

.header-top-content-area .top-cta-social a:hover {
  color: #fff;
  background: var(--base-color-3);
}

.header_style_five,
.header_style_six {
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  position: absolute;
}

.header_style_five.sticky-on,
.header_style_six.sticky-on {
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
  position: fixed;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #17192c;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.header_style_five.sticky-on .header-top-content-area,
.header_style_six.sticky-on .header-top-content-area {
  display: none;
}

.header_style_five .mobile_menu_button,
.header_style_six .mobile_menu_button {
  position: static;
}

.header_style_five .tel-header-content-area,
.header_style_six .tel-header-content-area {
  background: #fff;
}

.header_style_five .tx-main-menu ul li a::before,
.header_style_six .tx-main-menu ul li a::before {
  background: var(--base-gradient-3);
}

.header_style_five .tx-main-menu ul li .sub-menu a,
.header_style_six .tx-main-menu ul li .sub-menu a {
  color: #020626;
  -webkit-text-fill-color: #020626;
  background: unset;
}

.header_style_five .tx-main-menu ul li .sub-menu a:before,
.header_style_six .tx-main-menu ul li .sub-menu a:before {
  background: transparent;
}

.header_style_five .tx-header-cta .inner-icon,
.header_style_six .tx-header-cta .inner-icon {
  color: #fff;
  width: 54px;
  height: 54px;
  margin-right: 15px;
  border-radius: 100%;
  background: var(--base-gradient-3);
}

.header_style_five .tx-header-cta .inner-text span,
.header_style_five .tx-header-cta .inner-text a,
.header_style_six .tx-header-cta .inner-text span,
.header_style_six .tx-header-cta .inner-text a {
  display: block;
}

.header_style_five .tx-header-cta .inner-text span,
.header_style_six .tx-header-cta .inner-text span {
  color: #020626;
  font-size: 12px;
}

.header_style_five .tx-header-cta .inner-text a,
.header_style_six .tx-header-cta .inner-text a {
  color: #020626;
  font-size: 16px;
  font-weight: 700;
}

.header_style_six .header-top-content-area {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#E10419), to(#8F0815));
  background: linear-gradient(90deg, #E10419 0%, #8F0815 100%);
}

.header_style_six .header-top-content-area:before {
  display: none;
}

.header_style_six .header-top-content-area .top-cta-social span {
  color: #fff;
}

.header_style_six .header-top-content-area .top-cta-social a {
  color: #fff;
  border: 1px solid #fff;
}

.header_style_six .header-top-content-area .top-cta-social a:hover {
  background-color: #fff;
  color: var(--theme-color);
}

.header_style_six .tel-header-content-area {
  z-index: 1;
  background-color: #020626;
}

.header_style_six .tel-header-content-area:before {
  top: 0;
  width: 33%;
  content: "";
  left: -100px;
  height: 100%;
  position: absolute;
  background-color: #fff;
  -webkit-transform: skewX(-40deg);
  transform: skewX(-40deg);
}

.header_style_six .tel-header-content {
  z-index: 1;
  position: relative;
}

.header_style_six .tx-main-menu ul .menu-item-has-children>a::after {
  color: #fff;
}

.header_style_six .tx-main-menu ul li a {
  color: #fff;
}

.header_style_six .tx-main-menu ul li a:before {
  background: var(--base-gradient-4);
}

.header_style_six .tx-main-menu ul li:hover a {
  background: var(--base-gradient-4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  -webkit-animation: gradient_animation 3s ease infinite;
  animation: gradient_animation 3s ease infinite;
}

.header_style_six .tx-main-menu ul li:hover .sub-menu a {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #020626;
  background-size: 200% 100%;
  -webkit-animation: gradient_animation 3s ease infinite;
  animation: gradient_animation 3s ease infinite;
  background: unset;
}

.header_style_six .tx-header-cta .inner-icon {
  background: var(--base-gradient-4);
}

.header_style_six .tx-header-cta .inner-text span,
.header_style_six .tx-header-cta .inner-text a {
  color: #fff;
}

.header_style_six .tx-search-btn,
.header_style_six .tx-cart-btn {
  color: #fff;
}

.header_style_six.sticky-on .tx-header-cta {
  display: none !important;
}

/* Navigation css start */
.tx-main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tx-main-menu ul li {
  position: relative;
}

.tx-main-menu ul li:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 1815px) {
  .tx-main-menu ul li:not(:last-child) {
    margin-right: 30px;
  }
}

@media (max-width: 1599px) {
  .tx-main-menu ul li:not(:last-child) {
    margin-right: 25px;
  }
}

@media (max-width: 1399px) {
  .tx-main-menu ul li:not(:last-child) {
    margin-right: 22px;
  }
}

.tx-main-menu ul li a {
  display: block;
  text-decoration: none;
  color: var(--heading-color);
  padding: 41px 0px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 1399px) {
  .tx-main-menu ul li a {
    font-size: 14px;
  }
}

.tx-main-menu ul li a::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  height: 10px;
  width: 10px;
  top: auto;
  background: var(--theme-color);
  border-radius: 50%;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tx-main-menu ul li.current-menu-item:not(.menu-item-object-custom)>a,
.tx-main-menu ul li:hover>a {
  color: var(--theme-color);
}

.tx-main-menu ul ul li.current-menu-item:not(.menu-item-object-custom)>a {
  padding-left: 20px !important;
}

.tx-main-menu ul li.current-menu-item:not(.menu-item-object-custom)>a::before,
.tx-main-menu ul li:hover>a::before {
  opacity: 1;
  visibility: visible;
  bottom: 26px;
}

.tx-main-menu ul li.current-menu-item:not(.menu-item-object-custom)>a,
.tx-main-menu ul li:hover>a {
  color: var(--theme-color);
}

.tx-main-menu ul li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  transform: scaleY(100%);
}

.tx-main-menu ul li:hover>.sub-menu li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+6) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+7) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+8) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+9) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.tx-main-menu ul li:hover>.sub-menu li:nth-child(2n+10) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.5s;
}

.tx-main-menu ul li .sub-menu {
  left: 0%;
  position: absolute;
  min-width: 250px;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  padding: 25px 0px;
  padding-bottom: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
  text-align: left;
  transform-origin: 50% 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  justify-content: flex-start;
  background: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tx-main-menu ul li .sub-menu li {
  transform: translateY(5px);
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
  transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
  opacity: 0;
  visibility: hidden;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-right: 0px;
}

.tx-main-menu ul li .sub-menu li::before,
.tx-main-menu ul li .sub-menu li::after {
  display: none;
}

.tx-main-menu ul li .sub-menu li:not(:last-child) {
  margin-bottom: 13px;
}

.tx-main-menu ul li .sub-menu li a {
  display: block;
  padding: 0px;
  line-height: 25px;
  font-weight: 500;
  color: var(--heading-color);
}

.tx-main-menu ul li .sub-menu li a::before {
  position: absolute;
  left: 0px;
  top: 2px;
  rotate: 45deg;
  background-color: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "\f061";
  font-weight: 800;
  font-family: "Font Awesome 5 Free";
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.tx-main-menu ul li .sub-menu li:hover>a {
  padding-left: 20px;
  color: var(--theme-color);
}

.tx-main-menu ul li .sub-menu li:hover>a::before {
  opacity: 1;
  visibility: visible;
}

.tx-main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.tx-main-menu ul .menu-item-has-children>a::after {
  content: "\f054";
  font-weight: 800;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding-left: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 1000;
  font-size: 12px;
  transition: all 0.4s linear;
  color: var(--heading-color);
  width: auto;
  height: auto;
  transform: rotate(0deg);
  /* Initial rotation */
}

.tx-main-menu ul .menu-item-has-children:hover>a::after {
  transform: rotate(90deg);
  color: #e10419;
}



.tx-main-menu ul .menu-item-has-children .menu-item-has-children a::after {
  display: none;
}

.tx-main-menu ul .menu-item-has-children .menu-item-has-children::after {
  content: "\f054";
  font-weight: 800;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding-left: 5px;
  transition: all 0.4s linear;
  color: var(--heading-color);
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: auto;
  right: 30px;
  font-weight: 600;
}


.tx-infoText p a {
  color: var(--theme-color);
  font-weight: 500;
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 100% 2px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.2% 0px;
  background-repeat: no-repeat;
}


/* INFO TEXT CSS END */
/* IMAGE BOX CSS START */
.tx-imageBox {
  position: relative;
}

.tx-imageBox__styleOne .tx-thumb img {
  width: 100%;
}

.tx-imageBox__styleTwo .tx-thumbSmall {
  bottom: 45px;
  right: 25px;
}

.tx-imageBox__styleThree .tx-thumbSmall {
  top: -60px;
  right: 0px;
}

.tx-imageBox__styleFour::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 30px;
  width: calc(100% - 5px);
}

.tx-imageBox__styleFour .tx-thumb img {
  border-radius: 30px 30px 30px 150px;
  width: 100%;
}

.tx-imageBox__styleFour .tx-content p {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.tx-imageBox__styleFour .tx-round-btn {
  width: 70px;
  height: 70px;
  background: var(--theme-yellow);
  font-size: 22px;
}

.tx-imageBox__styleFour .tx-round-btn:hover {
  background: var(--heading-color);
}

.tx-imageBox__styleFive::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 30px;
  width: calc(100% - 5px);
}

.tx-imageBox__styleFive .tx-cercleBadge {
  top: 20px;
  left: 20px;
  width: 95px;
  height: 95px;
  z-index: 2;
}

.tx-imageBox__styleFive .tx-cercleBadge::before {
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  opacity: 1;
  left: -8px;
  top: -8px;
  opacity: 0.5;
}

.tx-imageBox__styleFive .tx-thumb img {
  border-radius: 160px 30px 30px 30px;
}

.tx-imageBox__styleSix .tx-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.tx-imageBox__styleSix .tx-innerWrapper {
  width: calc(50% - 7.5px);
}

.tx-imageBox__styleSeven .tx-thumb__1 img {
  border-radius: 40px;
}

.tx-imageBox__styleSeven .tx-thumb__2 {
  bottom: -40px;
  width: 50%;
  text-align: left;
}

.tx-imageBox__styleSeven .tx-thumb__3 {
  bottom: -40px;
  width: 50%;
  text-align: right;
}

.tx-imageBox .tx-discountBox {
  top: 80px;
  right: 90px;
  background-size: contain;
  width: 125px;
  height: 100px;
  background-color: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  color: var(--heading-color);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

@media (max-width: 767px) {
  .tx-imageBox .tx-discountBox {
    right: 0px;
  }
}

.tx-imageBox .tx-discountBox span {
  font-size: 15px;
  display: block;
  color: var(--heading-color);
  text-transform: uppercase;
}

/* IMAGE BOX CSS END */
/* LIST ITEMS CSS START */
.tx-listItems {
  padding-left: 0px;
  margin-bottom: 0px;
}

.tx-listItems .tx-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tx-listItems li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.tx-listItems li a:hover {
  color: var(--theme-color);
}

.tx-listItems__styleOne li {
  gap: 7px;
}

.tx-listItems__styleOne li:not(:last-child) {
  margin-bottom: 10px;
}

.tx-listItems__styleOne .tx-icon {
  background: var(--theme-color);
  width: 15px;
  height: 15px;
  font-size: 8px;
  color: var(--white);
  border-radius: 50%;
}

.tx-listItems__styleOne .tx-text {
  color: var(--white);
}

.tx-listItems__styleTwo li {
  color: var(--heading-color);
  gap: 15px;
}

.tx-listItems__styleTwo li .tx-icon {
  width: 45px;
  font-size: 45px;
  color: var(--theme-color);
}

.tx-listItems__styleTwo li .tx-content {
  width: calc(100% - 60px);
}

.tx-listItems__styleTwo li .tx-title {
  font-size: 17px;
  font-weight: 700;
}

.tx-listItems__styleThree li {
  font-size: 17px;
  gap: 15px;
}

.tx-listItems__styleThree li .tx-icon {
  width: 55px;
  height: 55px;
  background: #38368a;
  color: var(--theme-color);
  border-radius: 50%;
  font-size: 25px;
}

.tx-listItems__styleThree li p,
.tx-listItems__styleThree li .tx-text {
  color: var(--white);
  font-weight: 500;
  font-family: "Unbounded", sans-serif;
}

.tx-listItems__styleFour li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-eee);
}

.tx-listItems__styleFour .tx-count {
  color: var(--pera-color);
  margin-right: 10px;
  font-weight: 600;
}

.tx-listItems__styleFour p {
  color: var(--heading-color);
  font-weight: 600;
}

.tx-listItems__styleInfoList li:not(:last-child) {
  margin-bottom: 15px;
}

.tx-listItems__styleInfoList .tx-label {
  font-weight: 500;
  font-size: 17px;
  color: var(--heading-color);
  min-width: 120px;
  margin-right: 10px;
}

.tx-listItems__styleInfoList .tx-text {
  color: var(--pera-color);
}


span.elementor-edit-link-title {
  display: inline !important;
}

.admin-bar .main-header .sticky-header,
.admin-bar .is-open,
.admin-bar .search-popup-wrapper,
.admin-bar .tx-sideInfoWrapper,
.admin-bar .tx-header__default {
  top: 32px;
}

.tx-halfBg::after {
  position: absolute;
  background: #f5f7fa;
  top: 0;
  left: 0px;
  width: 100%;
  height: 64%;
  content: "";
  z-index: -1;
}

.title-none .elementor-icon-box-title {
  display: none;
}

.form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.news-one .news-block_one:nth-child(1) .news-block_one-inner::before {
  display: none;
  border-top: 1px solid #ffffff3d;
}

.news-one .news-block_one:nth-child(1) .news-block_one-inner {
  border-top: 1px solid #ffffff6b;
}

.tna-cta-1-form .wpcf7-form-control-wrap {
  width: 100%;
}

.tna-header-2 ul li .sub-menu {
  padding: 15px 10px !important;
}

.tna-header-1-area:is(.main-header) .main-menu .navigation>li>ul li>a {
  padding: 10px 18px;
}

.tna-header-1-area:is(.main-header) .main-menu .navigation>li>ul li>a::before {
  top: 50%;
  transform: translateY(-50%);
}

.main-header .main-menu .navigation>li>ul>li.dropdown>a:after {
  top: 50%;
  transform: translateY(-50%);
  color: #000 !important;
  opacity: 1;
  visibility: visible;
}

.tna-header-2 ul li .sub-menu .sub-menu {
  top: 0% !important;
}

.flat_3 .flaticon-right-arrow::before {
  content: "\f109";
  font-family: flaticon_tna-icon !important;
}

.flat_3 .flaticon-right::before {
  content: "\f147" !important;
  font-family: flaticon_tna-icon !important;
}

.tx-formWrapper__styleOne .nice-select {
  padding: 0 20px;
  padding-right: 60px;
}

.header_style_four .tx-sideInfo-btn span {
  background: #fff;
}

/* box layout css */
@media (max-width: 1440px) {
  .tx-header__styleDefault .tx-logo-wrapper {
    margin-right: 0px;
  }

  .tx-header__styleDefault .tx-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tx-header__styleDefault .tx-contact-info {
    padding-right: 20px;
  }

  .tx-header__styleDefault .tx-wrapper::after {
    max-width: 515px;
  }

  .tx-header__styleDefault .tx-wrapper::before {
    max-width: 950px;
  }

  .tx-header__styleDefault .tx-wraper.d-flex {
    justify-content: space-between;
  }

  .tel-main-slider-item .tel-main-slider-text .tel-slider-video-area h2,
  .tel-main-slider-item .tel-main-slider-text h1 {
    font-size: 60px;
  }

  .tel-main-slider-item .slider-side-img1 {
    right: -80px;
  }

  .tel-slide-video-btn {
    width: 250px;
  }

  .tel-main-slider-item .tel-main-slider-text .slider-pricing-btn-area .slider-pricing {
    margin-right: 20px;
  }

  .bg-size .elementor-background-overlay {
    background-size: 40% !important;
  }
}


.tx-sideInfo-btn {
  gap: 5px;
}

.tx-sideInfo-btn span,
.tx-header__styleDefault.header_style_five .tx-sideInfo-btn span {
  width: 25px;
  height: 2px;
  background: var(--heading-color);
}

.tx-sideInfoWrapper {
  background: #fff;
  width: 450px;
  padding: 40px;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  overflow-y: auto;
  z-index: 99;
  -webkit-transform: translateX(450px);
  -ms-transform: translateX(450px);
  transform: translateX(450px);
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

@media (max-width: 475px) {
  .tx-sideInfoWrapper {
    width: 310px;
    -webkit-transform: translateX(310px);
    -ms-transform: translateX(310px);
    transform: translateX(310px);
    padding: 20px;
  }
}

.tx-sideInfoWrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.tx-sideInfoWrapper .tx-close-btn {
  width: 35px;
  height: 35px;
  color: #E10718;
  border: 2px solid #E10718;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transform: rotate(45deg);
  border-radius: 50%;
  font-weight: 300;
}

.tx-sideInfoWrapper .tx-close-btn:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}


.tx-sideInfoWrapper .tx-innerWrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: inherit;
  gap: 15px;
}

.tx-sideInfoWrapper .tx-thumb {
  width: 70px;
}

.tx-sideInfoWrapper .tx-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  margin: 0px !important;
}

.tx-sideInfoWrapper .tx-content {
  position: relative;
  width: calc(100% - 85px);
}

.tx-sideInfoWrapper .tx-productTitle {
  font-size: 14px;
}

.tx-sideInfoWrapper .tx-productTitle a {
  color: var(--white);
  font-weight: 500;
}

.tx-sideInfoWrapper .tx-miniCart-remove {
  position: absolute;
  right: 0px;
  top: 0px;
}

.tx-sideInfoWrapper .tx-productPrice {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}

.tx-sideInfoWrapper .tx-productPrice span {
  color: var(--white);
}

.tx-sideInfoWrapper__styleLight {
  background: var(--white);
}

.tx-sideInfoWrapper__styleLight .tx-productPrice {
  color: var(--heading-color);
}

.tx-sideInfoWrapper__styleLight .tx-productPrice span {
  color: var(--heading-color);
}

.tx-sideInfoWrapper__styleLight .tx-productTitle a {
  color: var(--heading-color);
}

.tx-sideInfoWrapper__styleLight .tx-close-btn {
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
  font-size: 18px;
  font-weight: 500;
}

.tx-sideInfoWrapper__styleLight .top-wrapper {
  border-bottom: 1px solid rgba(2, 6, 28, 0.1);
}

.tx-sideInfoWrapper .tx-cart-count {
  position: static;
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.tx-sideInfoWrapper .tx-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}



@media (min-width: 1300px) {
  body.tx-boxed-layout {
    background-color: #f4f4f4;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .tx-boxed-layout .inner-wrapper {
    max-width: 1300px;
    margin: 0 auto;
  }

  .tx-boxed-layout .tx-container-fluid {
    padding: 0;
  }

  .tx-boxed-layout .tx-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1260px) {
  .tx-main-menu ul li:not(:last-child) {
    margin-right: 16px;
  }

  .tx-header__styleDefault .tx-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .tna-header-2 .nav-outer {
    justify-content: center;
  }

  .tna-header-2 .inner-container {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .tna-tranfer-header {
    position: absolute;
  }

  .tna-header-3 .nav-outer {
    justify-content: flex-end;
    padding-right: 20px;
  }

  .main-header.header-style-eight .mobile-nav-toggler {
    display: block;
    cursor: pointer;
    margin-left: 25px;
    font-size: 24px;
  }

  .tna-header-2 .inner-container {
    padding-top: 20px !important;
    padding-bottom: 19px !important;
  }

  .tna-header-3 .logo {
    padding: 25px 0;
  }
}

@media (max-width: 991px) {
  .tx-hero-slider__styleOne .tx-slideNav div {
    width: 50px;
    position: static;
    opacity: 1;
    visibility: visible;
    background: var(--theme-color);
    height: 50px;
    font-size: 16px;
  }

  .tx-hero-slider__styleOne .tx-slideNav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .tx-hero-slider__styleOne .tx-slidePagination__styleMiddle {
    bottom: 100px !important;
  }

  .tx-hero-slider__styleOne {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .tx-hero-slider__styleOne .tx-slideItem {
    background-size: cover !important;
  }

  .tna-header-2 .inner-container {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .tna-header-3 .logo {
    padding: 25px 0;
  }
}

@media (max-width: 782px) {

  .admin-bar .main-header .sticky-header,
  .admin-bar .is-open,
  .admin-bar .search-popup-wrapper,
  .admin-bar .tx-sideInfoWrapper,
  .admin-bar .tx-header__default {
    top: 46px;
  }
}

@media (max-width: 600px) {

  .admin-bar .main-header .sticky-header,
  .admin-bar .is-open,
  .admin-bar .search-popup-wrapper,
  .admin-bar .tx-sideInfoWrapper,
  .admin-bar .tx-header__default {
    top: 0p
  }

  .admin-bar .is-open {
    padding-top: 60px;
  }
}

.single-tf-header .tx-footer,
.single-tf-footer .tx-footer {
  display: none;
}

.single-tf-header .tx-header {
  position: static !important;
}

@media (max-width: 575px) {
  .tx-testimonial__styleTwo .tx-content {
    width: 100%;
  }
}

.btn:hover {
  background-color: #000;
}

.loginbtn {
  background-color: #e10419;
  padding: 7px 16px !important;
  margin-top: 30px;
  border-radius: 8px;
  color: white !important;
  letter-spacing: 3px;
  font-size: 14px !important;
}

.loginbtn:hover {
  background-color: #000;
}