/*
@File: Barxa HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default CSS Style 
** - Section Title Style
** - Navbar Area Style
** - Banner Area CSS Style
** - Inner Banner CSS Style
** - About Area CSS Style
** - Feature Area CSS Style
** - Team Area CSS Style
** - Best Seller Area Style
** - New Collection Area CSS Style
** - Video Area CSS Style
** - Top Branded Area CSS Style
** - Best Sellers Product Area CSS Style
** - Product Banner Area CSS Style
** - Cart Wraps Area CSS Style
** - Checkout Area Style
** - Customer Services Area CSS Style
** - Account Area CSS Style
** - Featured Products Area CSS Style
** - Product Details Area CSS Style
** - Facility Area CSS Style
** - Beauty Area CSS Style
** - Testimonials Area Style
** - Cosmetic Area CSS Style
** - Blog Area CSS Style
** - Blog Details Area CSS Style
** - Contact Area Style
** - Pricing Plane Area Style
** - Faq Area Style
** - Coming Soon Area Style
** - Newsletter Area Widget Style
** - Footer Area Style
** - Modal CSS Style
** - Go Top Area Style
** - Other Area Style

*******************************************
/*

/*================================================
Default CSS
=================================================*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
:root {
  --bodyFonts: 'Jost', sans-serif;
  --headerFonts: 'PT Sans Narrow', sans-serif;
  --theme-color: #ec3323;
  --titleColor: #000000;
  --color-dark: #111111;
  --bodyColor: #555555;
  --optionalColor: #104B5D;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
}

p {
  color: var(--bodyColor);
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

button {
  outline: 0;
}

button:focus {
  outline: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--titleColor);
  line-height: 1.4;
}

h3 {
  font-size: 23px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.py-120 {
  padding:120px 0;
}

.pt-150 {
  padding-top: 150px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.box-shadow {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
/*====================
8. Theme button
======================*/

.theme-btn {
  font-size: 16px;
  color: var(--whiteColor);
  padding: 12px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background:  var(--color-dark);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--whiteColor);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--whiteColor);
  color: var(--theme-color);
}

.theme-btn2::before{
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--whiteColor);
}

.daihatsu-btn{
	color: #fff;
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: var(--theme-color);
	position: relative;
	margin: 1em;
	display: inline-block;
	padding: 8px 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.daihatsu-btn:before,
.daihatsu-btn:after,
.daihatsu-theme-btn:before,
.daihatsu-theme-btn:after {
	content: '';
	display: block;
	position: absolute;
	border-color: var(--theme-color);
	box-sizing: border-box;
	border-style: solid;
	width: 1em;
	height: 1em;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.daihatsu-btn:before,
.daihatsu-theme-btn:before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
	z-index: 5;
}

.daihatsu-btn:after,
.daihatsu-theme-btn:after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}

.daihatsu-btn:hover:before,
.daihatsu-btn:hover:after,
.daihatsu-theme-btn:hover:before,
.daihatsu-theme-btn:hover:after {
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	border-color: var(--theme-color)
}

.daihatsu-btn:hover,
.daihatsu-theme-btn:hover {
	color: #fff;
	background-color: var(--theme-color);
	border-color: var(--theme-color)
}

.daihatsu-theme-btn {
	color: var(--theme-color);
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: var(--theme-color);
	position: relative;
  display: inline-block;
	padding: 8px 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	margin: 0;
	
}

.daihatsu-theme-btn:before,
.daihatsu-theme-btn:after {
	content: '';
	display: block;
	position: absolute;
	border-color: var(--theme-color);
	box-sizing: border-box;
	border-style: solid;
	width: 1em;
	height: 1em;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.daihatsu-btn:before,
.daihatsu-theme-btn:before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
	z-index: 5;
}

.daihatsu-btn:after,
.daihatsu-theme-btn:after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}

.daihatsu-theme-btn:hover:before,
.daihatsu-theme-btn:hover:after {
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	border-color: var(--theme-color)
}

.daihatsu-btn:hover,
.daihatsu-theme-btn:hover {
	color: #fff;
	background-color: var(--theme-color);
	border-color: var(--theme-color)
}

/*WA */

.default-wa {
  padding: 12px 30px 10px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: #36b848;
  border: none;
  outline: none;
  font-size: 15px;
}

.default-wa::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: -35%;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background-color: var(--titleColor);
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-wa:hover {
  color: var(--whiteColor);
}

.default-wa:hover::before {
  opacity: 1;
  height: 100%;
  width: 135%;
}

/* TOKPED */

.default-toped {
  padding: 12px 30px 10px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: #42b549;
  border: none;
  outline: none;
  font-size: 15px;
}

.default-toped::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: -35%;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background-color: var(--titleColor);
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-toped:hover {
  color: var(--whiteColor);
}

.default-toped:hover::before {
  opacity: 1;
  height: 100%;
  width: 135%;
}

/* SOPI */

.default-sopi {
  padding: 12px 30px 10px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: #EE4D2D;
  border: none;
  outline: none;
  font-size: 15px;
}

.default-sopi::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: -35%;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background-color: var(--titleColor);
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-sopi:hover {
  color: var(--whiteColor);
}

.default-sopi:hover::before {
  opacity: 1;
  height: 100%;
  width: 135%;
}

.default-btn.two {
  background-color: var(--titleColor);
}

.default-btn.two:hover {
  color: var(--whiteColor);
}

.default-btn.two:hover::before {
  background-color: var(--theme-color);
}

.section-title .section-subtitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.section-title .section-subtitle img {
  display: inline-block;
  margin-right: 10px;
}

.section-title .section-subtitle span {
  color: var(--theme-color);
  display: inline-block;
  position: relative;
  top: 5px;
  font-family: 'Charm', cursive;
  font-size: 25px;
  font-style: italic;
}

.section-title h2 {
  font-size: 37px;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
  margin-bottom: 0;
  font-family: var(--headerFonts);
}

.section-title p {
  padding-top: 15px;
  margin-bottom: 0;
}

.section-bg {
  background-color: #f8f8f8;
}

/*================================
Top Header Area
===================================*/
.top-header {
  background-color: #03569e;
  padding: 5px 0;
}

.header-left ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-left ul li {
  display: inline-block;
  margin-right: 10px;
}

.header-left ul li:last-child {
  margin-right: 0;
}

.header-left ul li a {
  color: var(--whiteColor);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.header-left ul li a:hover {
  color: #fff;
}

.header-right ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-right ul li {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  color: var(--whiteColor);
  margin-right: 35px;
  font-size: 15px;
}

.header-right ul li:last-child {
  margin-right: 0;
}

.header-right ul li i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-size: 20px;
  color: var(--whiteColor);
}

.header-right ul li a {
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.header-right ul li a:hover {
  color: var(--whiteColor);
}

.topheader {
  background-color: var(--theme-color);
  opacity: 0.95;
}

.topheader .modal-dialog {
  width: 100%;
  margin: 0 auto;
}

.topheader .modal-dialog button {
  position: relative;
}

.topheader .modal-dialog .close {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: var(--whiteColor);
  border-radius: 0;
  color: var(--theme-color);
  border: none;
  font-size: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.topheader .modal-dialog .close:hover, .topheader .modal-dialog .close:focus {
  background-color: var(--titleColor);
}

.topheader .modal-content {
  width: 100%;
  background-color: transparent;
  padding: 50px 30px;
}

.topheader .modal-content .modal-social-link {
  margin-bottom: 20px;
}

.topheader .modal-content .modal-social-link ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.topheader .modal-content .modal-social-link ul li {
  display: inline-block;
  margin-right: 10px;
}

.topheader .modal-content .modal-social-link ul li:last-child {
  margin-right: 0;
}

.topheader .modal-content .modal-social-link ul li a {
  color: var(--whiteColor);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.topheader .modal-content .modal-social-link ul li a:hover {
  color: var(--bodyColor);
}

.topheader .modal-content .modal-list {
  margin-bottom: 25px;
}

.topheader .modal-content .modal-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.topheader .modal-content .modal-list ul li {
  display: block;
  padding-left: 30px;
  position: relative;
  color: #e6dddd;
  font-size: 15px;
  margin-bottom: 10px;
}

.topheader .modal-content .modal-list ul li:last-child {
  margin-bottom: 0;
}

.topheader .modal-content .modal-list ul li i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-size: 20px;
  color: var(--whiteColor);
}

.topheader .modal-content .modal-list ul li a {
  color: #e6dddd;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.topheader .modal-content .modal-list ul li a:hover {
  color: var(--titleColor);
}

/*================================
Navbar Area
===================================*/
.desktop-nav {
  background-color: var(--whiteColor);
  padding-top: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar {
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 40px;
}

.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-right: 0;
  padding-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--titleColor);
  position: relative;
  z-index: 1;
  font-family: var(--headerFonts);
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
  text-transform: uppercase;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover i, .desktop-nav .navbar .navbar-nav .nav-item a:focus i, .desktop-nav .navbar .navbar-nav .nav-item a.active i {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
  top: 3px;
  font-size: 18px;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--whiteColor);
  border: none;
  border-top: 2px solid #72ae44;
  border-bottom: 2px solid #72ae44;
  position: absolute;
  visibility: hidden;
  -webkit-transform-origin: top;
          transform-origin: top;
  border-radius: 5px;
  display: block;
  width: 250px;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #f0eeee;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  border: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--titleColor);
  padding: 12px 20px 9px;
  margin: 0;
  font-size: 15px;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  height: 2px;
  background-color: var(--theme-color);
  width: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--theme-color);
  margin-left: 25px;
  padding-left: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  width: 20px;
  opacity: 1;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 11px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
  font-size: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--theme-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.desktop-nav-two .navbar .navbar-nav {
  margin-left: 85px;
  margin-right: auto;
}

.desktop-nav-three .navbar .navbar-nav {
  margin-left: 0;
  margin-right: 0;
}

.navbar-brand-logo .navbar-brand {
  margin: 0 auto;
}

.mobile-responsive-nav {
  display: none;
}


.navbar-area {
  background-color: var(--whiteColor);
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.mobile-nav {
  position: absolute;
  top: 1px;
  right: 50px;
  display: none;
}

.mobile-nav .mobile-other .optional-item {
  margin-right: 10px;
}

.mobile-nav .mobile-other .optional-item:last-child {
  margin-right: 0;
}

.mobile-nav .mobile-other .optional-item .search-btn {
  position: relative;
  top: 6px;
}

.mobile-nav .mobile-other .optional-item .default-btn {
  position: relative;
  top: 4px;
  font-size: 11.5px;
  color: var(--titleColor);
  font-weight: 500;
  background-color: transparent;
  padding: 0;
}

.mobile-nav .mobile-other .optional-item .default-btn::before {
  background-color: transparent;
}

.mobile-nav .mobile-other .optional-item .default-btn:hover {
  color: var(--theme-color);
}

.mobile-nav .mobile-other .optional-item .topheader-btn {
  position: relative;
  top: 4px;
  font-size: 20px;
  color: var(--theme-color);
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 31px;
  text-align: center;
  border: 1px solid #72ae4442;
  border-radius: 3px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-nav .mobile-other .optional-item .topheader-btn:hover {
  background-color: var(--theme-color);
  color: var(--whiteColor);
}





/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-title-tagline i{
  line-height: 0;
  font-size: 21px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 39px;
  color:  var(--color-dark);
  margin-bottom: 0;
}

.site-title span{
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--theme-color);
  width: 90px;
  height: 4px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 6px;
  width: 15px;
  border-radius: 0px;
  background-color: var(--whiteColor);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}



/*====================
22. About css 
======================*/

.about-left {
  position: relative;
}

.about-img img{
  border-radius: 15px;
}

.about-experience{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 0px;
  left: 0px;
  background:  var(--color-dark);
  border-radius: 15px;
  padding: 10px 20px 10px 10px;
  color: var(--whiteColor);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-experience-icon{
  color: var(--whiteColor);
  font-size: 45px;
  width: 70px;
  height: 70px;
  line-height: 68px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 15px;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
  font-weight: 500;
}

.about-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Pro";
  color: var(--theme-color);
}

.about-signature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}

.signature-left {
	width: 190px;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 3px solid #f0f0ff;
}

.signature-right h3 {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #001238;
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-right {
	margin-top: 30px;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 30px;
  }
}




/*====================
28. Choose css 
======================*/

.choose-area{
  position: relative;
  background:  var(--color-dark);
}

.choose-item{
  position: relative;
  background: var(--whiteColor);
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 20px;
  display:flex;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.choose-count{
  position: absolute;
  right: 25px;
  top: 0;
  font-size: 60px;
  font-weight: 800;
  -webkit-text-stroke: 1px var(--theme-color);
  -webkit-text-fill-color: transparent;
  z-index: -1;
}

.choose-item-icon{
  width: 100%;
  line-height: 77px;

  color: var(--whiteColor);
  font-size: 45px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-align: center;
}




.choose-item-info h3{
  margin-bottom: 10px;
  font-size: 18px;
}

.choose-item-info {
    font-size:14px;
}


@media all and (max-width: 991px) {
  .choose-content-wrapper {
    margin-top: 40px;
  }
}







/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

.service-item:hover .keunggulan-icon{
    animation-name: stretch;
    animation-duration: .4s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.me-3 {
  margin-right: 1rem !important;
}

@keyframes stretch {
    0% {
        transform: scale(1);
    }
  
    100% {
        transform: scale(.9);
    }
}



/*================================================
14 - PROMO AREA CSS
==================================================*/

.daihatsu-promo-area {
	position: relative;
	background: url(../img/promo_bg.jpg) no-repeat fixed 0 0/cover;
	z-index: 1;
}

.daihatsu-promo-area:after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
	z-index: -1;
}

.promo-box-left {
	position: relative;
	z-index: 1;
	padding-top: 50px;
}

.promo-box-right {
	padding: 60px 0
}

.promo-box-left:after {
	position: absolute;
	background: var(--theme-color) none repeat scroll 0 0;
	content: "";
	top: 0;
	right: 55%;
	width: 2030px;
	height: 100%;
	-webkit-transform: skewX(45deg);
	transform: skewX(45deg);
	z-index: -1;
}

.promo-box-left:before {
	position: absolute;
	background: #fff none repeat scroll 0 0;
	content: "";
	top: 0;
	right: 43%;
	width: 70px;
	height: 100%;
	-webkit-transform: skewX(45deg);
	transform: skewX(45deg);
	z-index: -1;
}

.promo-box-right h3 {
	font-size: 34px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 15px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	display: inline-block;
	text-transform: capitalize;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	line-height: 50px;
}

.promo-box-right h2 {
	
	color: #fff;

}




/*====================
33. Blog css 
======================*/

.blog-area{
  position: relative;
}

.blog-item{
  padding: 20px;
  margin-bottom: 25px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-item-img{
  border-radius: 12px;
  overflow: hidden;
}

.blog-item-img img {
  border-radius: 12px;
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.1);
} 

.blog-item-info {
  padding: 15px 0 0 0;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 18px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size:13px;
  font-weight: 500;
  position: relative;
  color:  var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info .theme-btn {
  margin-top: 15px;
}

.blog-item-info h4 a {
  color:  var(--color-dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}




/*========================
34. Blog single css
==========================*/

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
  list-style:none;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--color-dark);
}

.blockqoute {
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color:  var(--color-dark);
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color-dark);
  padding: 6px 18px;
  border-radius: 10px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color:  var(--color-dark);
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-single img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-comments-content a:hover {
  color:  var(--color-dark);
}

.blog-comments-content h5 {
  color:  var(--color-dark);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: var(--theme-bg-light);
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}



@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info{
    margin-top: 25px;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-single img{
    margin: 0 auto 20px auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/*=======================
35. Widget sidebar css
=========================*/

.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 25px;
  color:  var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 8px;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color:  var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}


/*================================================
18 - CALL AREA CSS
==================================================*/

.call-box {
	background: no-repeat scroll 0 0/cover;
	text-align: center;
	border-radius: 5px;
	position: relative;
	padding: 50px 0;
	z-index: 1
}

.call-box-inner {
	width: 70%;
	margin: 0 auto;
}

.call-box:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
	z-index: -1;
	border-radius: 5px
}

.call-box h2 {
	font-size: 40px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 15px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	display: inline-block;
	text-transform: capitalize;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	line-height: 50px;
}

.call-box h2 span {
	color: var(--theme-color)
}

.call-box-inner p {
	color: #b6b6b6;
}

.call-number {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 30px;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.call-icon {
	font-size: 50px;
	margin-right: 30px;
	color: #fff;
}

.call-text {
	text-align: left;
}

.call-text p {
	text-transform: capitalize;
	color: #e04639;
	font-size: 17px;
	margin-bottom: 5px;
}

.call-text h4 {
	color: #eee;
	font-size: 20px;
	letter-spacing: 2px
}

.call-text h4 a {
	color: #eee
}


/*================================
Best Seller Area
===================================*/
.best-seller-area {
  position: relative;
  overflow: hidden;
}

.best-seller-card {
  /* margin-bottom: 30px; */
  background: #fff;
  padding: 30px 10px;
  /* border-radius: 15px; */
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  z-index: 10;
  transition: 0.5s;
}

.best-seller-card .best-seller-img {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  height: 250px;
}

.best-seller-card .best-seller-img img {
  border-radius: 5px;
}



.best-seller-card .best-seller-img .addcart {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  right: 0;
  text-align: center;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  text-transform: capitalize;
  background-color: var(--whiteColor);
  color: var(--theme-color);
  border: none;
  outline: none;
  font-size: 15px;
  padding: 10px 34px;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.best-seller-card .best-seller-img .addcart::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
  background-color: var(--theme-color);
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.best-seller-card .best-seller-img .addcart:hover {
  color: var(--whiteColor);
}

.best-seller-card .best-seller-img .addcart:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.best-seller-card .content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.best-seller-card .content .rating {
  color: #FDC22D;
  font-size: var(--fontSize);
  margin-bottom: 5px;
}

.best-seller-card .content .rating i {
  display: inline-block;
}

.best-seller-card .content h3 {
  margin-bottom: 7px;
}

.best-seller-card .content h3 a {
  display: block;
  color: var(--titleColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-seller-card .content h3 a:hover {
  color: var(--theme-color);
}

.best-seller-card .content span {
  color: var(--theme-color);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.best-seller-card .content span del {
  color: var(--bodyColor);
  margin-right: 5px;
}

.best-seller-card:hover .best-seller-img::before {
  opacity: 0.5;
  border-radius: 5px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.best-seller-card:hover{
  transform: scale(1.03);
}

.best-seller-card:hover .addcart {
  opacity: 1;
}

.best-seller-shape .shape1 {
  position: absolute;
  top: 120px;
  left: 0;
  -webkit-animation: moveIn-to 9s infinite ease-in-out;
          animation: moveIn-to 9s infinite ease-in-out;
}

.best-seller-shape .shape2 {
  position: absolute;
  bottom: 20px;
  right: 0;
  -webkit-animation: moveIn-to 9s infinite ease-in-out;
          animation: moveIn-to 9s infinite ease-in-out;
}

.best-seller-area-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.best-seller-area-two .owl-nav {
  margin-top: 0;
  overflow: hidden;
}

.best-seller-area-two .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 26px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-seller-area-two .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}

.best-seller-area-two .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.best-seller-area-two .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 24px  !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-seller-area-two .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}

.best-seller-area-two .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.best-seller-area-two:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}

.best-seller-area-two:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.best-seller-item .best-seller-img {
  background-color: var(--whiteColor);
  padding: 30px;
  text-align: center;
  position: relative;
  border-radius: 5px;
}

.best-seller-item .best-seller-img img {
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  width: unset !important;
}

.best-seller-item .best-seller-img .best-seller-action {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  margin: auto;
  margin-bottom: 0;
}

.best-seller-item .best-seller-img .best-seller-action li {
  display: block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 10px;
}

.best-seller-item .best-seller-img .best-seller-action li a {
  display: block;
  width: 35px;
  height: 35px;
  background-color: var(--titleColor);
  text-align: center;
  position: relative;
  font-size: 15px;
  color: var(--whiteColor);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
}

.best-seller-item .best-seller-img .best-seller-action li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.best-seller-item .best-seller-img .best-seller-action li a:hover {
  background-color: var(--theme-color);
}

.best-seller-item .best-seller-img .best-seller-action li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.best-seller-item .best-seller-img .best-seller-action li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.best-seller-item .content {
  padding-top: 20px;
}

.best-seller-item .content .top-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.best-seller-item .content .top-title h3 {
  margin-bottom: 0;
  line-height: 1.2;
  max-width: 155px;
}

.best-seller-item .content .top-title h3 a {
  display: block;
  color: var(--titleColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-seller-item .content .top-title h3 a:hover {
  color: var(--theme-color);
}

.best-seller-item .content .top-title .buy-btn {
  position: relative;
  text-align: center;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background-color: #EAEEE6;
  color: var(--titleColor);
  border: none;
  outline: none;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-seller-item .content .top-title .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
  background-color: var(--theme-color);
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.best-seller-item .content .top-title .buy-btn:hover {
  color: var(--whiteColor);
}

.best-seller-item .content .top-title .buy-btn:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.best-seller-item .content span {
  color: var(--theme-color);
  margin-bottom: 0;
}

.best-seller-item .content span del {
  color: var(--bodyColor);
  margin-right: 5px;
}

.best-seller-item:hover .best-seller-img .best-seller-action li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.best-seller-item:hover .content .top-title h3 a {
  color: var(--theme-color);
}

.best-seller-shape .shape1 {
  position: absolute;
  top: 100px;
  left: 5%;
}

.best-seller-shape .shape2 {
  position: absolute;
  bottom: -5px;
  right: -3px;
}

/*================================
New Collection Area
===================================*/
.new-collection-area {
  overflow: hidden;
  position: relative;
}

.new-collection-area .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.new-collection-area .owl-dots .owl-dot span {
  background-color: #B2B9AB !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  margin: 0 7px;
  width: 10px !important;
  height: 10px !important;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.new-collection-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color) !important;
}

.new-collection-area .owl-dots .owl-dot:hover span {
  background-color: var(--theme-color) !important;
}


/*================================
Best Sellers Product Area
===================================*/
.best-sellers-product-area {
  position: relative;
  overflow: hidden;
}

.best-sellers-product-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}

.best-sellers-product-area .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 26px !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-sellers-product-area .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}

.best-sellers-product-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.best-sellers-product-area .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 24px  !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-sellers-product-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}

.best-sellers-product-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.best-sellers-product-area:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}

.best-sellers-product-area:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.best-sellers-item .best-seller-img {
  position: relative;
  overflow: hidden;
  background-color: #F9F9F9;
  text-align: center;
}

.best-sellers-item .best-seller-img a {
  display: block;
}

.best-sellers-item .best-seller-img a img {
  max-width: 100%;
  position: relative;
  padding: 65px;
}

.best-sellers-item .best-seller-img .best-sellers-action {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin: 0 auto;
  width: 170px;
  padding: 10px 15px 2px;
  background-color: var(--theme-color);
  border-radius: 140px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-sellers-item .best-seller-img .best-sellers-action li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin-right: 7px;
}

.best-sellers-item .best-seller-img .best-sellers-action li:last-child {
  margin-right: 0;
}

.best-sellers-item .best-seller-img .best-sellers-action li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: var(--whiteColor);
  text-align: center;
  position: relative;
  font-size: 15px;
  color: var(--theme-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
}

.best-sellers-item .best-seller-img .best-sellers-action li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.best-sellers-item .best-seller-img .best-sellers-action li a:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}

.best-sellers-item .best-seller-img .best-sellers-action li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.best-sellers-item .best-seller-img .best-sellers-action li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.best-sellers-item .best-seller-img .best-sellers-action li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.best-sellers-item .content {
  padding: 20px 20px 0;
}

.best-sellers-item .content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.best-sellers-item .content .content-title h3 {
  margin-bottom: 0;
}

.best-sellers-item .content .content-title h3 a {
  color: var(--titleColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.best-sellers-item .content .content-title .rating {
  color: #FDC22D;
  font-size: var(--fontSize);
  margin-bottom: 0;
}

.best-sellers-item .content .content-title .rating i {
  display: inline-block;
}

.best-sellers-item .content span {
  color: var(--theme-color);
  margin-bottom: 5px;
  display: block;
}

.best-sellers-item .content span del {
  color: var(--bodyColor);
  margin-right: 5px;
}

.best-sellers-item:hover .best-seller-img .best-sellers-action {
  opacity: 1;
}

.best-sellers-item:hover .best-seller-img .best-sellers-action li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.best-sellers-item:hover .content h3 a {
  color: var(--theme-color);
}

/*================================
 Featured Products Area
===================================*/
.featured-products-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.featured-products-area::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 59%;
  background-color: #F5F5F5;
}

.featured-products-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}

.featured-products-area .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 26px !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.featured-products-area .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}

.featured-products-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.featured-products-area .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 24px  !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--titleColor) !important;
  color: var(--whiteColor) !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.featured-products-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}

.featured-products-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--theme-color) !important;
}

.featured-products-area:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}

.featured-products-area:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.featured-products-area .featured-products-item {
  margin: 45px 10px 30px;
}

.featured-products-item {
  background-color: var(--whiteColor);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.featured-products-item .featured-products-img {
  display: inline-block;
  border-bottom: 1px solid rgba(196, 196, 196, 0.19);
}

.featured-products-item .featured-products-img img {
  padding: 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.featured-products-item .content {
  padding: 20px 20px 26px;
}

.featured-products-item .content .rating {
  color: #FDC22D;
  font-size: var(--fontSize);
  margin-bottom: 7px;
}

.featured-products-item .content .rating i {
  display: inline-block;
}

.featured-products-item .content h3 {
  margin-bottom: 10px;
}

.featured-products-item .content h3 a {
  color: var(--titleColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.featured-products-item .content span {
  color: var(--theme-color);
  margin-bottom: 0;
  display: block;
}

.featured-products-item .content span del {
  color: var(--bodyColor);
  margin-right: 5px;
}

.featured-products-item:hover .featured-products-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.featured-products-item:hover .content h3 a {
  color: var(--theme-color);
}



/*================================================
05 - BREADCROMB CSS
==================================================*/
.section_70 {
  padding:70px 0;
}
.gauto-breadcromb-area {
	background: no-repeat fixed 0 0/cover;
	position: relative;
	z-index: 1;
}

.gauto-breadcromb-area:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.72) none repeat scroll 0 0;
	z-index: -1;
}

.breadcromb-box {
	text-align: center;
}

.breadcromb-box h3 {
	font-size: 40px;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 15px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	display: inline-block;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

.breadcromb-box li {
	display: inline-block;
	margin: 0 2px;
	color: #fff !important;
	font-size: 16px
}

.breadcromb-box li a {
	color: #fff
}

.breadcromb-box li i {
	color: #ec3323
}



/*================================================
25 - GALLERY CSS
==================================================*/

.gauto-gallery-area {
	padding-top: 40px;
	padding-bottom: 60px
}

.single-gallery {
	position: relative;
	display: block;
	margin-top: 30px;
	z-index: 6;
}

.single-gallery .img-holder {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 5;
}

.single-gallery .img-holder img {
	width: 100%;
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
	-webkit-transition: all 700ms ease;
	transition: all 700ms ease;
  overflow:hidden;
  height:280px;
}

.single-gallery .overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.78);
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 700ms ease 100ms;
	transition: all 700ms ease 100ms;
}

.single-gallery .overlay-content .inner-content {
	display: table;
	width: 100%;
	height: 100%;
}

.single-gallery .overlay-content .inner-content .title-box {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
	transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
	-webkit-transition: all 300ms ease 100ms;
	transition: all 300ms ease 100ms;
}

.title-box h3 {
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 5px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	display: inline-block;
	text-transform: capitalize;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

.single-gallery .overlay-content .inner-content .title-box h3 a {
	color: #ffffff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.single-gallery .img-holder .link-zoom-button {
	position: absolute;
	left: 0px;
	bottom: 0px;
	right: 0px;
	text-align: center;
	display: block;
	background: transparent;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
	transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all 300ms ease 200ms;
	transition: all 300ms ease 200ms;
	z-index: 3;
}

.single-gallery .img-holder .link-zoom-button .single-button {
	position: relative;
	display: block;
	width: 50%;
	float: left;
}

.single-gallery .img-holder .link-zoom-button .single-button a {
	position: relative;
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 60px;
	font-weight: 500;
	background: #ec3323;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.single-gallery .img-holder .link-zoom-button .single-button {
	position: relative;
	display: block;
	width: 50%;
	float: left;
}

.single-gallery .img-holder .link-zoom-button .single-button a.zoom {
	color: #ffffff;
	background: #131313;
}

.single-gallery:hover .img-holder img {
	-webkit-transform: scale(1.2) rotate(2deg);
	transform: scale(1.2) rotate(2deg);
}

.single-gallery:hover .overlay-content {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.single-gallery:hover .overlay-content .inner-content .title-box {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	-webkit-transition: all 700ms ease 500ms;
	transition: all 700ms ease 500ms;
}

.single-button a span {
	margin-right: 5px
}

.single-gallery:hover .img-holder .link-zoom-button {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transition: all 700ms ease 800ms;
	transition: all 700ms ease 800ms;
}



/*===================
36. Contact us css 
=====================*/

.contact-wrapper {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.contact-img img{
  width: 100%;
  border-radius: 15px 50% 50% 15px;
}

.contact-form{
  padding: 20px 0;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background:var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  var(--color-dark);
}

.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}





/*================================
Footer Area
===================================*/
.footer-area {
  position: relative;
  z-index: 1;
  background-color: #000000e6;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .footer-logo {
  margin-bottom: 20px;
}

.footer-widget h3 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  line-height: 1.2;
  border-left: 5px solid var(--theme-color);
  padding-left: 10px;
}

.footer-widget h3.title {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-widget p {
  margin-bottom: 25px;
  color: var(--whiteColor);
}

.footer-widget .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-widget .social-link li {
  display: inline-block;
  margin-right: 10px;
}

.footer-widget .social-link li:last-child {
  margin-right: 0;
}

.footer-widget .social-link li a {
  display: inline-block;
}

.footer-widget .social-link li a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  background-color: var(--theme-color);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  border-radius: 5px;
}

.footer-widget .social-link li a:hover i {
  background-color: var(--theme-color)5e;
  color: var(--whiteColor);
}

.footer-widget .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-widget .footer-list li {
  display: block;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  flex: 0 0 50%;
}

.footer-widget .footer-list li::before {
  content: "\ea50";
  font-family: boxicons !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-size: 18px;
  color: var(--theme-color);
}

.footer-widget .footer-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-list li a {
  color: var(--whiteColor);
}

.footer-widget .footer-list li a:hover {
  color: #fff;
  margin-left: 10px;
  letter-spacing: 0.25px;
}

.footer-widget .footer-list li:hover a {
  color: #fff;
  letter-spacing: 0.25px;
}

.footer-shape .shape1 {
  position: absolute;
  top: 50px;
  left: 2%;
  z-index: -1;
}

.footer-shape .shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-shape .shape3 {
  position: absolute;
  top: 150px;
  right: 0;
  z-index: -1;
}

.footer-shape .shape4 {
  position: absolute;
  bottom: 10px;
  right: 10%;
  z-index: -1;
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  backgroud: #000;
}

.copy-right-text p {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 10px;
}

.copy-right-text p b {
  color: var(--theme-color);
  font-weight: 500;
}

.copy-right-text p a {
  color: var(--theme-color);
  font-weight: 500;
}

.copy-right-text p a:hover {
  color: var(--whiteColor);
}



/*=================================
Go Top Area 
====================================*/
.go-top {
  position: fixed;
  top: 60%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: var(--theme-color);
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 43px;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: middle;
}

.go-top:hover {
  background-color: var(--titleColor);
}

.go-top:hover i {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.go-top.active {
  top: 95%;
  -webkit-transform: translateY(-95%);
          transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}

.close-btn-secondary {
  position: absolute;
  top: -15px;
  right: -15px;
}

.close-btn-secondary i {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 35px;
  height: 35px;
  font-size: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-color);
  color: var(--whiteColor);
  cursor: pointer;
}


/*==================================
Animation CSS
====================================*/
@-webkit-keyframes rotate360 {
  50% {
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}

@keyframes rotate360 {
  50% {
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(180deg);
  }
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {
  0%,
  50% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0;
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(13px, -1px) rotate(36deg);
            transform: translate(13px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(53px, 22px) rotate(72deg);
            transform: translate(53px, 22px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(33px, 85px) rotate(108deg);
            transform: translate(33px, 85px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-10px, 42px) rotate(144deg);
            transform: translate(-10px, 42px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(13px, -1px) rotate(36deg);
            transform: translate(13px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(53px, 22px) rotate(72deg);
            transform: translate(53px, 22px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(33px, 85px) rotate(108deg);
            transform: translate(33px, 85px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-10px, 42px) rotate(144deg);
            transform: translate(-10px, 42px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes moveIn-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes moveIn-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes movebounce-up2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes movebounce-up2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}


 .layer {
        position: absolute;
        background: #fff;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        -ms-transform: rotate(2.1deg);
        -webkit-transform: rotate(2.1deg);
        -o-transform: rotate(2.1deg);
        -moz-transform: rotate(2.1deg);
        transform: rotate(2.1deg);
        -moz-transition: top 0.2s, bottom 0.2s;
        -webkit-transition: top 0.2s, bottom 0.2s;
        -o-transition: top 0.2s, bottom 0.2s;
        transition: top 0.2s, bottom 0.2s;
        -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
        box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }
    .feature-area:before{
        content: "";
        background-color: var(--theme-color);
        top: 0;
        left: 0;
        width: 100%;
        height: 350px;
        z-index: 0;
        /* opacity: 0.5; */
        position: absolute;
    }
   
    .new-collection-area:before{
        content: "";
        background-color: var(--theme-color);
        bottom: 0;
        left: 0;
        width: 100%;
        height: 350px;
        z-index: 0;
        /* opacity: 0.5; */
        position: absolute;
    }
    @media(max-width: 764px){
        .new-collection-area:before{
            height: 150px;
        }
        .feature-area:before{
            height: 250px;
        }
    }
/*# sourceMappingURL=style.css.map */