@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:100,100i,300,300i,400,400i,600,600i,700,700i&display=swap");
* {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Josefin Sans", sans-serif;
  color: #252525;
  letter-spacing: 1px;
}

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;
  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;
}

figure {
  padding: 0;
  margin: 0;
}

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

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.container {
  max-width: 1470px;
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 464px;
  }
}
@media only screen and (max-width: 479px) {
  .container, .container-fluid {
    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: #ED1921 none repeat scroll 0 0;
  bottom: 105px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  height: 45px;
  line-height: 45px;
  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;
  }
}

.mt-0 {
margin-top:0px;
}
.mt-23 {
  margin-top: 23px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-57 {
  margin-top: 57px;
}

.mt-60 {
  margin-top: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


.top-strip {
position:relative;
top:0;
padding:20px 0px;
z-index:9999;
background:#222;
text-align:right;
}
.top-strip ul {
padding:0px;
margin:0px;
border:0px solid red;
padding-right:50px;
}
.top-strip li {
display:inline-block;
margin:0px 10px;
font-size:16px;
border:0px solid red;
color:#fff;
}
.top-strip li a {
font-size:16px;
color:#fff!important;
}
.top-strip li:last-child {
margin-right:0px;
}
@media (max-width: 767px) {
.top-strip ul {
padding-right:50px;
}
.top-strip li {
display:inline-block;
margin:0px 3px;
border:0px solid red;
}
}
/* 02. Element */
.button {
  background: #ED1921;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 22px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 3px;
}

/* 2. Home 1 Header css here */
/* 01. header css here */
.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #252525;
  top: 0;
}
.off_canvars_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.offcanvas_menu {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas_menu {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .offcanvas_menu {
    display: block;
  }
}

.offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 99999;
  top: 0;
  height: 100vh;
  transition: .5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 15px 30px;
  overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
  margin-left: 0;
}
.offcanvas_menu_wrapper .slinky-theme-default {
  background: inherit;
  min-height: 300px;
  overflow-y: auto;
}
.offcanvas_menu_wrapper .header_right_info {
  display: block;
  margin-bottom: 35px;
  text-align:left;
}
.offcanvas_menu_wrapper .header_right_info > ul > li > a {
  color: #252525;
}
.offcanvas_menu_wrapper .language_currency4 {
  display: block;
}
.offcanvas_menu_wrapper .search_form4 {
  display: block;
}

.offcanvas_main_menu > li.menu-item-has-children.menu-open > span.menu-expand {
  transform: rotate(180deg);
}
.offcanvas_main_menu > li ul li.menu-item-has-children.menu-open span.menu-expand {
  transform: rotate(180deg);
}

.offcanvas_main_menu li {
  position: relative;
}
.offcanvas_main_menu li:last-child {
  margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}
.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
.offcanvas_main_menu li a:hover {
  color: #ED1921;
}
.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.offcanvas_footer {
  margin-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.offcanvas_footer span a {
  font-size: 14px;
}
.offcanvas_footer span a:hover {
  color: #ED1921;
}
.offcanvas_footer ul {
  margin-top: 20px;
}
.offcanvas_footer ul li {
  display: inline-block;
  margin-right: 4px;
}
.offcanvas_footer ul li:last-child {
  margin-right: 0;
}
.offcanvas_footer ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 13px;
  color: #ffffff;
}
.offcanvas_footer ul li.facebook a {
  background: #3c5b9b;
}
.offcanvas_footer ul li.facebook a:hover {
  background: #ED1921;
}
.offcanvas_footer ul li.twitter a {
  background: #1DA1F2;
}
.offcanvas_footer ul li.twitter a:hover {
  background: #ED1921;
}
.offcanvas_footer ul li.pinterest a {
  background: #BD081B;
}
.offcanvas_footer ul li.pinterest a:hover {
  background: #ED1921;
}
.offcanvas_footer ul li.google-plus a {
  background: #DD4D42;
}
.offcanvas_footer ul li.google-plus a:hover {
  background: #ED1921;
}
.offcanvas_footer ul li.linkedin a {
  background: #010103;
}
.offcanvas_footer ul li.linkedin a:hover {
  background: #ED1921;
}

.slinky-theme-default a:not(.back) {
  padding: 10px 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}
.slinky-theme-default a:not(.back):hover {
  background: inherit;
  color: #ED1921;
}

.canvas_close {
  position: absolute;
  top: 10px;
  right: 13px;
}
.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: block;
  text-align: center;
  line-height: 35px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
}
.canvas_close a:hover {
  background: #ED1921;
  border-color: #ED1921;
  color: #fff;
}

.canvas_open {
  position: absolute;
  right: 25px;
  top: 36px;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .canvas_open {
    right: 20px;
    top: 26px;
  }
}
.canvas_open a {
  font-size: 30px;
  width: 43px;
  height: 40px;
  display: block;
  line-height: 44px;
  text-align: center;
  border: 1px solid #252525;
}
@media only screen and (max-width: 767px) {
  .canvas_open a {
    width: 32px;
    height: 32px;
    line-height: 35px;
    font-size: 25px;
  }
}
.canvas_open a:hover {
  color: #ED1921;
  border-color: #ED1921;
}

.sticky-header.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  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;
  border-bottom: 0;
  display: block;
}
@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;
    background: inherit;
    opacity: inherit;
  }
}
@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;
    background: inherit;
    opacity: inherit;
  }
}
.logo a img {
    max-width: 180px;
  }
.sticky-header.sticky .logo a img {
  max-width: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky-header.sticky .logo a img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sticky-header.sticky .logo a img {
    max-width: 100px;
  }
}
.sticky-header.sticky .main_menu nav > ul > li {
  padding: 21px 0;
}
.sticky-header.sticky .search_widget {
  top: 50px;
}
.sticky-header.sticky .dropdown_account {
  top: 50px;
}
.sticky-header.sticky .mini_cart {
  top: 55px;
}

/*header container css heer*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main_header {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 767px) {
  .main_header {
    padding: 0px 0;
  }
}

/* 2.4 main menu css here */
.menu_position {
  position: relative;
}

.main_menu {
  margin-right: 32px;
  padding-right: 32px;
  border-right: 1px solid #ebebeb;
  border:0px solid red;
  display:inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main_menu {
    margin-right: 22px;
    padding-right: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main_menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .main_menu {
    display: none;
  }
}
/*.main_menu nav > ul {
  display: flex;
  justify-content: flex-end;
}
.main_menu nav > ul > li {
  position: relative;
  padding: 31px 0;
  margin-right: 39px;
}
.main_menu nav > ul > li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main_menu nav > ul > li {
    margin-right: 22px;
  }
}

.main_menu nav > ul > li:hover .mega_menu {
  visibility: visible;
  max-height: 300px;
  padding: 25px 30px 30px 30px;
}
.main_menu nav > ul > li:hover > a {
  color: #ED1921;
}
.main_menu nav > ul > li > a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 0;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
.main_menu nav > ul > li > a i {
  margin-left: 3px;
}
.main_menu nav > ul > li > a.active {
  color: #ED1921;
}
.main_menu nav > ul > li ul.sub_menu {
  
}
.main_menu nav > ul > li:hover ul.sub_menu {
  visibility: visible;
  max-height: 360px;
  padding: 24px 20px;
}
.main_menu nav > ul > li ul.sub_menu li a {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
}
.main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #ED1921;
}*/






nav li {
	 position: relative;
	 padding:30px 0px;
	 margin-right: 30px;
}
 nav > ul {
	 display: flex;
}
 nav li a {
	 display: block;
	 padding: 10px 5px;
	 font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
	 transition: all 0.3s;
}
 nav li a:hover {
	 color: #ED1921;
}
nav > ul > li > a i {
  margin-left: 3px;
}
 nav ul ul {
	 visibility: hidden;
	 opacity: 0;
	 min-width: 330px;
	 /*max-height: 150px;*/
	 position: absolute;
	 top: 100%;
	 left: 0;
	 transition: all 0.3s;
	 z-index:99999;
	 background:#222;
}
 nav ul ul li {
 padding:0px 0px;
 }
  nav ul ul li a {
  color:#fff;
  font-size:14px;
  font-weight:400;
  padding: 10px 15px; 
  text-align:left; 
  }
  nav > ul > li:hover > a {
  color: #ED1921;
}
 nav ul li:hover > ul {
	 top: 100%;
	 visibility: visible;
	 opacity: 1;
}
 nav ul ul ul {
	 left: 100%;
	 top: 0%;
}
 nav ul ul li:hover > ul {
	 top: 0;
}

 





.main_menu nav > ul > li.mega_items {
  position: static;
}
.main_menu nav > ul > li .mega_menu {
  position: absolute;
  min-width: 100%;
  padding: 0 30px 0 30px;
  background: #252525;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  max-height: 0;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  left: 0;
  right: auto;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: 100%;
  text-align: left;
}

.mega_menu_inner {
  display: flex;
  justify-content: space-between;
}
.mega_menu_inner > li > a {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  color: #fff;
}
.mega_menu_inner > li > a:hover {
  color: #ED1921;
}
.mega_menu_inner > li ul li {
  display: block;
}
.mega_menu_inner > li ul li a {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 30px;
  text-transform: uppercase;
  color: #929292;
  font-style: italic;
}
.mega_menu_inner > li ul li a:hover {
  color: #ED1921;
}

/*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: 22px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .mean-container .mean-bar::after {
    left: 22px;
    font-size: 15px;
  }
}
.mean-container .mean-nav {
  max-height: 300px;
  overflow: auto;
}
.mean-container .mean-nav ul li a {
  font-weight: 400;
}
.mean-container a.meanmenu-reveal {
  float: left;
  right: 17px;
  top: -34px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .mean-container a.meanmenu-reveal {
    right: 15px;
    top: -34px;
  }
}
.mean-container a.meanmenu-reveal span {
  background: #fff;
}

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

@media only screen and (max-width: 767px) {
  .logo {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .logo a img {
    max-width: 160px;
  }
}

.header_right_info {
  display:inline-block;
  float:right;
  /*display: flex;
  justify-content: flex-end;*/
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_right_info {
    display: none;
    text-align: center;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_right_info {
    display: none;
    text-align: center;
    margin-left: 0;
  }
}
.header_right_info ul {
margin-top:38px;
}
.header_right_info > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 24px;
  border:0px solid red;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_right_info > ul > li {
    margin-right: 14px;
  }
}
.header_right_info > ul > li:hover > a {
  color: #ED1921;
}
.header_right_info > ul > li:last-child {
  margin-right: 0;
}
.header_right_info > ul > li > a {
  font-size: 20px;
  color: #999999;
}

/*header container righ*/
.header_container_right {
  /*display: flex;
  justify-content: flex-start;
  align-items: center;
  display:inline-block;*/
  text-align:center;
}

.search_widget {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 99;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_widget {
    left: -65px;
    top: 40px;
    right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .search_widget {
    left: 0px;
    top: 40px;
    right: auto;
  }
}
.search_widget form {
  position: relative;
  width: 290px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_widget form {
    width: 225px;
  }
}
@media only screen and (max-width: 767px) {
  .search_widget form {
    width: 225px;
  }
}
.search_widget form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.search_widget form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.search_widget form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.search_widget form input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.search_widget form input {
  padding: 10px 68px 10px 15px;
  height: 50px;
  line-height: 50px;
  font-size: 13px;
  color: #fff;
  border: none;
  width: 100%;
  background: #252525;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_widget form input {
    padding: 8px 68px 8px 15px;
    height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .search_widget form input {
    padding: 8px 68px 8px 15px;
    height: 38px;
  }
}
.search_widget form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  border: 0;
  background: #ED1921;
  color: #fff;
  font-size: 19px;
  padding: 0;
}
.search_widget form button:hover {
  background: #252525;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_widget form button {
    font-size: 15px;
    width: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .search_widget form button {
    font-size: 15px;
    width: 45px;
  }
}

/*search container css end*/
/*mini cart css here*/
.header-wishlist span.item_count {
  position: absolute;
  top: -6px;
  right: -14px;
  width: 17px;
  height: 17px;
  line-height: 17px;
  border-radius: 100%;
  text-align: center;
  background: #ED1921;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
}
.mini_cart_wrapper {
border:0px solid red!important;
width:36px;
height:36px;
background:url(../images/icon-cart-1.png) 0px 0px no-repeat;
padding-top:14px;
position:absolute;
right:20px;
top:10px;
  text-align: center!important;
}
.mini_cart_wrapper span.item_count {
  position: relative;
  line-height: 10px;
  border-radius: 100%;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.mini_cart {
  position: absolute;
  min-width: 340px;
  padding: 25px;
  background: #252525;
  border: 0;
  z-index: 999;
  right: 0;
  top: 65px;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart {
    padding: 20px 11px 20px;
    min-width: 260px;
    right: -66px;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart {
    padding: 20px 11px 20px;
    min-width: 260px;
    right: -66px;
  }
  .mini_cart_wrapper {
border:0px solid red!important;
width:36px;
height:36px;
background:url(../images/icon-cart-1.png) 0px 0px no-repeat;
padding-top:14px;
text-align:center!important;
}
.mini_cart_wrapper span.item_count {
  position: relative;
  line-height: 10px;
  border-radius: 100%;
  text-align: center!important;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
}

.cart_img {
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_img {
    width: 60px;
    margin-right: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_img {
    width: 60px;
    margin-right: 8px;
  }
}

.cart_info {
  width: 63%;
  text-align: left;
}
.cart_info a {
  font-weight: 700;
  font-size: 11px;
  line-height: 20px;
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-style: italic;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_info a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_info a {
    font-size: 12px;
  }
}
.cart_info a:hover {
  color: #ED1921;
}
.cart_info p {
  font-size: 14px;
  color: #777;
}
.cart_info p span {
  font-size: 16px;
  font-weight: 700;
  color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_info p span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_info p span {
    font-size: 14px;
  }
}

.cart_remove a {
  font-size: 15px;
  display: block;
  color: #ffffff;
}
.cart_remove a:hover {
  color: #ED1921;
}
.cart_remove a i {
  display: block;
  padding-left: 2px;
}

.cart_item {
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.mini_cart_table {
  padding: 23px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_table {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart_table {
    padding: 15px 0;
  }
}

.cart_total {
  display: flex;
  justify-content: space-between;
}
.cart_total span {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.cart_total span.price {
  font-weight: 700;
  color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_total span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_total span {
    font-size: 13px;
  }
}

.cart_button {
  margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_button {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_button {
    margin-right: 10px;
  }
}
.cart_button:last-child {
  margin-right: 0;
}
.cart_button a {
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  display: block;
  text-align: center;
  line-height: 24px;
  margin-bottom: 0;
  padding: 9px 15px 6px;
  background: #ED1921;
  color: #ffffff;
}
.cart_button a:hover {
  background: #ffffff;
  color: #ED1921;
}
.cart_button a i {
  font-size: 14px;
  margin-right: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_button a i {
    margin-right: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_button a i {
    margin-right: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_button a {
    padding: 9px 10px 6px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_button a {
    padding: 9px 10px 6px;
  }
}

.mini_cart_footer {
  display: flex;
  justify-content: flex-end;
}

/*header top css here*/
.dropdown_account {
  position: absolute;
  right: -30px;
  z-index: 9;
  width: 176px;
  text-align: left;
  padding: 20px;
  background: #252525;
  display: none;
  top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dropdown_account {
    right: -80px;
    top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown_account {
    right: -80px;
    top: 35px;
  }
}

.dropdown_account-list {
  margin-bottom: 19px;
  padding-bottom: 15px;
  border-bottom: 1px solid #aaa;
}
.dropdown_account-list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.dropdown_account-list label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.dropdown_account-list ul li a {
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.dropdown_account-list ul li a:hover {
  color: #ED1921;
}

/*-- 2.3 Categories menu css here --*/
.categories_menu {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu {
    margin-bottom: 25px;
  }
}

.categories_title {
  background: #14663b;
  padding: 0 30px;
  position: relative;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_title {
    height: 45px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_title {
    height: 43px;
    line-height: 43px;
  }
}
.categories_title::before {
  content: "\f394";
  color: #fff;
  display: inline-block;
  font-family: Ionicons;
  position: absolute;
  font-size: 22px;
  line-height: 0px;
  right: 20px;
  top: 50%;
  transform: translatey(-50%);
}
.categories_title h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 0;
  display: inline-block;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .categories_title h2 {
    font-size: 13px;
    line-height: 22px;
  }
}

.categories_menu_toggle {
  background: #ffffff;
  position: absolute;
  width: 100%;
  top: 100%;
  z-index: 9;
  display: none;
  box-shadow: 0px 0px 5.76px 0.24px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle {
    display: none;
    max-height: 350px;
    overflow: auto;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle {
    display: none;
    max-height: 350px;
    overflow: auto;
  }
}
.categories_menu_toggle > ul > li {
  position: relative;
}
.categories_menu_toggle > ul > li > a {
  font-size: 14px;
  line-height: 48px;
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  cursor: pointer;
  padding: 0 20px 0 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_menu_toggle > ul > li > a {
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li > a {
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li > a {
    line-height: 38px;
  }
}
.categories_menu_toggle > ul > li > a i.fa-angle-right {
  float: right;
  font-size: 15px;
  line-height: 35px;
  transition: .3s;
  -webkit-transition: .3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li > a i.fa-angle-right {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li > a i.fa-angle-right {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li > a:hover {
    color: #ED1921;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li > a:hover {
    color: #ED1921;
  }
}
.categories_menu_toggle > ul > li:last-child > a {
  border-bottom: 0;
}
.categories_menu_toggle > ul > li:hover ul.categories_mega_menu {
  opacity: 1;
  visibility: visible;
  left: 100%;
}
.categories_menu_toggle > ul > li:hover > a {
  color: #14663b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li:hover > a {
    background: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li:hover > a {
    background: inherit;
  }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu {
  position: absolute;
  left: 120%;
  width: 500px;
  background: #ffffff;
  padding: 25px 20px 23px;
  overflow: hidden;
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu {
    width: 480px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu {
    display: none;
    opacity: inherit !important;
    visibility: inherit !important;
    left: inherit !important;
    width: 100%;
    top: 100%;
    max-height: 350px;
    overflow: auto;
    transition: unset;
    box-shadow: inherit;
    position: inherit;
    padding: 0 20px 0px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu {
    display: none;
    opacity: inherit !important;
    visibility: inherit !important;
    left: inherit !important;
    width: 100%;
    top: 100%;
    max-height: 350px;
    overflow: auto;
    transition: unset;
    box-shadow: inherit;
    position: inherit;
    padding: 0 20px 0px 60px;
  }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu.open {
  display: block;
  left: 0;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
    padding: 0;
  }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a:hover {
  color: #14663b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li.menu_item_children > a {
    text-transform: capitalize;
    font-weight: 400;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li.menu_item_children > a {
    text-transform: capitalize;
    font-weight: 400;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li.menu_item_children > a {
    position: relative;
  }
  .categories_menu_toggle ul li.menu_item_children > a::before {
    position: absolute;
    content: "+";
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle ul li.menu_item_children > a {
    position: relative;
  }
  .categories_menu_toggle ul li.menu_item_children > a::before {
    position: absolute;
    content: "+";
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li.menu_item_children.open > a::before {
    display: none;
  }
  .categories_menu_toggle ul li.menu_item_children.open > a::after {
    position: absolute;
    content: "-";
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle ul li.menu_item_children.open > a::before {
    display: none;
  }
  .categories_menu_toggle ul li.menu_item_children.open > a::after {
    position: absolute;
    content: "-";
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_sub_menu {
    display: none;
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categorie_sub_menu {
    display: none;
    padding: 0 0 0 30px;
  }
}
.categorie_sub_menu li a {
  text-transform: capitalize;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}
.categorie_sub_menu li a:hover {
  color: #14663b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_sub_menu li a {
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .categorie_sub_menu li a {
    line-height: 38px;
  }
}

.categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
    width: 100%;
  }
}

.categorie_sub {
  opacity: 0;
  z-index: 999;
  position: absolute;
  width: 100%;
  left: 0;
  background: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  top: 65%;
  visibility: hidden;
}
.categorie_sub.open {
  top: 95%;
  opacity: 1;
  visibility: visible;
}

.categories_menu_toggle ul li.has-sub > a::before {
  position: absolute;
  content: "\f055";
  font-family: FontAwesome;
  top: 0;
  right: 20px;
  font-size: 18px;
  pointer-events: none;
}

.categories_menu_toggle ul li.has-sub > a.open::before {
  content: "\f056";
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
  display: block;
  line-height: 45px;
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a:hover {
  color: #14663b;
}

.categories_menu_toggle ul li ul.categories_mega_menu > li:first-child {
  padding-left: 0;
}

.categories_menu_toggle ul li ul.categories_mega_menu > li:last-child {
  padding-right: 0;
}

.categorie_banner {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 500px;
}
@media only screen and (max-width: 767px) {
  .categorie_banner {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_banner {
    display: none;
  }
}
.categorie_banner a img:hover {
  opacity: 0.8;
}

/*-- 2.7 Categories menu css end --*/
/*home two css heer*/
.header_two {
  background: #202020;
}
.header_two .sticky-header.sticky {
  background: rgba(32, 32, 32, 0.9);
}

.color_two .main_menu nav > ul > li > a {
  color: #ffffff;
}
.color_two .main_menu nav > ul > li > a.active {
  color: #ff847c;
}
.color_two .main_menu nav > ul > li:hover > a {
  color: #ff847c;
}
.color_two .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #ff847c;
}
.color_two .mega_menu_inner > li > a:hover {
  color: #ff847c;
}
.color_two .mega_menu_inner > li ul li a:hover {
  color: #ff847c;
}
.color_two .search_widget form button {
  background: #ff847c;
}
.color_two .search_widget form button:hover {
  background: #252525;
}
.color_two .dropdown_account-list ul li a:hover {
  color: #ff847c;
}
.color_two .mini_cart_wrapper span.item_count {
  color: #ff847c;
}
.color_two .cart_info a:hover {
  color: #ff847c;
}
.color_two .cart_info p span {
  color: #ff847c;
}
.color_two .cart_remove a:hover {
  color: #ff847c;
}
.color_two .cart_total span.price {
  color: #ff847c;
}
.color_two .cart_button a {
  background: #ff847c;
}
.color_two .cart_button a:hover {
  background: #ffffff;
  color: #ff847c;
}

.offcanvas_two .canvas_open a {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.offcanvas_two .canvas_open a:hover {
  color: #ff847c;
  border-color: #ff847c;
}

/*home three css here*/
.home3_body_wrapper {
  padding-right: 30px;
  padding-left: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home3_body_wrapper {
    padding-left: 237px;
  }
}
@media only screen and (max-width: 767px) {
  .home3_body_wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home3_body_wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.header_three {
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .header_three {
    z-index: 1;
    box-shadow: inherit;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three {
    z-index: 1;
    box-shadow: inherit;
  }
}
.header_three .container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .header_three .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.header_three .header_container {
  padding: 14px 0;
}
@media only screen and (max-width: 767px) {
  .header_three .header_container {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_three .header_container {
    padding: 0;
  }
}

.header3_top_position {
  position: fixed;
  z-index: 9;
  width: 270px;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  padding: 100px 30px 0;
  box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header3_top_position {
    width: 208px;
    padding: 100px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header3_top_position {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header3_top_position {
    display: none;
  }
}

.menu_three {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.menu_three nav > ul {
  flex-direction: column;
}
.menu_three nav > ul > li {
  padding: 0;
  margin-right: 0;
  margin-bottom: 15px;
}
.menu_three nav > ul > li > a i {
  float: right;
}
.menu_three nav > ul > li.mega_items {
  position: relative;
}
.menu_three nav > ul > li:last-child {
  margin-bottom: 0;
}
.menu_three nav > ul > li ul.sub_menu {
  left: 114%;
  top: 0;
}
.menu_three nav > ul > li .mega_menu {
  left: 114%;
  top: 0;
  width: 550px;
}

.header_social {
  margin-top: 80px;
}
.header_social ul li {
  display: inline-block;
  margin-right: 16px;
}
.header_social ul li:last-child {
  margin-right: 0;
}
.header_social ul li a {
  color: #7b7b7b;
  font-size: 18px;
}
.header_social ul li a:hover {
  color: #252525;
}

.header_right_info3 .search_widget {
  top: 56px;
}
.header_right_info3 .dropdown_account {
  top: 56px;
}
.header_right_info3 .mini_cart {
  top: 60px;
}

.color_three .search_widget form button {
  background: #14663b;
}
.color_three .search_widget form button:hover {
  background: #252525;
}
.color_three .dropdown_account-list ul li a:hover {
  color: #14663b;
}
.color_three .mini_cart_wrapper span.item_count {
  color: #14663b;
}
.color_three .cart_info a:hover {
  color: #14663b;
}
.color_three .cart_info p span {
  color: #14663b;
}
.color_three .cart_remove a:hover {
  color: #14663b;
}
.color_three .cart_total span.price {
  color: #14663b;
}
.color_three .cart_button a {
  background: #14663b;
}
.color_three .cart_button a:hover {
  background: #ffffff;
  color: #14663b;
}
.color_three .mega_menu_inner > li > a:hover {
  color: #14663b;
}
.color_three .mega_menu_inner > li ul li a:hover {
  color: #14663b;
}

.main_menu.color_three nav > ul > li > a.active {
  color: #14663b;
}
.main_menu.color_three nav > ul > li:hover > a {
  color: #14663b;
}
.main_menu.color_three nav > ul > li ul.sub_menu li a:hover {
  color: #14663b;
}

.offcanvas_three .canvas_open {
  right: 30px;
}
@media only screen and (max-width: 767px) {
  .offcanvas_three .canvas_open {
    right: 20px;
  }
}
.offcanvas_three .canvas_open a:hover {
  color: #14663b;
  border-color: #14663b;
}

/*home four css here*/
.header_top {
  background: #202020;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_top {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_top {
    display: none;
  }
}

.language_currency4 {
  margin-right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .language_currency4 {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .language_currency4 {
    display: none;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .language_currency4 {
    display: none;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}
.language_currency4 > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.language_currency4 > ul > li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .language_currency4 > ul > li {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .language_currency4 > ul > li {
    margin-right: 7px;
  }
}
.language_currency4 > ul > li:hover ul.dropdown_currency, .language_currency4 > ul > li:hover ul.dropdown_language {
  visibility: visible;
  max-height: 200px;
}
.language_currency4 > ul > li:hover > a {
  color: #b6a08e;
}
.language_currency4 > ul > li > a {
  text-transform: capitalize;
  line-height: 40px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .language_currency4 > ul > li > a {
    line-height: 22px;
    color: #252525;
  }
}
@media only screen and (max-width: 767px) {
  .language_currency4 > ul > li > a {
    line-height: 22px;
    color: #252525;
  }
}
.language_currency4 > ul > li > a i {
  margin-left: 3px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .language_currency4 > ul > li > a i {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .language_currency4 > ul > li > a i {
    margin-left: 0px;
  }
}
.language_currency4 > ul > li > a img {
  margin-right: 4px;
}

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

.dropdown_currency, .dropdown_language {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 130px;
  text-align: left;
  top: 100%;
  left: 0;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  overflow: hidden;
  z-index: 9999;
  border-radius: 3px;
  visibility: hidden;
  max-height: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dropdown_currency, .dropdown_language {
    left: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown_currency, .dropdown_language {
    left: -30px;
  }
}
.dropdown_currency li a, .dropdown_language li a {
  text-transform: capitalize;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 8px 8px 20px;
  line-height: 20px;
  color: #252525;
}
.dropdown_currency li a:hover, .dropdown_language li a:hover {
  background: #f2f2f2;
  color: #b6a08e;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dropdown_language {
    left: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown_language {
    left: -10px;
  }
}

.top_links {
  position: relative;
}
.top_links.text-right {
  text-align: right;
}
.top_links:hover .dropdown_links {
  visibility: visible;
  max-height: 200px;
}
.top_links > a {
  text-transform: capitalize;
  line-height: 40px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top_links > a {
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .top_links > a {
    line-height: 22px;
  }
}
.top_links > a i {
  margin-left: 3px;
}
.top_links > a img {
  margin-right: 4px;
}
.top_links > a:hover {
  color: #b6a08e;
}

.dropdown_links {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 130px;
  text-align: left;
  top: 100%;
  right: 0;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  overflow: hidden;
  z-index: 9999;
  border-radius: 3px;
  visibility: hidden;
  max-height: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dropdown_links {
    left: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown_links {
    left: -30px;
  }
}
.dropdown_links li a {
  text-transform: capitalize;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 8px 8px 20px;
  line-height: 20px;
  color: #252525;
}
.dropdown_links li a:hover {
  background: #f2f2f2;
  color: #b6a08e;
}

.header_social4 {
  margin-top: 0;
}
.header_social4 ul li {
  margin-right: 20px;
}
.header_social4 ul li:last-child {
  margin-right: 0;
}
.header_social4 ul li a {
  color: #ffffff;
  font-size: 20px;
}
.header_social4 ul li a:hover {
  color: #b6a08e;
}

.cart_wrapper4 {
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_wrapper4 {
    margin-left: 54px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_wrapper4 {
    margin-left: 54px;
    margin-bottom: 25px;
  }
}
.cart_wrapper4 span.item_count {
  left: 10px;
  top: 12px;
  right: auto;
  color: #b6a08e;
}
.cart_wrapper4 span.item_text {
  font-size: 16px;
  text-transform: capitalize;
  vertical-align: middle;
  margin-left: 5px;
}
.cart_wrapper4 > a:hover {
  color: #b6a08e;
}
.cart_wrapper4 .cart_info a:hover {
  color: #b6a08e;
}
.cart_wrapper4 .cart_info p span {
  color: #b6a08e;
}
.cart_wrapper4 .cart_remove a:hover {
  color: #b6a08e;
}
.cart_wrapper4 .cart_total span.price {
  color: #b6a08e;
}
.cart_wrapper4 .cart_button a {
  background: #b6a08e;
}
.cart_wrapper4 .cart_button a:hover {
  color: #b6a08e;
  background: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_form4 {
    display: none;
    margin-bottom: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .search_form4 {
    display: none;
    margin-bottom: 23px;
  }
}
.search_form4 form {
  position: relative;
  width: 230px;
  border-bottom: 1px solid #eaeaea;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search_form4 form {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .search_form4 form {
    margin: 0 auto;
  }
}
.search_form4 form input {
  border: 0;
  background: inherit;
  height: 45px;
  width: 100%;
  color: #666666;
  padding: 0 40px 0 0;
  font-size: 14px;
}
.search_form4 form button {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: inherit;
  height: 100%;
}

.menu_four {
  margin: 0;
  padding: 0;
  border-right: 0;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
}
.menu_four nav > ul {
  justify-content: center;
}
.menu_four nav > ul > li {
  padding: 12px 0;
  margin-right: 48px;
}
.menu_four nav > ul > li:hover > a {
  color: #b6a08e;
}
.menu_four nav > ul > li.mega_items {
  position: relative;
}
.menu_four nav > ul > li .mega_menu {
  min-width: 600px;
  left: -116px;
}
.menu_four nav > ul > li > a.active {
  color: #b6a08e;
}
.menu_four nav > ul > li ul.sub_menu li a:hover {
  color: #b6a08e;
}
.menu_four .mega_menu_inner > li > a:hover {
  color: #b6a08e;
}
.menu_four .mega_menu_inner > li ul li a:hover {
  color: #b6a08e;
}

.header_middle {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_middle {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_middle {
    padding: 0;
  }
}

.header_middle_right.text-right {
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_middle_right {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_middle_right {
    display: none;
  }
}

.logo_four {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .logo_four {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .logo_four {
    text-align: left;
  }
}

/*home five css here*/
.header5-top {
  display: none;
  padding: 25px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header5-top {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header5-top {
    display: block;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header5-top .logo a img {
    max-width: 172px;
  }
}

.header5_top_position {
  position: fixed;
  z-index: 9;
  width: 300px;
  left: 0;
  top: 0;
  height: 100%;
  background: #252525;
  padding: 40px 20px 0;
  box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header5_top_position {
    width: 226px;
    padding: 40px 20px 0;
    overflow: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header5_top_position {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header5_top_position {
    display: none;
  }
}
.header5_top_position .header_social {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.header5_top_position .header_social ul li a {
  color: #ffffff;
}
.header5_top_position .header_social ul li a:hover {
  color: #ED1921;
}

.search_form5 {
  margin: 30px 0 40px;
}
.search_form5 form {
  width: 100%;
}
.search_form5 form input {
  padding: 0 40px 0 12px;
}

.color_five nav > ul > li {
  border-bottom: 1px solid #3c3c3c;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.color_five nav > ul > li:hover > a {
  color: #ED1921;
}
.color_five nav > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.color_five nav > ul > li .mega_menu {
  left: 107%;
}
.color_five nav > ul > li > a {
  color: #ffffff;
}
.color_five nav > ul > li > a.active {
  color: #ED1921;
}
.color_five nav > ul > li ul.sub_menu {
  left: 107%;
}
.color_five nav > ul > li ul.sub_menu li a:hover {
  color: #ED1921;
}
.color_five .mega_menu_inner > li > a:hover {
  color: #ED1921;
}
.color_five .mega_menu_inner > li ul li a:hover {
  color: #ED1921;
}

.home5_body_wrapper {
  padding-left: 315px;
  padding-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home5_body_wrapper {
    padding-left: 237px;
  }
}
@media only screen and (max-width: 767px) {
  .home5_body_wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home5_body_wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/*home six css here*/
.header_discount6 p {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  font-style: italic;
}
.header_discount6 p a {
  color: #ed9153;
}

.header-six .header_top {
  background: inherit;
}

.header_top-inner6 {
  background: #202020;
  padding: 0 15px;
}

.color-six .language_currency4 > ul > li:hover > a {
  color: #ed9153;
}
.color-six .dropdown_currency li a:hover, .color-six .dropdown_language li a:hover {
  color: #ed9153;
}
.color-six .top_links > a:hover {
  color: #ed9153;
}
.color-six .dropdown_links li a:hover {
  color: #ed9153;
}
.color-six .cart_wrapper4 > a:hover {
  color: #ed9153;
}
.color-six .cart_wrapper4 span.item_count {
  color: #ed9153;
}
.color-six .cart_wrapper4 .cart_info p span {
  color: #ed9153;
}
.color-six .cart_wrapper4 .cart_info a:hover {
  color: #ed9153;
}
.color-six .cart_wrapper4 .cart_remove a:hover {
  color: #ed9153;
}
.color-six .cart_wrapper4 .cart_button a {
  background: #ed9153;
}
.color-six .cart_wrapper4 .cart_button a:hover {
  background: #fff;
  color: #000000;
}
.color-six .main_menu nav > ul > li:hover > a {
  color: #ed9153;
}
.color-six .main_menu nav > ul > li > a.active {
  color: #ed9153;
}
.color-six .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #ed9153;
}
.color-six .mega_menu_inner > li > a:hover {
  color: #ed9153;
}
.color-six .mega_menu_inner > li ul li a:hover {
  color: #ed9153;
}

.menu_six {
  margin: 0;
  padding: 0;
  border-right: 0;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
}
.menu_six nav > ul {
  justify-content: center;
}
.menu_six nav > ul > li {
  padding: 12px 0;
  margin-right: 48px;
}
.menu_six nav > ul > li.mega_items {
  position: relative;
}
.menu_six nav > ul > li .mega_menu {
  min-width: 600px;
  left: -116px;
}

/*home seven css here*/
.header-seven .header_top {
  background: inherit;
}

.header_top-inner7 {
  border-bottom: 1px solid #ededed;
  padding: 0 15px;
}
.header_top-inner7 .language_currency4 > ul > li > a {
  color: #252525;
}
.header_top-inner7 .language_currency4 > ul > li:hover > a {
  color: #e93838;
}
.header_top-inner7 .top_links > a {
  color: #252525;
}
.header_top-inner7 .top_links > a:hover {
  color: #e93838;
}

.menu_seven {
  border-right: 0;
  padding-right: 0;
  margin-right: 80px;
}

.menu_seven nav > ul > li {
  padding: 10px 0;
}

.color-seven .dropdown_currency li a:hover, .color-seven .dropdown_language li a:hover {
  color: #e93838;
}
.color-seven .dropdown_links li a:hover {
  color: #e93838;
}
.color-seven .main_menu nav > ul > li:hover > a {
  color: #e93838;
}
.color-seven .main_menu nav > ul > li > a.active {
  color: #e93838;
}
.color-seven .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #e93838;
}
.color-seven .mega_menu_inner > li > a:hover {
  color: #e93838;
}
.color-seven .mega_menu_inner > li ul li a:hover {
  color: #e93838;
}
.color-seven .mini_cart_wrapper span.item_count {
  color: #e93838;
}
.color-seven .cart_info a:hover {
  color: #e93838;
}
.color-seven .cart_remove a:hover {
  color: #e93838;
}
.color-seven .cart_info p span {
  color: #e93838;
}
.color-seven .cart_total span.price {
  color: #e93838;
}
.color-seven .cart_button a {
  background: #e93838;
}
.color-seven .cart_button a:hover {
  background: #fff;
  color: #e93838;
}
.color-seven .search_widget form button {
  background: #e93838;
}

/*home eight css here*/
.header-eight {
  background: #0881a3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-eight {
    margin-bottom: 30px;
  }
}
.header-eight .header_top {
  border-bottom: 1px solid #399ab5;
  background: inherit;
}

.middle_right8 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart_wrapper8 {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_wrapper8 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cart_wrapper8 {
    display: none;
  }
}
.cart_wrapper8 span.item_count {
  left: 9px;
  right: auto;
  color: #fff;
}
.cart_wrapper8 span.item_text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 1.5px;
}

.search_form8 {
  margin-right: 40px;
}
.search_form8 form {
  width: 570px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .search_form8 form {
    width: 470px;
  }
}
.search_form8 form input {
  padding: 0 50px 0 20px;
}
.search_form8 form button {
  right: 10px;
}

.menu_eight {
  margin: 0;
  padding: 0;
  border: 0;
}
.menu_eight nav > ul {
  justify-content: flex-start;
}
.menu_eight nav > ul > li {
  padding: 13px 0;
}
.menu_eight nav > ul > li > a {
  color: #fff;
}
.menu_eight nav > ul > li > a.active {
  color: #252525;
}
.menu_eight nav > ul > li:hover > a {
  color: #252525;
}

.header_bottom8 {
  background: #026e8d;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_bottom8 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_bottom8 {
    display: none;
  }
}

.header_top8 .language_currency4 > ul > li:hover > a {
  color: #252525;
}
.header_top8 .dropdown_currency li a:hover, .header_top8 .dropdown_language li a:hover {
  color: #0881a3;
}
.header_top8 .header_social4 ul li a:hover {
  color: #252525;
}
.header_top8 .top_links > a:hover {
  color: #252525;
}
.header_top8 .dropdown_links li a:hover {
  color: #0881a3;
}

.color_eight .cart_info a:hover {
  color: #0881a3;
}
.color_eight .cart_info p span {
  color: #0881a3;
}
.color_eight .cart_remove a:hover {
  color: #0881a3;
}
.color_eight .cart_total span.price {
  color: #0881a3;
}
.color_eight .cart_button a {
  background: #0881a3;
}
.color_eight .cart_button a:hover {
  background: #fff;
  color: #0881a3;
}
.color_eight .main_menu nav > ul > li:hover > a {
  color: #252525;
}
.color_eight .main_menu nav > ul > li > a.active {
  color: #252525;
}
.color_eight .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #0881a3;
}
.color_eight .mega_menu_inner > li > a:hover {
  color: #0881a3;
}
.color_eight .mega_menu_inner > li ul li a:hover {
  color: #0881a3;
}

.sticky-header.sticky .menu_eight nav > ul {
  justify-content: center;
}
.sticky-header.sticky .menu_eight nav > ul > li:hover > a {
  color: #0881a3;
}
.sticky-header.sticky .menu_eight nav > ul > li > a {
  color: #252525;
}
.sticky-header.sticky .menu_eight nav > ul > li > a.active {
  color: #0881a3;
}

.offcanvas_eight .canvas_open a {
  color: #fff;
  border: 1px solid #fff;
}
.offcanvas_eight .canvas_open a:hover {
  color: #252525;
  border-color: #252525;
}

/*home nine css here*/
.header_nine {
  position: absolute;
  top: 8px;
  width: 100%;
  z-index: 9;
}

.menu_nine {
  padding-right: 0;
  margin-right: 80px;
  border-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_nine {
    margin-right: 45px;
  }
}
.menu_nine nav > ul > li {
  padding: 20px 0;
}
.menu_nine nav > ul > li:hover > a {
  border-color: #ff6666;
}
.menu_nine nav > ul > li > a {
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_nine nav > ul > li > a {
    font-size: 13px;
  }
}
.menu_nine nav > ul > li > a.active {
  border-color: #ff6666;
}

.color_nine .main_menu nav > ul > li:hover > a {
  color: #ff6666;
}
.color_nine .main_menu nav > ul > li > a {
  color: #252525;
}
.color_nine .main_menu nav > ul > li > a.active {
  color: #ff6666;
}
.color_nine .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #ff6666;
}
.color_nine .mega_menu_inner > li > a:hover {
  color: #ff6666;
}
.color_nine .mega_menu_inner > li ul li a:hover {
  color: #ff6666;
}
.color_nine .search_widget form button {
  background: #ff6666;
}
.color_nine .search_widget form button:hover {
  background: #252525;
}
.color_nine .dropdown_account-list ul li a:hover {
  color: #ff6666;
}
.color_nine .cart_info a:hover {
  color: #ff6666;
}
.color_nine .cart_remove a:hover {
  color: #ff6666;
}
.color_nine .cart_info p span {
  color: #ff6666;
}
.color_nine .cart_total span.price {
  color: #ff6666;
}
.color_nine .cart_button a {
  background: #ff6666;
}
.color_nine .cart_button a:hover {
  background: #fff;
  color: #ff6666;
}
.color_nine .mini_cart_wrapper span.item_count {
  color: #ff6666;
}

.offcanvas_nine .canvas_open {
  z-index: 99;
}
.offcanvas_nine .canvas_open a {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.offcanvas_nine .canvas_open a:hover {
  color: #ff847c;
  border-color: #ff847c;
}

/*home ten css here*/
.color_ten .main_menu nav > ul > li:hover > a {
  color: #9b6501;
}
.color_ten .main_menu nav > ul > li > a {
  color: #252525;
}
.color_ten .main_menu nav > ul > li > a.active {
  color: #9b6501;
}
.color_ten .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #9b6501;
}
.color_ten .mega_menu_inner > li > a:hover {
  color: #9b6501;
}
.color_ten .mega_menu_inner > li ul li a:hover {
  color: #9b6501;
}
.color_ten .search_widget form button {
  background: #9b6501;
}
.color_ten .search_widget form button:hover {
  background: #252525;
}
.color_ten .dropdown_account-list ul li a:hover {
  color: #9b6501;
}
.color_ten .cart_info a:hover {
  color: #9b6501;
}
.color_ten .cart_remove a:hover {
  color: #9b6501;
}
.color_ten .cart_info p span {
  color: #9b6501;
}
.color_ten .cart_total span.price {
  color: #9b6501;
}
.color_ten .cart_button a {
  background: #9b6501;
}
.color_ten .cart_button a:hover {
  background: #fff;
  color: #9b6501;
}
.color_ten .mini_cart_wrapper span.item_count {
  color: #9b6501;
}

/* 02. slider area css here */
.single_slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 839px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single_slider {
    height: 589px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_slider {
    height: 433px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_slider {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .single_slider {
    background-size: contain;
    height: 160px;
	border:0px solid red;
  }
}

@media only screen and (max-width: 767px) {
  .slider_one_area .single_slider2 {
    background-position: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section.mb-40 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_section.mb-40 {
    margin-bottom: 30px;
  }
}

.slider_area:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  left: 20px;
}
.slider_area:hover .owl-nav div.owl-next {
  right: 20px;
}
.slider_area .owl-nav div {
  position: absolute;
  top: 49%;
  transform: translatey(-50%);
  left: 0;
  font-size: 24px;
  color: #ffffff;
  width: 45px;
  height: 45px;
  line-height: 41px;
  text-align: center;
  border: 2px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider_area .owl-nav div:hover {
  color: #ED1921;
  border-color: #ED1921;
}
.slider_area .owl-nav div.owl-next {
  right: 0;
  left: auto;
}
@media only screen and (max-width: 767px) {
  .slider_area .owl-nav div {
    display: none;
  }
}
.slider_area .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translatex(-50%);
}
.slider_area .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border: 2px solid #ffffff;
  background: #e7e7e7;
  display: inline-block;
  margin: 0 3px;
  transition: .3s;
}
.slider_area .owl-dots .owl-dot.active {
  background: #ED1921;
}
.slider_area .owl-dots .owl-dot:hover {
  background: #ED1921;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content {
    padding-left: 0;
  }
}
.slider_content.content_left {
  text-align: center;
}
.slider_content.content_right {
  padding-left: 90px;
  text-align:right;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content.content_right {
    padding-left: 66px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content.content_right {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content.content_right {
    padding-left: 0;
    text-align: right;
  }
}
.slider_content.content_right h2 {
  color: #ED1921;
  font-weight: 700;
  font-size: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content.content_right h2 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content.content_right h2 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content.content_right h2 {
    font-size: 13px;
  }
}
.slider_content h1 {
  font-size: 38px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content h1 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content h1 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content h1 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 7px;
    letter-spacing: 1px;
  }
}
.slider_content h2 {
  font-size: 34px;
  line-height: 35px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content h2 {
    font-size: 17px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content h2 {
    font-size: 13px;
    line-height: 22px;
  }
}
.slider_content a {
  font-size: 14px;
  font-weight: 600;
  padding: 0 25px;
  display: inline-block;
  border-radius: 0;
  height: 45px;
  line-height: 45px;
  letter-spacing: 2px;
  border: 1px solid #ED1921;
  background: inherit;
  margin-top: 26px;
  color: #ED1921;
}
.slider_content a:hover {
  background: #ED1921;
  color: #ffffff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content a {
    font-size: 13px;
    padding: 0 15px;
    height: 40px;
    line-height: 42px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content a {
    padding: 0 15px;
    height: 38px;
    line-height: 36px;
    font-size: 13px;
    margin-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content a {
    font-size: 11px;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
}

.active .slider_content h1, .active .slider_content h2, .active .slider_content h3, .active .slider_content a, .active .slider_content p, .active .slider_content span {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

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

.active .slider_content h3, .active .slider_content span {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.active .slider_content p {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

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

/*home two css here*/
.slider_s_two .owl-dots .owl-dot.active {
  background: #ff847c;
}
.slider_s_two .owl-dots .owl-dot:hover {
  background: #ff847c;
}
.slider_s_two .single_slider {
  height: 820px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_two .single_slider {
    height: 589px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_two .single_slider {
    height: 433px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_two .single_slider {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_two .single_slider {
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_two .single_slider.single_slid2 {
    background-position: 100%;
  }
}
.slider_s_two .slider_content {
  text-align: center;
}
.slider_s_two .slider_content.content_right h2 {
  color: #252525;
}
.slider_s_two .slider_content h1 {
  font-size: 42px;
  line-height: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_two .slider_content h1 {
    font-size: 26px;
    line-height: 27px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_two .slider_content h1 {
    font-size: 23px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_two .slider_content h1 {
    font-size: 17px;
    line-height: 22px;
  }
}
.slider_s_two .slider_content h2 {
  font-size: 24px;
  line-height: 25px;
  font-weight: 700;
  font-style: italic;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_two .slider_content h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_two .slider_content h2 {
    font-size: 17px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_two .slider_content h2 {
    font-size: 13px;
    line-height: 20px;
  }
}
.slider_s_two .slider_content a {
  color: #ff847c;
  border: 1px solid #ff847c;
}
.slider_s_two .slider_content a:hover {
  background: #ff847c;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .slider_s_two .slider_content a {
    margin-top: 20px;
  }
}

/*home three css here*/
@media only screen and (max-width: 767px) {
  .slider_s_three .single_slid2 {
    background-position: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_three .single_slid1 {
    background-position: 0;
  }
}
.slider_s_three .slider_content.content_left {
  padding-left: 24%;
  padding-top: 0;
  text-align: left;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_three .slider_content.content_left {
    padding-left: 10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_three .slider_content.content_left {
    padding-left: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_three .slider_content.content_left {
    padding-left: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_three .slider_content.content_left {
    padding-left: 0;
    text-align: center;
  }
}
.slider_s_three .slider_content.content_right {
  padding-left: 52%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_three .slider_content.content_right {
    padding-left: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_three .slider_content.content_right {
    padding-left: 0;
  }
}
.slider_s_three .slider_content.content_right h1 {
  color: #ffffff;
}
.slider_s_three .slider_content.content_right h2 {
  color: #ffffff;
}
.slider_s_three .slider_content.content_right a {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.slider_s_three .slider_content h1 {
  font-size: 70px;
  line-height: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_three .slider_content h1 {
    font-size: 56px;
    line-height: 56px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_three .slider_content h1 {
    font-size: 29px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_three .slider_content h1 {
    font-size: 25px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_three .slider_content h1 {
    font-size: 18px;
    line-height: 22px;
  }
}
.slider_s_three .slider_content h2 {
  font-size: 120px;
  line-height: 120px;
  font-weight: 700;
  color: #14663b;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_three .slider_content h2 {
    font-size: 105px;
    line-height: 105px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_three .slider_content h2 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_three .slider_content h2 {
    font-size: 55px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_three .slider_content h2 {
    font-size: 35px;
    line-height: 35px;
  }
}
.slider_s_three .slider_content a {
  color: #252525;
  border: 1px solid #252525;
}
.slider_s_three .slider_content a:hover {
  color: #ffffff;
  background: #14663b;
  border-color: #14663b;
}
.slider_s_three .owl-dots .owl-dot:hover {
  background: #14663b;
}
.slider_s_three .owl-dots .owl-dot.active {
  background: #14663b;
}

/*home four css here*/
.slider_cntent4.content_right {
  padding-left: 52%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_right {
    padding-left: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_right {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.slider_cntent4.content_right h1 {
  font-size: 18px;
  line-height: 18px;
  color: #b6a08e;
  margin-bottom: 11px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_right h1 {
    font-size: 15px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_right h1 {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
  }
}
.slider_cntent4.content_right h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 21px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_cntent4.content_right h2 {
    font-size: 37px;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_right h2 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_right h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.slider_cntent4.content_right p {
  font-size: 20px;
  max-width: 415px;
  line-height: 25px;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_right p {
    font-size: 16px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_right p {
    font-size: 14px;
    line-height: 21px;
    max-width: 100%;
  }
}
.slider_cntent4.content_right a {
  border: 0;
  color: #ffffff;
  background: #252525;
  margin-top: 28px;
}
.slider_cntent4.content_right a:hover {
  background: #b6a08e;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_right a {
    margin-top: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_right a {
    margin-top: 15px;
  }
}
.slider_cntent4.content_left {
  padding-top: 0;
  padding-left: 72px;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_left {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_left {
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
  }
}
.slider_cntent4.content_left h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 21px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_cntent4.content_left h1 {
    font-size: 37px;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_left h1 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_left h1 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.slider_cntent4.content_left p {
  font-size: 26px;
  max-width: 355px;
  line-height: 27px;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_left p {
    font-size: 20px;
    max-width: 265px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_left p {
    font-size: 14px;
    line-height: 21px;
    max-width: 100%;
  }
}
.slider_cntent4.content_left a {
  border: 0;
  color: #ffffff;
  background: #252525;
  margin-top: 28px;
}
.slider_cntent4.content_left a:hover {
  background: #b6a08e;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_cntent4.content_left a {
    margin-top: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_cntent4.content_left a {
    margin-top: 15px;
  }
}

.slider_s_four .owl-dots {
  bottom: 12px;
  left: 46px;
}
.slider_s_four .owl-dots .owl-dot:hover {
  background: #b6a08e;
}
.slider_s_four .owl-dots .owl-dot.active {
  background: #b6a08e;
}
@media only screen and (max-width: 767px) {
  .slider_s_four .single_slider.slider1 {
    background-position: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_four .single_slider.slider2 {
    background-position: 0%;
  }
}

/*home five css here*/
.slider_s_five {
  padding-left: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five {
    padding-left: 226px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five {
    padding-left: 0;
  }
}
.slider_s_five .single_slider {
  height: 960px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_five .single_slider {
    height: 623px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .single_slider {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .single_slider {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .single_slider {
    background-position: 17%;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .single_slider.single_slid2 {
    background-position: 0%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_five .slider_content {
    max-width: 610px;
    margin-left: 60px;
  }
}
.slider_s_five .slider_content.content_center {
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_center {
    max-width: 510px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_center {
    max-width: 500px;
  }
}
.slider_s_five .slider_content.content_center h1 {
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_center h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_center h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_center h1 {
    font-size: 22px;
    line-height: 30px;
  }
}
.slider_s_five .slider_content.content_center h2 {
  margin: 10px 0 0;
  font-size: 43px;
  line-height: 43px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_center h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_center h2 {
    font-size: 28px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_center h2 {
    font-size: 17px;
    line-height: 27px;
  }
}
.slider_s_five .slider_content.content_center a {
  background: #252525;
  color: #fff;
  border: 1px solid #252525;
  margin-top: 40px;
}
.slider_s_five .slider_content.content_center a:hover {
  background: #ED1921;
  border-color: #ED1921;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_center a {
    margin-top: 29px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_center a {
    margin-top: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_center a {
    margin-top: 20px;
  }
}
.slider_s_five .slider_content.content_left {
  text-align: left;
  padding-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_left {
    max-width: 570px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_left {
    max-width: 465px;
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_left {
    text-align: center;
  }
}
.slider_s_five .slider_content.content_left h1 {
  font-size: 38px;
  line-height: 38px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_left h1 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_left h1 {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_left h1 {
    font-size: 20px;
    line-height: 23px;
  }
}
.slider_s_five .slider_content.content_left h2 {
  font-size: 38px;
  line-height: 38px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_five .slider_content.content_left h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_left h2 {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_left h2 {
    font-size: 17px;
    line-height: 24px;
  }
}
.slider_s_five .slider_content.content_left p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin: 15px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_five .slider_content.content_left p {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_five .slider_content.content_left p {
    font-size: 14px;
    line-height: 19px;
    margin: 9px 0 0;
  }
}

/*slider six css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_six {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_six {
    margin-top: 0;
  }
}
.slider_s_six .single_slider {
  height: 487px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_six .single_slider {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_six .single_slider {
    height: 330px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_six .single_slider {
    background-position: 0;
    height: 260px;
  }
}
.slider_s_six .single_slider .row {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .slider_s_six .single_slider.slider2 {
    background-position: 96%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_six .slider_content {
    text-align: center;
  }
}
.slider_s_six .slider_content.left {
  padding-left: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_six .slider_content.left {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_six .slider_content.left {
    padding-left: 0;
  }
}
.slider_s_six .slider_content.right {
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .slider_s_six .slider_content.right {
    padding-left: 0;
  }
}
.slider_s_six .slider_content a {
  background: #000000;
  color: #fff;
  border: 0;
}
.slider_s_six .slider_content a:hover {
  background: #ed9153;
}
.slider_s_six .owl-dots .owl-dot.active {
  background: #ed9153;
}
.slider_s_six .owl-dots .owl-dot:hover {
  background: #ed9153;
}

/*home seven css here*/
.slider_s_seven .single_slider {
  height: 488px;
}
.slider_s_seven .single_slider .row {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_seven .single_slider {
    height: 433px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_seven .single_slider {
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_seven .single_slider {
    background-position: 17%;
    height: 280px;
  }
}
.slider_s_seven .slider_content {
  padding-left: 80px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_seven .slider_content {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_seven .slider_content {
    padding-left: 0;
    text-align: center;
  }
}
.slider_s_seven .slider_content h1 {
  font-size: 36px;
  line-height: 36px;
  color: #252525;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_seven .slider_content h1 {
    font-size: 28px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_seven .slider_content h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.slider_s_seven .slider_content h2 {
  font-size: 28px;
  line-height: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_seven .slider_content h2 {
    font-size: 22px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_seven .slider_content h2 {
    font-size: 16px;
    line-height: 21px;
  }
}
.slider_s_seven .slider_content a {
  background: #252525;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  line-height: 47px;
  padding: 0 20px;
  border: 0;
}
.slider_s_seven .slider_content a:hover {
  background: #e93838;
}
@media only screen and (max-width: 767px) {
  .slider_s_seven .slider_content a {
    font-size: 13px;
    line-height: 35px;
  }
}
.slider_s_seven .owl-dots .owl-dot.active {
  background: #e93838;
}
.slider_s_seven .owl-dots .owl-dot:hover {
  background: #e93838;
}

/*home eight css here*/
.slider_s_eight .single_slider {
  height: 540px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_eight .single_slider {
    height: 453px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .single_slider {
    height: 466px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .single_slider {
    height: 300px;
  }
}
.slider_s_eight .single_slider .row {
  width: 100%;
}
.slider_s_eight .slider_content {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_eight .slider_content {
    padding-left: 0;
  }
}
.slider_s_eight .slider_content.center {
  text-align: center;
  margin-top: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .slider_content.center {
    margin-top: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.center {
    margin-top: 92px;
  }
}
.slider_s_eight .slider_content.center h2 {
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .slider_content.center h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.center h2 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}
.slider_s_eight .slider_content.center h1 {
  font-size: 44px;
  line-height: 45px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .slider_content.center h1 {
    font-size: 30px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.center h1 {
    font-size: 21px;
    line-height: 23px;
    letter-spacing: 1px;
  }
}
.slider_s_eight .slider_content.center a {
  background: #252525;
  border: 0;
  color: #fff;
  margin-top: 34px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_eight .slider_content.center a {
    margin-top: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .slider_content.center a {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.center a {
    margin-top: 22px;
  }
}
.slider_s_eight .slider_content.center a:hover {
  background: #0881a3;
}
.slider_s_eight .slider_content.left {
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_eight .slider_content.left {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.left {
    padding-left: 0;
    text-align: center;
  }
}
.slider_s_eight .slider_content.left h3 {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.left h3 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 22px;
  }
}
.slider_s_eight .slider_content.left h1 {
  font-size: 44px;
  line-height: 45px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.left h1 {
    font-size: 21px;
    line-height: 23px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}
.slider_s_eight .slider_content.left p {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.left p {
    font-size: 16px;
  }
}
.slider_s_eight .slider_content.left a {
  background: #252525;
  border: 0;
  color: #fff;
  margin-top: 34px;
}
.slider_s_eight .slider_content.left a:hover {
  background: #0881a3;
}
@media only screen and (max-width: 767px) {
  .slider_s_eight .slider_content.left a {
    margin-top: 22px;
  }
}

/*home nine css here*/
.slider_s_nine .single_slider {
  height: 960px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_s_nine .single_slider {
    height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_nine .single_slider {
    height: 590px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .single_slider {
    height: 480px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .single_slider {
    height: 400px;
    background-position: 0%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content {
    text-align: center;
  }
}
.slider_s_nine .slider_content.style1 h1 {
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 60px;
  margin-bottom: 11px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_nine .slider_content.style1 h1 {
    font-size: 32px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style1 h1 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style1 h1 {
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 5px;
  }
}
.slider_s_nine .slider_content.style1 p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style1 p {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style1 p {
    font-size: 17px;
  }
}
.slider_s_nine .slider_content.style1 a {
  background: #252525;
  color: #ffffff;
  border-color: #252525;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  height: 42px;
  letter-spacing: 1px;
  padding: 0 20px;
  margin-top: 38px;
}
.slider_s_nine .slider_content.style1 a:hover {
  background: #ff6666;
  border-color: #ff6666;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style1 a {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style1 a {
    font-size: 11px;
    line-height: 35px;
    height: 35px;
    letter-spacing: 1px;
    padding: 0 15px;
    margin-top: 18px;
  }
}
.slider_s_nine .slider_content.style2 h1 {
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 50px;
  margin-bottom: 11px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_nine .slider_content.style2 h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style2 h1 {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style2 h1 {
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 5px;
  }
}
.slider_s_nine .slider_content.style2 h2 {
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 50px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_nine .slider_content.style2 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style2 h2 {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style2 h2 {
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 5px;
  }
}
.slider_s_nine .slider_content.style2 a {
  background: #252525;
  color: #ffffff;
  border-color: #252525;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  height: 42px;
  letter-spacing: 1px;
  padding: 0 20px;
  margin-top: 30px;
}
.slider_s_nine .slider_content.style2 a:hover {
  background: #ff6666;
  border-color: #ff6666;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_nine .slider_content.style2 a {
    margin-top: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_nine .slider_content.style2 a {
    font-size: 11px;
    line-height: 35px;
    height: 35px;
    letter-spacing: 1px;
    padding: 0 15px;
    margin-top: 18px;
  }
}
.slider_s_nine .owl-dots .owl-dot.active {
  background: #ff6666;
}
.slider_s_nine .owl-dots .owl-dot:hover {
  background: #ff6666;
}

/*home ten css here*/
.slider_s_ten .slider_content {
  text-align: center;
}
.slider_s_ten .slider_content h1 {
  font-size: 46px;
  color: #ffffff;
  line-height: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_ten .slider_content h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_ten .slider_content h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
.slider_s_ten .slider_content h2 {
  font-size: 36px;
  color: #ffffff;
  line-height: 40px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_ten .slider_content h2 {
    font-size: 24px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_ten .slider_content h2 {
    font-size: 14px;
    line-height: 23px;
  }
}
.slider_s_ten .slider_content a {
  background: #9b6501;
  color: #fff;
  border: 1px solid #fff;
}
.slider_s_ten .slider_content a:hover {
  background: #252525;
  border-color: #252525;
}
.slider_s_ten .slider_content p {
  font-size: 24px;
  color: #ffffff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_s_ten .slider_content p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_ten .slider_content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_ten .slider_content p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.slider_s_ten .slider_content.style2 h1 {
  line-height: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_s_ten .slider_content.style2 h1 {
    line-height: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_s_ten .slider_content.style2 h1 {
    line-height: 33px;
  }
}
.slider_s_ten .owl-dots .owl-dot.active {
  background: #9b6501;
}
.slider_s_ten .owl-dots .owl-dot:hover {
  background: #9b6501;
}

/*04. banner section css here */
@media only screen and (max-width: 767px) {
  .banner_area.mb-68 {
    margin-bottom: 29px;
  }
}

.banner_thumb {
  position: relative;
}
.banner_thumb:hover img {
  opacity: 0.8;
}
.banner_thumb img {
  transition: .3s;
}
@media only screen and (max-width: 767px) {
  .banner_thumb img {
    width: 100%;
  }
}

.banner_conent-style1 {
  display: inline-block;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: ease-in-out .3s all;
  -moz-transition: ease-in-out .3s all;
  transition: ease-in-out .3s all;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style1 {
    padding: 15px;
    bottom: 30px;
    left: 25px;
    right: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style1 {
    padding: 15px;
    bottom: 30px;
  }
}
.banner_conent-style1 h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_conent-style1 h2 {
    font-size: 21px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style1 h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style1 h2 {
    font-size: 18px;
    line-height: 25px;
  }
}
.banner_conent-style1 p {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  margin: 10px 0 0;
}
.banner_conent-style1 p span {
  color: #ED1921;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_conent-style1 p {
    font-size: 17px;
    margin: 8px 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style1 p {
    font-size: 16px;
    margin: 5px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style1 p {
    font-size: 15px;
    margin: 5px 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-banner-right .single_banner.mb-30 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single_banner {
    margin-bottom: 30px;
  }
}
.single_banner:hover .banner_conent-style1 {
  background: #fff;
  bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_banner:hover .banner_conent-style1 {
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single_banner:hover .banner_conent-style1 {
    bottom: 40px;
  }
}
.single_banner:hover .banner_conent-style2 {
  left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_banner:hover .banner_conent-style2 {
    left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single_banner:hover .banner_conent-style2 {
    left: 30px;
  }
}

.banner_conent-style2 {
  position: absolute;
  top: 30px;
  left: 30px;
  -webkit-transition: ease-in-out .3s all;
  -moz-transition: ease-in-out .3s all;
  transition: ease-in-out .3s all;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style2 {
    top: 23px;
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style2 {
    top: 25px;
    left: 20px;
  }
}
.banner_conent-style2 h2 {
  font-size: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #787878;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style2 h2 {
    font-size: 13px;
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style2 h2 {
    font-size: 14px;
    padding-bottom: 6px;
    line-height: 18px;
  }
}
.banner_conent-style2 p {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent-style2 p {
    font-size: 14px;
    margin: 5px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent-style2 p {
    font-size: 14px;
    margin: 6px 0 0;
  }
}

.banner_fullwidth {
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0;
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth {
    padding: 0px 0 0px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth.mb-70 {
    margin-bottom: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner-text {
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-text {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-text {
    padding-left: 25px;
  }
}
.banner-text h3 {
  font-size: 18px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-text h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-text h3 {
    font-size: 15px;
    line-height: 18px;
  }
}
.banner-text h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 18px 0 0;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-text h2 {
    font-size: 26px;
    line-height: 26px;
    margin: 14px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner-text h2 {
    font-size: 18px;
    line-height: 23px;
    margin: 11px 0 0;
  }
}
.banner-text p {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 20px;
  max-width: 550px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-text p {
    font-size: 16px;
    margin-top: 14px;
    max-width: 507px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-text p {
    font-size: 15px;
    margin-top: 12px;
  }
}
.banner-text a {
  height: 38px;
  line-height: 36px;
  padding: 0 20px;
  border: 1px solid #a5a5a5;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
  margin: 25px 0 0;
}
.banner-text a:hover {
  color: #ED1921;
  border-color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-text a {
    padding: 0 15px;
    margin: 20px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner-text a {
    height: 35px;
    line-height: 37px;
    padding: 0 12px;
    font-size: 12px;
    margin: 16px 0 0;
  }
}

/*home two css here*/
@media only screen and (max-width: 767px) {
  .banner-style2.mb-70 {
    margin-bottom: 30px;
  }
}
.banner-style2 .banner_conent-style1 {
  top: 40px;
  bottom: auto;
  background: none;
  padding: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .banner-style2 .banner_conent-style1 {
    left: 20px;
    top: 20px;
  }
}
.banner-style2 .single_banner:hover .banner_conent-style1 {
  background: none;
  top: 45px;
}
@media only screen and (max-width: 767px) {
  .banner-style2 .single_banner:hover .banner_conent-style1 {
    top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_right2_bottom.mt-30 {
    margin-top: 26px;
  }
}

/*home three css here*/
@media only screen and (max-width: 767px) {
  .banner-style3 {
    margin-bottom: 28px;
  }
}
.banner-style3 .banner_thumb {
  overflow: hidden;
}
.banner-style3 .banner_thumb:hover::before {
  right: -35px;
}
.banner-style3 .banner_thumb:hover::after {
  left: -35px;
}
.banner-style3 .banner_thumb::before {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
  z-index: 9;
}
.banner-style3 .banner_thumb::after {
  content: "";
  position: absolute;
  top: -35px;
  left: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
}

.banner_full3 .banner-text {
  padding-left: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_full3 .banner-text {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_full3 .banner-text {
    padding-left: 0px;
  }
}
.banner_full3 .banner-text h3 {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .banner_full3 .banner-text h3 {
    font-size: 13px;
    line-height: 17px;
  }
}
.banner_full3 .banner-text h2 {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .banner_full3 .banner-text h2 {
    font-size: 14px;
    line-height: 23px;
  }
}
.banner_full3 .banner-text a {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.banner_full3 .banner-text a:hover {
  background: #14663b;
  border-color: #14663b;
}

/*home six css here*/
@media only screen and (max-width: 767px) {
  .banner-style6 {
    margin-bottom: 28px;
  }
}
.banner-style6 .single_banner:hover .content-style6 {
  bottom: 25px;
}
.banner-style6 .content-style6 {
  left: auto;
  padding: 20px 40px 24px;
  pointer-events: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style6 .content-style6 {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style6 .content-style6 {
    padding: 12px 18px 15px;
    bottom: 16px;
    right: 20px;
  }
}
.banner-style6 .content-style6 h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style6 .content-style6 h3 {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style6 .content-style6 h3 {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 19px;
  }
}
.banner-style6 .content-style6 h2 {
  font-size: 22px;
  line-height: 33px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style6 .content-style6 h2 {
    font-size: 19px;
    line-height: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style6 .content-style6 h2 {
    font-size: 15px;
    line-height: 17px;
  }
}
.banner-style6 .content-style6 a {
  height: 32px;
  line-height: 35px;
  padding: 0 20px;
  background: #252525;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin: 14px 0 0;
}
.banner-style6 .content-style6 a:hover {
  background: #ed9153;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style6 .content-style6 a {
    height: 30px;
    line-height: 32px;
    padding: 0 15px;
    font-size: 11px;
    margin: 7px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style6 .content-style6 a {
    height: 28px;
    line-height: 31px;
    padding: 0 15px;
    font-size: 11px;
    margin: 7px 0 0;
  }
}

.banner-sixfull-thumb {
  position: relative;
}
.banner-sixfull-thumb:hover::before {
  width: 98%;
}
.banner-sixfull-thumb:hover::after {
  height: 90%;
}
.banner-sixfull-thumb::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 0;
  height: 90%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  pointer-events: none;
}
.banner-sixfull-thumb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 0;
  width: 98%;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .banner-six-area {
    margin-bottom: 58px;
  }
}

/*home seven css here*/
@media only screen and (max-width: 767px) {
  .banner-seven-fullwidth.mb-70 {
    margin-bottom: 59px;
  }
}
.banner-style7 {
    margin-bottom:100px;
  }
@media only screen and (max-width: 767px) {
  .banner-style7 {
    margin-bottom: 80px;
  }
}
.banner-style7 .banner_thumb {
  overflow: hidden;
  position: inherit;
  border:1px solid #ccc;
}
.banner-style7 .single_banner.style1 {
  position: relative;
}
.banner-style7 .single_banner:hover .banner_conent-style1 {
  bottom: -60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style7 .single_banner:hover .banner_conent-style1 {
    bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style7 .single_banner:hover .banner_conent-style1 {
    bottom: 25px;
    left: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style7 .single_banner:hover .banner_conent-style1 {
    bottom:-50px;
  }
}
.banner-style7 .banner_conent-style1 {
  bottom: -74px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  pointer-events: inherit;
  z-index: 100;
  padding:10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style7 .banner_conent-style1 {
    bottom: -62px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style7 .banner_conent-style1 {
    bottom: -41px;
    left: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style7 .banner_conent-style1 {
    bottom: -74px;
  }
}
.banner-style7 .banner_conent-style1 h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style7 .banner_conent-style1 h3 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style7 .banner_conent-style1 h3 {
    font-size: 13px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style7 .banner_conent-style1 h3 {
    font-size: 13px;
    line-height: 28px;
  }
}
.banner-style7 .banner_conent-style1 h2 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style7 .banner_conent-style1 h2 {
    font-size: 17px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style7 .banner_conent-style1 h2 {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style7 .banner_conent-style1 h2 {
    font-size: 15px;
    line-height: 22px;
  }
}
.banner-style7 .banner_conent-style1 a {
  height: 32px;
  line-height: 35px;
  padding: 0 20px;
  background: #252525;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin: 0px 0 0;
}
.banner-style7 .banner_conent-style1 a:hover {
  background: #e93838;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style7 .banner_conent-style1 a {
    height: 31px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 12px;
    margin: 12px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style7 .banner_conent-style1 a {
    height: 30px;
    line-height: 32px;
    padding: 0 20px;
    font-size: 12px;
    margin: 14px 0 0;
  }
}

.banner-style7-center .banner_thumb {
  position: relative;
}
.banner-style7-center .banner_thumb:hover::before {
  right: -35px;
}
.banner-style7-center .banner_thumb:hover::after {
  left: -35px;
}
.banner-style7-center .banner_thumb::before {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
  z-index: 9;
}
.banner-style7-center .banner_thumb::after {
  content: "";
  position: absolute;
  top: -35px;
  left: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
}

.banner-sevenfull-thumb {
  position: relative;
  overflow: hidden;
}
.banner-sevenfull-thumb:hover::before {
  right: -35px;
}
.banner-sevenfull-thumb:hover::after {
  left: -35px;
}
.banner-sevenfull-thumb::before {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
  z-index: 9;
}
.banner-sevenfull-thumb::after {
  content: "";
  position: absolute;
  top: -35px;
  left: -90px;
  width: 70px;
  height: 70px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: ease .15s all;
  -moz-transition: ease .15s all;
  transition: ease .15s all;
}

@media only screen and (max-width: 767px) {
  .sidebar-bthumb {
    margin-top: 30px;
  }
}

/*home eight css here*/
.banner_conent_style8 {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .banner_conent_style8 {
    bottom: 25px;
  }
}
.banner_conent_style8 h2 {
  font-size: 30px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent_style8 h2 {
    font-size: 16px;
    line-height: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent_style8 h2 {
    font-size: 18px;
    line-height: 21px;
  }
}
.banner_conent_style8 h3 {
  font-size: 20px;
  color: #fff;
  margin: 10px 0 0;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_conent_style8 h3 {
    font-size: 13px;
    margin: 10px 0 0;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_conent_style8 h3 {
    font-size: 15px;
    margin: 8px 0 0;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-product-area {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-product-area .banner_thumb {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .banner-style8 {
    margin-bottom: 27px;
  }
}

/*home nine css here*/
.banner_fullwidth9 {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth9 {
    padding: 60px 0;
  }
}
.banner_fullwidth9 .banner-text {
  text-align: center;
}
.banner_fullwidth9 .banner-text h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 58px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth9 .banner-text h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth9 .banner-text h2 {
    font-size: 20px;
    line-height: 33px;
  }
}
.banner_fullwidth9 .banner-text a {
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 36px;
  color: #ffffff;
  text-transform: inherit;
  display: inline-block;
  font-weight: 400;
  margin: 40px 0 0;
  line-height: 1;
}
.banner_fullwidth9 .banner-text a:hover {
  color: #ff6666;
  border-color: #ff6666;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth9 .banner-text a {
    font-size: 28px;
    margin: 21px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth9 .banner-text a {
    font-size: 18px;
    margin: 14px 0 0;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-style9 {
    margin-bottom: 30px;
  }
}

/* 03. product section css here */
.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;
}

@media only screen and (max-width: 767px) {
  .product_area.mb-62 {
    margin-bottom: 51px;
  }
}

.product-header {
  margin-bottom: 34px;
}
@media only screen and (max-width: 767px) {
  .product-header {
    margin-bottom: 10px;
  }
}
.product-header .section_title {
  margin-bottom: 0;
  padding:10px 10px;
}
.product-header .section_title p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 0px;
  padding-top:0px;
  color:#222;
}
.product-header .section_title h2 {
background:none;
color:#fff;
}
.product-header .section_title.color-1 {
background:#333;
}
.product-header .section_title.color-2 {
background:#777;
}

/* style 7 ------------------*/
.seven h1 {
font-size: 30px;
  text-align: center;
  line-height: 1.5em;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom:20px;
  color: #fff;
  position: relative;
  border-bottom:1px solid #333;
}
/* Style 11
   ----------------------------- */
.eleven h1 {
  font-size: 30px;
  text-align: center;
  line-height: 1.5em;
  padding-bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom:30px;
  color: #fff;
  position: relative; /* Make sure h1 itself can contain absolutely positioned elements */
}

.eleven h1:before {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 80%;
  margin-left: -40%;
  height: 1px;
  content: "";
  background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 65%, rgba(0,0,0,1) 100%);
  z-index: 4;
}

.eleven h1:after {
  position: absolute;
  left: 50%;
  
  bottom: -15px;
  content: "";
  z-index: 5;
}
.eleven h1.logo1:after {

  width: 171px;
  height: 78px;
  margin-left: -70px;
  background-image: url('../images/brand-ld.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo2:after {

  width: 300px;
  height: 78px;
   margin-left: -120px;
  background-image: url('../images/brand-hazel.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo3:after {
width: 257px;
  height: 78px;
   margin-left: -100px;
  background-image: url('../images/brand-dubar.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo4:after {
width: 202px;
  height: 78px;
   margin-left: -90px;
  background-image: url('../images/brand-benton.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo5:after {
width: 251px;
  height: 78px;
   margin-left: -100px;
  background-image: url('../images/brand-stmark.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 768px) {
.eleven h1 {
  font-size: 30px;
  text-align: center;
  line-height: 1.5em;
  padding-bottom: 40px;
  padding-top:40px;
  margin-bottom:40px;
  }
.eleven h1:before {
  position: absolute;
  left: 50%;
  bottom: 0px;
  }
.eleven h1:after {
  position: absolute;
  width: 100px;
  height: 46px;
  margin-left: -50px;
  }
  
 .eleven h1.logo1:after {

  width: 171px;
  height: 78px;
  margin-left: -90px;
  background-image: url('../images/brand-ld.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo2:after {

  width: 300px;
  height: 78px;
   margin-left: -140px;
  background-image: url('../images/brand-hazel.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo3:after {
width: 257px;
  height: 78px;
   margin-left: -130px;
  background-image: url('../images/brand-dubar.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo4:after {
width: 202px;
  height: 78px;
   margin-left: -110px;
  background-image: url('../images/brand-benton.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eleven h1.logo5:after {
width: 251px;
  height: 78px;
   margin-left: -130px;
  background-image: url('../images/brand-stmark.png'); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
  }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-header {
    margin-bottom: 27px;
  }
}

.section_title {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 25px;
  }
}
.section_title h2 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0;
  padding: 0 20px;
  text-transform: uppercase;
  background: #ffffff;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 17px;
    line-height: 17px;
  }
}
.section_title p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title p {
    margin-top: 14px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section_title p {
    font-size: 15px;
    margin-top: 13px;
  }
}

.product_tab_btn {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_tab_btn {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .product_tab_btn {
    margin-top: 20px;
  }
}
.product_tab_btn ul {
  justify-content: center;
}
.product_tab_btn ul li {
  margin-right: 45px;
}
.product_tab_btn ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .product_tab_btn ul li {
    margin-right: 22px;
    margin-bottom: 13px;
  }
}
.product_tab_btn ul li a {
  /*font-size: 13px;*/
  line-height: 13px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  padding-bottom: 8px;
}
.product_tab_btn ul li a:hover {
  color: #ED1921;
  border-bottom: 1px solid #ED1921;
}
.product_tab_btn ul li a.active {
  color: #ED1921;
  border-bottom: 1px solid #ED1921;
}
@media only screen and (max-width: 767px) {
  .product_tab_btn ul li a {
    font-size: 18px!important;
    padding-bottom: 3px;
    border: 0px solid #ED1921!important;
  }
}

.single_product:hover .action_links {
  opacity: 1;
  visibility: visible;
}
.single_product:hover .action_links ul li a {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.single-gallery.item:hover a.secondary_img {
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out;
}

.product_thumb {
  position: relative;
  overflow: hidden;
}
.product_thumb a.secondary_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .product_thumb a img {
    width: 100%;
  }
}

.label-group{position:relative;display:inline-block;}
.product-label {
display:block;text-align:center;margin-bottom:5px;padding:5px 11px 3px;color:#fff;font-weight:500;font-size:15px;line-height:1;border-radius:12px
}
.product-label.label-sale{background-color:#da5555}

.sale {position:absolute;}
.sale .label-group{position:relative; top:-15px; margin-left:10px;}
.sale .product-label {
display:block;text-align:center;margin-bottom:5px;padding:5px 11px 3px;color:#fff;font-weight:500;font-size:15px;line-height:1;border-radius:12px
}
.sale .product-label.label-sale{background-color:#da5555}

a.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
a.float:hover {
color:#fff;
}

.my-float{
	margin-top:16px;
}

.action_links {
  transition: all 0.3s ease;
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.action_links ul li {
  margin-bottom: 3px;
}
.action_links ul li:last-child {
  margin-bottom: 0;
}
.action_links ul li a {
  line-height: 44px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  background: #ffffff;
  display: block;
  -webkit-transition: ease .3s all;
  -moz-transition: ease .3s all;
  transition: ease .3s all;
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
}
.action_links ul li a:hover {
  color: #ED1921;
}
.action_links ul li.compare a {
  -webkit-transition: ease .7s all;
  -moz-transition: ease .7s all;
  transition: ease .7s all;
}
.action_links ul li.quick_button a {
  -webkit-transition: ease .9s all;
  -moz-transition: ease .9s all;
  transition: ease .9s all;
}

.product_content {
  margin-top: 16px;
}
.product_content h4 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.product_content h4 a:hover {
  color: #ED1921;
}

.product_content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_price_rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
  margin-bottom:10px;
}

.product_rating ul {
  display: flex;
}
.product_rating ul li {
  line-height: 16px;
  margin-right: 3px;
}
.product_rating ul li:last-child {
  margin-right: 0;
}
.product_rating ul li a {
  font-size: 12px;
}
.product_rating ul li a:hover {
  color: #ED1921;
}
.brand-logo {
margin:0px 0px;
}
.brand-logo img {
height:38px;
}
.brand-logo-detail {
position:absolute;
right:100px;
}
.brand-logo-detail img {
width:100px;
}
.item-code {
margin:5px 0px;
}
.item-code span {
font-size:16px;
  line-height: 16px;
}
.price_box {
margin-bottom:10px;
margin-top:10px;
}
.price_box span {
  line-height: 16px;
}
.price_box span.old_price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 16px;
  margin-left: 5px;
  color: #222;
}
.price_box span.current_price {
  font-weight: 500;
  font-size: 20px;
  color: #ED1921;
}
@media only screen and (max-width: 767px) {
  .price_box span.current_price {
    font-size: 13px;
  }
}

.wishlist-btn a {
  font-size: 16px;
}
.wishlist-btn a:hover {
  color: #ED1921;
}

.product_carousel .product_thumb a img {
  width: inherit;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .product_carousel .product_thumb a img {
    width: 100%;
  }
}
.product_carousel .col-lg-3 {
  flex: 0 0 100%;
  width: 100%;
}
.product_carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.product_carousel:hover .owl-nav div.owl-next {
  right: 0;
}
.product_carousel .owl-nav.disabled {
  display: block;
}
.product_carousel .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 15px;
  font-size: 25px;
  width: 45px;
  height: 45px;
  line-height: 49px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .product_carousel .owl-nav div {
    /*display: none;*/
  }
}
.product_carousel .owl-nav div:hover {
  color: #ffffff;
  background: #ED1921;
}
.product_carousel .owl-nav div.owl-next {
  right: 15px;
  left: auto;
}

.product_items .single_product {
  margin-bottom: 35px;
}
.product_items .single_product:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .product_items .single_product {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .product_left {
    margin-bottom: 30px;
  }
}
.product_left .action_links {
  top: 50%;
  transform: translatey(-50%);
  left: 43%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_left .action_links {
    top: 40%;
  }
}
.product_left .product_content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9;
}
.product_left .product_content h4 a {
  color: #ffffff;
}
.product_left .product_content h4 a:hover {
  color: #ED1921;
}
.product_left .price_box span {
  color: #ffffff;
}

.product_right .action_links {
  top: 50%;
  transform: translatey(-50%);
  left: 39%;
}
.product_right .action_links ul li.quick_button a {
  transition: all 0.5s ease;
}
.product_right .single_product {
  margin-bottom: 41px;
}
@media only screen and (max-width: 767px) {
  .product_right .single_product {
    margin-bottom: 30px;
  }
}

.label_product span {
  position: absolute;
}
.label_product span.label_sale {
  top: 10px;
  left: 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #ED1921;
  font-size: 14px;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  text-align: center;
  display: block;
  border-radius: 20px;
}
.label_product span.label_new {
  top: 20px;
  right: 20px;
  width: 50px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  color: #ffffff;
  background: #252525;
  font-size: 12px;
  border-radius: 3px;
  text-transform: capitalize;
  z-index: 3;
}

/*instagram css here*/
.home_instagram_area {
  padding: 80px 0;
  background: #f7f7f7;
}
@media only screen and (max-width: 767px) {
  .home_instagram_area {
    padding: 57px 0 54px;
  }
}
@media only screen and (max-width: 767px) {
  .home_instagram_area.mb-70 {
    margin-bottom: 60px;
  }
}

.instagram_text {
  text-align: center;
}
.instagram_text h2 {
  font-size: 22px;
  line-height: 22px;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instagram_text h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .instagram_text h2 {
    font-size: 16px;
  }
}
.instagram_text p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instagram_text p {
    font-size: 15px;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .instagram_text p {
    font-size: 15px;
    margin-top: 13px;
  }
}

/*home two css here*/
.title_style2 {
  margin: 0 auto 30px;
  width: 500px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .title_style2 {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.title_style2::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #737373;
  position: absolute;
  top: 40%;
  transform: translatey(-50%);
  left: 0;
}

.color_two .product_tab_btn ul li a.active {
  color: #ff847c;
  border-bottom: 1px solid #ff847c;
}
.color_two .product_tab_btn ul li a:hover {
  color: #ff847c;
  border-bottom: 1px solid #ff847c;
}
.color_two .action_links ul li a:hover {
  color: #ff847c;
}
.color_two .product_content h4 a:hover {
  color: #ff847c;
}
.color_two .wishlist-btn a:hover {
  color: #ff847c;
}
.color_two .price_box span.current_price {
  color: #ff847c;
}
.color_two .product_rating ul li a:hover {
  color: #ff847c;
}
.color_two .product_carousel .owl-nav div:hover {
  background: #ff847c;
}

.small_product_title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .small_product_title {
    margin-bottom: 25px;
  }
}
.small_product_title h2 {
  font-size: 18px;
  line-height: 18px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 15px;
  position: relative;
}
.small_product_title h2::before {
  content: '';
  left: 0;
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: #7f7f7f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .small_product_title h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .small_product_title h2 {
    font-size: 15px;
    padding: 0 0 8px;
  }
}

.small_product_container .single_product {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.small_product_container .single_product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .small_product_container .single_product {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.small_product_container .product_content {
  width: 65%;
  padding-left: 15px;
  margin-top: 0;
  float: left;
  padding-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .small_product_container .product_content {
    padding-left: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .small_product_container .product_content {
    width: 67%;
  }
}
@media only screen and (max-width: 767px) {
  .small_product_container .product_content {
    width: 73%;
    padding-left: 12px;
    padding-top: 6px;
  }
}
.small_product_container .product_content h4 {
  font-size: 13px;
  line-height: 14px;
  margin-bottom: 11px;
}
@media only screen and (max-width: 767px) {
  .small_product_container .product_content h4 {
    margin-bottom: 9px;
  }
}
.small_product_container .product_thumb {
  width: 80px;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .small_product_container .product_thumb {
    width: 76px;
  }
}
@media only screen and (max-width: 767px) {
  .small_product_container .product_thumb {
    width: 68px;
  }
}
.small_product_container .product_rating {
  float: inherit;
  margin-bottom: 7px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .small_product_container .product_rating {
    margin-bottom: 4px;
  }
}
.small_product_container .product_carousel .owl-nav div {
  display: none;
}

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

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

/*home three css here*/
.color_three .product_tab_btn ul li a.active {
  color: #14663b;
  border-bottom: 1px solid #14663b;
}
.color_three .product_tab_btn ul li a:hover {
  color: #14663b;
  border-bottom: 1px solid #14663b;
}
.color_three .action_links ul li a:hover {
  color: #14663b;
}
.color_three .product_content h4 a:hover {
  color: #14663b;
}
.color_three .wishlist-btn a:hover {
  color: #14663b;
}
.color_three .price_box span.current_price {
  color: #14663b;
}
.color_three .product_rating ul li a:hover {
  color: #14663b;
}
.color_three .product_carousel .owl-nav div:hover {
  background: #14663b;
}

.home_instagram3 {
  background: inherit;
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  .home_instagram3 {
    padding: 58px 0 56px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_style3 .product_content h4 {
    font-size: 12px;
  }
}

/*home four css here*/
.product_header_four {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_header_four {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .product_header_four {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.product_header_four .section_title {
  text-align: left;
  margin-bottom: 0;
  width: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_header_four .section_title {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product_header_four .section_title {
    width: 100%;
  }
}
.product_header_four .section_title h2 {
  padding: 0;
}
.product_header_four .section_title p {
  margin-top: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_header_four .section_title p {
    font-size: 14px;
  }
}
.product_header_four .product_tab_btn {
  margin-top: 0;
  align-self: end;
  width: 50%;
  border:0px solid red;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_header_four .product_tab_btn {
    width: 100%;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .product_header_four .product_tab_btn {
    width: 100%;
    margin-top: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_header_four .product_tab_btn ul {
    justify-content: flex-center;
  }
}
@media only screen and (max-width: 767px) {
  .product_header_four .product_tab_btn ul {
    justify-content: flex-center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_header_four .product_tab_btn ul li a {
    font-size: 12px;
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .product_header_four .product_tab_btn ul li a {
    font-size: 11px;
    padding-bottom: 3px;
  }
}

.product_four_sidebar .single_product {
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_four_sidebar .single_product {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_four_sidebar .single_product {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .product_four_sidebar .single_product {
    margin-bottom: 22px;
  }
}
.product_four_sidebar .product_content {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_four_sidebar .product_content {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .product_four_sidebar .product_content {
    margin-top: 10px;
  }
}
.product_four_sidebar .product_price_rating {
  margin-top: 11px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_four_sidebar .product_price_rating {
    margin-top: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .product_four_sidebar .product_price_rating {
    margin-top: 4px;
  }
}

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

.home_instagram4 {
  background: inherit;
  padding: 68px 0;
}
@media only screen and (max-width: 767px) {
  .home_instagram4 {
    padding: 58px 0 55px;
  }
}

.title_style4 {
  text-align: left;
  margin-bottom: 23px;
}
.title_style4 h2 {
  padding: 0;
}
.title_style4 p {
  line-height: 19px;
  margin-top: 8px;
}

.color_four .product_tab_btn ul li {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .color_four .product_tab_btn ul li {
    margin-right: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .color_four .product_tab_btn ul li {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.color_four .product_tab_btn ul li::before {
  width: 1px;
  height: 19px;
  content: '';
  position: absolute;
  right: 0;
  top: -5px;
  background: #e0e0e0;
}
@media only screen and (max-width: 767px) {
  .color_four .product_tab_btn ul li::before {
    height: 15px;
    top: -2px;
  }
}
.color_four .product_tab_btn ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.color_four .product_tab_btn ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .color_four .product_tab_btn ul li a {
    font-size: 12px;
  }
}
.color_four .product_tab_btn ul li a:hover {
  color: #b6a08e;
  border-bottom: 1px solid #b6a08e;
}
.color_four .product_tab_btn ul li a.active {
  color: #b6a08e;
  border-bottom: 1px solid #b6a08e;
}
.color_four .action_links ul li a:hover {
  color: #b6a08e;
}
.color_four .product_content h4 a:hover {
  color: #b6a08e;
}
.color_four .wishlist-btn a:hover {
  color: #b6a08e;
}
.color_four .price_box span.current_price {
  color: #b6a08e;
}
.color_four .product_rating ul li a:hover {
  color: #b6a08e;
}
.color_four .owl-nav div:hover {
  background: #b6a08e;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_style4 .product_content h4 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .product_style4.mb-70 {
    margin-bottom: 51px;
  }
}

/*home five css here*/
.product_actions_price5 {
  display: flex;
  justify-content: space-between;
}

.action5_icon ul li {
  display: inline-block;
  margin-right: 3px;
}
.action5_icon ul li:last-child {
  margin-right: 0;
}
.action5_icon ul li a {
  font-size: 16px;
}
.action5_icon ul li a:hover {
  color: #ED1921;
}

.product_style5 .product_name {
  background: #fff;
  padding: 10px 5px;
  margin: 0 auto;
  width: 85%;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: ease .5s all;
  -moz-transition: ease .5s all;
  transition: ease .5s all;
  text-align: center;
}
.product_style5 .product_name h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  font-style: italic;
}
.product_style5 .product_name h4 a:hover {
  color: #ED1921;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_style5 .product_name {
    width: 90%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_style5 .product_name h4 {
    font-size: 10px;
  }
}
.product_style5 .single_product:hover .product_name {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .color_six .product_tab_btn ul li a {
    border: 0;
  }
}
.color_six .product_tab_btn ul li a.active {
  color: #ed9153;
  border-color: #ed9153;
}
.color_six .product_tab_btn ul li a:hover {
  color: #ed9153;
  border-color: #ed9153;
}
.color_six .action_links ul a:hover {
  color: #ed9153;
}
.color_six .owl-nav div:hover {
  background: #ed9153;
}
.color_six .product_content h4 a:hover {
  color: #ed9153;
}
.color_six .wishlist-btn a:hover {
  color: #ed9153;
}
.color_six .price_box span.current_price {
  color: #ed9153;
}
.color_six .product_rating ul li a:hover {
  color: #ed9153;
}

@media only screen and (max-width: 767px) {
  .product_area.product_style4.mb-65 {
    margin-bottom: 52px;
  }
}

/*home seven css here*/
.product_tab-seven {
display:block;
width:100%;
  margin:40px auto 0px;
}
.product_tab-seven ul {
  /*justify-content: flex-end;*/
  
  border:0px solid red;
  
}
.product_tab-seven ul li {
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
.product_tab-seven ul li a {
font-size:20px;
}
@media only screen and (max-width: 767px) {
.product_tab-seven ul li {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
  .product_tab-seven ul li a {
    border: 0;
  }
  .product_tab-seven ul li a:hover {
    border: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product_tab-seven ul li a.active {
    border: 0;
  }
}
.product_tab-seven ul li::before {
  width: 1px;
  height: 30px;
  content: '';
  position: absolute;
  right: 0;
  top: -8px;
  background: #444;
}
.product_tab-seven ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.product_tab-seven ul li:last-child::before {
  display: none;
}

.title_style7 {
  text-align: left;
}
.title_style7 h2 {
  padding: 0;
}

.color_seven .product_tab_btn ul li a.active {
  color: #e93838;
  border-color: #e93838;
}
.color_seven .product_tab_btn ul li a:hover {
  color: #e93838;
  border-color: #e93838;
}
.color_seven .action_links ul a:hover {
  color: #e93838;
}
.color_seven .owl-nav div:hover {
  background: #e93838;
}
.color_seven .product_content h4 a:hover {
  color: #e93838;
}
.color_seven .wishlist-btn a:hover {
  color: #e93838;
}
.color_seven .price_box span.current_price {
  color: #e93838;
}
.color_seven .product_rating ul li a:hover {
  color: #e93838;
}

/*home eight css here*/
.product_style8_bottom .product_items .single_product {
  margin-bottom: 20px;
}
.product_style8_bottom .product_items .single_product:last-child {
  margin-bottom: 0;
}
.product_style8_bottom .product_content {
  margin-top: 11px;
}
.product_style8_bottom .product_price_rating {
  margin-top: 3px;
}

.custom_product8 .small_product_container .single_product {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 0;
}
.custom_product8 .small_product_container .single_product:last-child {
  margin-bottom: 0;
}
.custom_product8 .small_product_title h2::before {
  width: 100px;
}

.color_eight .product_tab_btn ul li a.active {
  color: #0881a3;
  border-color: #0881a3;
}
.color_eight .product_tab_btn ul li a:hover {
  color: #0881a3;
  border-color: #0881a3;
}
.color_eight .action_links ul a:hover {
  color: #0881a3;
}
.color_eight .owl-nav div:hover {
  background: #0881a3;
}
.color_eight .product_content h4 a:hover {
  color: #0881a3;
}
.color_eight .wishlist-btn a:hover {
  color: #0881a3;
}
.color_eight .price_box span.current_price {
  color: #0881a3;
}
.color_eight .product_rating ul li a:hover {
  color: #0881a3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-product-area {
    margin-bottom: 70px;
  }
}

/*home nine css here*/
.section_title9 {
  position: relative;
  width: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section_title9 {
    width: 290px;
  }
}
.section_title9::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #737373;
  position: absolute;
  top: 40%;
  transform: translatey(-50%);
  left: 0;
}
.section_title9 h2 {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: #ffffff;
}

.countdown_product_container {
  margin-top: 30px;
}
.countdown_product_container .single_product {
  padding: 35px;
  border: 4px solid #ff6666;
}
@media only screen and (max-width: 767px) {
  .countdown_product_container .single_product {
    padding: 20px;
  }
}
.countdown_product_container .owl-nav div {
  display: none;
}

.product_timing_wrapper {
  text-align: center;
  margin-top: 30px;
}

.single_countdown {
  display: inline-block;
  min-width: 70px;
  margin-right: 10px;
  text-align: center;
  padding: 13px 6px;
  line-height: 1;
  background: #ff6666;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_countdown {
    min-width: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .single_countdown {
    min-width: 48px;
    margin-right: 6px;
    padding: 8px 2px;
  }
}

.countdown_number {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .countdown_number {
    font-size: 16px;
  }
}

.countdown_title {
  font-size: 13px;
  color: #fff;
  margin: 5px 0 0;
  font-weight: 400;
  display: block;
}
@media only screen and (max-width: 767px) {
  .countdown_title {
    font-size: 12px;
  }
}

.hurryup_text {
  margin-bottom: 20px;
}
.hurryup_text h3 {
  font-size: 13px;
  color: #252525;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .color_nine .product_tab_btn ul li a {
    border: 0;
    border-bottom: 1px solid transparent;
  }
}
.color_nine .product_tab_btn ul li a.active {
  color: #ff6666;
  border-color: #ff6666;
}
@media only screen and (max-width: 767px) {
  .color_nine .product_tab_btn ul li a.active {
    border: 0;
    border-bottom: 1px solid #ff6666;
  }
}
.color_nine .product_tab_btn ul li a:hover {
  color: #ff6666;
  border-color: #ff6666;
}
@media only screen and (max-width: 767px) {
  .color_nine .product_tab_btn ul li a:hover {
    border: 0;
    border-bottom: 1px solid #ff6666;
  }
}
.color_nine .action_links ul a:hover {
  color: #ff6666;
}
.color_nine .owl-nav div:hover {
  background: #ff6666;
}
.color_nine .product_content h4 a:hover {
  color: #ff6666;
}
.color_nine .wishlist-btn a:hover {
  color: #ff6666;
}
.color_nine .price_box span.current_price {
  color: #ff6666;
}
.color_nine .product_rating ul li a:hover {
  color: #ff6666;
}

/*home ten css here*/
@media only screen and (max-width: 767px) {
  .color_ten .product_tab_btn ul li a {
    border: 0;
    border-bottom: 1px solid transparent;
  }
}
.color_ten .product_tab_btn ul li a.active {
  color: #9b6501;
  border-color: #9b6501;
}
@media only screen and (max-width: 767px) {
  .color_ten .product_tab_btn ul li a.active {
    border: 0;
    border-bottom: 1px solid #9b6501;
  }
}
.color_ten .product_tab_btn ul li a:hover {
  color: #9b6501;
  border-color: #9b6501;
}
@media only screen and (max-width: 767px) {
  .color_ten .product_tab_btn ul li a:hover {
    border: 0;
    border-bottom: 1px solid #9b6501;
  }
}
.color_ten .action_links ul a:hover {
  color: #9b6501;
}
.color_ten .owl-nav div:hover {
  background: #9b6501;
}
.color_ten .product_content h4 a:hover {
  color: #9b6501;
}
.color_ten .wishlist-btn a:hover {
  color: #9b6501;
}
.color_ten .price_box span.current_price {
  color: #9b6501;
}
.color_ten .product_rating ul li a:hover {
  color: #9b6501;
}

/* 05. blog area css here */
@media only screen and (max-width: 767px) {
  .blog_section {
    margin-bottom: 53px;
  }
}

.blog_carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.blog_carousel:hover .owl-nav div.owl-next {
  right: 0;
}
.blog_carousel .owl-nav.disabled {
  display: block;
}
.blog_carousel .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 15px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 49px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1);
  display:none;
}
@media only screen and (max-width: 767px) {
  .blog_carousel .owl-nav div {
    display: block;
  }
}
.blog_carousel .owl-nav div:hover {
  color: #ffffff;
  background: #ED1921;
}
.blog_carousel .owl-nav div.owl-next {
  right: 15px;
  left: auto;
}
.blog_carousel .col-lg-3 {
  flex: 0 0 100%;
  width: 100%;
}

.blog_content {
  padding-top: 17px;
}
@media only screen and (max-width: 767px) {
  .blog_content {
    padding-top: 15px;
  }
}
.blog_content p.post_desc {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_content p.post_desc {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_content p.post_desc {
    font-size: 13px;
    line-height: 22px;
  }
}
.blog_content h4 {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 5px;
  font-weight: 700;
  font-style: italic;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_content h4 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_content h4 {
    font-size: 14px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_content h4 {
    font-size: 13px;
  }
}
.blog_content h4 a:hover {
  color: #ED1921;
}
.blog_content .btn_more {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .blog_content .btn_more {
    margin-top: 11px;
  }
}
.blog_content .btn_more a {
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
}
.blog_content .btn_more a:hover {
  color: #ED1921;
}
.blog_content .btn_more a i {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .blog_content .btn_more a i {
    margin-left: 5px;
  }
}

.articles_date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.articles_date span {
  font-size: 13px;
  line-height: 15px;
}
.articles_date p {
  font-size: 13px;
  line-height: 15px;
}

/*home two css here*/
.color_two .blog_content h4 a:hover {
  color: #ff847c;
}
.color_two .btn_more a:hover {
  color: #ff847c;
}
.color_two .owl-nav div:hover {
  background: #ff847c;
}

/*home six css here*/
@media only screen and (max-width: 767px) {
  .blog_six {
    margin-bottom: 59px;
  }
}
.blog_six .section_title {
  text-align: left;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .blog_six .section_title {
    margin-bottom: 28px;
  }
}
.blog_six .section_title h2 {
  padding: 0;
}
.blog_six .section_title p {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .blog_six .section_title p {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .blog_thumb {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_six .blog_thumb {
    margin-bottom: 22px;
  }
}
.blog_six .blog_content {
  padding-top: 0;
}
.blog_six .blog_content h4 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_six .blog_content h4 {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .blog_content h4 {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_six .blog_content h4 {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .blog_content p.post_desc {
    font-size: 14px;
  }
}
.blog_six .blog_content .btn_more {
  margin-top: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_six .blog_content .btn_more {
    margin-top: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .blog_content .btn_more {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_six .blog_content .btn_more {
    margin-top: 12px;
  }
}
.blog_six .blog_content .btn_more a {
  border-bottom: 1px solid #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .articles_date {
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_six .articles_date {
    margin-bottom: 5px;
  }
}
.blog_six .articles_date span {
  font-size: 28px;
  color: #252525;
  font-weight: 700;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_six .articles_date span {
    font-size: 20px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_six .articles_date span {
    font-size: 22px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_six .articles_date span {
    font-size: 19px;
    line-height: 20px;
  }
}

.color_six .blog_content h4 a:hover {
  color: #ed9153;
}
.color_six .btn_more a:hover {
  color: #ed9153;
}
.color_six .owl-nav div:hover {
  background: #ed9153;
}

/*home seven css here*/
.color_seven .blog_content h4 a:hover {
  color: #e93838;
}
.color_seven .btn_more a:hover {
  color: #e93838;
}
.color_seven .owl-nav div:hover {
  background: #e93838;
}

/*home nine css here*/
.color_nine .blog_content h4 a:hover {
  color: #ff6666;
}
.color_nine .btn_more a:hover {
  color: #ff6666;
}
.color_nine .owl-nav div:hover {
  background: #ff6666;
}

/*home ten css here*/
.color_ten .blog_content h4 a:hover {
  color: #9b6501;
}
.color_ten .btn_more a:hover {
  color: #9b6501;
}
.color_ten .owl-nav div:hover {
  background: #9b6501;
}

/*06. newsletter area css here*/
.subscribe_form {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe_form {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe_form {
    margin-top: 15px;
  }
}
.subscribe_form form {
  position: relative;
  border: 2px solid #373737;
  width: 100%;
}
.subscribe_form form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.subscribe_form form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.subscribe_form form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.subscribe_form form input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.subscribe_form form input {
  width: 100%;
  border: 0;
  background: none;
  padding: 0 15px;
  height: 48px;
  font-size: 13px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe_form form input {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe_form form input {
    width: 190px;
    height: 40px;
  }
}
.subscribe_form form button {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  width: 48px;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: inherit;
}
.subscribe_form form button:hover {
  color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe_form form button {
    line-height: 36px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe_form form button {
    font-size: 12px;
  }
}

.mailchimp-error {
  text-align: center;
  color: green;
}

.mailchimp-success {
  text-align: center;
  max-width: 510px;
  color: green;
  margin: 0 auto;
}
.mailchimp-success.active {
  margin-top: 20px;
}

.color_two .subscribe_form form button:hover {
  color: #ff847c;
}

/* 21. shipping css here */
@media only screen and (max-width: 767px) {
  .shipping_area {
    margin-bottom: 57px;
  }
}

.single_shipping {
  display: flex;
  border: 1px solid #d2d2d2;
  padding: 30px 13px;
}
@media only screen and (max-width: 767px) {
  .single_shipping {
    margin-bottom: 29px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_shipping.col_3 {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single_shipping.col_3 {
    margin-bottom: 0;
  }
}

.shipping_icone {
  margin-right: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_icone {
    margin-right: 10px;
  }
}
.shipping_icone i {
  font-size: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_icone i {
    font-size: 30px;
  }
}

.shipping_content h3 {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_content h3 {
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_content h3 {
    font-size: 13px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_content h3 {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.shipping_content p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 20px;
}

/*home three css here*/
@media only screen and (max-width: 767px) {
  .shipping_three {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_three .single_shipping {
    padding: 20px 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_three .shipping_content h3 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_three .shipping_content p {
    font-size: 12px;
    line-height: 18px;
  }
}

/*home four css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.shipping_four .shipping_content {
  text-align: center;
  background: #f7f7f7;
  padding: 30px 10px;
}
.shipping_four .shipping_content h3 {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .shipping_four .shipping_content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four .shipping_content.col_3 {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four .shipping_content.col_3 {
    margin-bottom: 0;
  }
}

.shipping_four_inner {
  background: #f7f7f7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four_inner {
    background: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four_inner {
    background: inherit;
  }
}

.shipping_four_bottom .single_shipping {
  flex-direction: column;
  text-align: center;
  padding: 30px 0;
  border: 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four_bottom .single_shipping {
    background: #f7f7f7;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four_bottom .single_shipping {
    background: #f7f7f7;
    padding: 20px 10px;
  }
}
.shipping_four_bottom .single_shipping::before {
  content: '';
  background: #dadada;
  height: 113px;
  width: 1px;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translatey(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four_bottom .single_shipping::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four_bottom .single_shipping::before {
    display: none;
  }
}
.shipping_four_bottom .single_shipping.col_3::before {
  display: none;
}
.shipping_four_bottom .shipping_icone {
  margin-right: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four_bottom .shipping_icone {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four_bottom .shipping_icone {
    margin-bottom: 10px;
  }
}
.shipping_four_bottom .shipping_icone i {
  font-size: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_four_bottom .shipping_icone i {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_four_bottom .shipping_icone i {
    font-size: 35px;
  }
}

/*home five css here*/
.shipping_five .single_shipping {
  background: #f7f7f7;
  padding: 25px 28px 20px;
  border: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .shipping_five .single_shipping {
    padding: 25px 22px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_five .single_shipping {
    padding: 25px 13px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_five .single_shipping {
    padding: 25px 12px 20px;
  }
}
.shipping_five .shipping_icone {
  margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_five .shipping_icone {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .shipping_five .shipping_icone {
    margin-right: 11px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_five .shipping_icone i {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .shipping_five .shipping_content h3 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_five .shipping_content h3 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_five .shipping_content p {
    font-size: 12px;
  }
}

/*testimonial css here*/
.testimonial_area {
  background: url("../img/bg/banner10.jpg") no-repeat 0 0;
  padding: 75px 0 71px;
}
@media only screen and (max-width: 767px) {
  .testimonial_area {
    margin-bottom: 57px;
    padding: 56px 0 59px;
  }
}

.testimonial_title {
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_title {
    margin-bottom: 15px;
  }
}
.testimonial_title h2 {
  color: #ffffff;
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .testimonial_title h2 {
    font-size: 16px;
    line-height: 23px;
  }
}

.testimonial_carousel .testimonial_img a img {
  width: 90px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .testimonial_carousel .testimonial_img a img {
    width: 75px;
  }
}
.testimonial_carousel .owl-dots {
  text-align: center;
  margin-top: 52px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_carousel .owl-dots {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_carousel .owl-dots {
    display: none;
  }
}
.testimonial_carousel .owl-dots .owl-dot {
  display: inline-block;
  height: 15px;
  margin: 0 3px;
  width: 15px;
  border: 1px solid #fff;
  background: #e7e7e7;
}
.testimonial_carousel .owl-dots .owl-dot.active {
  background: #ff847c;
}

.single_testimonial {
  text-align: center;
}

.testimonial_content p {
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_content p {
    font-size: 14px;
    line-height: 20px;
  }
}

.testimonial_text_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_text_img {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_text_img {
    margin-top: 23px;
  }
}

.testimonial_author {
  margin-left: 15px;
}
.testimonial_author a {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .testimonial_author a {
    font-size: 12px;
  }
}
.testimonial_author a:hover {
  color: #ff847c;
}

/*brand css here*/
.brand_area {
  padding: 10px 0;
  background: #f7f7f7;
}

.brand_container .single_brand img {
  width: inherit;
  margin: 0 auto;
}
.brand_container:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.brand_container:hover .owl-nav div.owl-next {
  right: 0;
}
.brand_container .owl-nav.disabled {
  display: block;
}
.brand_container .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 15px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 49px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .brand_container .owl-nav div {
    display: none;
  }
}
.brand_container .owl-nav div:hover {
  color: #ffffff;
  background: #ED1921;
}
.brand_container .owl-nav div.owl-next {
  right: 15px;
  left: auto;
}

/*home two css here*/
.color_two .owl-nav div:hover {
  background: #ff847c;
}

/*home three css here*/
.color_three .owl-nav div:hover {
  background: #14663b;
}

/*home four css here*/
.brand_four {
  background: inherit;
  padding: 0;
}
.brand_four .brand_container {
  padding: 10px 0;
  background: #f7f7f7;
}

.color_four .owl-nav div:hover {
  background: #b6a08e;
}

/*home six vss here*/
.brand_six {
  background: inherit;
  padding: 0;
}
.brand_six .brand_container {
  padding: 10px 0;
  background: #f7f7f7;
}
@media only screen and (max-width: 767px) {
  .brand_six {
    margin-bottom: 58px;
  }
}

.color_six .owl-nav div:hover {
  background: #ed9153;
}

/*home seven css here*/
.color_seven .owl-nav div:hover {
  background: #e93838;
}

/*home eight css here*/
.color_eight .owl-nav div:hover {
  background: #0881a3;
}

/*home nine css here*/
.color_nine .owl-nav div:hover {
  background: #ff6666;
}

/*home ten css here*/
.color_ten .owl-nav div:hover {
  background: #9b6501;
}

/*  07. footer area css here */
.footer_widgets {
  background: #1f1f1f;
}

.footer_top {
  padding: 70px 0 64px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_top {
    padding: 70px 0 17px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_top {
    padding: 59px 0 9px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets_container {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container {
    margin-bottom: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container.widget_menu {
    margin-bottom: 51px;
  }
}
.widgets_container h3 {
  font-size: 15px;
  line-height: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets_container h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container h3 {
    margin-bottom: 12px;
    font-size: 14px;
  }
}

.footer_logo {
  margin-bottom: 31px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_logo {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_logo {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_logo a img {
    max-width: 180px;
  }
}

.contact_us > p {
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}
.contact_us > p a:hover {
  color: #ED1921;
}
.contact_us > p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .contact_us > p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.footer_desc {
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_desc {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_desc {
    margin-bottom: 16px;
  }
}
.footer_desc p {
  font-size: 14px;
  line-height: 23px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .footer_desc p {
    line-height: 23px;
  }
}

.footer_menu ul li {
  padding-bottom: 5px;
}
.footer_menu ul li:last-child {
  padding-bottom: 0;
}
.footer_menu ul li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
}
.footer_menu ul li a:hover {
  color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_menu ul li a {
    font-size: 14px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_menu ul li a {
    line-height: 22px;
    font-size: 13px;
  }
}

.footer_link {
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .footer_link {
    margin-bottom: 9px;
  }
}
.footer_link ul li {
  display: inline-block;
  margin-right: 24px;
  padding-right: 24px;
  position: relative;
}
.footer_link ul li::before {
  content: '';
  background: #fff;
  width: 3px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.footer_link ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer_link ul li {
    margin-right: 5px;
    padding-right: 9px;
  }
}
.footer_link ul li a {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
}
.footer_link ul li a:hover {
  color: #ED1921;
}
@media only screen and (max-width: 767px) {
  .footer_link ul li a {
    letter-spacing: 0;
    font-size: 11px;
  }
}

.footer_social {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_social {
    margin-top: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_social {
    margin-top: 20px;
  }
}
.footer_social ul li {
  display: inline-block;
  margin-right: 12px;
}
.footer_social ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer_social ul li {
    margin-right: 6px;
  }
}
.footer_social ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #c8c8c8;
  border: 1px solid #4d4d4d;
}
.footer_social ul li a:hover {
  border-color: #ED1921;
  background: #ED1921;
}
@media only screen and (max-width: 767px) {
  .footer_social ul li a {
    width: 32px;
    height: 32px;
    line-height: 30px;
  }
}

.copyright_area {
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  .copyright_area {
    text-align: center;
    margin-bottom: 14px;
  }
}
.copyright_area p {
  text-transform: capitalize;
  line-height: 25px;
  font-size: 14px;
  color: #bdbdbd;
}
@media only screen and (max-width: 767px) {
  .copyright_area p {
    letter-spacing: 0;
    font-size: 13px;
    line-height: 20px;
  }
}
.copyright_area p a {
  color: #ED1921;
}
.copyright_area p a:hover {
  text-decoration: underline;
}

.footer_bottom_container {
  border-top: 1px solid #2b2b2b;
  padding: 30px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_bottom_container {
    padding: 24px 0 28px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_payment {
    text-align: center !important;
  }
}
.footer_payment ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer_payment ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer_payment ul li {
    margin-right: 5px;
  }
}

/*home two css here*/
.color_two .footer_menu ul li a:hover {
  color: #ff847c;
}
.color_two .contact_us > p a:hover {
  color: #ff847c;
}
.color_two .footer_social ul li a:hover {
  border-color: #ff847c;
  background: #ff847c;
}
.color_two .footer_link ul li a:hover {
  color: #ff847c;
}
.color_two .copyright_area p a {
  color: #ff847c;
}

/*home three css here*/
.footer_three {
  padding-left: 285px;
  padding-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three {
    padding-left: 223px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_three {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_three {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_three .widgets_container h3 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .widgets_container h3 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_three .footer_menu ul li a {
    font-size: 13px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .footer_menu ul li a {
    font-size: 12px;
    line-height: 27px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_three .footer_desc p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .footer_desc p {
    font-size: 12px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_three .contact_us > p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .contact_us > p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .footer_social ul li {
    margin-right: 5px;
  }
  .footer_three .footer_social ul li:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_three .footer_social ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.color_three .footer_menu ul li a:hover {
  color: #14663b;
}
.color_three .contact_us > p a:hover {
  color: #14663b;
}
.color_three .footer_social ul li a:hover {
  border-color: #14663b;
  background: #14663b;
}
.color_three .footer_link ul li a:hover {
  color: #14663b;
}
.color_three .copyright_area p a {
  color: #14663b;
}

/*home four css here*/
.color_four .footer_menu ul li a:hover {
  color: #b6a08e;
}
.color_four .contact_us > p a:hover {
  color: #b6a08e;
}
.color_four .footer_social ul li a:hover {
  border-color: #b6a08e;
  background: #b6a08e;
}
.color_four .footer_link ul li a:hover {
  color: #b6a08e;
}
.color_four .copyright_area p a {
  color: #b6a08e;
}

/*home five css here*/
.footer_five {
  padding-left: 315px;
  padding-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five {
    padding-left: 223px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_five {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_five {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_five .widgets_container h3 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .widgets_container h3 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_five .footer_menu ul li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .footer_menu ul li a {
    font-size: 12px;
    line-height: 27px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_five .footer_desc p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .footer_desc p {
    font-size: 12px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_five .contact_us > p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .contact_us > p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer_five .footer_social ul li {
    margin-right: 7px;
  }
  .footer_five .footer_social ul li:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .footer_social ul li {
    margin-right: 5px;
  }
  .footer_five .footer_social ul li:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_five .footer_social ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/*home six css here*/
.color_six .footer_menu ul li a:hover {
  color: #ed9153;
}
.color_six .contact_us > p a:hover {
  color: #ed9153;
}
.color_six .footer_social ul li a:hover {
  border-color: #ed9153;
  background: #ed9153;
}
.color_six .footer_link ul li a:hover {
  color: #ed9153;
}
.color_six .copyright_area p a {
  color: #ed9153;
}
.color_six .subscribe_form form button:hover {
  color: #ed9153;
}

/*home seven css here*/
.color_seven .footer_menu ul li a:hover {
  color: #e93838;
}
.color_seven .contact_us > p a:hover {
  color: #e93838;
}
.color_seven .footer_social ul li a:hover {
  border-color: #e93838;
  background: #e93838;
}
.color_seven .footer_link ul li a:hover {
  color: #e93838;
}
.color_seven .copyright_area p a {
  color: #e93838;
}
.color_seven .subscribe_form form button:hover {
  color: #e93838;
}

/*home eight css here*/
.color_eight .footer_menu ul li a:hover {
  color: #0881a3;
}
.color_eight .contact_us > p a:hover {
  color: #0881a3;
}
.color_eight .footer_social ul li a:hover {
  border-color: #0881a3;
  background: #0881a3;
}
.color_eight .footer_link ul li a:hover {
  color: #0881a3;
}
.color_eight .copyright_area p a {
  color: #0881a3;
}
.color_eight .subscribe_form form button:hover {
  color: #0881a3;
}

/*home nine css here*/
.color_nine .footer_menu ul li a:hover {
  color: #ff6666;
}
.color_nine .contact_us > p a:hover {
  color: #ff6666;
}
.color_nine .footer_social ul li a:hover {
  border-color: #ff6666;
  background: #ff6666;
}
.color_nine .footer_link ul li a:hover {
  color: #ff6666;
}
.color_nine .copyright_area p a {
  color: #ff6666;
}
.color_nine .subscribe_form form button:hover {
  color: #ff6666;
}

/*home ten css here*/
.color_ten .footer_menu ul li a:hover {
  color: #9b6501;
}
.color_ten .contact_us > p a:hover {
  color: #9b6501;
}
.color_ten .footer_social ul li a:hover {
  border-color: #9b6501;
  background: #9b6501;
}
.color_ten .footer_link ul li a:hover {
  color: #9b6501;
}
.color_ten .copyright_area p a {
  color: #9b6501;
}
.color_ten .subscribe_form form button:hover {
  color: #9b6501;
}

/* 10. shop page css here */
.canvas_padding {
  margin-bottom: 0;
}

.breadcrumbs_area {
  background: #f0f0f0;
  border-bottom: 1px solid #ebebeb;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs_area {
    padding: 12px 0;
  }
}

.breadcrumb_content ul li {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  margin-right: 3px;
  padding-right: 13px;
  position: relative;
}
.breadcrumb_content ul li::before {
  position: absolute;
  content: "/";
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.breadcrumb_content ul li:last-child {
  margin-right: 0;
}
.breadcrumb_content ul li:last-child::before {
  display: none;
}
.breadcrumb_content ul li a:hover {
  color: #ED1921;
}

.sidebar_widget .single_banner {
  border: 0;
}
@media only screen and (max-width: 767px) {
  .sidebar_widget .single_banner {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar_widget .single_banner a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar_widget .single_banner a img {
    width: 100%;
  }
}

.widget_list {
  margin-bottom: 33px;
}
.widget_list.widget_categories > ul > li > a {
  font-size: 14px;
  display: block;
  line-height: 30px;
  padding: 0 20px;
}
.widget_list.widget_categories > ul > li > a:hover {
  color: #ED1921;
}
.widget_list.widget_categories > ul > li:last-child > a {
  border-bottom: 0;
}
.widget_list.widget_categories > ul > li.widget_sub_categories > a {
  position: relative;
}
.widget_list.widget_categories > ul > li.widget_sub_categories > a::before {
  content: '+';
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translatey(-50%);
}
.widget_list.widget_categories > ul > li.widget_sub_categories > a.active::before {
  content: '-';
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translatey(-50%);
}
.widget_list.widget_categories > ul > li ul {
  padding-left: 30px;
  display: none;
}
.widget_list.widget_categories > ul > li ul li a {
  font-size: 13px;
  line-height: 30px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.widget_list.widget_categories > ul > li ul li a:hover {
  color: #b6a08e;
}
.widget_list:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list {
    margin-bottom: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list {
    margin-bottom: 53px;
  }
}
.widget_list h3 {
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_list h3 {
    font-size: 18px;
  }
}
.widget_list h3::before {
  content: '';
  background: #444444;
  height: 2px;
  width: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.widget_list > ul > li > a {
  font-size: 14px;
  display: block;
  line-height: 30px;
}
.widget_list > ul > li > a:hover {
  color: #ED1921;
}
.widget_list.widget_color {
  margin-bottom: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list.widget_color {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list.widget_color {
    margin-bottom: 45px;
  }
}
.widget_list.widget_manu {
  margin-bottom: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list.widget_manu {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list.widget_manu {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list.tags_widget {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list.tags_widget {
    margin-bottom: 43px;
  }
}

.ui-slider-horizontal .ui-slider-range {
  background: #b6a08e;
  height: 2px;
}

.ui-slider-horizontal {
  height: 2px;
  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;
  width: 15px;
  height: 15px;
  top: -7px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #b6a08e;
}

.widget_list.widget_filter {
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_list.widget_filter {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_list.widget_filter {
    margin-bottom: 50px;
  }
}
.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;
  width: 60px;
}
@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 20px;
  text-transform: capitalize;
  color: #ffffff;
  background: #252525;
  border: 0;
  border-radius: 30px;
  float: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.widget_list.widget_filter form button:hover {
  background: #b6a08e;
}

.tag_cloud a {
  margin: 0 5px 12px 0;
  padding: 5px 15px;
  text-transform: capitalize;
  display: inline-block;
  border: 1px solid #ebebeb;
  background: #ffffff;
  border-radius: 3px;
  font-size: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag_cloud a {
    padding: 5px 10px;
  }
}
.tag_cloud a:hover {
  background: #ED1921;
  border-color: #ED1921;
  color: #ffffff;
}

.shop_sidebar_product .single_product {
  margin-bottom: 20px;
  overflow: hidden;
}
.shop_sidebar_product .single_product:last-child {
  margin-bottom: 0;
}
.shop_sidebar_product .product_content {
  width: 64%;
  padding-left: 15px;
  margin-top: 0;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop_sidebar_product .product_content {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_sidebar_product .product_content {
    width: 67%;
  }
}
@media only screen and (max-width: 767px) {
  .shop_sidebar_product .product_content {
    width: 73%;
    padding-left: 12px;
  }
}
.shop_sidebar_product .product_content h4 {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 12px;
}
.shop_sidebar_product .product_content h4 a:hover {
  color: #ED1921;
}
.shop_sidebar_product .product_thumb {
  width: 90px;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop_sidebar_product .product_thumb {
    width: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_sidebar_product .product_thumb {
    width: 70px;
  }
}
.shop_sidebar_product .product_rating {
  float: inherit;
  margin-bottom: 7px;
  width: 100%;
}
.shop_sidebar_product .product_rating ul li a:hover {
  color: #b6a08e;
}

.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;
  }
}
@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: #b6a08e;
}
.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: #ED1921;
}
.list_button ul li a.active i {
  background: #b6a08e;
  color: #ffffff;
}

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

@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;
  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: #ED1921;
  color: #ffffff;
}
.pagination ul li.current {
  background: #ED1921;
  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: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_toolbar.t_bottom {
    padding: 15px 10px 15px;
    margin-bottom: 60px;
  }
}
@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 .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;
}

/* shop page css here*/
@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;
  }
}

.row.shop_wrapper {
  flex-direction: row;
}

.shop_toolbar_btn > button {
  margin-right: 10px;
  border: 0;
  background: inherit;
}
.shop_toolbar_btn > button.btn-grid-3 {
  background: url(../img/icon/bkg_grid.png) no-repeat scroll center center;
  width: 20px;
  height: 20px;
}
.shop_toolbar_btn > button.btn-grid-3.active {
  background: url(../img/icon/bkg_grid_hover.png) no-repeat scroll center center !important;
}
.shop_toolbar_btn > button.btn-grid-4 {
  background: url(../img/icon/bkg_grid4.png) no-repeat scroll center center;
  width: 26px;
  height: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop_toolbar_btn > button.btn-grid-4 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_toolbar_btn > button.btn-grid-4 {
    display: none;
  }
}
.shop_toolbar_btn > button.btn-grid-4.active {
  background: url(../img/icon/bkg_grid4_hover.png) no-repeat scroll center center !important;
}
.shop_toolbar_btn > button.btn-list {
  background: url(../img/icon/bkg_list.png) no-repeat scroll center center;
  width: 20px;
  height: 20px;
}
.shop_toolbar_btn > button.btn-list.active {
  background: url(../img/icon/bkg_list_hover.png) no-repeat scroll center center !important;
}

.product_content.list_content {
  display: none;
}

.grid_content .product_ratings {
  margin-bottom: 11px;
}
.grid_content .product_ratings ul {
  justify-content: center;
}

.grid_list .grid_name {
  display: none;
}

.grid_list .product_content.grid_content {
  display: none;
}

.grid_list .product_content.list_content {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  float: left;
  padding-left: 25px;
  text-align: left;
  margin-top: 0;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product_content.list_content {
    min-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .grid_list .product_content.list_content {
    flex-direction: column;
    flex: 0 0 100%;
    min-width: 100%;
    padding-left: 0;
  }
}
.grid_list .product_content.list_content h4.product_name {
  font-size: 17px;
  margin-bottom: 20px;
}
.grid_list .product_content.list_content .action_links {
  opacity: inherit;
  visibility: visible;
  text-align: left;
  transform: inherit;
  position: inherit;
}
.grid_list .product_content.list_content .action_links ul li a {
  transform: inherit;
}
.grid_list .product_content.list_content .product_desc {
  display: inline-block;
  margin-bottom: 15px;
}
.grid_list .product_content.list_content .product_desc p {
  font-size: 14px;
  line-height: 24px;
}

.grid_list .single_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .grid_list .single_product {
    flex-direction: column;
  }
}

.grid_list .product_thumb {
  margin-bottom: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product_thumb {
    min-width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .grid_list .product_thumb {
    flex: 0 0 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col-cust-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: max-width;
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .col-cust-5 {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media only screen and (max-width: 767px) {
  .col-cust-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .col-cust-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.shop_wrapper > div {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.shop_toolbar_wrapper {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: right;
  align-items: center;
  border: 1px solid #ddd;
  padding: 8px 10px;
  margin: 0 0 30px;
}
.shop_toolbar_wrapper .niceselect_option {
margin-left:10px;
}
@media only screen and (max-width: 767px) {
  .shop_toolbar_wrapper {
    /*flex-direction: column;*/
	justify-content: left;
    padding: 15px 10px 5px;
  }
}

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

.shop_wrapper {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .shop_wrapper .product_thumb a img {
    width: 100%;
  }
}
.shop_wrapper .single_product {
  position: relative;
  margin-bottom: 24px;
}
.shop_wrapper.grid_list .single_product {
  margin-bottom: 30px;
}
.shop_wrapper .label_product {
  bottom: 40px;
}
.shop_wrapper.grid_4 .product_content h4 {
  margin-bottom: 5px;
}
.shop_wrapper.grid_4 .product_rating {
  float: inherit;
  margin-bottom: 11px;
}

/* shop page css end*/
/*shop fullwidth css here*/
.shop_fullwidth .shop_wrapper.grid_3 .product_thumb a img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_fullwidth {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .shop_fullwidth {
    margin-bottom: 0;
  }
}

/* 15. product details css here */
#img-1 {
  border: 1px solid #ebebeb;
}

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

.product_d_right h1 {
  text-transform: capitalize;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 22px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_d_right h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product_d_right h1 {
    margin-bottom: 17px;
    font-size: 18px;
  }
}
.product_d_right h1 a {
  color: #252525;
}
.product_d_right h1 a:hover {
  color: #ED1921;
}
.product_d_right .product_ratting {
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .product_ratting {
    margin-bottom: 12px;
  }
}
.product_d_right .product_ratting ul li a {
  color: #ED1921;
}
.product_d_right .product_ratting ul li.review a {
  color: #5a5a5a;
  margin-left: 10px;
}
.product_d_right .product_ratting ul li.review a:hover {
  color: #ED1921;
}
.product_d_right .price_box {
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .price_box {
    margin-bottom: 9px;
  }
}
.product_d_right .price_box span.current_price {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .price_box span.current_price {
    font-size: 18px;
  }
}
.product_d_right .price_box span.old_price {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .price_box span.old_price {
    font-size: 17px;
  }
}
.product_d_right .product_desc {
  margin-bottom: 19px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .product_d_right .product_desc {
    margin-bottom: 15px;
    padding-bottom: 18px;
  }
}
.product_d_right .product_desc::before {
  display: none;
}
.product_d_right .product_desc p {
  font-size: 14px;
  line-height: 26px;
}
.product_d_right .priduct_social ul li {
  display: inline-block;
  margin-right: 7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_d_right .priduct_social ul li {
    margin-right: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .product_d_right .priduct_social ul li {
    margin-right: 2px;
  }
}
.product_d_right .priduct_social ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .product_d_right .priduct_social ul li {
    margin-right: 0;
  }
}
.product_d_right .priduct_social ul li a {
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  padding: 0 8px;
  border-radius: 3px;
  text-transform: capitalize;
  display: block;
}
@media only screen and (max-width: 767px) {
  .product_d_right .priduct_social ul li a {
    padding: 0 4px;
    font-size: 10px;
  }
}
.product_d_right .priduct_social ul li a:hover {
  opacity: 0.8;
}
.product_d_right .priduct_social ul li a.facebook {
  background: #3B5999;
}
.product_d_right .priduct_social ul li a.twitter {
  background: #1DA1F2;
}
.product_d_right .priduct_social ul li a.pinterest {
  background: #CB2028;
}
.product_d_right .priduct_social ul li a.google-plus {
  background: #fe6d4c;
}
.product_d_right .priduct_social ul li a.linkedin {
  background: #010103;
}
.product_d_right .product_timing {
  position: inherit;
  margin-bottom: 22px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .product_timing {
    margin-bottom: 16px;
    margin-top: 25px;
  }
}
.product_d_right .countdown_area {
  max-width: 220px;
}
@media only screen and (max-width: 767px) {
  .product_d_right .countdown_area {
    max-width: 190px;
  }
}

.product_nav {
  float: right;
  position: relative;
  top: -46px;
}
@media only screen and (max-width: 767px) {
  .product_nav {
    display: none;
  }
}
.product_nav ul li {
  display: inline-block;
  margin-left: 3px;
}
.product_nav ul li:first-child {
  margin-left: 0;
}
.product_nav ul li a {
  background: #ED1921;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  font-size: 15px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
}
.product_nav ul li a:hover {
  background: #252525;
}

.product_variant.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product_variant.quantity {
    margin-bottom: 16px;
  }
}
.product_variant.quantity label {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  margin-bottom: 0;
}
.product_variant.quantity input {
  width: 130px;
  border: 1px solid #ebebeb;
  background: none;
  height: 42px;
  padding: 0 12px;
  border-radius: 5px;
  margin-left: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_variant.quantity input {
    width: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_variant.quantity input {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .product_variant.quantity input {
    width: 65px;
    margin-left: 10px;
  }
}
.product_variant.quantity button {
  border: 0;
  font-size: 16px;
  margin-left: 20px;
  background: #ED1921;
  height: 42px;
  line-height: 42px;
  text-transform: capitalize;
  min-width: 270px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_variant.quantity button {
    min-width: 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_variant.quantity button {
    min-width: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .product_variant.quantity button {
    min-width: inherit;
    margin-left: 10px;
  }
}
.product_variant.quantity button:hover {
  background: #3E444A;
}
.product_variant.color {
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  .product_variant.color {
    margin-bottom: 18px;
  }
}
.product_variant.color h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 40px;
}
.product_variant.color label {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.product_variant.color ul li {
  display: inline-block;
  padding: 2px;
  border: 1px solid #ccc;
  margin-right: 5px;
}
.product_variant.color ul li:hover {
  border-color: #E88888;
}
.product_variant.color ul li:last-child {
  margin-right: 0;
}
.product_variant.color ul li a {
  width: 30px;
  height: 30px;
  display: block;
}
.product_variant.color ul li.color1 a {
  background: #000000;
}
.product_variant.color ul li.color2 a {
  background: #BEBEBE;
}
.product_variant.color ul li.color3 a {
  background: #FE0000;
}
.product_variant.color ul li.color4 a {
  background: #FFFF01;
}
.product_variant.size {
  margin-bottom: 30px;
}
.product_variant.size label {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.product_variant.size .niceselect_option {
  float: inherit;
  max-width: 200px;
}

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

.product_d_action {
  margin-bottom: 14px;
}
.product_d_action ul li a {
  font-size: 14px;
  line-height: 28px;
}
.product_d_action ul li a:hover {
  color: #ED1921;
}

.product_meta {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .product_meta {
    margin-bottom: 20px;
  }
}
.product_meta span {
  font-weight: 500;
  display:block;
  margin-bottom:10px;
}
.product_meta span a {
  margin-left: 10px;
  font-weight: 400;
}
.product_meta span a:hover {
  color: #ED1921;
}

.product_info_button {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  margin-bottom: 29px;
}
@media only screen and (max-width: 767px) {
  .product_info_button ul li {
    margin-bottom: 5PX;
  }
  .product_info_button ul li:last-child {
    margin-bottom: 0;
  }
}
.product_info_button ul li a {
  display: block;
  float: left;
  text-transform: capitalize;
  font-size: 20px;
  color: #555;
  font-weight: 500;
  margin-right: 35px;
  line-height: 26px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .product_info_button ul li a {
    margin-right: 25px;
    font-size: 17px;
  }
}
.product_info_button ul li a.active {
  color: #333333;
}
.product_info_button ul li a:hover {
  color: #333333;
}
.product_info_button ul li:last-child a {
  margin-right: 0;
}

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

.product_info_content p {
  line-height: 28px;
}

.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_d_inner {
  padding: 20px 30px 27px;
  border: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .product_d_inner {
    padding: 20px 20px 27px;
  }
}

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

.reviews_wrapper h2 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .reviews_wrapper h2 {
    font-size: 15px;
  }
}
.reviews_wrapper .product_ratting {
  margin-bottom: 20px;
}
.reviews_wrapper .product_ratting ul li a {
  color: #ED1921;
}
.reviews_wrapper .product_ratting h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.comment_title {
  margin-bottom: 20px;
}

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

.star_rating {
  float: right;
}
.star_rating ul li {
  display: inline-block;
}
.star_rating ul li a {
  color: #ED1921;
}

.reviews_comment_box {
  display: flex;
  margin-bottom: 22px;
}
.reviews_comment_box .comment_text {
  width: 100%;
  border: 1px solid #ebebeb;
  position: relative;
  margin-left: 21px;
  padding: 12px;
  border-radius: 3px;
}
.reviews_comment_box .comment_text::before {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  content: '';
  display: block;
  height: 10px;
  left: -6px;
  position: absolute;
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
}

.reviews_meta p {
  font-size: 15px;
  margin-bottom: 15px;
}
.reviews_meta p strong {
  text-transform: uppercase;
  font-weight: 500;
  color: #252525;
}

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

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

.single-zoom-thumb {
  margin-top: 20px !important;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-zoom-thumb {
    width: 85%;
  }
}
@media only screen and (max-width: 767px) {
  .single-zoom-thumb {
    width: 101%;
  }
}
.single-zoom-thumb ul li {
  border: 1px solid #ddd;
}
.single-zoom-thumb ul li a {
  width: 100%;
}

.related_products {
  margin-bottom: 51px;
}
.related_products .section_title::before {
  display: none;
}

.upsell_products {
  margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .upsell_products {
    margin-bottom: 54px;
  }
}
.upsell_products .section_title::before {
  display: none;
}

/* 12. product grouped css here */
.grouped_form {
  border: 1px solid #ebebeb;
  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 #ebebeb;
}
.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 #ebebeb;
  padding: 0 5px;
  height: 40px;
}
.grouped_form table tbody tr td.grouped-product-list.quantity {
  min-width: 80px;
  text-align: center;
  line-height: 12px;
}
.grouped_form table tbody tr td.grouped-product-list.label {
  min-width: 188px;
  font-weight: 500;
  font-size: 14px;
}
.grouped_form table tbody tr td.grouped-product-list.label a:hover {
  color: #ED1921;
}
.grouped_form table tbody tr td.grouped-product-list.price {
  font-size: 14px;
  font-weight: 500;
  min-width: 190px;
}
.grouped_form table tbody tr td.grouped-product-list.price p {
  font-size: 12px;
  font-weight: 500;
  position: relative;
}
.grouped_form table tbody tr td.grouped-product-list.price p::before {
  color: #ff847c;
  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*/
.p_section1.related_product .slick-list {
  padding-bottom: 144px !important;
  margin-bottom: -135px;
}

.variable_product .niceselect_option .list {
  width: 100%;
}

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

/*product sidebar css here*/
.product_sidebar {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar {
    margin-bottom: 50px;
  }
}
@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;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar .product_section .row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar .product_section .row {
    flex-direction: row;
  }
}
.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;
  }
}
.product_sidebar .product_variant.quantity input {
  width: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .product_variant.quantity input {
    width: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar .product_variant.quantity input {
    width: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar .product_variant.quantity input {
    width: 60px;
  }
}
.product_sidebar .product_variant.quantity button {
  min-width: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_sidebar .product_variant.quantity button {
    min-width: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_sidebar .product_variant.quantity button {
    min-width: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar .product_variant.quantity button {
    min-width: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .product_sidebar .product-details-tab {
    margin-bottom: 0;
  }
}
.product_sidebar .price_box span.current_price {
  font-size: 16px;
}
.product_sidebar .price_box span.old_price {
  font-size: 15px;
}
.product_sidebar .price_box span.regular_price {
  font-size: 16px;
}

.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 #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
@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: 60px;
}
@media only screen and (max-width: 767px) {
  .product_right_sidebar .product-details-tab {
    margin-bottom: 58px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_right_sidebar .row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .product_right_sidebar .row {
    flex-direction: row;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_right_sidebar .priduct_social ul li {
    margin-right: 2px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product_right_sidebar .product_d_right h1 {
    font-size: 20px;
  }
}

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

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

.table_desc {
  border: 1px solid #ebebeb;
  margin-bottom: 30px;
  margin-top: 2px;
}
.table_desc .cart_page table {
  width: 100%;
}
.table_desc .cart_page table thead tr th {
  border-bottom: 3px solid #ED1921;
  border-right: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px;
  text-align: center;
}
.table_desc .cart_page table tbody tr td {
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  text-align: center;
  padding: 10px;
}
.table_desc .cart_page table tbody tr td.product_remove {
  min-width: 100px;
}
.table_desc .cart_page table tbody tr td.product_remove a {
  font-size: 20px;
  color: #252525;
}
.table_desc .cart_page table tbody tr td.product_remove a:hover {
  color: #ED1921;
}
.table_desc .cart_page table tbody tr td.product_thumb {
  max-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_thumb a img {
  width: 100px;
}
.table_desc .cart_page table tbody tr td.product_name {
  min-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_name a {
  color: #252525;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
}
.table_desc .cart_page table tbody tr td.product_name a:hover {
  color: #ED1921;
}
.table_desc .cart_page table tbody tr td.product-price {
  min-width: 130px;
  color: #252525;
  font-size: 16px;
  font-weight: 500;
}
.table_desc .cart_page table tbody tr td.product_quantity {
  min-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_quantity label {
  font-weight: 500;
  margin-right: 5px;
}
.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 #ebebeb;
}
.table_desc .cart_page table tbody tr td .product_total {
  min-width: 120px;
}

.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;
}
@media only screen and (max-width: 767px) {
  .cart_submit {
    text-align: center;
  }
}
.cart_submit button {
  background: #252525;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
}
.cart_submit button:hover {
  background: #ED1921;
}

.coupon_inner {
  padding: 10px 20px 25px;
}
.coupon_inner p {
  font-size: 14px;
  margin-bottom: 20px;
}
.coupon_inner button {
  background: #252525;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 20px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
}
.coupon_inner button:hover {
  background: #ED1921;
}
.coupon_inner input {
  border: 1px solid #ebebeb;
  height: 42px;
  background: none;
  padding: 0 20px;
  margin-right: 20px;
  font-size: 12px;
  color: #252525;
}
@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;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  border-radius: 3px;
}
.coupon_inner a:hover {
  color: #ED1921;
}

.coupon_code {
  border: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .coupon_code.left {
    margin-bottom: 59px;
  }
}
.coupon_code h3 {
  color: #ffffff;
  line-height: 36px;
  padding: 5px 15px;
  background: #252525;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
@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 {
  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 {
  display: inline-block;
  font-size:16px;
  line-height:20px;
  padding:15px 20px;
  border-radius:5px;
}
.checkout_btn a:hover {
  color: #222;
}

.coupon_area {
  margin-bottom: 30px;
}

.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 #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
@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*/
/* 14. checkout page css here */
.user-actions {
  margin-bottom: 20px;
}
.user-actions h3 {
  font-size: 13px;
  font-weight: 400;
  background-color: #f7f6f7;
  padding: 15px 10px;
  border-top: 3px solid #ED1921;
  margin-bottom: 0;
}
.user-actions h3 a {
  color: #ED1921;
}

.checkout_info {
  border: 1px solid #ebebeb;
  margin-top: 25px;
  padding: 20px 30px;
}
.checkout_info p {
  margin-bottom: 15px;
}
.checkout_info a {
  color: #ED1921;
  margin-top: 15px;
  display: block;
}
.checkout_info.coupon_info form {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .checkout_info.coupon_info form {
    flex-direction: column;
  }
}

.form_group {
  margin-bottom: 20px;
}
.form_group label {
  font-size: 14px;
  display: block;
  line-height: 18px;
}
.form_group input {
  border: 1px solid #ebebeb;
  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: #252525;
  border: 0;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 20px;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
}
.form_group button:hover {
  background: #ED1921;
}

.form_group input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
@media only screen and (max-width: 767px) {
  .form_group input[type="checkbox"] {
    margin-right: 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: #ED1921;
}

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

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


.checkout_form h3 {
  font-size: 16px;
  line-height: 30px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #252525;
  font-weight: 500;
}
.checkout_form input {
  border: 1px solid #ebebeb;
  background: none;
  height: 40px;
  width: 100%;
  padding: 0 20px;
  color: #252525;
}
.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 {
  font-weight: 500;
}
.checkout_form label span {
  color: #ED1921;
}
.checkout_form label.righ_0 {
  cursor: pointer;
  font-size: 15px;
  line-height: 27px;
  padding: 5px 10px;
  text-transform: capitalize;
  color: #ffffff;
  background: #252525;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
  border-radius: 5px;
}
@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: #252525;
}

.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: capitalize;
  color: #ffffff;
  background: #ED1921;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .order_button button {
    font-size: 14px;
  }
}
.order_button button:hover {
  background: #252525;
}

@media only screen and (max-width: 767px) {
  .order-notes {
    margin-bottom: 58px;
  }
}
.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: #252525;
}
.order-notes label {
  line-height: 13px;
}

.Checkout_section {
  margin-bottom: 56px;
}
@media only screen and (max-width: 767px) {
  .Checkout_section {
    margin-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: 1px solid #ddd;
}
.order_table table tbody tr td {
  min-width: 50%;
  text-align: center;
  padding: 15px 0;
  border: 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*/
/* 22. 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: #ED1921;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 18px;
  padding: 10px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 3px;
}
.table_desc.wishlist table tbody tr td.product_total a:hover {
  background: #252525;
}
@media only screen and (max-width: 767px) {
  .table_desc.wishlist table tbody tr td.product_total a {
    padding: 10px 10px;
  }
}

.wishlist_share {
  text-align: center;
  padding: 20px 0;
  border: 1px solid #ebebeb;
}
.wishlist_share h4 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.wishlist_share ul li {
  display: inline-block;
}
.wishlist_share ul li a {
  padding: 0 10px;
  display: block;
}
.wishlist_share ul li a:hover {
  color: #ED1921;
}

.wishlist_area {
  padding-bottom: 60px;
}

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

.contact_message h3 {
  font-size: 21px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_message h3 {
    margin-bottom: 20px;
  }
}
@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;
  margin-bottom: 20px;
}
.contact_message ul li {
  padding: 13px 0;
  border-top: 1px solid #ebebeb;
}
.contact_message ul li:last-child {
  padding-bottom: 0;
}
.contact_message ul li i {
  margin-right: 10px;
}
.contact_message ul li a:hover {
  color: #ED1921;
}
.contact_message label {
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_message input {
  border: 1px solid #ebebeb;
  height: 45px;
  background: #ffffff;
  width: 100%;
  padding: 0 20px;
  color: #757575;
}
.contact_message textarea {
  height: 100px;
  border: 1px solid #ebebeb;
  background: #ffffff;
  resize: none;
  margin-bottom: 20px;
  width: 100%;
  padding: 10px 20px;
  color: #252525;
}
.contact_message button {
  font-weight: 400;
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: capitalize;
  border: none;
  background: #252525;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}
.contact_message button:hover {
  background: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_message.content {
    margin-bottom: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_message.content {
    margin-bottom: 52px;
  }
}
.contact_message.form p.form-messege {
  margin-bottom: 0;
}

.contact_map {
  margin-bottom: 57px;
}

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

/*contact page css end*/
/* 17. login page css here */
.account_form h2 {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .account_form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.account_form form {
  border: 1px solid #ebebeb;
  padding: 23px 20px 29px;
  border-radius: 5px;
}
.account_form label {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  line-height: 12px;
  margin-bottom: 12px;
}
.account_form label:hover {
  color: #ED1921;
}
.account_form input {
  border: 1px solid #ebebeb;
  height: 40px;
  max-width: 100%;
  padding: 0 20px;
  background: none;
  width: 100%;
}
.account_form button {
  background: #ED1921;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  line-height: 26px;
  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: #252525;
}

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

.login_submit {
  /*text-align: right;*/
  width:100%;
  border:0px solid red;
  display:block;
  margin:50px 0px 0px!important;
  padding:0px!important;
  text-align:center;
}
.login_submit button {
width:100%;
margin:10px 0px 0px!important;
  padding:0px!important;
}
/*.login_submit a {
  font-size: 15px;
  line-height: 39px;
}
.login_submit a:hover {
  color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login_submit a {
    float: none;
    line-height: 18px;
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .login_submit a {
    float: none;
    line-height: 18px;
    display: block;
    margin-bottom: 20px;
  }
}*/

.customer_login {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .customer_login {
    margin-top: 57px;
  }
}

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

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


.rs-whychooseus .iconbox-area {
  padding: 60px 35px 60px 30px;
  box-shadow: 0 0 30px #eee;
  background: #ffffff;
  margin: 0 -15px 0 0;
}
.rs-whychooseus .iconbox-area .box-content {
  text-align: center;
}
.rs-whychooseus .iconbox-area .box-content .icon-area {
  display: inline-block;
  color: #101010;
  transition: all ease .3s;
  margin-bottom: 30px;
}
.rs-whychooseus .iconbox-area .box-content .icon-area a img {
  width: 80px;
}
.rs-whychooseus .iconbox-area .box-content .text-area .title {
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 20px;
}
.rs-whychooseus .iconbox-area .box-content .text-area .title a {
  color: #0a0a0a;
}
.rs-whychooseus .iconbox-area .box-content .text-area .title a:hover {
  color: #106eea;
}
.rs-whychooseus .iconbox-area .box-content .text-area .services-txt {
  margin-bottom: 0;
}
.rs-whychooseus .iconbox-area:hover .box-content .icon-area {
filter: invert(24%) sepia(47%) saturate(5213%) hue-rotate(348deg) brightness(96%) contrast(103%);
}

/*login page css end */
/* 16. faq page css here */
.faq_content_area {
  margin-top: 58px;
  padding-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .faq_content_area {
    margin-top: 54px;
  }
}

.accordion_area {
  padding-bottom: 60px;
}
.accordion_area .card-header {
  background: #ED1921;
}
.accordion_area .card-header:first-child {
  border-radius: inherit;
}

.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;
  box-shadow: inherit;
}
@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 #ED1921;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.card-header.card_accor button.btn-link.collapsed {
  background: #ebebeb;
  border: 1px solid #ebebeb;
  width: 100%;
  text-align: left;
  color: #252525;
}

.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;
  font-weight: 600;
  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*/
/*  18. 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: #252525;
  border-radius: 3px;
}
.dashboard_tab_button ul li a:hover {
  background: #ED1921;
  color: #ffffff;
}
.dashboard_tab_button ul li a.active {
  background: #ED1921;
}

.main_content_area {
  padding: 60px 0 55px;
}

.dashboard_content h3 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 15px;
}
.dashboard_content h4 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}
.dashboard_content button {
  color: #ED1921;
  font-weight: 500;
  border: 0;
  background: inherit;
}
.dashboard_content p a {
  color: #ED1921;
  font-weight: 500;
}

.table-responsive table thead {
  background: #ebebeb;
}
.table-responsive table thead tr th {
  text-align: center;
}
.table-responsive table tbody tr td {
  border-right: 1px solid #ebebeb;
  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: #ED1921;
}
.table-responsive .table {
  border-left: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.dashboard_content address {
  font-weight: 500;
}

.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 {
  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: #252525;
}

/*my account css end*/
/* 10. about page css here */
/*home about css here*/
.single_instagram {
  position: relative;
}
.single_instagram:hover::before {
  opacity: 1;
}
.single_instagram::before {
  content: '';
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: ease-in-out .3s all;
  -moz-transition: ease-in-out .3s all;
  transition: ease-in-out .3s all;
  pointer-events: none;
}

.instagramsix-container {
  display: flex;
}

.instagram-thumb {
  width: 14.33%;
}

.home_about_section {
  background: url(../img/bg/banner12.jpg) no-repeat scroll center center/cover;
}
@media only screen and (max-width: 767px) {
  .home_about_section {
    margin-bottom: 58px;
    height: none;
  }
}

.home_about_container {
  padding: 110px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home_about_container {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home_about_container {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home_about_container {
    padding: 60px 0;
  }
}

.about_desc {
  text-align: center;
}
.about_desc p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  .about_desc p {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
.about_desc h3 {
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .about_desc h3 {
    font-size: 35px;
    line-height: 34px;
  }
}

/*home about css end*/
.about_page_section {
  padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_page_section {
    padding-top: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .about_page_section {
    padding-top: 55px;
  }
}

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

.about_section {
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_section {
    padding-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .about_section {
    padding-bottom: 28px;
  }
}
.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;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .about_content {
    margin-bottom: 30px;
    text-align: center;
  }
}
.about_content h1 {
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  font-size: 30px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content h1 {
    font-size: 27px;
    line-height: 25px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .about_content h1 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.about_content p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 22px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content p {
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@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 {
  border: 1px solid #252525;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  line-height: 41px;
  padding: 0 15px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 20px;
}
.view__work a:hover {
  background: #ED1921;
  color: #fff;
  border-color: #ED1921;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .view__work a {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .view__work a {
    height: 33px;
    line-height: 31px;
    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;
  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: 600;
  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: #b6a08e;
  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;
  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: #252525;
  border-radius: 100%;
  border: 3px solid #7b7b7b;
  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-color: #7b7b7b;
  text-align: left;
  padding-left: 50px;
}

.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*/
/* 20. services page css here */
.services_gallery {
  padding-bottom: 28px;
}

.services_content h3 {
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 11px;
  line-height: 14px;
}
.services_content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.services_thumb {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services_thumb img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .services_thumb img {
    width: 100%;
  }
}

.single_services {
  margin-bottom: 25px;
}

.our_services {
  padding: 50px 0 25px;
  background: #ECECEC;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our_services {
    margin-bottom: 60px;
    padding: 50px 0 27px;
  }
}
@media only screen and (max-width: 767px) {
  .our_services {
    padding: 52px 0 28px;
    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: 500;
  margin-bottom: 11px;
}
.services_title p {
  max-width: 790px;
  margin: 0 auto;
}

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

.services_desc h3 {
  font-size: 13px;
  font-weight: 700;
}
.services_desc p {
  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: 992px) and (max-width: 1199px) {
  .unlimited_services {
    margin: 60px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .unlimited_services {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .unlimited_services {
    margin-bottom: 60px;
  }
}

.unlimited_services_content h1 {
  font-weight: 500;
  line-height: 40px;
  text-transform: uppercase;
  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 {
  font-size: 14px;
  line-height: 28px;
  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: #ED1921;
}
.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;
}
.priceing_list h1 span {
  font-size: 40px;
}
.priceing_list ul li {
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
  line-height: 24px;
}
.priceing_list ul li:first-child {
  border-top: 1px solid #ebebeb;
}
.priceing_list a {
  margin: 30px 0 0;
  line-height: 38px;
  padding: 0 20px;
  border: 1px solid #252525;
  color: #252525;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
}

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

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

@media only screen and (max-width: 767px) {
  .advantages_content {
    text-align: center;
  }
}
.advantages_content h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages_content h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages_content h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
.advantages_content p {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages_content p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages_content p {
    font-size: 13px;
  }
}

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

/*services page css end*/
/* 11. blog page css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page_section {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page_section {
    margin-bottom: 60px;
  }
}

.blog_header {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .blog_header {
    margin-bottom: 32px;
  }
}
.blog_header h1 {
  font-size: 42px;
  line-height: 38px;
  margin-bottom: 0;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .blog_header h1 {
    font-size: 35px;
    line-height: 35px;
  }
}

.blog_wrapper .single_blog {
  margin-bottom: 55px;
}
.blog_wrapper .blog_thumb iframe {
  height: 248px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_thumb iframe {
    height: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_thumb iframe {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_thumb a {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_thumb a img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_thumb a img {
    width: 100%;
  }
}
.blog_wrapper .blog_content {
  padding-top: 22px;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_content {
    padding-top: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_content {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_content {
    padding-top: 20px;
  }
}
.blog_wrapper .blog_content p.post_desc {
  margin-bottom: 0;
}
.blog_wrapper .blog_meta {
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_meta {
    margin-bottom: 13px;
  }
}
.blog_wrapper .blog_meta span {
  font-size: 14px;
  line-height: 24px;
}
.blog_wrapper .blog_meta span a {
  color: #ED1921;
}
.blog_wrapper .blog_meta span a:hover {
  text-decoration: underline;
}
.blog_wrapper .blog_meta span.author {
  margin-right: 8px;
}
.blog_wrapper .blog_meta span.author a {
  margin-right: 5px;
}
.blog_wrapper .blog_desc {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_desc {
    margin-bottom: 20px;
  }
}
.blog_wrapper .blog_desc p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.blog_bidio .blog_content {
  padding-top: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_bidio .blog_content {
    padding-top: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_bidio .blog_content {
    padding-top: 13px;
  }
}

.readmore_button a {
  height: 38px;
  line-height: 40px;
  background: #ED1921;
  border: 0;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  border-radius: 3px;
  max-width: 170px;
}
.readmore_button a:hover {
  background: #252525;
}
@media only screen and (max-width: 767px) {
  .readmore_button a {
    max-width: 130px;
  }
}

.blog_sidebar_widget .widget_title {
  position: relative;
  margin-bottom: 20px;
}
.blog_sidebar_widget .widget_title h3 {
  border-top: 0;
  border-bottom: 0;
  display: inline-block;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 20px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-top: 0;
  background: #ffffff;
  font-weight: 700;
}
.blog_sidebar_widget .widget_list {
  margin-bottom: 28px;
}
.blog_sidebar_widget .widget_list:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar_widget .widget_list {
    margin-bottom: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_sidebar_widget .widget_list {
    margin-bottom: 53px;
  }
}
.blog_sidebar_widget .widget_list.comments .post_thumb a img {
  border-radius: 50%;
}
.blog_sidebar_widget .widget_list.comments .post_info span a {
  color: #ED1921;
}
.blog_sidebar_widget .widget_list.comments .post_info a:hover {
  color: #ED1921;
}
.blog_sidebar_widget .widget_categories {
  background: inherit;
  margin-bottom: 18px;
}
.blog_sidebar_widget .widget_categories .widget_title {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar_widget .widget_categories {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_sidebar_widget .widget_categories {
    margin-bottom: 46px;
  }
}
.blog_sidebar_widget .widget_categories ul li a {
  color: #252525;
  padding: 0;
  border: 0;
  line-height: 35px;
}

.widget_search input {
  height: 35px;
  border: 1px solid #ebebeb;
  background: #fff;
  color: #252525;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 15px;
}
.widget_search button {
  color: #fff;
  display: inline-block;
  background: #242424;
  border: none;
  padding: 0 20px;
  height: 34px;
  line-height: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 3px;
}
.widget_search button:hover {
  background: #ED1921;
}

.tag_widget ul li {
  display: inline-block;
}
.tag_widget ul li a {
  margin: 0 6px 0 0;
  display: block;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 0 15px;
  line-height: 29px;
  border-radius: 3px;
}
.tag_widget ul li a:hover {
  background: #ED1921;
  border-color: #ED1921;
  color: #fff;
}

.post_thumb {
  width: 60px;
  float: left;
  margin-right: 10px;
}

.post_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.post_wrapper:last-child {
  margin-bottom: 0;
}

.post_info h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 14px;
  margin-bottom: 5px;
}
.post_info h4 a:hover {
  color: #ED1921;
}
.post_info span {
  font-size: 12px;
}

.blog_categories ul li {
  border-top: 1px solid #ddd;
}
.blog_categories ul li a {
  padding: 10px 0;
  text-transform: capitalize;
  display: inline-block;
  margin-left: 0;
}
.blog_categories ul li a:hover {
  color: #ED1921;
}
.blog_categories ul li:last-child a {
  padding-bottom: 0;
}

.shipping_area.shipping_contact.blog_shipping {
  margin-top: 94px;
}

.blog_pagination {
  margin-bottom: 60px;
}
.blog_pagination .pagination {
  border: 1px solid #ebebeb;
  justify-content: center;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .blog_pagination .pagination {
    margin-top: 0;
  }
}

/*blog page css end*/
/*blog fullwidth css here*/
.blog_fullwidth {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_fullwidth {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_fullwidth {
    margin-bottom: 60px;
  }
}
.blog_fullwidth .blog_thumb iframe {
  height: 550px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_fullwidth .blog_thumb iframe {
    height: 440px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_fullwidth .blog_thumb iframe {
    height: 440px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_fullwidth .blog_thumb iframe {
    height: 200px;
  }
}

.blog_thumb_active:hover .owl-nav > div {
  left: 20px;
  opacity: 1;
  visibility: visible;
}
.blog_thumb_active:hover .owl-nav > div.owl-next {
  right: 20px;
}
.blog_thumb_active .owl-nav > div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  background: rgba(236, 54, 66, 0.6);
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  left: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.blog_thumb_active .owl-nav > div.owl-next {
  right: 40px;
  left: auto;
}

.blog_aduio_icone {
  margin-bottom: 14px;
  margin-top: 23px;
}
@media only screen and (max-width: 767px) {
  .blog_aduio_icone {
    margin-bottom: 11px;
    margin-top: 16px;
  }
}
.blog_aduio_icone audio {
  width: 100%;
}

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

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_nosidebar {
    margin-bottom: 0;
  }
}
.blog_nosidebar .single_blog {
  overflow: hidden;
}
.blog_nosidebar .single_blog_gallery {
  overflow: hidden;
}
.blog_nosidebar .blog_thumb {
  float: left;
  width: 30%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_nosidebar .blog_thumb {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_nosidebar .blog_thumb {
    width: 100%;
  }
}
.blog_nosidebar .blog_thumb_active {
  float: left;
  width: 30%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_nosidebar .blog_thumb_active {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_nosidebar .blog_thumb_active {
    width: 100%;
  }
}
.blog_nosidebar .blog_content {
  float: left;
  width: 70%;
  padding-top: 0;
  padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_nosidebar .blog_content {
    width: 65%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_nosidebar .blog_content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_nosidebar .blog_content h3 {
    line-height: 20px;
    margin-bottom: 9px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_nosidebar .blog_meta {
    margin-bottom: 9px;
  }
}

/* 12. blog details css here */
.post_header {
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post_header {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .post_header {
    margin-bottom: 22px;
  }
}
.post_header h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post_header h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post_header h3 {
    font-size: 25px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .post_header h3 {
    font-size: 17px;
    line-height: 24px;
  }
}

.blog_details {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details {
    margin-top: 58px;
  }
}
.blog_details .single_blog {
  margin-bottom: 0;
}
@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 (min-width: 768px) and (max-width: 991px) {
  .blog_details .blog_wrapper {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details .blog_wrapper {
    margin-bottom: 60px;
  }
}
.blog_details .blog_meta {
  margin-bottom: 0;
}
.blog_details .blog_thumb::before {
  display: none;
}
.blog_details .post_content > p {
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .blog_details .post_content > p {
    font-size: 14px;
  }
}
.blog_details .post_content blockquote {
  margin: 31px 0 31px 40px;
  font-style: italic;
  padding: 30px 45px;
  background: #f6f6f6;
  border: 1px solid #ebebeb;
  border-left: 4px solid #ED1921;
}
.blog_details .post_content blockquote p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .blog_details .post_content blockquote p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details .post_content blockquote {
    margin: 23px 0 23px 0;
    padding: 20px 12px 15px;
  }
}
.blog_details .social_sharing {
  display: flex;
  align-items: center;
}
.blog_details .social_sharing p {
  font-size: 13px;
  text-transform: capitalize;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 13px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .blog_details .social_sharing p {
    font-size: 13px;
    margin-right: 10px;
  }
}
.blog_details .social_sharing ul li {
  display: inline-block;
}
.blog_details .social_sharing ul li a {
  background: #e6e6e6;
  border-radius: 100%;
  display: inline-block;
  font-size: 12px;
  height: 26px;
  line-height: 28px;
  margin-right: 5px;
  text-align: center;
  width: 26px;
}
.blog_details .social_sharing ul li a:hover {
  color: #ffffff;
  background: #ED1921;
}
@media only screen and (max-width: 767px) {
  .blog_details .social_sharing ul li a {
    margin-right: 2px;
  }
}
.blog_details .social_sharing ul li:first-child a {
  padding-left: 0;
  border-left: 0;
}

.entry_content {
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .entry_content {
    flex-direction: column;
    text-align: left;
    align-items: inherit;
  }
}
.entry_content .post_meta {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .entry_content .post_meta {
    margin-bottom: 10px;
  }
}
.entry_content .post_meta span {
  font-weight: 700;
  font-size: 13px;
}
.entry_content .post_meta span a:hover {
  color: #ED1921;
}

.comments_box {
  margin-bottom: 54px;
}
.comments_box h3 {
  font-size: 15px;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.comment_list {
  overflow: hidden;
  margin-bottom: 30px;
}
.comment_list:last-child {
  margin-bottom: 0;
}
.comment_list .comment_thumb {
  display: inline-block;
  float: left;
}
@media only screen and (max-width: 767px) {
  .comment_list .comment_thumb {
    width: 40px;
  }
}
.comment_list .comment_content {
  margin-left: 70px;
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .comment_list .comment_content {
    margin-left: 55px;
  }
}
.comment_list .comment_content h5 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.comment_list .comment_content h5 a:hover {
  color: #ED1921;
}
.comment_list .comment_content span {
  line-height: 18px;
  margin-bottom: 8px;
  font-size: 13px;
  font-style: italic;
  display: inline-block;
}
.comment_list .comment_content p {
  margin-bottom: 0;
  font-size: 14px;
}

.comment_reply {
  position: absolute;
  top: 20px;
  right: 12px;
}
@media only screen and (max-width: 767px) {
  .comment_reply {
    top: 15px;
  }
}
.comment_reply a {
  padding: 2px 10px;
  border-radius: 3px;
  color: #fff;
  background: #252525;
  display: block;
}
@media only screen and (max-width: 767px) {
  .comment_reply a {
    line-height: 20px;
    font-size: 13px;
  }
}
.comment_reply a:hover {
  background: #ED1921;
}

.comments_form h3 {
  font-size: 15px;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
.comments_form p {
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .comments_form form .row {
    flex-direction: row;
  }
}
.comments_form form label {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.comments_form form textarea {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  margin-bottom: 10px;
  resize: none;
  padding: 10px;
}
.comments_form form input {
  width: 100%;
  height: 40px;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
  padding: 0 20px;
}
.comments_form form button {
  border: 0;
  line-height: 36px;
  background: #252525;
  font-weight: 500;
}
.comments_form form button:hover {
  background: #ED1921;
}
@media only screen and (max-width: 767px) {
  .comments_form form button {
    line-height: 38px;
    height: 38px;
    padding: 0 10px;
  }
}

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

.related_posts {
  border-top: 1px solid #ebebeb;
  padding: 54px 0 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related_posts {
    padding: 54px 0 22px;
  }
}
@media only screen and (max-width: 767px) {
  .related_posts {
    padding: 53px 0 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related_posts .row {
    flex-direction: row !important;
  }
}
.related_posts h3 {
  font-size: 15px;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.related_thumb {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related_thumb img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .related_thumb img {
    width: 100%;
  }
}

.related_content h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.related_content h4 a {
  color: #252525;
}
.related_content h4 a:hover {
  color: #ED1921;
}
.related_content span {
  font-size: 13px;
  line-height: 17px;
}
.related_content span i {
  margin-right: 3px;
}
.related_content .blog_meta span {
  font-size: 12px;
  line-height: 22px;
}

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

/*blog details css end*/
/*  24. modal css here */
.modal-dialog.modal-dialog-centered {
  min-width: 1100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .modal-dialog.modal-dialog-centered {
    min-width: 1000px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal-dialog.modal-dialog-centered {
    min-width: 950px;
  }
}
@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;
}
.modal_tab_img img {
  margin: 0 auto;
}

.modal_tab_button ul li a {
  padding: 0;
  border: 1px solid #ebebeb;
  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: 14px;
  line-height: 26px;
}

.modal_social h2 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 20px;
}
.modal_social ul li {
  display: inline-block;
  margin-right: 3px;
}
.modal_social ul li a {
  text-transform: uppercase;
  display: inline-block;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}
.modal_social ul li.facebook a {
  background: #3c5b9b;
}
.modal_social ul li.facebook a:hover {
  background: #ED1921;
}
.modal_social ul li.twitter a {
  background: #1DA1F2;
}
.modal_social ul li.twitter a:hover {
  background: #ED1921;
}
.modal_social ul li.pinterest a {
  background: #BD081B;
}
.modal_social ul li.pinterest a:hover {
  background: #ED1921;
}
.modal_social ul li.google-plus a {
  background: #DC5043;
}
.modal_social ul li.google-plus a:hover {
  background: #ED1921;
}
.modal_social ul li.linkedin a {
  background: #010103;
}
.modal_social ul li.linkedin a:hover {
  background: #ED1921;
}

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

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

.variants_size h2, .variants_color h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 7px;
  line-height: 20px;
}
.variants_size.mb-15, .mb-15.variants_color {
  margin-bottom: 24px;
}
.variants_size .select_option, .variants_color .select_option {
  width: 100%;
  border-radius: 0;
  margin-bottom: 25px;
}
.variants_size .select_option .list, .variants_color .select_option .list {
  width: 100%;
  border-radius: 0;
}

.modal_add_to_cart {
  margin-bottom: 25px;
}
.modal_add_to_cart form input {
  width: 95px;
  border: 1px solid #ebebeb;
  background: none;
  padding: 0 10px;
  height: 45px;
}
@media only screen and (max-width: 767px) {
  .modal_add_to_cart form input {
    width: 75px;
  }
}
.modal_add_to_cart form button {
  background: none;
  border: 1px solid #252525;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
  height: 45px;
  width: 230px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  background: #252525;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal_add_to_cart form button {
    width: 130px;
  }
}
.modal_add_to_cart form button:hover {
  background: #ED1921;
  color: #ffffff;
  border-color: #ED1921;
}

.modal_body {
  padding: 29px 6px 38px;
}
@media only screen and (max-width: 767px) {
  .modal_body {
    padding: 42px 6px 38px;
  }
}
@media only screen and (max-width: 767px) {
  .modal_body .modal_tab {
    margin-bottom: 30px;
  }
}

.modal-content {
  border-radius: 0;
}

.modal-content button.close {
  position: absolute;
  left: 94%;
  width: 35px;
  height: 35px;
  line-height: 39px;
  display: block;
  border: 1px solid #ebebeb;
  top: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .modal-content button.close {
    left: 83%;
    width: 32px;
    height: 32px;
    line-height: 35px;
    top: 4px;
    margin-bottom: 14px;
  }
}
.modal-content button.close:hover {
  color: #ED1921;
}

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

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

.product_navactive.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}
.product_navactive.owl-carousel .owl-nav {
  display: block;
}
.product_navactive.owl-carousel .owl-nav div {
  position: absolute;
  background: #f2f2f2;
  border-radius: 3px;
  color: #333;
  height: 32px;
  top: 50%;
  transform: translatey(-50%);
  width: 32px;
  text-align: center;
  line-height: 32px;
  left: -7px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.product_navactive.owl-carousel .owl-nav div:hover {
  background: #ED1921;
  color: #ffffff;
}
.product_navactive.owl-carousel .owl-nav div.owl-next {
  right: -7px;
  left: auto;
}

/*modal css end*/
/*  23. newsletter popup css here */
.newletter-popup {
  background: #fff;
  top: 50% !important;
  margin-top: -170px;
  position: fixed !important;
  padding: 0px 0px;
  text-align: center;
  display: none;
  border:5px solid #fff;
}
@media only screen and (max-width: 767px) {
  .newletter-popup {
    padding: 0px;
    width: 250px;
	height:219px;
  }
}

#boxes .newletter-title h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
  #boxes .newletter-title h2 {
    font-size: 22px;
    margin: 0 0 10px;
  }
}

#boxes .box-content label {
  font-weight: 400;
  font-size: 14px;
}

#boxes .box-content .text-content {
position:absolute!important;
bottom:0!important;
border:0px solid red;
width:100%;
height:auto;
display:block;
text-align:left;
padding:0px 10px;
  
}
#boxes .box-content .text-content h2 {
font-size:26px;
}
@media only screen and (max-width: 767px) {
#boxes .box-content .text-content h2 {
font-size:18px;
line-height:20px;
font-weight:600;
}
  #boxes .box-content .newletter-label {
    width: 100%;
  }
}
#popup2 {
  position: absolute;
  right: 0px;
  top: 0px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  text-transform: capitalize;
  padding: 6px 12px;
  background: #252525;
  font-weight: 600;
  line-height: 17px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
  z-index:999;
}
#popup2:hover {
  background: #ED1921;
}
#frm_subscribe form {
  width: 340px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #frm_subscribe form {
    width: 100%;
  }
}
#frm_subscribe form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #747474;
}
#frm_subscribe form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #747474;
}
#frm_subscribe form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #747474;
}
#frm_subscribe form input:-moz-placeholder {
  /* Firefox 18- */
  color: #747474;
}
#frm_subscribe form input {
  background: #EBEBEB;
  padding: 0 127px 0 20px;
  height: 45px;
  border: 0;
  width: 100%;
  color: #747474;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #frm_subscribe form input {
    padding: 0 104px 0 20px;
  }
}
#frm_subscribe form a.theme-btn-outlined {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 110px;
  background: #252525;
  cursor: pointer;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 45px;
}
#frm_subscribe form a.theme-btn-outlined:hover {
  background: #ED1921;
}
@media only screen and (max-width: 767px) {
  #frm_subscribe form a.theme-btn-outlined {
    width: 90px;
  }
}

#boxes .box-content .subscribe-bottom {
  margin-top: 20px;
}

#boxes .box-content .subscribe-bottom label {
  margin: 0;
  font-size: 13px;
}

#boxes .box-content .subscribe-bottom #newsletter_popup_dont_show_again {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

#boxes #frm_subscribe #notification {
  color: #f00;
}

#boxes #frm_subscribe #notification .success {
  color: #67D7BB;
}



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

.error_form {
  text-align: center;
}
.error_form h1 {
  font-size: 200px;
  font-weight: 700;
  color: #ED1921;
  letter-spacing: 10px;
  line-height: 160px;
  margin: 0 0 47px;
}
@media only screen and (max-width: 767px) {
  .error_form h1 {
    font-size: 130px;
    line-height: 120px;
    letter-spacing: 4px;
    margin: 0 0 30px;
  }
}
.error_form h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .error_form h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
  }
}
.error_form p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .error_form p {
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 21px;
  }
}
.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 60px 0 30px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  color: #252525;
  height: 40px;
  width: 100%;
  border-radius: 3px;
}
.error_form form button {
  position: absolute;
  right: 0;
  height: 100%;
  border: none;
  background: no-repeat;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  text-transform: uppercase;
  padding: 0 15px;
  font-weight: 600;
}
.error_form form button:hover {
  color: #ED1921;
}
.error_form a {
  color: #fff;
  display: inline-block;
  background: #ED1921;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  line-height: 44px;
  padding: 0 30px;
  text-transform: uppercase;
  margin-top: 35px;
  border-radius: 3px;
}
@media only screen and (max-width: 767px) {
  .error_form a {
    padding: 0 20px;
    margin-top: 25px;
  }
}
.error_form a:hover {
  background: #252525;
}

.error_section {
  padding-bottom: 80px;
  padding-top: 63px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error_section {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .error_section {
    padding-bottom: 60px;
    padding-top: 32px;
  }
}

/*404 page css end*/
/*privacy policy css here*/
.privacy_policy_main_area {
  padding: 53px 0 10px;
}
@media only screen and (max-width: 767px) {
  .privacy_policy_main_area {
    padding: 57px 0 6px;
  }
}

.privacy_policy_header {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .privacy_policy_header {
    margin-bottom: 53px;
  }
}
.privacy_policy_header h1 {
  font-size: 42px;
  line-height: 45px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .privacy_policy_header h1 {
    font-size: 25px;
    line-height: 25px;
  }
}

.privacy_content {
  margin-bottom: 44px;
}
@media only screen and (max-width: 767px) {
  .privacy_content {
    margin-bottom: 46px;
  }
}
.privacy_content h2 {
  font-size: 25px;
  line-height: 33px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .privacy_content h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
.privacy_content h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .privacy_content h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.privacy_content p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .privacy_content p {
    font-size: 15px;
    line-height: 28px;
  }
}
.privacy_content p a {
  color: #a43d21;
}
.privacy_content p a:hover {
  color: #ED1921;
}
.privacy_content.section_1 h2 {
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .privacy_content.section_1 h2 {
    margin-bottom: 9px;
  }
}
.privacy_content.section_2 h2 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .privacy_content.section_2 h2 {
    margin-bottom: 16px;
  }
}
.privacy_content.section_3 h2 {
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .privacy_content.section_3 h2 {
    margin-bottom: 12px;
  }
}

ul.colors li {
display: inline-block;
margin:10px 0px 0px 5px;
}
ul.colors li span {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #cccccc!important;
  cursor: pointer;
  position: relative;
}
ul.colors li span.color-1 {
  background: #000000!important;
}
ul.colors li span.color-2 {
  background: #EAE066!important;
}
ul.colors li span.color-3 {
  background: #F6DEB3!important;
}
ul.colors li span.color-4 {
  background: #F6F1F1!important;
}
ul.colors li span.color-5 {
  background: #8B572A!important;
}
ul.colors li span.color-6 {
  background: radial-gradient(ellipse farthest-corner at right bottom, #000000 0%, #000000 8%, #000000 30%, #000000 10%, transparent 60%),
                radial-gradient(ellipse farthest-corner at left top, #EAE066 0%, #EAE066 8%, #EAE066 25%, #EAE066 62.5%, #EAE066 100%)!important;
}
ul.colors li span.color-7 {
  background: radial-gradient(ellipse farthest-corner at right bottom, #000000 0%, #000000 8%, #000000 30%, #000000 10%, transparent 60%),
                radial-gradient(ellipse farthest-corner at left top, #C1C1C1 0%, #C1C1C1 8%, #C1C1C1 25%, #C1C1C1 62.5%, #C1C1C1 100%)!important;
}
ul.colors li span.color-8 {
  background: radial-gradient(ellipse farthest-corner at right bottom, #000000 0%, #000000 8%, #000000 30%, #000000 10%, transparent 60%),
                radial-gradient(ellipse farthest-corner at left top, #F6F1F1 0%, #F6F1F1 8%, #F6F1F1 25%, #F6F1F1 62.5%, #F6F1F1 100%)!important;
}
ul.colors li span.color-9 {
  background: radial-gradient(ellipse farthest-corner at right bottom, #000000 0%, #000000 8%, #000000 30%, #000000 10%, transparent 60%),
                radial-gradient(ellipse farthest-corner at left top, #F6DEB3 0%, #F6DEB3 8%, #F6DEB3 25%, #F6DEB3 62.5%, #F6DEB3 100%)!important;
}
ul.colors li span:before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: unset;
  transform: unset;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
ul.colors li span:hover:before {
  opacity: 1;
  visibility: visible;
}
ul.colors li span.active:before {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .collapse.dont-collapse-sm {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}

/*===========================
    17.GALLERY css 
===========================*/
.gallery-area .section-title {
  padding-bottom: 40px; }
.gallery-area .single-gallery {
  /*border-radius: 10px;*/
  overflow: hidden;
  text-align:center;
  position: relative; }
  .gallery-area .single-gallery.item {  
  background:#ccc;
  /*width:400px!important;
  height:400px!important;
  line-height:400px;
  border-radius:100%;*/
  margin:0px auto!important;
  text-align:center!important;
  }
  .gallery-area .single-gallery img {
    width: 100%; }
  .gallery-area .single-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .gallery-area .single-gallery .gallery-overlay a {
      position: absolute;
      left: 0%;
      top: 0%;
      height: 100%;
    width: 100%;
      background: transparent;
      color: #fff;
      text-align: center;
      line-height: 120px;
      font-size: 32px; }
  .gallery-area .single-gallery:hover .gallery-overlay {
    opacity: 1; }
.gallery-area .menu-more-btn a {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  background-color: transparent;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  font-family: "Barlow Semi Condensed", serif;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 9;
  position: relative; }
  .gallery-area .menu-more-btn a::before {
    position: absolute;
    content: '';
    top: -5px;
    right: -5px;
    height: 100%;
    width: 100%;
    background: #e5e5e5;
    z-index: -2; }
  .gallery-area .menu-more-btn a::after {
    position: absolute;
    content: '';
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    border: 1px solid #000; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-details-area .shop-item {
    margin-right: 0; } }
@media (max-width: 767px) {
  .shop-details-area .shop-item {
    margin-right: 0; } }
	.shop-details-area .shop-item .shop-thumb {
	text-align:center;
	}
.shop-details-area .shop-item .shop-thumb .item img {
  /*width: 100%;*/
  display: inline-block; }
.shop-details-area .shop-item .shop-list .shop-thumb-active {
  margin: 0 60px; }
  .shop-details-area .shop-item .shop-list .shop-thumb-active li img {
    width: 80%;
    display: inline-block; }
.shop-details-area .shop-content .shop-top-content .title {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 15px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-details-area .shop-content .shop-top-content .title {
      font-size: 26px; } }
  @media (max-width: 767px) {
    .shop-details-area .shop-content .shop-top-content .title {
      font-size: 22px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-content .shop-top-content .title {
      font-size: 32px; } }
.shop-details-area .shop-content .shop-top-content ul li {
  display:block;
  font-size: 13px;
  border-bottom:1px solid #ccc;
  font-weight: 700;
  color: #000000;
  clear:both;
  padding:10px 0px 70px; }
  .shop-details-area .shop-content .shop-top-content ul li:last-child {
  border:none;
  }
  .shop-details-area .shop-content .shop-top-content ul li .span-1 {
  float:left;
  width:20%;
    color: #000;
    font-weight: 700; }
  .shop-details-area .shop-content .shop-top-content ul li .span-2 {
  float:right;
  width:80%;
    color: #798795;
    font-weight: 400; }
.shop-details-area .shop-content .shop-price {
  display: flex;
  align-items: end; }
  .shop-details-area .shop-content .shop-price ul {
    padding-right: 100px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .shop-details-area .shop-content .shop-price ul {
        padding-right: 40px; } }
    @media (max-width: 767px) {
      .shop-details-area .shop-content .shop-price ul {
        padding-right: 23px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .shop-details-area .shop-content .shop-price ul {
        padding-right: 50px; } }
    .shop-details-area .shop-content .shop-price ul li {
      font-size: 32px;
      color: #000000;
      font-family: "Barlow Semi Condensed", serif;
      font-weight: 700;
      display: inline-block; }
      .shop-details-area .shop-content .shop-price ul li:last-child {
        font-size: 16px;
        color: #999;
        text-decoration: line-through;
        padding-left: 5px; }
  .shop-details-area .shop-content .shop-price span {
    font-size: 13px;
    color: #000000;
    font-weight: 700; }
    .shop-details-area .shop-content .shop-price span span {
      color: #999;
      padding-left: 5px; }
.shop-details-area .shop-content .shop-review ul li {
  display: inline-block; }
  .shop-details-area .shop-content .shop-review ul li i {
    font-size: 13px;
    color: #b1b1b1; }
  .shop-details-area .shop-content .shop-review ul li:first-child i {
    color: #ffae11; }
.shop-details-area .shop-content .shop-text {
  border-bottom: 1px solid #f2f2f2; }
  .shop-details-area .shop-content .shop-text p {
    font-weight: 300;
    font-size: 14px;
    padding-top: 23px;
    padding-bottom: 25px;
    line-height: 24px; }
.shop-details-area .shop-content .shop-social {
  display: flex;
  align-items: center;
  padding-top: 25px; }
  .shop-details-area .shop-content .shop-social span {
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    padding-right: 18px; }
  .shop-details-area .shop-content .shop-social ul li {
    display: inline-block; }
    .shop-details-area .shop-content .shop-social ul li a {
      font-size: 13px;
      color: #45619d;
      margin-right: 10px; }
    .shop-details-area .shop-content .shop-social ul li:nth-child(2) a {
      color: #cf4539; }
    .shop-details-area .shop-content .shop-social ul li:nth-child(3) a {
      color: #42c0fb; }
    .shop-details-area .shop-content .shop-social ul li:nth-child(4) a {
      color: #009ee5; }
    .shop-details-area .shop-content .shop-social ul li:nth-child(5) a {
      color: #ec9f21; }
.shop-details-area .shop-content .shop-btns {
  display: flex;
  align-items: center; }
  @media (max-width: 767px) {
    .shop-details-area .shop-content .shop-btns {
      display: block; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-content .shop-btns {
      display: flex; } }
  .shop-details-area .shop-content .shop-btns a {
    background: #2576BF;
    color: #fff;
    border-color: #2576BF; }
    .shop-details-area .shop-content .shop-btns a > i {
      padding-left: 10px; }
  .shop-details-area .shop-content .shop-btns ul {
    padding-left: 5px; }
    .shop-details-area .shop-content .shop-btns ul li {
      display: inline-block; }
      .shop-details-area .shop-content .shop-btns ul li a {
        margin-left: 10px;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        font-size: 13px;
        background: #fff;
        border-color: transparent; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .shop-details-area .shop-content .shop-btns ul li a {
            margin-left: 5px; } }
        @media (max-width: 767px) {
          .shop-details-area .shop-content .shop-btns ul li a {
            margin-left: 0px;
            margin-right: 10px;
            margin-top: 20px; } }
        @media only screen and (min-width: 576px) and (max-width: 767px) {
          .shop-details-area .shop-content .shop-btns ul li a {
            margin-left: 10px;
            margin-right: 0px;
            margin-top: 0px; } }
        .shop-details-area .shop-content .shop-btns ul li a i {
          padding-left: 0;
          color: #798795; }
		  
		  .variations .label {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
  margin-right: 15px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 150px;
}
.variations .label:after {
  position: relative;
  content: ":";
  top: 0;
  right: 0;
  display: inline-block;
  padding-left: 5px;
}
.variations tr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.variations .attributes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.variations .attributes ul li {
  display: inline-block;
  margin-right: 10px;
}
.variations .attributes ul.text li span {
  width: 50px;
  height: 38px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #d5d5d5;
  cursor: pointer;
}
.variations .attributes ul.text li span:hover {
  border: 1px solid #000;
  color: #000;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #ED1921;
   padding: 5px 24px 0px;
  font-size: 18px;
  line-height: 36px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;  
  background-color: #ED1921;
 }
  @media (max-width: 767px) {
    .main-btn {
      font-size: 13px;
      padding: 0 18px; } }
  .main-btn:hover {
    background:transparent;
    color: #333;
    border-color: #ED1921; }
	
	
.main-btn.p-no {
padding:10px 12px 5px;
line-height:10px;
}


.effect {
	margin: auto;
	box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);
	background-color: #fff;
	border: 5px solid #f5f5f5;
}

.tab .effect {
	position: relative;
	overflow: hidden;
	/*max-height: 240px;
	max-width: 350px;*/
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}


.tab .effect img {
	position: relative;
	display: block;
	min-height: 100%;
	opacity: 1
}

.tab .effect .tab-text {
	padding: .8em 1em;
	color: #222;
	text-transform: uppercase;
	font-size: 1.25rem;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background:rgba(255,255,255,0.8);
}

.tab-text h2 {
	color: #222;
	margin: 0;
}

.tab-text p {
	color: #fff;
	margin: 0;
	font-size: 1rem
}

.hide {
	display: none
}


.effect.effect-eight img {
	transition: all .3s ease-in-out;
	transform: translate3d(0, 0, 0) scale(1, 1);
	-webkit-transition: all .3s ease-in-out;
	-webkit-transform: translate3d(0, 0, 0) scale(1, 1)
}

.effect.effect-eight:hover img {
	opacity: .6;
	transform: translate3d(-10px, 0, 0) scale(1.1, 1.1);
	-webkit-transform: translate3d(-10px, 0, 0) scale(1.1, 1.1)
}

.effect.effect-eight .tab-text h2 img {
/*font-size:18px;
letter-spacing:0px;
font-weight:600;*/
height:68px;
float:right;
	transform: scale3d(.9, .9, 1);
	transition: all .5s ease-in-out;
	-webkit-transform: scale3d(.9, .9, 1);
	-webkit-transition: all .5s ease-in-out
}

.effect.effect-eight .col8-head {
	padding-top: 9%
}

.effect.effect-eight:hover h2 img {
opacity:1;
	transform: scale3d(1.05, 1.05, 1);
	transition: all .5s ease-in-out;
	-webkit-transform: scale3d(1.05, 1.05, 1);
	-webkit-transition: all .5s ease-in-out
}

.effect.effect-eight p {
	font-size: .9rem;
	padding: 10px 5px;
	transform: scale3d(.8, .8, 1);
	-webkit-transform: scale3d(.8, .8, 1);
	opacity: 0;
	transition: all .35s;
	-transition: all .35s;
}

.effect.effect-eight:hover p {
	transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
	opacity: 1
}

.effect.effect-eight .tab-text:after {
	content: "";
	position: absolute;
	left: -130px;
	top: 0;
	border-top: 208px solid rgba(7, 0, 2, .3);
	border-left: 140px solid rgba(237, 25, 33, .6);
	border-bottom: 188px solid transparent;
	border-right: 160px solid transparent;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out
}

.effect.effect-eight:hover .tab-text:after {
	/*transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);
	-webkit-transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);*/
	opacity: 1;
	top: 0;
	left: -130px;
	border-top: 208px solid rgba(237, 25, 33, .8);
	border-left: 140px solid rgba(237, 25, 33, .8);
	border-bottom: 218px solid transparent;
	border-right: 160px solid transparent
}

.effect.effect-eight .icons-block {
	z-index: 1000;
	position: absolute;
	bottom: 25px;
	width: 100%;
	left: 0;
	text-align: left;
	padding-left: 10px;
	font-size:14px;
	
}

.effect.effect-eight .icons-block .social-icon-1,
.effect.effect-eight .icons-block .social-icon-2,
.effect.effect-eight .icons-block .social-icon-3 {
	transition: all .5s ease-in-out;
	opacity: 0;
	color:#fff;
}


.effect.effect-eight:hover .social-icon-1 {
	opacity: 1;
	transition-delay: .3s;
	transition-duration: .5s;
}
.effect.effect-eight a.social-icon-1:hover {
	color:#333!important;
}
.effect.effect-eight:hover .social-icon-2 {
	opacity: 1;
	transition-delay: .4s;
	transition-duration: .5s
}

.effect.effect-eight:hover .social-icon-3 {
	opacity: 1;
	transition-delay: .5s;
	transition-duration: .5s
}

.effect.effect-eight .icons-block i {
	color: rgba(255, 255, 255, 1);
	padding-left: 0px;
	font-size: 16px;
}




@media (max-width:767px) {
.effect.effect-eight .tab-text h2 img {
height:25px;
float:none;
margin:0px auto;
}
.effect.effect-eight:hover .tab-text:after {
opacity:0;
}
.tab .effect .tab-text {
	padding: .1em 1em;
	color: #222;
	text-transform: uppercase;
	font-size: 1.25rem;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background:rgba(255,255,255,0.9);
}
.effect.effect-eight:hover h2 img {
opacity:1;
	transform: scale3d(1, 1, 1);
	transition: all .5s ease-in-out;
	-webkit-transform: scale3d(1, 1, 1);
	-webkit-transition: all .5s ease-in-out
}
.effect.effect-eight .tab-text:after {
	content: "";
	position: absolute;
	left: -130px;
	top: 0;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: none;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out
}
.effect.effect-eight .icons-block {
display:none;
}
	
}

@media (min-width:768px) and (max-width:991px) {
	.effect h2 {
		font-size: 1.3rem!important
	}
}	
	
	
/* 
    ===== Effect 2 =====
*/
.effect2 {
    overflow: hidden;
    /*clip-path: circle(50% at 50% 50%);*/
    position: relative;
	width:100%;
	height:100%;
	border-radius:50%;
}

.effect2 img {
    filter: saturate(0);
    transform: scale(1) rotate(5deg);
    transition: transform 1s;
}

.effect2:hover img {
    filter: none;
    transform: scale(1.3) rotate(0deg);
}

/* Hover Element */
.effect2 .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(29, 29, 29, 0.53);
    transform: rotate(90deg);
    transform-origin: 0 0;

    line-height: 70px;
    text-align: center;
    font-size: 1.4em;
    font-style: italic;
    transition: transform .7s;
}

.effect2:hover .caption {
    transform: rotate(0deg);
}
.effect2 .caption a {
color:#fff;
}
@media (max-width:768px) {
.effect2 {
    overflow: hidden;
    /*clip-path: circle(50% at 50% 50%);*/
    position: relative;
	width:95%;
	height:95%;
	border-radius:50%;
	margin:0px auto;
	border:0px solid red;
}
.effect2 .caption a {
font-size: 14px;
}
}