
@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:100,100i,200,200i,300,300i,400,500,500i,600,600i,700,700i,800,800i,900,900i|Kaushan+Script&subset=latin-ext");
* {
  box-sizing: border-box;
}

/* transition */
/* flex */
/* transform */
/* opacity */
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
/*-- Common Style --*/
*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 24px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Libre Franklin", sans-serif;
  color: #747474;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  line-height: 36px;
}

h3 {
  font-size: 30px;
  line-height: 30px;
}

h4 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

h6 {
  font-size: 12px;
  line-height: 14px;
}

p:last-child {
  margin-bottom: 0;
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input, span {
  transition: all 0.3s ease 0s;
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button, input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*-- 
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

@media only screen and (max-width: 767px) {
  .container {
    width: 450px;
  }
}
@media only screen and (max-width: 479px) {
  .container {
    width: 100%;
  }
}
.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
  margin: 0;
}

/*-- 
    - Background color
-----------------------------------------*/
.bg-white {
  background-color: #ffffff;
}

.bg-light-grey {
  background-color: #f6fafb;
}

.bg-grey {
  background-color: #f8f8f8;
}

.bluewood-bg {
  background: #354b65;
}

/*- Overlay Color BG -*/
.bluewood-bg-overlay {
  position: relative;
}
.bluewood-bg-overlay::before {
  background: rgba(70, 90, 112, 0.9);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.overly-bg-black {
  position: relative;
}
.overly-bg-black::after {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*-- 
    - color
-----------------------------------------*/
/*-- 
    - Input Placeholder
-----------------------------------------*/
input:-moz-placeholder, textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*-- 
    Scroll Up 
-----------------------------------------*/
#scrollUp {
  background: #242424 none repeat scroll 0 0;
  bottom: 85px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  height: 45px;
  line-height: 39px;
  position: fixed;
  right: 12px;
  text-align: center;
  width: 45px;
  z-index: 9999;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transition: .3s;
  transition: .3s;
}
#scrollUp:hover i {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

/*-- 
    - Main Wrapper
-----------------------------------------*/
.main-wrapper.header-transparent {
  padding: 0 !important;
  margin: 0 !important;
}

/*-- 
    - Section Padding
-------------------------------------*/
.section-ptb {
  padding: 100px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-ptb {
    padding: 90px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-ptb {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-ptb {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-ptb {
    padding: 60px 0;
  }
}

.section-pt {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-pt {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pt {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pt {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pt {
    padding-top: 60px;
  }
}

.section-pt-70 {
  padding-top: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-pt-70 {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pt-70 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pt-70 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pt-70 {
    padding-top: 30px;
  }
}

.section-pb-70 {
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-pb-70 {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pb-70 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pb-70 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pb-70 {
    padding-bottom: 30px;
  }
}

.section-pb {
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-pb {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pb {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pb {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pb {
    padding-bottom: 60px;
  }
}

/* 02. Element */
.button {
  background: #e2002b;
  border-radius: 16px;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  height: 33px;
  line-height: 33px;
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 12px;
}

/* 2. Home 1 Header css here */
/* 03. header css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_area {
    padding-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .header_area {
    padding-bottom: 19px;
  }
}

.sticky-header.sticky {
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  background: #2b60ad;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 900ms;
  animation-duration: 900ms;
  -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
    padding: 12px 14px;
    text-align: right !important;
}
.sticky-header .is-logo{display: none;}
.sticky-header.sticky .is-logo{display: inline-block;float: left;margin-left: 50px;}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky-header.sticky {
    position: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    -webkit-animation-name: inherit;
    animation-name: inherit;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .sticky-header.sticky {
    position: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    -webkit-animation-name: inherit;
    animation-name: inherit;
    padding: 0;
  }
}

.header_top {
  background: #242424;
  padding: 7px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_top {
    padding: 7px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_top {
    padding: 12px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_top {
    padding: 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome_text {
    text-align: center;
    margin-bottom: 5px;
  }
}
.welcome_text ul li {
  display: inline-block;
  font-size: 12px;
  color: #a9a9a9;
  line-height: 26px;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .welcome_text ul li {
    font-size: 11px;
    padding-right: 12px;
    margin-right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome_text ul li {
    font-size: 11px;
    padding-right: 0;
    margin-right: 0;
    display: block;
    text-align: center;
  }
}
.welcome_text ul li::before {
  content: "";
  height: 16px;
  width: 1px;
  background: #a9a9a9;
  position: absolute;
  top: 7px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .welcome_text ul li::before {
    display: none;
  }
}
.welcome_text ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.welcome_text ul li:last-child::before {
  display: none;
}
.welcome_text ul li span {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top_right {
    text-align: center !important;
  }
}
@media only screen and (max-width: 767px) {
  .top_right {
    text-align: center !important;
  }
}
.top_right > ul > li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .top_right > ul > li {
    padding-left: 14px;
    margin-left: 14px;
  }
}
.top_right > ul > li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.top_right > ul > li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: #999;
  top: 6px;
  left: 0px;
}
.top_right > ul > li:first-child::before {
  display: none;
}
.top_right > ul > li > a {
  color: #fff;
  text-transform: capitalize;
  line-height: 26px;
  font-size: 12px;
  cursor: pointer;
  display: block;
  font-weight: 400;
}
.top_right > ul > li > a i {
  margin-left: 5px;
  font-size: 10px;
  color: #6c6c6c;
}
.top_right > ul > li > a:hover {
  color: #e2002b;
}
.top_right > ul > li > a:not([href]):not([tabindex]) {
  color: #fff;
}

.top_right > ul > li:hover a:not([href]):not([tabindex]) {
  color: #e2002b;
}

.dropdown_currency, .dropdown_language, .dropdown_links {
  position: absolute;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 140px;
  text-align: center;
  top: 127%;
  max-height: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
  right: 0;
  z-index: 9999;
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .dropdown_currency, .dropdown_language, .dropdown_links {
    right: inherit;
    left: -15px;
    min-width: 90px;
    padding: 0 6px;
  }
}

.dropdown_currency li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_currency li:last-child {
  border-bottom: 0;
}
.dropdown_currency li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_currency li a:hover {
  color: #e2002b;
}

.dropdown_language li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_language li:last-child {
  border-bottom: 0;
}
.dropdown_language li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_language li a:hover {
  color: #e2002b;
}

.dropdown_links li {
  border-bottom: 1px solid #ddd;
  line-height: 36px;
}
.dropdown_links li:last-child {
  border-bottom: 0;
}
.dropdown_links li a {
  text-transform: capitalize;
  display: block;
  font-size: 12px;
  color: #747474;
  text-align: left;
}
.dropdown_links li a:hover {
  color: #e2002b;
}

.dropdown_currency.open, .dropdown_language.open, .dropdown_links.open {
  max-height: 150px;
}

.top_right ul li a img {
  margin-right: 5px;
}

/*header top css end*/
/* 2.2 header middel css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .logo {
    position: relative;
    top: -9px;
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    text-align: center;
    margin-bottom: 24px;
  }
}

.header_middel {
  padding: 10px 0 10px;
  background: linear-gradient(to bottom, #78a8ec69 0%, rgba(243, 241, 240, 0) 100%);
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_middel {
    padding: 10px 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_middel {
    padding: 10px 0 11px;
  }
}
@media only screen and (max-width: 767px) {
  .header_middel {
    padding: 21px 0 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_bar {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .search_bar {
    margin-bottom: 24px;
  }
}
.search_bar form {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
    border: 0px;
    border-bottom: 1px solid #dddddd78;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .search_bar form {
    width: 435px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_bar form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .search_bar form {
    width: 100%;
  }
}
.search_bar form .select_option {
  border: 0;
  background: #f6f6f6;
  border-right: 1px solid #ddd;
  height: 48px;
  border-radius: 0;
  line-height: 48px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
@media only screen and (max-width: 767px) {
  .search_bar form .select_option {
    height: 42px;
    line-height: 42px;
  }
}
.search_bar form .select_option span {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}
.search_bar form .select_option ul.list {
  max-height: 200px;
  overflow: auto;
  z-index: 99;
}
.search_bar form input {
  height: 48px;
  line-height: 50px;
  padding: 0px 70px 0 20px !important;
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
}
.search_bar form input::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.search_bar form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ffffff;
}

.search_bar form input::-ms-input-placeholder { /* Microsoft Edge */
 color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .search_bar form input {
    height: 42px;
    line-height: 42px;
    padding: 0px 51px 0 9px !important;
  }
}
.search_bar form button {
  background: inherit;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  border: 0;
  font-size: 22px;
  width: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 52px;
  color: #ffffff;
}
.search_bar form button:hover {
  color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .search_bar form button {
    line-height: 44px;
    width: 41px;
    font-size: 20px;
  }
}

.cart_area {
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  /*justify-content: flex-end;*/
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_area {
    position: relative;
    top: -121px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_area {
    justify-content: center;
  }
}

.middel_links ul li {
  display: inline-block;
  padding-right: 8px;
}
.middel_links ul li:last-child {
  padding-right: 0;
}
.middel_links ul li a {
      color: #eaeaea;
    font-size: 11px;
    line-height: 28px;
    text-transform: uppercase;
}
.middel_links ul li a:hover {
  color: #e2002b;
}

.cart_link > a:hover {
  color: #e2002b;
}

.cart_link {
  margin-left: 25px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart_link {
    margin-left: 15px;
  }
}
.cart_link > a {
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  color: #747474;
  border: 1px solid #ddd;
  padding: 8px 17px;
  border-radius: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart_link > a {
    padding: 6px 8px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_link > a {
    padding: 6px 13px;
  }
}
.cart_link > a i {
  font-size: 17px;
  margin-right: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart_link > a i {
    font-size: 14px;
    margin-right: 4px;
  }
}

.mini_cart {
  position: absolute;
  width: 300px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  right: 0;
  padding: 25px 20px 30px;
  top: 100%;
  display: none;
}
@media only screen and (max-width: 767px) {
  .mini_cart {
    width: 280px;
    right: -22px;
  }
}

.cart_img {
  width: 38%;
  float: left;
  margin-right: 10px;
}

.cart_info {
  width: 56%;
  float: right;
}
.cart_info a {
  font-weight: 500;
  color: #747474;
}
.cart_info a:hover {
  color: #e2002b;
}
.cart_info span {
  display: block;
}

.cart_item {
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.cart_item.bottom {
  border: 0;
}

.cart_button a {
  text-transform: uppercase;
  border-radius: 25px;
  font-weight: 500;
  color: #ffffff;
  background: #444444;
  display: block;
  text-align: center;
  line-height: 20px;
  margin-bottom: 0;
  padding: 11px 0px 9px;
}
.cart_button a:hover {
  background: #e2002b;
}
.cart_button.checkout {
  padding-bottom: 20px;
}

.items_nunber span {
  text-transform: capitalize;
  color: #242424;
}

.items_nunber {
  line-height: 14px;
}

/*header middel css end*/
/* 2.4 main menu css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_bottom {
    max-height: 0;
  }
}

.main_menu nav > ul > li {
  display: inline-block;
  position: static;
}
.main_menu nav > ul > li > a {
  display: block;
  padding: 0px 14px;
  color: #fff;
  font-size: 11px;
  line-height: 26px;
  text-transform: uppercase;
      font-weight: 700;
    letter-spacing: 1px;
}
.main_menu nav > ul > li > a i {
  margin-left: 2px;
}
.main_menu nav > ul > li:hover > a {
  color: #e2002b;
}
.main_menu nav > ul > li.active > a {
  color: #e2002b;
}
.main_menu nav > ul > li:first-child a {
  padding-left: 0;
}
.main_menu nav > ul > li ul.sub_menu {
  position: absolute;
  min-width: 220px;
  padding: 30px 25px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  top: 140%;
}

.main_menu nav ul li:hover .sub_menu, .main_menu nav ul li:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main_menu nav ul li ul li.active a, .main_menu nav ul li ul li a:hover {
  color: #e2002b;
}

.main_menu nav > ul > li > ul > li > a {
  color: #444444;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 18px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.main_menu nav > ul > li > ul.sub_menu > li:last-child > a {
  margin-bottom: 0;
}

.main_menu nav > ul > li > ul.mega_menu li ul li:last-child a {
  margin-bottom: 0;
}

.main_menu nav ul li ul.mega_menu {
  position: absolute;
  min-width: 100%;
  padding: 30px 25px 35px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  top: 140%;
}

.main_menu nav > ul > li > ul.mega_menu > li {
  width: 33%;
  float: left;
}

.main_menu nav > ul > li > ul.mega_menu > li.banner_menu {
  width: 100%;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_menu nav > ul > li > ul.mega_menu > li.banner_menu:hover {
  opacity: 0.8;
}

.main_menu nav > ul > li > ul.mega_menu > li.banner_menu a {
  margin-bottom: 0;
}

.main_menu nav > ul > li > ul.mega_menu > li > a {
  text-transform: capitalize;
}

.main_menu nav > ul > li > ul.mega_menu li ul li a {
  color: #747474;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 15px;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
}

.main_menu nav > ul > li > ul.mega_menu li ul li a:hover {
  color: #e2002b;
}

.main_menu nav ul li ul.sub_menu.pages {
  left: inherit;
  right: inherit;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_bottom {
    padding: 0 30px;
  }
}
.header_bottom {position: relative;}
.contact_phone {
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_phone {
    position: relative;
    top: -65px;
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_phone {
    text-align: center;
    margin-top: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_phone p {
    font-size: 11px;
  }
}

/*main menu css end*/
/*mobaile menu css here*/
.mean-container .mean-bar {
  background: inherit;
  position: absolute;
  z-index: 9;
  top: 43px;
  left: 0;
  width: 100%;
}
.mean-container .mean-bar::after {
  top: -33px;
  left: 15%;
}
@media only screen and (max-width: 767px) {
  .mean-container .mean-bar::after {
    left: 9%;
    font-size: 15px;
  }
}
.mean-container .mean-nav {
  max-height: 300px;
  overflow: auto;
}
.mean-container a.meanmenu-reveal {
  float: left;
  right: inherit;
  top: -34px;
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .mean-container a.meanmenu-reveal {
    float: right;
    right: 15px;
    top: -34px;
    left: auto;
  }
}

.mobile-menu {
  border: 1px solid #ddd;
  height: 45px;
  top: -31px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mobile-menu {
    top: 1px;
    margin-left: 32px;
  }
}

/*home two css here*/
.header_two .sticky-header.sticky {
  background: rgba(36, 36, 36, 0.7);
}
.header_two .sticky-header.sticky .main_menu_inner {
  background: inherit;
}
@media only screen and (max-width: 767px) {
  .header_two .sticky-header.sticky {
    background: inherit;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_two {
    padding-bottom: 5px;
  }
}
.header_two .main_menu_inner {
  text-align: center;
  background: #242424;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_two .main_menu_inner {
    background: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .header_two .main_menu_inner {
    background: inherit;
  }
}
.header_two .main_menu nav > ul > li {
  position: relative;
}
.header_two .main_menu nav > ul > li ul.sub_menu {
  text-align: left;
}
.header_two .main_menu nav > ul > li ul.mega_menu {
  text-align: left;
  min-width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_two .main_menu nav > ul > li ul.mega_menu {
    min-width: 580px;
  }
}
.header_two .main_menu nav > ul > li:first-child > a {
  padding: 15px 25px;
}
.header_two .main_menu nav > ul > li > a {
  color: #fff;
}
.header_two .header_middel {
  padding-bottom: 39px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_two .header_middel {
    padding-bottom: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .header_two .header_middel {
    padding-bottom: 20px;
  }
}
.header_two .header_bottom {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .header_two .header_bottom {
    margin-bottom: 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile_two.mean-container a.meanmenu-reveal {
    float: right;
    right: 15px;
    top: -34px;
    left: auto;
  }
}
.mobile_two.mean-container .mean-bar::after {
  left: 5%;
}

/*home three css heer*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three {
    padding-bottom: 63px;
  }
}
@media only screen and (max-width: 767px) {
  .header_three {
    padding-bottom: 10px;
  }
}
.header_three .header_top {
  padding: 7px 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_three .header_top {
    padding: 7px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_three .header_top {
    padding: 7px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .header_top {
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header_three .header_top {
    padding: 7px 0;
  }
}
.header_three .header_middel {
  padding: 40px 120px 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_three .header_middel {
    padding: 40px 30px 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_three .header_middel {
    padding: 40px 30px 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .header_middel {
    padding: 30px 20px 18px;
  }
}
@media only screen and (max-width: 767px) {
  .header_three .header_middel {
    padding: 7px 0 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .header_bottom {
    padding: 0 20px;
  }
}
.header_three .main_menu nav > ul > li {
  position: relative;
}
.header_three .main_menu nav > ul > li ul.mega_menu {
  min-width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_three .main_menu nav > ul > li ul.mega_menu {
    min-width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  .header_three .search_bar {
    margin-top: 18px;
    margin-bottom: 23px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .search_bar {
    margin-top: 0;
  }
}
.header_three .search_bar form {
  width: 320px;
}
.header_three .search_bar form input {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .search_bar form {
    width: 254px;
  }
}
@media only screen and (max-width: 767px) {
  .header_three .search_bar form {
    width: 100%;
  }
}
.header_three .logo {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .logo {
    position: unset;
  }
}
.header_three .header_middel {
  padding-bottom: 0;
}
.header_three .middel_inner {
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .middel_inner {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_three .middel_inner {
    border-bottom: 0;
  }
}
.header_three .main_menu_inner {
  text-align: center;
}
.header_three .main_menu nav > ul > li:first-child > a {
  padding: 15px 25px;
}
.header_three .main_menu nav > ul > li ul.sub_menu li {
  text-align: left;
}
.header_three .main_menu nav > ul > li ul.mega_menu li {
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .cart_area {
    position: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .cart_link {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .cart_link > a {
    padding: 7px 8px;
  }
}
.header_three .cart_link > a i {
  font-size: 14px;
  margin-right: 5px;
}

.mobile_three {
  top: -11px;
}
@media only screen and (max-width: 767px) {
  .mobile_three {
    top: -15px;
  }
}
.mobile_three.mean-container a.meanmenu-reveal {
  float: right;
  right: 15px;
  top: -34px;
  left: auto;
}
.mobile_three.mean-container .mean-bar::after {
  left: 5%;
}

/*home four css here*/
.header_four .sticky-header.sticky {
  background: rgba(36, 36, 36, 0.7);
}
.header_four .sticky-header.sticky .header_bottom {
  background: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .sticky-header.sticky {
    background: #242424;
  }
}
@media only screen and (max-width: 767px) {
  .header_four .sticky-header.sticky {
    background: #242424;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_four {
    padding-bottom: 0;
  }
}
.header_four .header_top {
  border-bottom: 1px solid #393939;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .header_four .header_top {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .search_bar {
    margin-top: 0;
  }
}
.header_four .search_bar form {
  width: 320px;
  border: 1px solid #393939;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .search_bar form {
    width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .header_four .search_bar form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header_four .search_bar form input {
    width: 100%;
  }
}
.header_four .search_bar form button {
  color: #fff;
}
.header_four .search_bar form button:hover {
  color: #e2002b;
}
.header_four .logo {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .logo {
    position: unset;
  }
}
.header_four .main_menu_inner {
  text-align: center;
}
.header_four .main_menu nav > ul > li {
  position: relative;
}
.header_four .main_menu nav > ul > li:first-child > a {
  padding: 15px 25px;
}
.header_four .main_menu nav > ul > li > a {
  color: #fff;
}
.header_four .main_menu nav > ul > li ul.sub_menu li {
  text-align: left;
}
.header_four .main_menu nav > ul > li ul.mega_menu {
  min-width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_four .main_menu nav > ul > li ul.mega_menu {
    min-width: 580px;
  }
}
.header_four .main_menu nav > ul > li ul.mega_menu li {
  text-align: left;
}
.header_four .header_middel {
  padding-left: 30px;
  padding-right: 30px;
  background: #242424;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .header_middel {
    padding: 30px 0 103px;
  }
}
@media only screen and (max-width: 767px) {
  .header_four .header_middel {
    padding: 25px 0 49px;
    padding-left: 0;
    padding-right: 0;
  }
}
.header_four .middel_links ul li a {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .cart_link {
    margin-left: 15px;
  }
}
.header_four .cart_link > a {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .cart_link > a {
    padding: 7px 11px;
  }
}
.header_four .cart_link > a:hover {
  color: #e2002b;
}
.header_four .header_bottom {
  background: #242424;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_four .cart_area {
    position: none;
    position: unset;
  }
}

.mobile_four {
  top: -73px;
}
@media only screen and (max-width: 767px) {
  .mobile_four {
    top: -26px;
  }
}
.mobile_four.mean-container .mean-bar {
  top: 44px;
}
.mobile_four.mean-container .mean-bar::after {
  color: #fff;
  left: 4%;
  top: -34px;
}
.mobile_four.mean-container a.meanmenu-reveal {
  right: 15px;
  top: -35px;
  left: auto;
  color: #fff;
}
.mobile_four.mean-container a.meanmenu-reveal span {
  background: #fff;
}

/*home six css here*/
.header_six .search_bar form {
  width: 100%;
}
.header_six .top_right > ul > li:hover > a {
  color: #e2002b;
}
.header_six .top_right > ul > li > a {
  color: #242424;
}
.header_six .top_right > ul > li > a:not([href]):not([tabindex]) {
  color: #242424;
}
.header_six .top_right > ul > li > a:not([href]):not([tabindex]):hover {
  color: #e2002b;
}
.header_six .main_menu_inner {
  text-align: center;
}

/*homr six css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six {
    padding-bottom: 104px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header_six {
    padding-bottom: 49px;
    padding-top: 21px;
  }
}
.header_six .header_middel {
  padding: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_six .header_middel {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .header_middel {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .header_middel {
    padding-top: 0;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header_six .header_middel {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .header_bottom {
    padding: 0 20px;
  }
}
.header_six .middel_inner {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .middel_inner {
    padding: 0;
    border-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_six .middel_inner {
    padding: 0;
    border-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .logo {
    position: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .search_bar {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_six .search_bar {
    margin-bottom: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .search_bar form input {
    height: 39px;
    line-height: 29px;
    padding: 0px 46px 0 20px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .search_bar form input {
    height: 43px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .header_six .search_bar form input {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .search_bar form button {
    line-height: 42px;
    width: 43px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .search_bar form button {
    line-height: 42px;
    width: 43px;
  }
}
.header_six .main_menu nav > ul > li ul.sub_menu li {
  text-align: left;
}
.header_six .main_menu nav > ul > li ul.mega_menu {
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .top_right {
    text-align: center !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .top_right {
    text-align: left !important;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header_six .top_right {
    text-align: center !important;
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .top_right > ul > li {
    padding-left: 11px;
    margin-left: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .top_right > ul > li {
    padding-left: 11px;
    margin-left: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .top_right > ul > li:first-child {
    padding-left: 0;
    margin-left: 0;
  }
}
.header_six .top_right > ul > li ul {
  right: inherit;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .header_six .top_right > ul > li ul {
    left: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .cart_area {
    position: unset;
    margin-top: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_six .cart_link {
    margin-left: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .cart_link {
    margin-left: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_six .cart_link > a {
    padding: 6px 8px;
  }
}

.mobile_six {
  top: 29px;
}
@media only screen and (max-width: 767px) {
  .mobile_six {
    top: 24px;
  }
}
.mobile_six.mean-container a.meanmenu-reveal {
  float: right;
  right: 15px;
  left: auto;
}
.mobile_six.mean-container .mean-bar::after {
  top: -33px;
  left: 4%;
}

/*page menu css here*/
.page_menu {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translatey(-50%);
  z-index: 9;
}
.page_menu nav ul li {
  width: 20px;
  height: 20px;
  text-align: center;
}
.page_menu nav ul li.current a {
  width: 15px;
  height: 15px;
}
.page_menu nav ul li a {
  width: 5px;
  height: 5px;
  background: #242424;
  border-radius: 50%;
}

/*home seven css here*/
.sticky-header.sticky .home_menu_inner {
  top: 170%;
}

.header_seven {
  position: absolute;
  width: 100%;
  z-index: 9;
  top: 0;
  padding: 15px 0;
}
.header_seven.sticky-header.sticky .home_menu_inner {
  top: 185%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven {
    position: unset;
  }
}
.header_seven .header_top_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header_seven .header_top_right {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven .search_bar {
    position: absolute;
    width: 97%;
    margin-top: 0;
    top: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven .search_bar {
    width: 100%;
    margin-bottom: 18px;
  }
}
.header_seven .search_bar form {
  width: 250px;
  border: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven .search_bar form {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven .search_bar form {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven .search_bar form {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
  }
}
.header_seven .search_bar form input {
  width: 100%;
  height: 42px;
  line-height: 43px;
  padding: 0px 47px 0 20px !important;
}
.header_seven .cart_area {
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven .cart_area {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven .cart_area {
    position: relative;
    top: -39px;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven .cart_area {
    margin-left: 0;
  }
}
.header_seven .top_right {
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven .top_right {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven .top_right {
    position: relative;
    top: -36px;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven .top_right {
    margin-left: 0;
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven .top_right > ul > li {
    padding-left: 20px;
    margin-left: 20px;
  }
}
.header_seven .top_right > ul > li:first-child {
  padding-left: 0;
  margin-left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_seven .top_right > ul > li {
    padding-left: 13px;
    margin-left: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven .top_right > ul > li {
    padding-left: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven .top_right > ul > li {
    padding-left: 15px;
    margin-left: 15px;
  }
}
.header_seven .top_right > ul > li > a {
  color: #242424;
}
.header_seven .top_right > ul > li > a:not([href]):not([tabindex]) {
  color: #242424;
}

.header_seven {
  padding-left: 120px;
  padding-right: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header_seven {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_seven {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_seven {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .header_seven {
    padding-left: 0;
    padding-right: 0;
    padding-top: 22px;
    padding-bottom: 24px;
  }
}

/*header eight css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight {
    padding-bottom: 83px;
  }
}
@media only screen and (max-width: 767px) {
  .header_eight {
    padding-bottom: 30px;
  }
}
.header_eight .header_top {
  padding: 7px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .header_top {
    padding: 7px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .header_top {
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header_eight .header_top {
    padding: 7px 0;
  }
}
.header_eight .header_middel {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .header_middel {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header_eight .header_middel {
    padding-left: 0;
    padding-right: 0;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .header_bottom {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .cart_area {
    position: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .cart_link {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .cart_link > a {
    padding: 8px 7px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .search_bar {
    margin-top: 0;
  }
}
.header_eight .search_bar form {
  width: 300px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .search_bar form {
    width: 100%;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_eight .search_bar form {
    width: 100%;
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .search_bar form input {
    height: 41px;
    line-height: 42px;
  }
}
.header_eight .logo {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_eight .logo {
    position: unset;
  }
}
.header_eight .main_menu_inner {
  text-align: center;
}
.header_eight .main_menu nav > ul > li {
  position: relative;
  text-align: left;
}
.header_eight .main_menu nav > ul > li ul.mega_menu {
  width: 700px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile_eight {
    top: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile_eight {
    top: 6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile_eight a.meanmenu-reveal {
    float: right;
    right: 15px;
    top: -34px;
    left: auto;
  }
}
.mobile_eight .mean-bar::after {
  left: 5%;
}

/*home five css here*/
.header_five {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header_five .header_top {
  background: inherit;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_five .header_top {
    padding-top: 25px;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header_five .header_top {
    padding-top: 21px;
    padding-bottom: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .header_five .mini_cart {
    z-index: 99;
    right: -44px;
  }
}

.header_top_logo_wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header_top_logo_wrapper {
    justify-content: center;
    margin-bottom: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .header_top_logo_wrapper .logo {
    margin-bottom: 0;
  }
}

.home_menu_bar {
  margin-left: 50px;
}

.icone_menu {
  position: relative;
}
.icone_menu > a {
  font-size: 20px;
  color: #242424;
}
.icone_menu > a i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.icone_menu > a i:hover {
  color: #e2002b;
}
.icone_menu > a:not([href]):not([tabindex]) i {
  color: #242424;
}
.icone_menu > a:not([href]):not([tabindex]) i:hover {
  color: #e2002b;
}

.home_menu_inner {
  position: absolute;
  width: 260px;
  max-height: 330px;
  background: #fff;
  border: 0;
  overflow: auto;
  padding: 0;
  max-height: 0;
  transition: all .3s ease-out;
  z-index: 9;
  top: 100%;
}
@media only screen and (max-width: 767px) {
  .home_menu_inner {
    right: -14px;
    width: 220px;
    z-index: 9999;
  }
}
.home_menu_inner.open {
  max-height: 450px;
  padding: 17px 0;
  border: 1px solid #e9e8e8;
}
@media only screen and (max-width: 767px) {
  .home_menu_inner.open {
    max-height: 350px;
  }
}
.home_menu_inner nav > ul > li:hover > a {
  color: #e2002b;
}
.home_menu_inner nav > ul > li > a {
  display: block;
  padding: 7px 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 500;
  font-size: 14px;
}
.home_menu_inner nav > ul > li > a i {
  float: right;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #ddd;
}
.home_menu_inner nav > ul > li ul li {
  padding-left: 12px;
}
.home_menu_inner nav > ul > li ul li a {
  display: block;
  padding: 4px 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 400;
  font-size: 13px;
}
.home_menu_inner nav > ul > li ul li a:hover {
  color: #e2002b;
}
.home_menu_inner nav > ul > li ul.dropdown_home_menu {
  display: none;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu {
  max-height: 0;
  transition: all .3s ease-out;
  background: #fff;
  z-index: 99;
  overflow: hidden;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu.open {
  max-height: 150px;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu li a i {
  float: right;
  margin-right: 25px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #ddd;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu li ul.dropdown_shop_items {
  display: none;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu li ul.dropdown_shop_items2 {
  display: none;
}
.home_menu_inner nav > ul > li ul.dropdown_shop_menu li ul.dropdown_shop_items3 {
  display: none;
}
.home_menu_inner nav > ul > li ul.dropdown_blog_menu {
  display: none;
}
.home_menu_inner nav > ul > li ul.dropdown_other_page_menu {
  display: none;
}

.header_five {
  padding: 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_five {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header_five {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_five .logo {
    position: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_five .cart_area {
    position: unset;
  }
}
.header_five .middel_links > ul > li {
  padding-right: 20px;
  position: relative;
}
.header_five .middel_links > ul > li:last-child {
  padding-right: 0;
}
.header_five .middel_links > ul > li > a {
  color: #242424;
  font-size: 21px;
}
.header_five .middel_links > ul > li > a:hover {
  color: #e2002b;
}
.header_five .dropdown_search_btn {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_five .dropdown_search_btn.active {
  opacity: 1;
  visibility: visible;
}
.header_five .dropdown_search_btn form {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 50%;
  width: 1000px;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_five .dropdown_search_btn form {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_five .dropdown_search_btn form {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .header_five .dropdown_search_btn form {
    width: 90%;
  }
}
.header_five .dropdown_search_btn form input {
  width: 100%;
  border: 0;
  height: 70px;
  border-bottom: 3px solid #e2002b;
  background: inherit;
  color: #fff;
  font-size: 25px;
  padding: 0 60px 0 20px;
}
@media only screen and (max-width: 767px) {
  .header_five .dropdown_search_btn form input {
    height: 50px;
    font-size: 15px;
  }
}
.header_five .dropdown_search_btn form button {
  position: absolute;
  right: 0;
  background: inherit;
  border: 0;
  color: #fff;
  font-size: 39px;
  line-height: 70px;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .header_five .dropdown_search_btn form button {
    font-size: 20px;
    line-height: 50px;
  }
}
.header_five .dropdown_search_btn form button:hover {
  color: #e2002b;
}
.header_five .dropdown_search_btn .button_close {
  position: absolute;
  right: 6%;
  top: 70px;
}
.header_five .dropdown_search_btn .button_close button {
  border: 0;
  background: inherit;
  font-size: 70px;
  color: #fff;
}
.header_five .dropdown_search_btn .button_close button:hover {
  color: #e2002b;
}

.sticky-header.sticky .dropdown_box_setting {
  top: 157%;
}

.dropdown_box_setting {
  position: absolute;
  width: 280px;
  right: -23px;
  border: 1px solid #e9e8e8;
  background: #ffff;
  top: 100%;
  padding: 15px 20px;
  display: none;
  top: 100%;
}
@media only screen and (max-width: 767px) {
  .dropdown_box_setting {
    width: 275px;
    right: auto;
    left: -85px;
    top: 115%;
  }
}
.dropdown_box_setting .setting_list {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 16px;
}
.dropdown_box_setting .setting_list:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.dropdown_box_setting .setting_list h3 {
  font-size: 14px;
  color: #242424;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 24px;
}
.dropdown_box_setting .setting_list ul li {
  display: block;
}
.dropdown_box_setting .setting_list ul li a {
  font-size: 12px;
  color: #747474;
  line-height: 30px;
  display: block;
  text-transform: capitalize;
}
.dropdown_box_setting .setting_list ul li a:hover {
  color: #e2002b;
}

/* 04. slider area css here */
.single_slider {
  height: 420px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single_slider {
    height: 420px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_slider {
    height: 420px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_slider {
    height: 380px;
  }
}
@media only screen and (max-width: 767px) {
  .single_slider {
    height: 250px;
  }
}
.single_slider.slider_one {
  background: url(../img/slider/slide1.jpg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .single_slider.slider_one {
    background-position: 14%;
  }
}
.single_slider.slider_two {
  background: url(../img/slider/slide2.jpg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .single_slider.slider_two {
    background-position: 11%;
  }
}
.single_slider.slider_three {
  background: url(../img/slider/slide3.jpg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .single_slider.slider_three {
    background-position: 11%;
  }
}
.single_slider.slider_three .slider_content {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .slider_style .slider_three .slider_content {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_two .slider_content {
    padding-top: 50px;
  }
}
.slider_style .slider_content {
  padding-top: 240px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_style .slider_content {
    padding-left: 40px;
    padding-top: 95px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_style .slider_content {
    padding-top: 160px;
    padding-left: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_style .slider_content {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_content {
    padding-top: 80px;
    text-align: center;
  }
}
.slider_style .slider_content h1 {
  font-size: 80px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 14px;
  font-weight: 900;
  line-height: 76px;
  font-family: "Kaushan Script", cursive;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_style .slider_content h1 {
    font-size: 50px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_content h1 {
    font-size: 30px;
    margin-bottom: 8px;
    line-height: 25px;
  }
}
.slider_style .slider_content h2 {
  font-size: 75px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 900;
  font-family: "Kaushan Script", cursive;
  line-height: 76px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_style .slider_content h2 {
    font-size: 50px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_content h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.slider_style .slider_content p {
  font-size: 16px;
  color: #fff;
  margin-top: 22px;
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_content p {
    font-size: 17px;
  }
}
.slider_style .slider_content a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}
.slider_style .slider_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_style .slider_content a {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_style .slider_content a {
    margin-top: 10px;
    font-size: 15px;
  }
}

.slider_area {
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_area {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_area {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_area {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_area {
    margin-bottom: 40px;
  }
}
.slider_area.owl-carousel .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  left: 40px;
  width: 42px;
  height: 42px;
  background: #fff;
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transition: .3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_area.owl-carousel .owl-nav div {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_area.owl-carousel .owl-nav div {
    left: 5px;
  }
}
.slider_area.owl-carousel .owl-nav div:hover {
  background: #e2002b;
  color: #fff;
}
.slider_area.owl-carousel .owl-nav div.owl-next {
  right: 40px;
  left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_area.owl-carousel .owl-nav div.owl-next {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_area.owl-carousel .owl-nav div.owl-next {
    right: 5px;
  }
}
.slider_area.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.slider_area.owl-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 4px;
  display: inline-block;
  background: #ddd;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider_area.owl-carousel .owl-dots .owl-dot.active {
  background: #e2002b;
}

/*home three css here*/
.home_three_slider {
  margin-bottom: 30px;
}
.home_three_slider .single_slider.slider_one {
  background: url(../img/slider/slider4.jpg) no-repeat scroll center center/cover;
}
.home_three_slider .single_slider.slider_one .slider_content {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .home_three_slider .single_slider.slider_one .slider_content {
    padding-top: 50px;
  }
}
.home_three_slider .single_slider.slider_one .slider_content h1 {
  font-family: "Kaushan Script", cursive;
}
.home_three_slider .single_slider.slider_one .slider_content h2 {
  font-family: "Kaushan Script", cursive;
}
.home_three_slider .single_slider.slider_two {
  background: url(../img/slider/slider5.jpg) no-repeat scroll center center/cover;
}
.home_three_slider .single_slider.slider_two .slider_content {
  text-align: center;
}
.home_three_slider .single_slider.slider_two .slider_content h1 {
  font-family: "Kaushan Script", cursive;
}
.home_three_slider .single_slider.slider_two .slider_content h2 {
  font-family: "Kaushan Script", cursive;
}
.home_three_slider .single_slider.slider_three {
  background: url(../img/slider/slider6.jpg) no-repeat scroll center center/cover;
}
.home_three_slider .single_slider.slider_three .slider_content {
  text-align: center;
}
.home_three_slider .single_slider.slider_three .slider_content h1 {
  font-family: "Kaushan Script", cursive;
}
.home_three_slider .single_slider.slider_three .slider_content h2 {
  font-family: "Kaushan Script", cursive;
}

/*home four css here*/
.home_four_slider {
  margin-bottom: 98px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .home_four_slider {
    margin-bottom: 78px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home_four_slider {
    margin-bottom: 78px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_four_slider {
    margin-bottom: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .home_four_slider {
    margin-bottom: 59px;
  }
}
.home_four_slider .single_slider.slider_one {
  background: url(../img/slider/slider8.jpg) no-repeat scroll center center/cover;
}
.home_four_slider .single_slider.slider_two {
  background: url(../img/slider/slider7.jpg) no-repeat scroll center center/cover;
}
.home_four_slider .single_slider.slider_three {
  background: url(../img/slider/slider9.jpg) no-repeat scroll center center/cover;
}
.home_four_slider .slider_content {
  text-align: center;
  padding-top: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_four_slider .slider_content {
    padding-top: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .home_four_slider .slider_content {
    padding-top: 60px;
  }
}
.home_four_slider .slider_content h1 {
  font-size: 45px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_four_slider .slider_content h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .home_four_slider .slider_content h1 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 25px;
  }
}
.home_four_slider .slider_content h2 {
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_four_slider .slider_content h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .home_four_slider .slider_content h2 {
    font-size: 16px;
    line-height: 25px;
  }
}
.home_four_slider .slider_content a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 38px;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}
.home_four_slider .slider_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_four_slider .slider_content a {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .home_four_slider .slider_content a {
    margin-top: 10px;
    font-size: 15px;
  }
}

.active .slider_content h1, .active .slider_content h2, .active .slider_content a {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.active .slider_content h2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.active .slider_content a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/*home six slider css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section.slider_section_six {
    margin-bottom: 51px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_section.slider_section_six {
    margin-bottom: 25px;
  }
}

.home_six_slider {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_six_slider {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .home_six_slider {
    margin-bottom: 60px;
  }
}
.home_six_slider .single_slider {
  height: 747px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .home_six_slider .single_slider {
    height: 511px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home_six_slider .single_slider {
    height: 362px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_six_slider .single_slider {
    height: 380px;
  }
}
@media only screen and (max-width: 767px) {
  .home_six_slider .single_slider {
    height: 380px;
  }
}
.home_six_slider .single_slider.slider_one {
  background: url(../img/slider/slider10.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .single_slider.slider_one {
    background-position: 0%;
  }
}
.home_six_slider .single_slider.slider_two {
  background: url(../img/slider/slider11.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .single_slider.slider_two {
    background-position: 0%;
  }
}
.home_six_slider .single_slider.slider_three {
  background: url(../img/slider/slider12.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .single_slider.slider_three {
    background-position: 0%;
  }
}
.home_six_slider .slider_content {
  display: table-cell;
  vertical-align: middle;
  padding-left: 90px;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .slider_content {
    padding-left: 0;
    text-align: center;
  }
}
.home_six_slider .slider_content h2 {
  font-size: 20px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .slider_content h2 {
    font-size: 18px;
  }
}
.home_six_slider .slider_content h1 {
  text-transform: uppercase;
  color: #242424;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .slider_content h1 {
    font-size: 25px;
  }
}
.home_six_slider .slider_content p {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  padding-right: 120px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .slider_content p {
    padding-right: 0;
    font-size: 14px;
  }
}
.home_six_slider .slider_content a {
  font-size: 16px;
  color: #242424;
  text-transform: capitalize;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid #242424;
  font-weight: 600;
}
.home_six_slider .slider_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
.home_six_slider .slider_three .slider_content {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .home_six_slider .slider_three .slider_content {
    text-align: center;
  }
}

.slider_content_inner {
  display: table;
  width: 100%;
  height: 100%;
}

.active .slider_content p {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.slider_section {
  margin-bottom: 92px;
  padding: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_section {
    padding: 0 30px;
    margin-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_section {
    padding: 0 30px;
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_section {
    padding: 0;
  }
}

/*slider seven css here*/
.home_seven_slider {
  margin-bottom: 93px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .home_seven_slider {
    margin-bottom: 71px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home_seven_slider {
    margin-bottom: 71px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_seven_slider {
    margin-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .home_seven_slider {
    margin-bottom: 54px;
  }
}
.home_seven_slider .slider_one {
  background: url(../img/slider/slider13.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_one {
    background-position: 0%;
  }
}
.home_seven_slider .slider_two {
  background: url(../img/slider/slider14.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_two {
    background-position: 0%;
  }
}
.home_seven_slider .slider_three {
  background: url(../img/slider/slider15.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_three {
    background-position: 0%;
  }
}
.home_seven_slider .slider_three .slider_content {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_three .slider_content {
    text-align: center;
  }
}
.home_seven_slider .slider_content {
  display: table-cell;
  vertical-align: middle;
  padding-left: 120px;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_content {
    padding-left: 0;
    text-align: center;
  }
}
.home_seven_slider .slider_content h2 {
  color: #242424;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_content h2 {
    font-size: 18px;
  }
}
.home_seven_slider .slider_content h1 {
  color: #242424;
  font-size: 50px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_content h1 {
    font-size: 25px;
  }
}
.home_seven_slider .slider_content p {
  color: #242424;
  font-size: 17px;
  width: 529px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_content p {
    width: 100%;
    font-size: 14px;
  }
}
.home_seven_slider .slider_content a {
  font-size: 16px;
  color: #242424;
  text-transform: capitalize;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid #242424;
}
.home_seven_slider .slider_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .home_seven_slider .slider_content a {
    font-size: 14px;
    margin-top: 0;
  }
}

/* 06. banner section css here */
.banner_conteiner {
  background: url(../img/bg/banner3.jpg) no-repeat scroll center center/cover;
  height: 550px;
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .banner_conteiner {
    height: 350px;
  }
}

.banner_section {
  padding: 0 120px 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_section {
    padding: 0 30px 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_section {
    padding: 0 30px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section {
    padding: 0 20px 53px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section {
    padding: 0 0 56px;
  }
}

.banner_text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 120px;
}
@media only screen and (max-width: 767px) {
  .banner_text {
    padding-left: 0;
    text-align: center;
  }
}
.banner_text h1 {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 54px;
}
.banner_text h1 span {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 54px;
}
@media only screen and (max-width: 767px) {
  .banner_text h1 {
    font-size: 24px;
    line-height: 34px;
  }
}
.banner_text a {
  color: #e2002b;
  font-size: 16px;
  margin-top: 75px;
  display: inline-block;
  vertical-align: top;
  border-bottom: 2px solid #e2002b;
}
.banner_text a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .banner_text a {
    margin-top: 30px;
  }
}

.banner_thumb {
  position: relative;
}
.banner_thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.banner_thumb:hover::before {
  opacity: 1;
}

/*home two css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_two {
    padding: 0 20px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two {
    padding: 0 0 34px;
  }
}
.banner_section_two .banner_thumb::before {
  background: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .banner_section_two .banner_thumb {
    margin-bottom: 25px;
  }
}
.banner_section_two .banner_content {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 20px;
  right: 20px;
  text-align: center;
}
.banner_section_two .banner_content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_two .banner_content h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two .banner_content h1 {
    font-size: 35px;
  }
}
.banner_section_two .banner_content p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .banner_section_two .banner_content p {
    font-size: 16px;
  }
}
.banner_section_two .banner_content a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 2px;
  border-bottom: 2px solid #fff;
  margin-top: 57px;
}
.banner_section_two .banner_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_two .banner_content a {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two .banner_content a {
    margin-top: 5px;
  }
}

.banner_section_two.bottom {
  padding-bottom: 93px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_section_two.bottom {
    padding-bottom: 73px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_section_two.bottom {
    padding-bottom: 73px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_two.bottom {
    padding: 0 20px 52px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two.bottom {
    padding-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two.bottom .banner_content p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_two.bottom .banner_content h1 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
  }
}

/*home three css here*/
.banner_section_three {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 91px;
}
@media only screen and (max-width: 767px) {
  .banner_section_three {
    padding-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_area {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_three .banner_area.bottom {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_section_three {
    padding-bottom: 71px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_section_three {
    padding-bottom: 73px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_three {
    padding-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_thumb a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_thumb a img {
    width: 100%;
  }
}
.banner_section_three .banner_thumb::before {
  display: none;
}
.banner_section_three .banner_thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.banner_section_three .banner_thumb:hover::after {
  opacity: 1;
}
.banner_section_three .banner_content {
  position: absolute;
  content: "";
  top: 50%;
  transform: translatey(-50%);
  left: 40px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_three .banner_content {
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_content {
    left: 0;
    right: 0;
  }
}
.banner_section_three .banner_content h1 {
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  line-height: 36px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_three .banner_content h1 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_content h1 {
    font-size: 17px;
    line-height: 25px;
  }
}
.banner_section_three .banner_content a {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_three .banner_content a {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_three .banner_content a {
    margin-top: 10px;
    display: inline;
  }
}

/*home six css here*/
.banner_slider_section .banner_content {
  position: absolute;
  top: 14%;
  left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_slider_section .banner_content {
    left: 10px;
  }
}
.banner_slider_section .banner_content h1 {
  color: #242424;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_slider_section .banner_content h1 {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.banner_slider_section .banner_content h3 {
  font-size: 16px;
  color: #242424;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_slider_section .banner_content h3 {
    font-size: 12px;
  }
}
.banner_slider_section .banner_top {
  margin-bottom: 30px;
}
.banner_slider_section.section_fullwidth {
  margin-bottom: 91px;
  padding: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_slider_section.section_fullwidth {
    padding: 0 30px;
    margin-bottom: 71px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_slider_section.section_fullwidth {
    padding: 0 30px;
    margin-bottom: 71px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_slider_section.section_fullwidth {
    padding: 0 20px;
    margin-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_slider_section.section_fullwidth {
    padding: 0;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_slider_section .banner_thumb {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_slider_section .banner_thumb a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .banner_slider_section .banner_thumb a {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_slider_section .banner_thumb a img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .banner_slider_section .banner_thumb a img {
    width: 100%;
  }
}

/*banner seven css here*/
.banner_seven {
  padding-bottom: 92px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_seven {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_seven {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_seven {
    padding-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_seven {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_seven .banner_content h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_seven .banner_content h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_seven .banner_content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_seven .banner_content a {
    margin-top: 12px;
  }
}

/*banner eight css here*/
.banner_section_eight {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_eight {
    padding-bottom: 59px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_eight {
    padding-bottom: 29px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_eight .banner_area {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_section_eight .banner_area.bottom {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_eight .banner_thumb > a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .banner_section_eight .banner_thumb > a img {
    width: 100%;
  }
}
.banner_section_eight .banner_content {
  position: absolute;
  bottom: 70px;
  left: 25px;
}
.banner_section_eight .banner_content h1 {
  color: #242424;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 35px;
}
.banner_section_eight .banner_content p {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
}
.banner_section_eight .banner_content a {
  color: #242424;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid #242424;
  margin-top: 20px;
  display: inline-block;
}
.banner_section_eight .banner_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}

/* 05. product section css here */
.section_title {
  text-align: center;
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 15px;
  }
}
.section_title h2 {
  font-size: 32px;
  color: #242424;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 11px;
  line-height: 38px;
}
@media only screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 22px;
    line-height: 25px;
  }
}
.section_title p {
  margin-bottom: 0;
}

.tab-content > .tab-pane.active {
  display: block;
  height: auto;
  opacity: 1;
  overflow: visible;
}

.tab-content > .tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.product_tab_button {
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .product_tab_button {
    margin-bottom: 25px;
  }
}
.product_tab_button ul {
  justify-content: center;
}
.product_tab_button ul li {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .product_tab_button ul li {
    padding-right: 17px;
  }
}
.product_tab_button ul li:last-child {
  padding-right: 0;
}
.product_tab_button ul li a {
  font-size: 13px;
  color: #747474;
  text-transform: capitalize;
}
.product_tab_button ul li a:hover {
  color: #e2002b;
}
.product_tab_button ul li a.active {
  color: #e2002b;
}

.product_section {
  padding: 0 120px 54px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section {
    padding: 0 30px 39px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section {
    padding: 0 30px 39px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section {
    padding: 0 20px 39px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section {
    padding: 0 0 39px;
  }
}

.product_container:hover button {
  opacity: 1;
  visibility: visible;
}
.product_container .col-lg-3 {
  flex: 0 0 100%;
  max-width: 100%;
}
.product_container button {
  position: absolute;
  top: 47%;
  transform: translatey(-50%);
  border: 0;
  background: inherit;
  font-size: 50px;
  z-index: 9;
  left: 0;
  color: #a9a9a9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_container button:hover {
  color: #e2002b;
}
.product_container button.next_arrow {
  right: 0;
  left: auto;
}

.single_product {
  margin-bottom: 40px;
  webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}
.product_content
{
    text-align: center;
    height: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single_product {
    margin-bottom: 33px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_product {
    margin-bottom: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_product {
    margin-bottom: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .single_product {
    margin-bottom: 33px;
  }
}
.single_product:hover .product_thumb a.secondary_img {
  opacity: 1;
  visibility: visible;
}
.single_product:hover .product_action {
  opacity: 1;
  visibility: visible;
}
.single_product:hover .quick_button {
  opacity: 1;
  visibility: visible;
}

.product_thumb {
  position: relative;
  margin-bottom: 8px;
}
.product_thumb a.secondary_img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.product_action {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_action:hover .action_button {
  opacity: 1;
  visibility: visible;
}

.action_button {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.action_button ul li a {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #292929;
  font-size: 15px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .action_button ul li a {
    height: 41px;
    line-height: 41px;
  }
}
.action_button ul li a:hover {
  color: #e2002b;
}
.action_button ul li a::before {
  position: absolute;
  content: "";
  background: #ddd;
  height: 1px;
  width: 25px;
  bottom: 0;
  left: 13px;
}
.action_button ul li:last-child a::before {
  display: none;
}

.hover_action {
  position: relative;
}
.hover_action a {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #909090;
  font-size: 15px;
  color: #999;
}
.hover_action a:hover {
  color: #e2002b;
}

.quick_button {
  position: absolute;
  bottom: 35%;
  left: 10px;
  right: 10px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.quick_button a {
  line-height: 45px;
  background: rgba(43, 96, 173, 0.85);
  color: #fff;
  padding: 0 10px;
  font-weight: normal;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  font-size: 13px;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
}
.quick_button a:hover {
  color: #000;
}

.product_sale {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e2002b;
  padding: 0 13px;
  border-radius: 2px;
}
.product_sale span {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  line-height: 23px;
}

.product_content h3 {
  line-height: 22px;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_content h3 {
    font-size: 12px;
  }
}
.product_content h3 a {
    color: #000;
    font-size: 16px;
}
.product_content h3 a:hover {
  color: #e2002b;
}
.product_content span {
  font-size: 13px;
  font-weight: 500;
  color: #242424;
}
.product_content span.old_price {
  color: #f50e0e;
  text-decoration: none;
  padding-right: 10px;
}

.label_product {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #007a58;
  padding: 0 13px;
  border-radius: 2px;
}
.label_product span {
  text-transform: capitalize;
  color: #fff;
}

.mens_product {
  padding: 0 120px 47px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .mens_product {
    padding: 0 30px 33px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mens_product {
    padding: 0 30px 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mens_product {
    padding: 0 30px 52px;
  }
}
@media only screen and (max-width: 767px) {
  .mens_product {
    padding: 0 0 55px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .womens_product {
    padding-bottom: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .womens_product {
    padding-bottom: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .womens_product .banner_area {
    margin-bottom: 51px;
  }
}
@media only screen and (max-width: 767px) {
  .womens_product .banner_area {
    margin-bottom: 54px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mens_product .banner_area {
    margin-top: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .mens_product .banner_area {
    margin-top: 21px;
  }
}

/*home three css here*/
.product_carousel .col-lg-3 {
  flex: 0 0 100%;
  max-width: 100%;
}
.product_carousel .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: inherit;
  font-size: 50px;
  z-index: 9;
  left: 0;
  color: #a9a9a9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_carousel .owl-nav div.owl-next {
  right: 0;
  left: auto;
}
.product_carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

.product_section.womens_product.bottom {
  padding-bottom: 46px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section.womens_product.bottom {
    padding-bottom: 31px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section.womens_product.bottom {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section.womens_product.bottom {
    padding-bottom: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section.womens_product.bottom {
    padding-bottom: 16px;
  }
}

/*home four css here*/
.product_section_four {
  padding-bottom: 95px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section_four {
    padding-bottom: 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section_four {
    padding-bottom: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section_four {
    padding-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section_four {
    padding-bottom: 56px;
  }
}
.product_section_four .product_area {
  border-bottom: 1px solid #ddd;
  padding-bottom: 54px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section_four .product_area {
    padding-bottom: 41px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section_four .product_area {
    padding-bottom: 41px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section_four .product_area {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section_four .product_area {
    padding-bottom: 20px;
  }
}

/*home six css here*/
.product_section_six {
  padding-bottom: 53px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section_six {
    padding-bottom: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section_six {
    padding-bottom: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section_six {
    padding-bottom: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section_six {
    padding-bottom: 19px;
  }
}
.product_section_six.bottom {
  padding-bottom: 31px;
}
@media only screen and (max-width: 767px) {
  .product_section_six.bottom {
    padding-bottom: 15px;
  }
}

/*home eight css here*/
.product_section_eight {
  padding-bottom: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .product_section_eight {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_section_eight {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_section_eight {
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section_eight {
    padding-bottom: 16px;
  }
}

/* 13. widget area css here */
.product_categorie {
  margin-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_categorie {
    margin-bottom: 39px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_categorie {
    margin-bottom: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .product_categorie {
    margin-bottom: 39px;
  }
}

.categorie_widget {
  border: 1px solid #ddd;
  margin-top: 30px;
  padding: 17px 30px 17px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_widget {
    margin-top: 0;
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .categorie_widget {
    margin-top: 0;
    margin-bottom: 42px;
  }
}
.categorie_widget ul {
  padding-left: 13px;
}
.categorie_widget ul li {
  line-height: 20px;
  position: relative;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categorie_widget ul li {
    margin-bottom: 6px;
  }
}
.categorie_widget ul li:last-child {
  margin-bottom: 0;
}
.categorie_widget ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #747474;
  border-radius: 50%;
  top: 50%;
  transform: translatey(-50%);
  left: -13px;
}
.categorie_widget ul li a {
  color: #747474;
  font-size: 13px;
}
.categorie_widget ul li a:hover {
  color: #f6f6f6;
}

/* home two widget area css here*/
.product_c_two {
  margin-bottom: 39px;
}
.product_c_two .section_title {
  margin-bottom: 0;
  border-bottom: 0;
}
.product_c_two .categorie_widget {
  padding: 20px 30px 20px;
  margin-top: 0;
}
.product_c_two .categorie_widget ul li {
  display: inline-block;
  width: 15%;
  margin-right: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_c_two .categorie_widget ul li {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product_c_two .categorie_widget ul li {
    display: block;
    width: 100%;
  }
}

/* 07. blog area css here */
.blog_section {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_section {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_section {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_section {
    padding-bottom: 20px;
  }
}

.blog_wrapper {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_wrapper {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper {
    padding-bottom: 30px;
  }
}
.blog_wrapper .col-lg-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

.blog_thumb {
  position: relative;
  margin-bottom: 15px;
}
.blog_thumb:hover::before {
  opacity: 1;
  visibility: visible;
}
.blog_thumb:hover .blog_icon {
  opacity: 1;
  visibility: visible;
}
.blog_thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.blog_icon {
  position: absolute;
  position: absolute;
  top: 48%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.blog_icon a {
  width: 52px;
  height: 52px;
  background: #e2002b;
  position: relative;
}
.blog_icon a::before {
  position: absolute;
  content: "\e032";
  font-family: 'simple-line-icons';
  font-size: 23px;
  line-height: 52px;
  color: #fff;
  width: 100%;
  text-align: center;
  left: 0;
}
.blog_icon a::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  border: 1px solid #e2002b;
  left: -6px;
  top: 4px;
}

.blog_content h3 {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 18px;
  position: relative;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 600;
  margin-bottom: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_content h3 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_content h3 {
    font-size: 14px;
  }
}
.blog_content h3 a {
  color: #242424;
}
.blog_content h3 a:hover {
  color: #e2002b;
}

.author_name {
  margin-bottom: 11px;
}
.author_name p {
  font-size: 13px;
  text-transform: capitalize;
  color: #747474;
}
.author_name p span.themes {
  color: #e2002b;
}
.author_name p span.post_by {
  color: #242424;
}

.post_desc p {
  line-height: 22px;
}

.blog_wrapper:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}
.blog_wrapper .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: inherit;
  font-size: 50px;
  z-index: 9;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #a9a9a9;
}
.blog_wrapper .owl-nav div:hover {
  color: #e2002b;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_wrapper .owl-nav div {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .owl-nav div {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .owl-nav div {
    left: 0;
  }
}
.blog_wrapper .owl-nav div.owl-next {
  right: 0;
  left: auto;
}

/*home three blog css here*/
.blog_section_three {
  padding-bottom: 96px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_section_three {
    padding-bottom: 76px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_section_three {
    padding-bottom: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_section_three {
    padding-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_section_three {
    padding-bottom: 55px;
  }
}

/* 08. instagram area css here */
.instagram_wrapper .col-lg-3 {
  flex: 0 0 100%;
  max-width: 100%;
}
.instagram_wrapper .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: inherit;
  font-size: 50px;
  z-index: 9;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #a9a9a9;
}
.instagram_wrapper .owl-nav div.owl-next {
  right: 0;
  left: auto;
}
.instagram_wrapper .owl-nav div:hover {
  color: #e2002b;
}
.instagram_wrapper:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

.instagram_area {
  padding: 0 120px 94px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .instagram_area {
    padding: 0 30px 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .instagram_area {
    padding: 0 30px 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instagram_area {
    padding: 0 20px 55px;
  }
}
@media only screen and (max-width: 767px) {
  .instagram_area {
    padding: 0 0 55px;
  }
}

.single_instagram {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .single_instagram a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single_instagram a img {
    width: 100%;
  }
}
.single_instagram::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.8);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single_instagram:hover::before {
  opacity: 1;
}
.single_instagram:hover .instagram_icone {
  opacity: 1;
}

.instagram_icone {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.instagram_icone a {
  font-size: 24px;
  color: #fff;
}

.instagram_home_block {
  padding-bottom: 94px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .instagram_home_block {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .instagram_home_block {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .instagram_home_block {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instagram_home_block {
    padding-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .instagram_home_block {
    padding-bottom: 53px;
  }
}

.instagram_eight {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .instagram_eight {
    padding-left: 0;
    padding-right: 0;
  }
}

/* 23. shipping css here */
.shipping_carousel {
  padding-bottom: 96px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 92px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .shipping_carousel {
    padding-bottom: 76px;
    margin-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_carousel {
    padding-bottom: 76px;
    margin-bottom: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_carousel {
    padding-bottom: 55px;
    margin-bottom: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_carousel {
    padding-bottom: 55px;
    margin-bottom: 54px;
  }
}
.shipping_carousel .col-lg-2 {
  flex: 0 0 100%;
  max-width: 100%;
}
.shipping_carousel .shipping_thumb img {
  width: inherit;
}

.shipping_content a {
  color: #b5b5b5;
  font-size: 14px;
  display: block;
  font-weight: 600;
  line-height: 22px;
  text-transform: capitalize;
  padding-top: 15px;
}
.shipping_content a:hover {
  color: #242424;
}

.single_shipping {
  text-align: center;
}
.footer_widgets {
    padding: 0 30px;
    background-color: #231f20;
      padding-top: 50px;
  }

/* 09. footer area css here */
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_widgets {
    padding: 0 30px;
    background-color: #162345;
      padding-top: 50px;
  }
}

.footer_top {
  border-bottom: 1px solid #353032;
  padding-bottom: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_top {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_top {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_top {
    padding-bottom: 34px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets_container {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container.contact_us {
    margin-bottom: 34px;
  }
}
.widgets_container h3 {
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-weight: 600;
  color: #f1f1f1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets_container h3 {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container h3 {
    margin-bottom: 8px;
  }
}

.footer_menu ul li a {
  display: block;
  font-weight: 400;
  line-height: 30px;
  color: ##aba6a6;
}
.footer_menu ul li a:hover {
  color: #e2002b;
}

.footer_contact p {
  margin-bottom: 0;
  line-height: 30px;
}
.footer_contact ul {
  margin-top: 10px;
}
.footer_contact ul li {
  display: inline-block;
  margin-right: 7px;
}
.footer_contact ul li:last-child {
  margin-right: 0;
}
.footer_contact ul li a {
  color: #b2b2b2;
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e1e1;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}
.footer_contact ul li a:hover {
  background: #242424;
  color: #fff;
  border-color: #242424;
}

.newleter-content p {
  line-height: 28px;
  margin-bottom: 10px;
}
.newleter-content form input {
  width: 100%;
  padding: 0 20px;
  border: 1px solid #e1e1e1;
  height: 45px;
  color: #cacaca;
  margin-bottom: 10px;
}
.newleter-content form button {
  background: #2b60ad;
  line-height: 45px;
  padding: 0 10px;
  margin-top: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.newleter-content form button:hover {
  background: #396ebb;
}

.footer_custom_links {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer_custom_links {
    text-align: center;
  }
}
.footer_custom_links ul li {
  display: inline-block;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .footer_custom_links ul li {
    padding-right: 20px;
  }
}
.footer_custom_links ul li:last-child {
  margin-right: 0;
}
.footer_custom_links ul li a {
  color: #747474;
  text-transform: capitalize;
}
.footer_custom_links ul li a:hover {
  color: #e2002b;
}

@media only screen and (max-width: 767px) {
  .copyright_area {
    text-align: center;
  }
}
.copyright_area p {
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .copyright_area p {
    margin-bottom: 5px;
  }
}
.copyright_area p a {
  color: #e2002b;
}
.copyright_area p a:hover {
  text-decoration: underline;
}

.footer_bottom {
  padding: 14px 0;
}
@media only screen and (max-width: 767px) {
  .footer_bottom {
    padding: 14px 0;
  }
}

/*home five css here*/
.footer_widgets.fotter_five {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
.footer_widgets.fotter_five .footer_top {
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .footer_widgets.fotter_five .footer_top {
    padding-top: 54px;
  }
}

.footer_show_button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.footer_show_button > a {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  text-align: center;
  background: #242424;
  color: #fff;
  border-radius: 3px;
}
.footer_show_button > a:hover {
  background: #e2002b;
}
.footer_show_button > a:not([href]):not([tabindex]) {
  color: #fff;
}
.footer_show_button > a i {
  margin-left: 5px;
}

.footer_widgets_inner {
  max-height: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer_widgets_inner.open {
  max-height: 500px;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_widgets_inner.open {
    max-height: 350px;
    overflow: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer_widgets_inner.open {
    max-height: 300px;
    overflow: auto;
  }
}

/*collection area css here*/
.collection_area {
  margin-bottom: 94px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .collection_area {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection_area {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_area {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_area {
    margin-bottom: 53px;
  }
}

@media only screen and (max-width: 767px) {
  .collection_img {
    margin-bottom: 21px;
  }
}
.collection_img img:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .collection_content {
    text-align: center;
  }
}
.collection_content h1 {
  font-size: 120px;
  color: #f1f1f1;
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h1 {
    font-size: 90px;
    line-height: 80px;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h1 {
    font-size: 90px;
    line-height: 80px;
    margin-bottom: 13px;
  }
}
.collection_content h4 {
  font-size: 18px;
  color: #747474;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 23px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h4 {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h4 {
    margin-bottom: 12px;
  }
}
.collection_content h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #242424;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
  }
}
.collection_content p {
  line-height: 24px;
  font-size: 16px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .collection_content p {
    font-size: 15px;
  }
}
.collection_content a {
  font-size: 16px;
  color: #242424;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid #242424;
  display: inline-block;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content a {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content a {
    margin-top: 15px;
    font-size: 16px;
  }
}
.collection_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}

@media only screen and (max-width: 767px) {
  .collection_2 {
    margin-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_2 .collection_content {
    margin-bottom: 29px;
  }
}

@media only screen and (max-width: 767px) {
  .collection_4 {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_4 .collection_content {
    margin-bottom: 29px;
  }
}

/*categories section css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_area {
    margin-top: 68px;
  }
}

.categories_thumb {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .categories_thumb {
    height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .categories_thumb a {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .categories_thumb img {
    height: 100%;
    object-fit: cover;
  }
}

.categories_content {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translatey(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_content {
    right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content {
    right: 15px;
  }
}
.categories_content h4 {
  color: #242424;
  font-size: 18px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .categories_content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.categories_content h2 {
  color: #242424;
  font-size: 35px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .categories_content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.categories_content p {
  color: #242424;
  font-size: 17px;
  width: 440px;
  font-weight: 500;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content p {
    width: 310px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content p {
    font-size: 14px;
    width: 210px;
    line-height: 20px;
    margin-bottom: 5px;
    margin-top: 0;
  }
}
.categories_content a {
  text-transform: capitalize;
  font-size: 16px;
  color: #242424;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid #242424;
}
.categories_content a:hover {
  color: #e2002b;
  border-color: #e2002b;
}

#fp-nav {
  right: 31px;
  margin-top: -43.5px;
}

.categories_area .col-12 {
  padding: 0;
}

.categories_content.content_left {
  left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content.content_left {
    left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content.content_left {
    left: 30px;
  }
}

/* 10. shop page css here */
.header_shop {
  border-bottom: 1px solid #ddd;
}
.header_shop .header_top {
  padding: 7px 0;
}
.header_shop .header_middel {
  padding: 40px 0 18px;
}
@media only screen and (max-width: 767px) {
  .header_shop .header_middel {
    padding: 21px 0 18px;
  }
}
.header_shop .header_bottom {
  padding: 0;
}

.shop_inner_area {
  padding-bottom: 94px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 94px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .shop_inner_area {
    padding-bottom: 74px;
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop_inner_area {
    padding-bottom: 74px;
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_inner_area {
    padding-bottom: 54px;
    margin-bottom: 57px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_inner_area {
    padding-bottom: 54px;
    margin-bottom: 57px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_inner_area {
    padding-bottom: 54px;
    margin-bottom: 57px;
  }
}

.breadcrumbs_area {
  padding: 40px 0;
}

.breadcrumb_content ul {
  line-height: 15px;
}
.breadcrumb_content ul li {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  margin-right: 5px;
  color: #242424;
}
.breadcrumb_content ul li:last-child {
  margin-right: 0;
}
.breadcrumb_content ul li a {
  color: #999;
}
.breadcrumb_content ul li a:hover {
  color: #e2002b;
}

.widget_list {
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list {
    margin-bottom: 55px;
  }
}
.widget_list:last-child {
  margin-bottom: 0;
}
.widget_list h2 {
  color: #242424;
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0 0 5px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
}
.widget_list > ul > li {
  padding-bottom: 8px;
}
.widget_list > ul > li:last-child {
  padding-bottom: 0;
}
.widget_list > ul > li > a {
  color: #242424;
  display: block;
  line-height: 27px;
}
.widget_list > ul > li > a:hover {
  color: #e2002b;
}
.widget_list > ul > li > a:hover span {
  background: #e2002b;
  color: #fff;
}
.widget_list > ul > li > a span {
  float: right;
  background: #ebebeb;
  color: #c3c3c3;
  font-size: 12px;
  width: 29px;
  height: 29px;
  line-height: 29px;
  text-align: center;
  border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-range {
  background: #e2002b;
  height: 5px;
}

.ui-slider-horizontal {
  height: 3px;
  background: #dbdbdb;
  border: none;
  width: 92%;
  margin: 0 auto;
  margin-bottom: 22px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #fff;
  border: 0;
  border-radius: 0;
  width: 13px;
  height: 13px;
  top: -5px;
  cursor: e-resize;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

.widget_list.widget_filter form {
  padding-top: 10px;
}
.widget_list.widget_filter form input {
  background: none;
  border: none;
  font-size: 12px;
  float: right;
  text-align: right;
  line-height: 31px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_list.widget_filter form input {
    width: 65px;
  }
}
.widget_list.widget_filter form button {
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  text-transform: uppercase;
  color: #ffffff;
  background: #242424;
  border: 0;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.widget_list.widget_filter form button:hover {
  background: #e2002b;
}

.tag_widget ul li {
  display: inline-block;
}
.tag_widget ul li a {
  margin: 0 6px 5px 0;
  display: block;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #ddd;
  background: #ffffff;
  padding: 0 15px;
  line-height: 29px;
  color: #747474;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag_widget ul li a {
    padding: 0 13px;
  }
}
.tag_widget ul li a:hover {
  background: #e2002b;
  color: #fff;
  border-color: #e2002b;
}

.shop_toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  .shop_toolbar {
    flex-direction: column-reverse;
    padding: 10px 10px 18px;
  }
}

.select_option {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .select_option {
    flex-direction: column;
  }
}
.select_option .nice-select {
  border: 0;
  height: 30px;
  line-height: 29px;
}
.select_option .nice-select ul.list {
  top: 114%;
  right: 0;
  width: 200px;
  max-height: 200px;
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .niceselect_option {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .page_amount {
    margin-bottom: 12px;
  }
}
.page_amount p {
  color: #747474;
}
@media only screen and (max-width: 767px) {
  .page_amount p {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
}

.list_button ul li {
  margin-right: 12px;
}
.list_button ul li:last-child {
  margin-right: 0;
}
.list_button ul li a:hover {
  color: #e2002b;
}
.list_button ul li a i {
  margin-right: 5px;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
}
.list_button ul li a.active {
  color: #e2002b;
}
.list_button ul li a.active i {
  background: #e2002b;
  color: #ffffff;
}

.product_ratting ul li {
  display: inline-block;
}
.product_ratting ul li a {
  color: #e2002b;
}

@media only screen and (max-width: 767px) {
  .product_list_item .product_thumb {
    margin-bottom: 18px;
  }
}
.product_list_item .product_content h3 {
  margin-bottom: 10px;
}
.product_list_item .product_ratting {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 19px;
  }
}
.pagination ul li {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #f1f1f1;
  color: #747474;
  border-radius: 3px;
  margin-left: 3px;
}
.pagination ul li:first-child {
  margin-left: 0;
}
.pagination ul li a {
  display: block;
  border-radius: 3px;
}
.pagination ul li a:hover {
  background: #e2002b;
  color: #ffffff;
}
.pagination ul li.current {
  background: #e2002b;
  color: #ffffff;
}
.pagination ul li.next {
  width: 40px;
}

.shop_toolbar.t_bottom {
  justify-content: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_toolbar.t_bottom {
    margin-bottom: 56px;
    margin-top: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_toolbar.t_bottom {
    padding: 15px 10px 15px;
    margin-top: 20px;
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_toolbar.t_bottom .pagination {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_reverse .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .shop_reverse .row {
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_reverse .tab-content .row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .shop_reverse .tab-content .row {
    flex-direction: row;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid_view .quick_button {
    bottom: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid_view .quick_button a {
    line-height: 37px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid_view .action_button ul li a {
    width: 43px;
    height: 40px;
    line-height: 38px;
  }
}
.grid_view .hover_action a {
  width: 43px;
  height: 40px;
  line-height: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_area .list_view.active {
    margin-bottom: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_area .list_view.active {
    margin-bottom: 54px;
  }
}

.shop_fullwidth .shop_inner_area {
  padding-bottom: 100px;
  margin-bottom: 96px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .shop_fullwidth .shop_inner_area {
    padding-bottom: 80px;
    margin-bottom: 76px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop_fullwidth .shop_inner_area {
    padding-bottom: 80px;
    margin-bottom: 76px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_fullwidth .shop_toolbar.t_bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_fullwidth .shop_toolbar.t_bottom {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .shop_fullwidth .shop_inner_area {
    padding-bottom: 60px;
    margin-bottom: 57px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_fullwidth .shop_inner_area {
    padding-bottom: 60px;
    margin-bottom: 57px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_fullwidth .list_view.active {
    margin-bottom: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_fullwidth .list_view.active {
    margin-bottom: 33px;
  }
}

/* 15. product details css here */
.product_details {
  margin-bottom: 53px;
}
@media only screen and (max-width: 767px) {
  .product_details {
    margin-bottom: 42px;
  }
}

.header_product {
  border-bottom: 1px solid #ddd;
}

.product_d_right h1 {
  color: #242424;
  text-transform: uppercase;
  line-height: 21px;
  letter-spacing: .1em;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .product_d_right h1 {
    font-size: 20px;
  }
}
.product_d_right .product_ratting {
  margin-bottom: 14px;
}
.product_d_right .product_price {
  margin-bottom: 11px;
}
.product_d_right .product_price span.current_price {
  font-size: 22px;
  color: #e2002b;
}
.product_d_right .product_price span.old_price {
  color: #242424;
  font-size: 17px;
  text-decoration: line-through;
  margin-left: 10px;
}
.product_d_right .product_desc {
  margin-bottom: 19px;
}
.product_d_right .product_desc p {
  width: 540px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_d_right .product_desc p {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product_d_right .product_desc p {
    width: 100%;
  }
}
.product_d_right .priduct_social {
  display: inline-block;
  overflow: hidden;
}
.product_d_right .priduct_social h3 {
  color: #242424;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
  float: left;
  margin-bottom: 0;
}
.product_d_right .priduct_social ul {
  float: right;
  line-height: 31px;
  margin-left: 20px;
}
.product_d_right .priduct_social ul li {
  display: inline-block;
}
.product_d_right .priduct_social ul li a {
  color: fonts_color;
  margin-right: 8px;
}
.product_d_right .priduct_social ul li a:hover {
  color: #e2002b;
}
.product_d_right .priduct_social ul li:last-child {
  margin-right: 0;
}

.product_variant.color, .product_variant.size {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_variant.color h3, .product_variant.size h3 {
  color: #242424;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
  margin-bottom: 0;
  margin-right: 80px;
}
.product_variant.color .nice-select, .product_variant.size .nice-select {
  height: 35px;
  line-height: 32px;
  margin-bottom: 0;
}
.product_variant.color .nice-select ul.list, .product_variant.size .nice-select ul.list {
  max-height: 150px;
  overflow: auto;
}
.product_variant.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}
@media only screen and (max-width: 767px) {
  .product_variant.quantity {
    margin-bottom: 16px;
  }
}
.product_variant.quantity label {
  color: #242424;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
  margin-bottom: 0;
}
.product_variant.quantity input {
  width: 61px;
  border: 1px solid #ddd;
  background: none;
  height: 37px;
  padding: 0 5px;
  border-radius: 5px;
  margin-left: 10px;
}
.product_variant.quantity button {
  border: 0;
  font-size: 14px;
  margin-left: 15px;
  background: #242424;
}
.product_variant.quantity button:hover {
  background: #e2002b;
}
.salebutton {
  background: #e2002b;
    border-radius: 16px;
    box-shadow: none;
    color: #ffffff;
    display: inline-block;
    height: 33px;
    line-height: 33px;
    padding: 0 16px;
    text-transform: uppercase;
    font-size: 12px;
}
.salebutton {
  border: 0;
  font-size: 12px;
  margin-left: 15px;
  background: #2b60ad;
}
.salebutton:hover {
  background: #e2002b;
  color: #ffffff;
}
.product_variant .product_d_action ul li {
  margin-left: 10px;
}
.product_variant .product_d_action ul li:last-child {
  margin-right: 0;
}
.product_variant .product_d_action ul li a {
  font-size: 14px;
  height: 35px;
  line-height: 37px;
  width: 35px;
  background: #ddd;
  border-radius: 100%;
  color: #fff;
  text-align: center;
}
.product_variant .product_d_action ul li a:hover {
  background: #e2002b;
  color: #ffffff;
}

.product_d_inner {
  border: 1px solid #ddd;
}
.product_d_inner .tab-content {
  padding: 20px 30px 22px;
}

@media only screen and (max-width: 767px) {
  .product_info_button ul {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .product_info_button ul li {
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .product_info_button ul li:last-child {
    margin-bottom: 0;
  }
}
.product_info_button ul li a {
  display: block;
  padding: 10px 30px;
  float: left;
  text-transform: uppercase;
  font-size: 16px;
  background: #ddd;
  color: #242424;
  font-weight: 600;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .product_info_button ul li a {
    padding: 6px 17px;
    margin-right: 0;
    font-size: 13px;
  }
}
.product_info_button ul li a.active {
  background: #e2002b;
  color: #ffffff;
}
.product_info_button ul li a:hover {
  background: #e2002b;
  color: #ffffff;
}

.product_review_form button {
  border: none;
  background: #242424;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
}
.product_review_form button:hover {
  background: #e2002b;
  color: #ffffff;
}

.product_info_content p {
  color: #555;
}

.product_d_table {
  padding: 10px 0 22px;
}
.product_d_table table {
  border-top: 1px solid #ddd;
  width: 100%;
}
.product_d_table table tbody tr {
  border-bottom: 1px solid #ddd;
}
.product_d_table table tbody tr td {
  padding: 7px 17px;
}
.product_d_table table tbody tr td:first-child {
  border-right: 1px solid #ddd;
  width: 30%;
  font-weight: 700;
}

.product_info_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.product_info_inner .product_ratting {
  margin-bottom: 10px;
}
.product_info_inner .product_ratting p {
  margin-bottom: 5px;
}
.product_info_inner .product_ratting strong {
  margin-top: 10px;
  display: block;
  margin-bottom: 8px;
}

.product_demo {
  margin-left: 30px;
}

.product_review_form h2 {
  font-size: 17px;
  text-transform: uppercase;
  color: #242424;
  font-weight: 600;
}

.product_review_form input {
  border: 1px solid #ddd;
  background: none;
  width: 100%;
  height: 40px;
}
.product_review_form textarea {
  border: 1px solid #ddd;
  background: none;
  height: 120px;
  resize: none;
  width: 100%;
  margin-bottom: 14px;
}
.product_review_form p {
  margin-bottom: 7px;
}

.product_d_info {
  margin-bottom: 52px;
}
@media only screen and (max-width: 767px) {
  .product_d_info {
    margin-bottom: 54px;
  }
}

.s-tab-zoom.owl-carousel .owl-nav {
  display: block;
}
.s-tab-zoom.owl-carousel .owl-nav div {
  position: absolute;
  background: #ddd;
  border-radius: 100%;
  color: #ffffff;
  height: 38px;
  top: 50%;
  transform: translatey(-50%);
  width: 38px;
  text-align: center;
  line-height: 35px;
  left: 0;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.s-tab-zoom.owl-carousel .owl-nav div:hover {
  background: #f6f6f6;
}
.s-tab-zoom.owl-carousel .owl-nav div.owl-next {
  right: 0;
  left: auto;
}

@media only screen and (max-width: 767px) {
  .product-details-tab {
    margin-bottom: 19px;
  }
}
.product-details-tab:hover .s-tab-zoom.owl-carousel .owl-nav div {
  opacity: 1;
  visibility: visible;
}

.single-zoom-thumb {
  margin-top: 20px;
}
.single-zoom-thumb ul li a {
  width: 100%;
}

.related_product {
  padding-bottom: 44px;
}
@media only screen and (max-width: 767px) {
  .related_product {
    padding-bottom: 47px;
  }
}
.related_product .single_product {
  margin-bottom: 0;
}

.upsell_product {
  padding-bottom: 56px;
}
.upsell_product .product_area {
  padding-bottom: 52px;
  border-bottom: 1px solid #ddd;
}
.upsell_product .single_product {
  margin-bottom: 0;
}

.product_page .footer_top {
  padding-bottom: 53px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_page .footer_top {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .product_page .footer_top {
    padding-bottom: 34px;
  }
}

/* 12. product grouped css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_grouped {
    margin-bottom: 40px;
  }
}

.grouped_form {
  border: 1px solid #ddd;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grouped_form {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .grouped_form {
    margin-bottom: 17px;
  }
}
.grouped_form table {
  width: 100%;
}
.grouped_form table tbody tr {
  border-bottom: 1px solid #ddd;
}
.grouped_form table tbody tr td {
  border-right: 1px solid #ddd;
  padding: 11px 5px;
  text-align: center;
}
.grouped_form table tbody tr td input[type="checkbox"] {
  width: 20px;
  height: 21px;
}
.grouped_form table tbody tr td input[type="number"] {
  width: 50px;
  background: inherit;
  border: 1px solid #ddd;
  padding: 0 5px;
  height: 40px;
}
.grouped_form table tbody tr td.grouped-product-list.quantity {
  width: 80px;
  text-align: center;
  line-height: 12px;
}
.grouped_form table tbody tr td.grouped-product-list.label {
  min-width: 200px;
  font-weight: 600;
  font-size: 14px;
}
.grouped_form table tbody tr td.grouped-product-list.label a {
  color: #242424;
}
.grouped_form table tbody tr td.grouped-product-list.label a:hover {
  color: #e2002b;
}
.grouped_form table tbody tr td.grouped-product-list.price {
  font-size: 14px;
  color: #242424;
  font-weight: 600;
  min-width: 200px;
}
.grouped_form table tbody tr td.grouped-product-list.price p {
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}
.grouped_form table tbody tr td.grouped-product-list.price p::before {
  color: #f6f6f6;
  content: '\f058';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 40px;
}

.grouped_form table tbody tr td:last-child {
  border-right: 0;
}

.grouped_form table tbody tr:last-child {
  border-bottom: 0;
}

.box_quantity.group button {
  margin-left: 0;
}

/*product grouped css end*/
/*variabla product css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .variable_product {
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .variable_product {
    margin-bottom: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .variable_product .product-details-tab {
    margin-bottom: 49px;
  }
}

.product_d_meta span {
  display: block;
  line-height: 18px;
  margin-bottom: 17px;
  font-size: 14px;
  color: #242424;
  font-weight: 600;
}
.product_d_meta span:last-child {
  margin-bottom: 0;
}
.product_d_meta span a:hover {
  color: #e2002b;
}

/*product gallery css heer*/
.product_details.gallery {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_details.gallery {
    margin-bottom: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .product_details.gallery {
    margin-bottom: 42px;
  }
}

.product_gallery {
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_gallery {
    margin-bottom: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .product_gallery {
    margin-bottom: 47px;
  }
}
@media only screen and (max-width: 479px) {
  .product_gallery {
    margin-bottom: 57px;
  }
}

.product_gallery_thumb {
  width: 45%;
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_gallery_thumb {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .product_gallery_thumb {
    width: 45%;
    text-align: center;
    float: left;
    margin: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .product_gallery_thumb {
    width: 100%;
    float: inherit;
    margin-right: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 479px) {
  .product_gallery_thumb:last-child {
    margin-bottom: 0;
  }
}

.product_d_gallery {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_d_gallery {
    margin-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .product_d_gallery {
    margin-bottom: 29px;
  }
}

/*product sidebar css here*/
.product_sidebar {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar {
    margin-bottom: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar .row {
    flex-direction: column-reverse;
  }
}
.product_sidebar .upsell_product {
  padding-bottom: 52px;
}
.product_sidebar .upsell_product .product_area {
  padding-bottom: 0;
  border-bottom: 0;
}
.product_sidebar .product_desc p {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .action_button ul li a {
    width: 40px;
    height: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .quick_button {
    bottom: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .quick_button a {
    line-height: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .hover_action a {
    width: 40px;
    height: 35px;
    line-height: 35px;
  }
}

.footer_widgets.sidebar_widgets .footer_top {
  padding-bottom: 0;
  border-bottom: 0;
}
.footer_widgets.sidebar_widgets .footer_top_inner {
  padding: 56px 0 52px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_widgets.sidebar_widgets .footer_top_inner {
    padding: 56px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_widgets.sidebar_widgets .footer_top_inner {
    padding: 56px 0 35px;
  }
}

.product_right_sidebar {
  margin-bottom: 53px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_right_sidebar .row {
    flex-direction: row;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_right_sidebar {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .product_right_sidebar {
    margin-bottom: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .product_right_sidebar .product_d_right {
    margin-bottom: 42px;
  }
}

/* 15. cart page css here */
.header_cart_page {
  border-bottom: 1px solid #ddd;
}

.other_bread {
  padding-top: 41px;
  padding-bottom: 41px;
}

.table_desc {
  border: 1px solid #ddd;
  margin-bottom: 59px;
  margin-top: 2px;
}
.table_desc .cart_page table thead tr th {
  border-bottom: 3px solid #e2002b;
  border-right: 1px solid #ddd;
  color: #747474;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
}
.table_desc .cart_page table thead tr th.product_remove {
  min-width: 159px;
}
.table_desc .cart_page table thead tr th.product-price {
  min-width: 159px;
}
.table_desc .cart_page table thead tr th.product_total {
  min-width: 159px;
}
.table_desc .cart_page table thead tr th.product_name {
  min-width: 300px;
}
.table_desc .cart_page table thead tr th.product_thumb {
  min-width: 195px;
}
.table_desc .cart_page table thead tr th.product_quantity {
  min-width: 195px;
}
.table_desc .cart_page table tbody tr td {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  padding: 10px;
}
.table_desc .cart_page table tbody tr td.product_thumb img {
  width: inherit;
}
.table_desc .cart_page table tbody tr td.product_name a {
  color: #747474;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}
.table_desc .cart_page table tbody tr td.product_name a:hover {
  color: #e2002b;
}
.table_desc .cart_page table tbody tr td.product_remove a {
  font-size: 20px;
  color: #e2002b;
}
.table_desc .cart_page table tbody tr td.product_remove a:hover {
  color: #e2002b;
}
.table_desc .cart_page table tbody tr td.product-price {
  color: #e2002b;
  font-size: 18px;
  font-weight: 600;
}
.table_desc .cart_page table tbody tr td.product_quantity input {
  width: 60px;
  height: 40px;
  padding: 0 5px 0 10px;
  background: none;
  border: 1px solid #ddd;
}

.cart_page table thead tr:last-child th, .table_desc table tbody tr td:last-child {
  border-right: 0;
}

.cart_submit {
  text-align: right;
  padding: 12px;
}
.cart_submit button {
  background: #242424;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cart_submit button:hover {
  background: #e2002b;
}

.coupon_inner {
  padding: 10px 20px 25px;
}
.coupon_inner p {
  color: #747474;
  font-size: 13px;
  margin-bottom: 20px;
}
.coupon_inner button {
  background: #242424;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.coupon_inner button:hover {
  background: #e2002b;
}
.coupon_inner input {
  border: 1px solid #ddd;
  height: 42px;
  background: none;
  padding: 0 20px;
  margin-right: 20px;
  color: #747474;
}
@media only screen and (max-width: 767px) {
  .coupon_inner input {
    margin-bottom: 24px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coupon_inner input {
    margin-bottom: 24px;
    width: 100%;
  }
}
.coupon_inner a {
  display: block;
  text-align: right;
  color: #e2002b;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.coupon_code {
  border: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  .coupon_code.left {
    margin-bottom: 59px;
  }
}
.coupon_code h3 {
  color: #ffffff;
  line-height: 37px;
  padding: 5px 15px;
  background: #242424;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .coupon_code h3 {
    line-height: 28px;
    padding: 5px 15px;
    font-size: 15px;
  }
}

.cart_subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart_subtotal p {
  color: #242424;
  font-weight: 600;
  font-size: 14px;
}
.cart_subtotal p.cart_amount {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .cart_subtotal p.cart_amount {
    font-size: 14px;
  }
}
.cart_subtotal p span {
  margin-right: 30px;
}

.checkout_btn {
  text-align: right;
}
.checkout_btn a {
  background: #e2002b;
  color: #ffffff;
  font-size: 14px;
  padding: 3px 14px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0;
}
.checkout_btn a:hover {
  background: #242424;
}

.coupon_area {
  margin-bottom: 60px;
}

.footer_widgets.other_widgets .footer_top {
  padding-bottom: 0;
  border-bottom: 0;
}
.footer_widgets.other_widgets .footer_top_inner {
  padding: 55px 0 53px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 59px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 35px;
  }
}

/*cart page css end*/
/* 16. checkout page css here */
.user-actions {
  margin-bottom: 20px;
}
.user-actions h3 {
  font-size: 13px;
  font-weight: 400;
  color: #242424;
  background-color: #f7f6f7;
  padding: 15px 10px;
  border-top: 3px solid #e2002b;
  margin-bottom: 0;
}
.user-actions h3 a {
  color: #e2002b;
}

.checkout_info {
  border: 1px solid #ddd;
  margin-top: 25px;
  padding: 20px 30px;
}
.checkout_info p {
  margin-bottom: 0;
}
.checkout_info a {
  color: #e2002b;
  margin-top: 15px;
  display: block;
}

.form_group {
  margin-bottom: 20px;
}
.form_group label {
  color: #242424;
  font-size: 14px;
  display: block;
  line-height: 18px;
}
.form_group input {
  border: 1px solid #ddd;
  background: none;
  height: 45px;
  width: 350px;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .form_group input {
    width: 100%;
  }
}
.form_group button {
  display: inline-block;
  width: 80px;
  background: #242424;
  border: 0;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 20px;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
}
.form_group button:hover {
  background: #e2002b;
}

.form_group input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.form_group.group_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form_group.group_3 label {
  margin-bottom: 0;
  line-height: 34px;
  cursor: pointer;
}
.form_group.group_3 label:hover {
  color: #e2002b;
}

#checkout_coupon input {
  background: none;
  border: 1px solid #ddd;
  width: 200px;
  height: 45px;
  font-size: 12px;
  padding: 0 20px;
  color: #747474;
}
#checkout_coupon button {
  width: 130px;
  margin-left: 12px;
  background: #242424;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  height: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #checkout_coupon button {
    margin-top: 20px;
  }
}
#checkout_coupon button:hover {
  background: #e2002b;
}

.mb-20 {
  margin-bottom: 20px;
}

.checkout_form h3 {
  font-size: 16px;
  line-height: 30px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #242424;
  font-weight: 600;
}
.checkout_form input {
  border: 1px solid #ddd;
  background: none;
  height: 40px;
  width: 100%;
  padding: 0 20px;
  color: #747474;
}
.checkout_form .nice-select {
  width: 100%;
}
.checkout_form .nice-select ul.list {
  width: 100%;
  height: 180px;
  overflow: auto;
}
.checkout_form .nice-select::after {
  top: 56%;
}
.checkout_form label span {
  color: #e2002b;
}
.checkout_form label.righ_0 {
  cursor: pointer;
  font-size: 15px;
  line-height: 27px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #242424;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .checkout_form label.righ_0 {
    font-size: 13px;
    line-height: 25px;
    padding: 3px 10px;
  }
}
.checkout_form label.righ_0:hover {
  background: #242424;
}

.checkout_form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

.order_button button {
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #e2002b;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
}
.order_button button:hover {
  background: #242424;
}

@media only screen and (max-width: 767px) {
  .order-notes {
    margin-bottom: 56px;
  }
}
.order-notes textarea {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 45px;
  max-width: 100%;
  padding: 0 30px 0 20px;
  background: none;
  font-size: 13px;
  resize: none;
  line-height: 45px;
  width: 100%;
  color: #747474;
}
.order-notes label {
  line-height: 13px;
}

.Checkout_section {
  padding-bottom: 56px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .Checkout_section {
    padding-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .Checkout_section {
    padding-bottom: 60px;
  }
}

.order_table {
  margin-bottom: 35px;
}
.order_table table {
  width: 100%;
}
.order_table table thead tr th {
  min-width: 50%;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.order_table table tbody tr td {
  min-width: 50%;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.order_table table tfoot tr th {
  min-width: 50%;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.order_table table tfoot tr td {
  min-width: 50%;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.panel-default input[type="radio"] {
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

.panel-default img {
  width: 160px;
}

.order_button button {
  border: 0;
}

.card-body1 {
  margin-bottom: 15px;
}

/*checkout page css end*/
/* 24. wishlist css here */
.table_desc.wishlist table tbody tr:last-child td {
  border-bottom: 0;
}

.table_desc.wishlist table tbody tr td.product_total a {
  background: #e2002b;
  font-size: 12px;
  font-weight: 700;
  height: 38px;
  line-height: 18px;
  padding: 10px 20px;
  color: #ffffff;
  text-transform: uppercase;
}
.table_desc.wishlist table tbody tr td.product_total a:hover {
  background: #242424;
}

.wishlist_share {
  text-align: center;
  padding: 20px 0;
  border: 1px solid #ddd;
}
.wishlist_share h3 {
  font-size: 18px;
  color: #242424;
  font-weight: 700;
  text-transform: capitalize;
}
.wishlist_share ul li {
  display: inline-block;
}
.wishlist_share ul li a {
  padding: 0 10px;
  color: #555;
  display: block;
}
.wishlist_share ul li a:hover {
  color: #e2002b;
}

.wishlist_area {
  padding-bottom: 60px;
}

/*wishlist css end*/
/* 17. contact page css here */
.contact_area {
  margin-bottom: 60px;
}

.contact_message h3 {
  font-size: 25px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .contact_message h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.contact_message p {
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 20px;
}
.contact_message ul li {
  padding: 13px 0;
  border-top: 1px solid #ddd;
}
.contact_message ul li:last-child {
  padding-bottom: 0;
}
.contact_message ul li i {
  margin-right: 10px;
}
.contact_message ul li a {
  color: #e2002b;
}
.contact_message ul li a:hover {
  color: #242424;
}
.contact_message label {
  line-height: 18px;
  color: #242424;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_message input {
  border: 1px solid #ddd;
  height: 45px;
  background: #ffffff;
  width: 100%;
  padding: 0 20px;
  color: #747474;
}
.contact_message textarea {
  height: 170px;
  border: 1px solid #ddd;
  background: #ffffff;
  resize: none;
  margin-bottom: 20px;
  width: 100%;
  padding: 10px 20px;
  color: #747474;
}
.contact_message button {
  font-weight: 700;
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: uppercase;
  border: none;
  background: #e2002b;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_message button:hover {
  background: #242424;
}
.contact_message input[type=submit] {
  font-weight: 700;
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: uppercase;
  border: none;
  background: #e2002b;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_message input[type=submit]:hover {
  background: #242424;
}
@media only screen and (max-width: 767px) {
  .contact_message.content {
    margin-bottom: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_message.content {
    margin-bottom: 52px;
  }
}
.contact_message.form p.form-messege {
  margin-bottom: 0;
}

.contact_map {
  margin-bottom: 60px;
}

.map-area #googleMap {
  height: 460px;
  width: 100%;
}

/*contact page css end*/
/* 19. login page css here */
.account_form h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 767px) {
  .account_form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.account_form form {
  border: 1px solid #ddd;
  padding: 23px 20px 29px;
  border-radius: 5px;
}
.account_form label {
  font-size: 15px;
  font-weight: 400;
  color: #242424;
  cursor: pointer;
  line-height: 12px;
  margin-bottom: 12px;
}
.account_form label:hover {
  color: #e2002b;
}
.account_form input {
  border: 1px solid #ddd;
  height: 40px;
  max-width: 100%;
  padding: 0 20px;
  background: none;
  width: 100%;
}
.account_form button {
  background: #e2002b;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  line-height: 21px;
  padding: 5px 20px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 20px;
  border-radius: 20px;
}
.account_form button:hover {
  background: #242424;
}

.login_submit label input[type="checkbox"] {
  width: 15px;
  height: 13px;
  margin-right: 3px;
}

.login_submit {
  text-align: right;
}
.login_submit a {
  font-size: 13px;
  color: #e2002b;
  float: left;
  line-height: 39px;
}
@media only screen and (max-width: 767px) {
  .login_submit a {
    float: none;
    line-height: 18px;
    display: block;
    margin-bottom: 20px;
  }
}

.customer_login {
  padding-bottom: 59px;
}

.account_form p {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .account_form.register {
    margin-top: 57px;
  }
}

/*login page css end */
/* 18. faq page css here */
.faq_content_area {
  padding-bottom: 53px;
}

.accordion_area {
  padding-bottom: 60px;
}

.card.card_dipult {
  border: none;
  margin-bottom: 10px;
}

.card.card_dipult:last-child {
  margin-bottom: 0;
}

.card-header.card_accor {
  padding: 0;
  border: none;
}
.card-header.card_accor button {
  height: 45px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: initial;
}
@media only screen and (max-width: 767px) {
  .card-header.card_accor button {
    height: 60px;
  }
}
.card-header.card_accor button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .card-header.card_accor button i {
    right: 10px;
  }
}
.card-header.card_accor button.btn-link {
  border: 1px solid #e2002b;
  width: 100%;
  text-align: left;
  color: #e2002b;
  font-size: 13px;
}
.card-header.card_accor button.btn-link.collapsed {
  background: #f2f2f2;
  border: 1px solid #ddd;
  width: 100%;
  text-align: left;
  color: #242424;
}

.accordion_area .collapse.show {
  border-left: 1px solid #e2002b;
  border-bottom: 1px solid #e2002b;
  border-right: 1px solid #e2002b;
}

.card-header.card_accor button.btn-link i.fa-plus {
  display: none;
}

.card-header.card_accor button.btn-link.collapsed i.fa-plus {
  display: block;
}

.card-header.card_accor button.btn-link.collapsed i.fa-minus {
  display: none;
}

.faq_content_wrapper h4 {
  font-size: 18px;
  color: #242424;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .faq_content_wrapper h4 {
    font-size: 14px;
    line-height: 24px;
  }
}

/*faq page css end*/
/*  20. my account css here */
@media only screen and (max-width: 767px) {
  .dashboard_tab_button {
    margin-bottom: 20px;
  }
}
.dashboard_tab_button ul li {
  margin-bottom: 5px;
}
.dashboard_tab_button ul li a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  text-transform: capitalize;
  background: #242424;
  border-radius: 3px;
}
.dashboard_tab_button ul li a:hover {
  background: #e2002b;
  color: #ffffff;
}
.dashboard_tab_button ul li a.active {
  background: #e2002b;
}

.main_content_area {
  padding-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .main_content_area {
    padding-bottom: 54px;
  }
}

.dashboard_content h3 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  color: #242424;
  margin-bottom: 15px;
}
.dashboard_content h4 {
  font-size: 20px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}
.dashboard_content a {
  color: #e2002b;
  font-weight: 500;
}
.dashboard_content p a {
  color: #e2002b;
  font-weight: 500;
}

.table-responsive table thead {
  background: #f2f2f2;
}
.table-responsive table thead tr th {
  text-align: center;
}
.table-responsive table tbody tr td {
  border-right: 1px solid #ddd;
  color: #242424;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  text-align: center;
  min-width: 150px;
}
.table-responsive table tbody tr td:last-child a {
  color: #e2002b;
}
.table-responsive .table {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.dashboard_content address {
  font-weight: 500;
  color: #242424;
}

.input-radio span input[type="radio"], .account_login_form form span input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-right: 2px;
  position: relative;
  top: 2px;
}

.input-radio span {
  color: #242424;
  font-weight: 500;
  padding-right: 10px;
}

.account_login_form form input {
  border: 1px solid #ddd;
  background: none;
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 20px;
  color: #747474;
}

/*my account css end*/
/* 12. about page css here */
/*welcome about section css here*/
.welcome_about_section {
  margin-bottom: 94px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .welcome_about_section {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .welcome_about_section {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome_about_section {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome_about_section {
    margin-bottom: 55px;
  }
}

.welcome_about_inner {
  text-align: center;
}
.welcome_about_inner img {
  margin-bottom: 31px;
}
@media only screen and (max-width: 767px) {
  .welcome_about_inner img {
    margin-bottom: 20px;
  }
}
.welcome_about_inner p {
  font-size: 16px;
  line-height: 30px;
  padding: 0 70px;
  margin-bottom: 27px;
}
@media only screen and (max-width: 767px) {
  .welcome_about_inner p {
    padding: 0;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 18px;
  }
}
.welcome_about_inner p.author {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #242424;
  margin-bottom: 0;
  line-height: 20px;
}
.welcome_about_inner p.author span {
  color: #747474;
}

.welcome_eight {
  margin-bottom: 67px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome_eight {
    margin-bottom: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome_eight {
    margin-bottom: 50px;
  }
}

/*welcome about section css end*/
/* 12. about page css here */
.header_about {
  border-bottom: 1px solid #ddd;
}

.about_section {
  padding-bottom: 60px;
}
.about_section.section_two {
  padding: 0 194px;
}
.about_section.section_two .about_thumb {
  text-align: center;
}
.about_section.section_two .about_content {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about_content {
    margin-bottom: 30px;
  }
}
.about_content h1 {
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  color: #242424;
  font-size: 30px;
  margin-bottom: 19px;
}
@media only screen and (max-width: 767px) {
  .about_content h1 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.about_content p {
  color: #747474;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .about_content p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .view__work {
    margin-top: 18px;
  }
}
.view__work a {
  color: #242424;
  border: 1px solid #242424;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  padding: 10px 15px;
  display: inline-block;
  text-transform: uppercase;
}
.view__work a:hover {
  background: #e2002b;
  color: #fff;
  border-color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .view__work a {
    padding: 7px 9px;
    height: 33px;
    font-size: 12px;
  }
}

.counterup_section {
  padding-bottom: 30px;
}

.counter_img {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .counter_img {
    margin-right: 10px;
  }
}

.single_counterup {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f3f3f3;
  padding: 88px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.about_section.section_two {
  padding: 25px 20px 18px;
}

.counter_info h2 {
  font-size: 30px;
  font-weight: 500;
  color: #242424;
  margin-bottom: 5px;
  line-height: 33px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .counter_info h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.counter_info p {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #747474;
  margin-bottom: 0;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .counter_info p {
    font-size: 11px;
  }
}

.about_progressbar {
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_progressbar {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_progressbar {
    padding-bottom: 70px;
  }
}
.about_progressbar.about_prog {
  background-color: #e2002b;
  border-radius: 3px;
}
.about_progressbar.about_prog span.progress_persent {
  position: absolute;
  left: 50px;
  text-transform: uppercase;
}
.about_progressbar.porgress_two {
  padding: 5px 20px 35px;
}

@media only screen and (max-width: 767px) {
  .progressbar_inner {
    margin-bottom: 40px;
  }
}
.progressbar_inner h2 {
  font-size: 25px;
  color: #242424;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .progressbar_inner h2 {
    font-size: 21px;
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .progressbar_inner h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.progress_skill {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .progress_skill {
    margin-bottom: 33px;
  }
}
.progress_skill:last-child {
  margin-bottom: 0;
}
.progress_skill span.progress_discount {
  position: absolute;
  left: -2px;
  background: #242424;
  border-radius: 100%;
  border: 3px solid #e2002b;
  color: #fff;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  text-align: center;
  line-height: 35px;
  z-index: 9;
}
.progress_skill .progress-bar {
  background: #e2002b;
}

.progress_skill.one .progress-bar {
  width: 60%;
}

.progress_skill.two .progress-bar {
  width: 90%;
}

.progress_skill.three .progress-bar {
  width: 70%;
}

.progress_skill.four .progress-bar {
  width: 80%;
}

/*about page css end*/
/* 22. services page css here */
.srrvices_gallery {
  padding-bottom: 30px;
}

.services_content h3 {
  font-size: 15px;
  color: #242424;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 11px;
  line-height: 14px;
}
.services_content p {
  color: #747474;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.services_thumb {
  margin-bottom: 20px;
}

.single_services {
  margin-bottom: 25px;
}

.our_services {
  padding: 53px 0 24px;
  background: #ECECEC;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our_services {
    padding: 53px 0 28px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .our_services {
    padding: 52px 0 26px;
    margin-bottom: 60px;
  }
}

.services_item {
  margin-bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services_title {
  text-align: center;
  margin-bottom: 35px;
}
.services_title h2 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 11px;
  color: #242424;
}

.services_icone {
  margin-right: 15px;
}
.services_icone i {
  font-size: 35px;
  line-height: 46px;
  color: #e2002b;
}

.services_desc h3 {
  font-size: 13px;
  color: #242424;
  font-weight: 500;
}
.services_desc p {
  color: #747474;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services_section_thumb {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .services_section_thumb {
    margin-bottom: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .unlimited_services {
    margin-bottom: 59px;
  }
}
@media only screen and (max-width: 767px) {
  .unlimited_services {
    margin-bottom: 59px;
  }
}

.unlimited_services_content {
  text-align: center;
}
.unlimited_services_content h1 {
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  color: #242424;
  font-size: 25px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .unlimited_services_content h1 {
    line-height: 25px;
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .unlimited_services_content h1 {
    line-height: 21px;
    font-size: 20px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .unlimited_services_content h1 {
    line-height: 20px;
    font-size: 18px;
    margin-bottom: 6px;
  }
}
.unlimited_services_content p {
  color: #747474;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .unlimited_services_content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .unlimited_services_content p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

.priceing_table {
  background: #ECECEC;
  padding: 60px 0 30px;
}

.single_priceing {
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px #FFFFFF inset, 0 1px 3px rgba(34, 25, 25, 0.4);
  box-shadow: 0 1px #FFFFFF inset, 0 1px 3px rgba(34, 25, 25, 0.4);
  text-align: center;
  margin-bottom: 30px;
}

.priceing_title {
  padding: 20px;
  background: #e2002b;
}
.priceing_title h1 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.priceing_list {
  padding: 0 20px 30px;
}
.priceing_list h1 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 36px 0 24px;
  margin: 0;
  line-height: 20px;
  color: #747474;
}
.priceing_list h1 span {
  color: #242424;
  font-size: 40px;
}
.priceing_list ul li {
  color: #747474;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  line-height: 24px;
}
.priceing_list ul li:first-child {
  border-top: 1px solid #ddd;
}
.priceing_list a {
  margin: 30px 0 0;
  line-height: 40px;
  padding: 0 20px;
  border: 1px solid #242424;
  color: #242424;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.priceing_list a.list_button, .priceing_list a:hover {
  background: #e2002b;
  border-color: #e2002b;
  color: #fff;
}

.advantages_ecommerce {
  padding: 56px 0 54px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages_ecommerce {
    padding: 58px 0 57px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages_ecommerce {
    padding: 58px 0 60px;
  }
}
.advantages_ecommerce h3 {
  font-size: 25px;
  color: #242424;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages_ecommerce h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages_ecommerce h3 {
    font-size: 14px;
    line-height: 20px;
  }
}
.advantages_ecommerce p {
  font-size: 14px;
  color: #242424;
  font-style: italic;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages_ecommerce p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages_ecommerce p {
    font-size: 13px;
  }
}

.advantages_button {
  text-align: center;
}
.advantages_button a {
  font-size: 14px;
  color: #242424;
  padding: 10px 20px;
  display: inline-block;
  border: 2px solid #242424;
}
.advantages_button a:hover {
  background: #e2002b;
  color: #fff;
  border-color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .advantages_button a {
    padding: 5px 11px;
    font-size: 13px;
    margin-top: 20px;
  }
}

/*services page css end*/
/* 21. portfolio page css here */
.portfolio_button {
  text-align: center;
  margin-bottom: 35px;
  background: #ddd;
  padding: 35px 0;
}
@media only screen and (max-width: 767px) {
  .portfolio_button {
    padding: 35px 0 28px;
  }
}
.portfolio_button button {
  color: #747474;
  background: #ffffff;
  border-right: 2px solid #ddd;
  line-height: 45px;
  padding: 0 30px;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 700;
  display: inline-block;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.portfolio_button button:hover {
  background: #e2002b;
  color: #ffffff;
}
.portfolio_button button.active {
  background: #e2002b;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .portfolio_button button {
    margin-bottom: 7px;
    margin-left: 5px;
    line-height: 38px;
    padding: 0 26px;
  }
}

.portfolio_thumb {
  position: relative;
}
.portfolio_thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #e2002b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.portfolio_popup {
  position: absolute;
  top: 50%;
  left: 45%;
  text-align: center;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}
.portfolio_popup a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  color: #747474;
  transform: scale(0);
  border-radius: 50%;
  background: #ddd;
}
.portfolio_popup a:hover {
  color: #ffffff;
  background: #000000;
}

.single_portfolio_inner {
  margin-bottom: 30px;
  overflow: hidden;
}
.single_portfolio_inner:hover .portfolio_thumb::before {
  opacity: 0.5;
  visibility: visible;
  transform: scale(1);
}
.single_portfolio_inner:hover .portfolio_popup {
  opacity: 1;
  visibility: visible;
}
.single_portfolio_inner:hover .portfolio_popup a {
  transform: scale(1);
}
.single_portfolio_inner:hover .portfolio__content {
  left: 30px;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_portfolio_inner:hover .portfolio__content {
    left: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .single_portfolio_inner:hover .portfolio__content {
    left: 13px;
  }
}

.portfolio__content {
  position: absolute;
  bottom: 30px;
  left: -85px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__content {
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__content {
    bottom: 20px;
  }
}
.portfolio__content h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__content h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__content h3 {
    font-size: 14px;
  }
}
.portfolio__content h3 a {
  color: #ffffff;
}
.portfolio__content h3 a:hover {
  color: #242424;
}

.portfolio_section_area {
  margin-bottom: 30px;
}

.blog_details.portfolio_details {
  margin-bottom: 59px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details.portfolio_details {
    margin-bottom: 49px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details.portfolio_details {
    margin-bottom: 49px;
  }
}
.blog_details.portfolio_details .comments_form {
  margin-bottom: 0;
}

.portfolio_widgets .footer_top {
  padding-bottom: 0;
  border-bottom: 0;
}
.portfolio_widgets .footer_top_inner {
  padding: 55px 0 52px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio_widgets .footer_top_inner {
    padding: 55px 0 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio_widgets .footer_top_inner {
    padding: 55px 0 39px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio_widgets .footer_top_inner {
    padding: 55px 0 35px;
  }
}

/* 13. blog page css here */
.header_blog {
  border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_sidebar {
    margin-bottom: 50px;
  }
}

.sidebar_widget h3.widget_title {
  padding: 0 0 8px;
  border-bottom: 1px solid #ddd;
  color: #242424;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 500;
  line-height: 24px;
}
.sidebar_widget.search_form {
  margin-bottom: 45px;
}
.sidebar_widget.search_form form {
  position: relative;
}
.sidebar_widget.search_form form input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 20px;
  color: #747474;
  border: 1px solid #ddd;
}
.sidebar_widget.search_form form button {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  background: inherit;
  border: 0;
  color: #747474;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar_widget.search_form form button:hover {
  color: #e2002b;
}
.sidebar_widget.widget_categories {
  border: 1px solid #ddd;
  margin-bottom: 39px;
}
.sidebar_widget.widget_categories h3.widget_title {
  padding: 12px 15px;
}
.sidebar_widget.widget_categories ul {
  padding: 0 0 19px 15px;
}
.sidebar_widget.widget_categories ul li {
  line-height: 30px;
}
.sidebar_widget.widget_categories ul li a {
  color: #747474;
}
.sidebar_widget.widget_categories ul li a:hover {
  color: #e2002b;
}
.sidebar_widget.recent_post {
  margin-bottom: 40px;
}
.sidebar_widget.tags_widget ul li {
  display: inline-block;
}
.sidebar_widget.tags_widget ul li a {
  padding: 5px 20px;
  border: 1px solid #ddd;
  display: block;
  margin: 0 10px 10px 0;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 20px;
  border-radius: 20px;
  color: #747474;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar_widget.tags_widget ul li a {
    padding: 5px 17px;
  }
}
.sidebar_widget.tags_widget ul li a:hover {
  background: #e2002b;
  color: #ffffff;
  border-color: #e2002b;
}

.blog_grid {
  overflow: hidden;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_grid {
    margin-bottom: 59px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_grid {
    margin-bottom: 54px;
  }
}
.blog_grid .blog_thumb {
  float: left;
  width: 40%;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog_grid .blog_thumb {
    float: inherit;
    width: 100%;
    margin-bottom: 21px;
  }
}
.blog_grid .blog_thumb_active {
  float: left;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .blog_grid .blog_thumb_active {
    float: inherit;
    width: 100%;
    margin-bottom: 20px;
  }
}
.blog_grid .blog_thumb_active .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 30px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  height: 30px;
  background: #ddd;
  border-radius: 100%;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog_grid .blog_thumb_active .owl-nav div.owl-next {
  right: 0;
  left: auto;
}
.blog_grid .blog_thumb_active .owl-nav div:hover {
  background: #e2002b;
  color: #ffffff;
}
.blog_grid .blog_content {
  float: right;
  padding-left: 40px;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .blog_grid .blog_content {
    float: inherit;
    width: 100%;
    padding-left: 0;
  }
}
.blog_grid .blog_content h3.post_title {
  font-size: 20px;
  text-transform: inherit;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_grid .blog_content h3.post_title {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_grid .blog_content h3.post_title {
    font-size: 15px;
  }
}
.blog_grid .blog_content h3.post_title a {
  color: #242424;
}
.blog_grid .blog_content h3.post_title a:hover {
  color: #e2002b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_grid .blog_content .post_date {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_grid .blog_content .post_date span.day {
    font-size: 40px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_grid .blog_content a.read_more {
    margin-bottom: 5px;
  }
}
.blog_grid.video .blog_thumb {
  height: 240px;
}

.sidebar_post {
  margin-bottom: 30px;
  display: flex;
}
.sidebar_post:last-child {
  margin-bottom: 0;
}
.sidebar_post .post_img {
  width: 55px;
  margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar_post .post_img {
    width: 49px;
    margin-right: 8px;
  }
}
.sidebar_post .post_text h3 {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 3px;
  line-height: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar_post .post_text h3 {
    font-size: 13px;
  }
}
.sidebar_post .post_text h3 a {
  color: #747474;
}
.sidebar_post .post_text h3 a:hover {
  color: #e2002b;
}
.sidebar_post .post_text span {
  color: #7e7e7e;
  font-size: 12px;
}

.blog_grid.audio .blog_content h3.post_title {
  margin: 0 0 17px;
}
.blog_grid.audio .blog_content .blog_aduio_icone audio {
  width: 100%;
}

.blog_page {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page .sidebar_widget.search_form {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page .sidebar_widget.search_form {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page .sidebar_widget.widget_categories {
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page .sidebar_widget.widget_categories {
    margin-bottom: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page .sidebar_widget.recent_post {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page .sidebar_widget.recent_post {
    margin-bottom: 55px;
  }
}

.post_date {
  margin-bottom: 12px;
}
.post_date span.day {
  color: #a9a9a9;
  font-size: 48px;
  line-height: 40px;
}
.post_date span.month {
  font-size: 14px;
  color: #a9a9a9;
}

.blog_content p.post_desc {
  color: #a9a9a9;
  font-size: 13px;
  font-style: italic;
  line-height: 18px;
  margin-bottom: 7px;
}
.blog_content a.read_more {
  color: #747474;
  text-decoration: underline;
  font-style: italic;
  margin-bottom: 7px;
}
.blog_content a.read_more:hover {
  color: #e2002b;
}

.post_meta span {
  font-size: 13px;
  font-style: italic;
  line-height: 18px;
  margin-bottom: 5px;
  color: #747474;
}
.post_meta span a {
  color: #747474;
}
.post_meta span a:hover {
  color: #e2002b;
}

.blog_pagination {
  margin-bottom: 60px;
}
.blog_pagination .pagination {
  border: 1px solid #ddd;
  padding: 8px 10px;
  justify-content: center;
  margin-top: 0;
}

.footer_widgets.blog_widgets .footer_top {
  padding-bottom: 0;
  border-bottom: 0;
}
.footer_widgets.blog_widgets .footer_top_inner {
  padding: 56px 0 52px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_widgets.blog_widgets .footer_top_inner {
    padding: 56px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_widgets.blog_widgets .footer_top_inner {
    padding: 56px 0 35px;
  }
}

/*blog page css end*/
/*blog fullwidth css here*/
.blog_fullwidth {
  margin-bottom: 53px;
}
@media only screen and (max-width: 767px) {
  .blog_fullwidth {
    margin-bottom: 54px;
  }
}
.blog_fullwidth .blog_thumb {
  float: none;
  width: 100%;
  margin-bottom: 23px;
}
.blog_fullwidth .blog_thumb::before {
  display: none;
}
.blog_fullwidth .blog_thumb img {
  width: 100%;
}
.blog_fullwidth .blog_grid {
  margin-bottom: 53px;
}
.blog_fullwidth .blog_grid:last-child {
  margin-bottom: 0;
}
.blog_fullwidth .blog_grid .blog_content {
  float: none;
  width: 100%;
  padding-left: 0;
}
.blog_fullwidth .blog_grid .blog_thumb_active {
  float: none;
  width: 100%;
  margin-bottom: 23px;
}
.blog_fullwidth .blog_grid.video .blog_thumb {
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .blog_fullwidth .blog_grid.video .blog_thumb {
    height: 200px;
  }
}

/*blog fullwidth css end*/
/* 14. blog details css here */
.blog_info_inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .blog_info_inner {
    flex-direction: column;
  }
}
.blog_info_inner .post__date {
  background: #e2002b;
  color: #ffffff;
  font-weight: 700;
  padding: 15px 0 15px;
  position: relative;
  text-align: center;
  min-width: 70px;
  max-height: 75px;
  display: block;
  margin-right: 25px;
}
@media only screen and (max-width: 767px) {
  .blog_info_inner .post__date {
    display: inline-block;
    width: 70px;
    margin-bottom: 42px;
  }
}
.blog_info_inner .post__date::before {
  background: #e2002b;
  bottom: -58px;
  content: "";
  display: block;
  height: 58px;
  position: absolute;
  right: 0;
  width: 5px;
}
@media only screen and (max-width: 767px) {
  .blog_info_inner .post__date::before {
    display: none;
  }
}
.blog_info_inner .post__date span {
  display: block;
  line-height: 22px;
  text-transform: uppercase;
  font-size: 12px;
}
.blog_info_inner .post__date span.day {
  font-size: 25px;
  line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_wrapper {
    margin-bottom: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_wrapper {
    margin-bottom: 15px;
  }
}
.blog_details_wrapper .blog__thumb {
  margin-bottom: 44px;
}
.blog_details_wrapper .post_meta {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 7px 0;
  margin-bottom: 36px;
}
.blog_details_wrapper .post_meta span {
  font-style: normal;
  color: #747474;
  text-transform: uppercase;
}
.blog_details_wrapper .post_content p {
  color: #747474;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 15px;
}
.blog_details_wrapper .post_content blockquote {
  background: #e0e0e0;
  margin: 20px 0;
  padding: 30px 45px;
  font-style: italic;
}
.blog_details_wrapper .social_sharing {
  display: flex;
  padding: 5px 0 40px;
}
@media only screen and (max-width: 767px) {
  .blog_details_wrapper .social_sharing {
    flex-direction: column;
    padding: 5px 0 42px;
  }
}
.blog_details_wrapper .social_sharing h3 {
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-right: 50px;
}
@media only screen and (max-width: 767px) {
  .blog_details_wrapper .social_sharing h3 {
    margin-bottom: 12px;
  }
}
.blog_details_wrapper .social_sharing ul li {
  display: inline-block;
}
.blog_details_wrapper .social_sharing ul li a {
  font-size: 17px;
  padding: 0 25px;
  color: #747474;
  display: block;
  line-height: 30px;
  border-left: 1px solid #ddd;
}
.blog_details_wrapper .social_sharing ul li a:hover {
  color: #e2002b;
}
@media only screen and (max-width: 767px) {
  .blog_details_wrapper .social_sharing ul li a {
    padding: 0 17px;
    font-size: 19px;
    line-height: 23px;
  }
}
.blog_details_wrapper .social_sharing ul li:first-child a {
  padding-left: 0;
  border-left: 0;
}

.post_header h3 {
  padding: 0 0 12px;
  color: #242424;
  font-size: 28px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .post_header h3 {
    font-size: 22px;
  }
}

.author_box {
  display: flex;
  margin-bottom: 40px;
}
.author_box .author_img {
  margin-right: 20px;
  min-width: 70px;
}
@media only screen and (max-width: 767px) {
  .author_box .author_img {
    margin-right: 13px;
    min-width: 40px;
  }
}
.author_box .author_desc h3 {
  color: #242424;
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 500;
  line-height: 20px;
}
.author_box .author_desc h3 a {
  color: #242424;
}
.author_box .author_desc h3 a:hover {
  color: #e2002b;
}
.author_box .author_desc p {
  color: #747474;
  line-height: 21px;
  font-size: 14px;
}

.comments_box {
  margin-bottom: 36px;
}
.comments_box h3 {
  border-top: 1px solid #ddd;
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  padding-top: 20px;
  margin: 0 0 22px;
}

.comment_list {
  overflow: hidden;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.comment_list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.comment_list .comment-author-thumb {
  display: inline-block;
  float: left;
}
@media only screen and (max-width: 767px) {
  .comment_list .comment-author-thumb {
    width: 40px;
  }
}
.comment_list .comment_content {
  padding-left: 70px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .comment_list .comment_content {
    padding-left: 50px;
  }
}
.comment_list .comment_content h5 {
  font-size: 17px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 3px;
}
.comment_list .comment_content h5 a {
  color: #242424;
}
.comment_list .comment_content h5 a:hover {
  color: #e2002b;
}
.comment_list .comment_content span {
  color: #747474;
  line-height: 18px;
  margin-bottom: 7px;
  font-size: 14px;
}
.comment_list .comment_content p {
  margin-bottom: 0;
  font-size: 15px;
  color: #747474;
}

.comment_reply {
  position: absolute;
  top: 20px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .comment_reply {
    top: 0;
  }
}
.comment_reply a {
  color: #e2002b;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.comment_reply a:hover {
  color: #242424;
}

.comments_form {
  margin-bottom: 38px;
}
.comments_form h3 {
  border-top: 1px solid #ddd;
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  padding-top: 19px;
  margin: 0 0 22px;
}
.comments_form p {
  color: #747474;
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .comments_form form .row {
    flex-direction: row;
  }
}
.comments_form form label {
  color: #242424;
  font-size: 13px;
  line-height: 17px;
}
.comments_form form textarea {
  width: 100%;
  height: 130px;
  background: #ffffff;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  resize: none;
  padding: 10px;
}
.comments_form form input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 0 20px;
}
.comments_form form button {
  border: 0;
  line-height: 36px;
}
.comments_form form button:hover {
  background: #242424;
}

.comment_list.comment_border {
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  .comment_list.comment_border {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related_posts .row {
    flex-direction: row !important;
  }
}
.related_posts h3 {
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

.related_posts_thumb {
  margin-bottom: 13px;
}

.related_posts_content h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 5px;
}
.related_posts_content h3 a {
  color: #242424;
}
.related_posts_content h3 a:hover {
  color: #e2002b;
}
.related_posts_content span {
  color: #242424;
  font-size: 13px;
  line-height: 17px;
}

.blog_details {
  margin-bottom: 53px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details .blog_sidebar {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details .blog_sidebar {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .single_related_posts {
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_related_posts.column_3 {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .single_related_posts.column_3 {
    margin-bottom: 0;
  }
}

/*blog details css end*/
/*  26. modal css here */
.modal-dialog.modal-dialog-centered {
  min-width: 870px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog.modal-dialog-centered {
    min-width: 730px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-dialog.modal-dialog-centered {
    min-width: 90%;
  }
}

.modal_tab_img {
  text-align: center;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #ddd;
}
.modal_tab_img img {
  margin: 0 auto;
}

.modal_tab_button ul li a {
  padding: 0;
  border: 1px solid #ddd;
  margin: 0 2px;
}
.modal_tab_button ul li a img {
  width: 100%;
}

.modal_title h2 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 17px;
  color: #242424;
  line-height: 26px;
}

.modal_social h2 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: #242424;
  line-height: 20px;
}
.modal_social ul li {
  display: inline-block;
  margin-right: 3px;
}
.modal_social ul li a {
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #ddd;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  font-size: 15px;
  color: #242424;
  font-weight: 400;
}
.modal_social ul li a:hover {
  background: #e2002b;
  color: #ffffff;
  border-color: #e2002b;
}

.modal_price {
  margin-bottom: 16px;
}
.modal_price span {
  font-weight: 600;
  color: #e2002b;
  font-size: 16px;
}
.modal_price span.old_price {
  color: #747474;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 5px;
}

.modal_content {
  margin-bottom: 20px;
}
.modal_content p {
  line-height: 24px;
  font-size: 15px;
  color: #747474;
  margin: 0;
}

.modal_description p {
  line-height: 24px;
  font-size: 15px;
  color: #747474;
  margin: 0;
}

.modal_size h2 {
  font-size: 16px;
  color: #242424;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 7px;
  line-height: 20px;
}
.modal_size.mb-15 {
  margin-bottom: 29px;
}
.modal_size ul li {
  display: inline-block;
  margin-right: 3px;
}
.modal_size ul li a {
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #ddd;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  font-size: 13px;
  color: #242424;
  font-weight: 500;
}
.modal_size ul li a:hover {
  background: #e2002b;
  color: #ffffff;
  border-color: #e2002b;
}

.modal_add_to_cart form input {
  width: 80px;
  border: 1px solid #ddd;
  background: none;
  padding: 0 17px;
  border-radius: 5px;
  height: 40px;
}
.modal_add_to_cart form button {
  background: none;
  border: 1px solid #242424;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  background: #242424;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.modal_add_to_cart form button:hover {
  background: #e2002b;
  color: #ffffff;
  border-color: #e2002b;
}

.modal_body {
  padding: 0 6px 56px;
}
@media only screen and (max-width: 767px) {
  .modal_body {
    padding: 0 6px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .modal_body .modal_tab {
    margin-bottom: 60px;
  }
}

.modal-content button.close {
  position: relative;
  left: 94%;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #ddd;
  top: 10px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .modal-content button.close {
    left: 83%;
    width: 29px;
    height: 32px;
    top: 4px;
    margin-bottom: 14px;
  }
}

.product_navactive.owl-carousel .owl-dots {
  display: block;
}

.modal_add_to_cart.mb-15 {
  margin-bottom: 23px;
}

.modal_description.mb-15 {
  margin-bottom: 20px;
}

.nav.product_navactive.owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -35px;
}

.nav.product_navactive.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  display: inline-block;
  margin: 0 3px;
  border-radius: 50%;
}

.nav.product_navactive.owl-carousel .owl-dots .owl-dot.active {
  background: #e2002b;
}

/*modal css end*/
/* 25. newsletter popup css here */
.popup_close {
  position: absolute;
  right: 0px;
  top: -25px;
}
.popup_close span {
  font-size: 11px;
  text-transform: uppercase;
  padding: 3px 14px;
  border: 1px solid #ffffff;
  font-weight: 600;
  line-height: 17px;
  color: #ffffff;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup_close span:hover {
  color: #e2002b;
}

.popup_text {
  margin-bottom: 27px;
}
.popup_text h2 {
  font-size: 22px;
  text-transform: uppercase;
  color: #555;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .popup_text h2 {
    font-size: 14px;
    margin-bottom: 13px;
    line-height: 24px;
  }
}
.popup_text p {
  padding: 0 90px;
  font-size: 14px;
  color: #242424;
  font-weight: 400;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .popup_text p {
    padding: 0;
  }
}
.popup_text form {
  width: 480px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .popup_text form {
    width: 100%;
  }
}
.popup_text input {
  background: #EBEBEB;
  padding: 0 159px 0 20px;
  height: 45px;
  border: 0;
  width: 100%;
  color: #747474;
}
@media only screen and (max-width: 767px) {
  .popup_text input {
    padding: 0 104px 0 20px;
  }
}
.popup_text button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  height: 100%;
  width: 136px;
  background: #e2002b;
  cursor: pointer;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup_text button:hover {
  background: #242424;
}
@media only screen and (max-width: 767px) {
  .popup_text button {
    width: 80px;
    font-size: 11px;
  }
}

.newsletter_popup {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  z-index: 9999999;
  opacity: 0;
  position: fixed;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
}

.popup_container {
  margin: auto;
  width: 790px;
  padding: 75px 50px;
  text-align: center;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .popup_container {
    width: 620px;
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .popup_container {
    width: 90%;
    padding: 25px 20px;
  }
}

.popup_footer input[type="checkbox"] {
  cursor: pointer;
  width: 20px;
  left: 0;
  height: 20px;
  display: none;
}

.popup_footer span.checkmark {
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #dedede;
  z-index: -1;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup_footer span.checkmark::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 3px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup_footer label {
  margin-bottom: 0;
  color: #242424;
  text-transform: capitalize;
  font-weight: 500;
  margin-left: 14px;
  line-height: 17px;
  cursor: pointer;
}

.popup_footer input:checked ~ span.checkmark::before {
  left: 7px;
  opacity: 1;
}

.popup_footer input:checked ~ span.checkmark {
  background: #e2002b;
}

.popup_footer a:focus::after {
  opacity: 1;
}

.popup_footer a:focus::before {
  background: #e2002b;
}

/*newsletter popup css end*/
/* 11. error page css heer  */
.header_error {
  border-bottom: 1px solid #ddd;
}

.error_form {
  text-align: center;
}
.error_form h1 {
  font-size: 200px;
  font-weight: 700;
  color: #e2002b;
  letter-spacing: 10px;
  line-height: 160px;
  margin: 0 0 27px;
}
@media only screen and (max-width: 767px) {
  .error_form h1 {
    font-size: 130px;
    line-height: 120px;
    letter-spacing: 4px;
    margin: 0 0 18px;
  }
}
.error_form h2 {
  color: #242424;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .error_form h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 23px;
  }
}
.error_form p {
  font-size: 17px;
  color: #747474;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .error_form p {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 23px;
  }
}
.error_form form {
  width: 450px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .error_form form {
    width: 100%;
  }
}
.error_form form input {
  padding: 0 93px 0 30px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  color: #747474;
  height: 40px;
  width: 100%;
}
.error_form form button {
  position: absolute;
  right: 0;
  height: 100%;
  border: none;
  background: no-repeat;
  font-size: 20px;
  color: #747474;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  text-transform: uppercase;
  padding: 0 15px;
  font-weight: 600;
}
.error_form form button:hover {
  color: #e2002b;
}
.error_form a {
  color: #fff;
  display: inline-block;
  background: #e2002b;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: uppercase;
  margin-top: 35px;
}
.error_form a:hover {
  background: #242424;
}

.error_section {
  padding-bottom: 80px;
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .error_section {
    padding-bottom: 60px;
    padding-top: 50px;
  }
}

.breadcrumbs_area{border-top: 1px solid #ddd;}
/*404 page css end*/

/*# sourceMappingURL=style.css.map */

.zs-enabled{position:relative}.zs-enabled .zs-slideshow,.zs-enabled .zs-slides,.zs-enabled .zs-slide{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;overflow:hidden}.zs-enabled .zs-slideshow .zs-slides .zs-slide{background:transparent none no-repeat 50% 50%;background-size:cover;position:absolute;visibility:hidden;opacity:0;-webkit-transform:scale(1.2, 1.2);-moz-transform:scale(1.2, 1.2);-ms-transform:scale(1.2, 1.2);-o-transform:scale(1.2, 1.2);transform:scale(1.2, 1.2)}.zs-enabled .zs-slideshow .zs-slides .zs-slide.active{visibility:visible;opacity:1}.zs-enabled .zs-slideshow .zs-bullets{position:absolute;z-index:4;bottom:20px;left:0;width:100%;text-align:center}.zs-enabled .zs-slideshow .zs-bullets .zs-bullet{display:inline-block;cursor:pointer;border:2px solid #ccc;width:14px;height:14px;border-radius:8px;margin:10px;background-color:#4a4a4a}.zs-enabled .zs-slideshow .zs-bullets .zs-bullet.active{background-color:#ccc}.zs-enabled .zs-slideshow:after{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;background:transparent none repeat 0 0}.zs-enabled.overlay-plain .zs-slideshow:after{background-image:url(plain.png)}.zs-enabled.overlay-dots .zs-slideshow:after{background-image:url(dots.png)}

#demo-1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    background-color: #7cacf1;
    z-index: 1;
    top: -180px;
}
.demo-inner-content {
    position: relative;
    z-index: 2;
    margin: 240px auto 180px auto;
    padding: 40px;
    max-width: 80%;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}
.demo-inner-content h1 {
    font-size: 35px;
    margin: 0;
    color: #ffffff;
    margin-bottom: 12px;
}
.demo-inner-content h1 {
    font-size: 35px;
    margin: 0;
    color: #ffffff;
    margin-bottom: 12px;
}
.header_area{z-index: 2;
    position: relative;webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    background: -moz-linear-gradient(top, #25211e 0%, rgba(37,33,30,0) 100%);
    background: -webkit-linear-gradient(top, #25211e 0%, rgba(37,33,30,0) 100%);
    background: linear-gradient(to bottom, #25211e 0%, rgba(37,33,30,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25211e', endColorstr='#0025211e', GradientType=0);}

.masonry { /* Masonry container */
    -webkit-column-count: 5;
  -moz-column-count:5;
  column-count: 5;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
   margin: 1.5em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}
.item {
    display: inline-block;
    background: #fff;
    padding: 1em;
    margin: 0 0 1.5em;
    width: 100%;
	-webkit-transition:1s ease all;
    box-sizing: border-box;
}
.item img{max-width:100%;border-radius: 6px;}

@media only screen and (max-width: 320px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px){
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1200px){
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}
@media only screen and (min-width: 1201px) {
    .masonry {
        -moz-column-count: 5;
        -webkit-column-count: 5;
        column-count: 5;
    }
}
.masonry .product_content{margin-top: 10px;}
.masonry .product_content h3 a{color: #333;font-weight: 700;}
.pos-top{position: relative;top: -130px;}







#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #1a1a1a;
}
.sidebar-nav li:nth-child(2):before {
    background-color: #ec1b5a;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #79aefe;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #314190;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #279636;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #7d5d81;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #ead24c;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #2d2366;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #35acdf;   
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 115px;  
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #fff;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 7px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #fff;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}