@charset "UTF-8";
/*-----------------------------------------------------------------------------------
https://fonts.googleapis.com/css?family=Poppins:400,500,600&display=swap
-----------------------------------------------------------------------------------*/

* {
  box-sizing: border-box;
}


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

html,
body {
  height: 100%;
}

body {
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
  visibility: visible;
  /*
  font-family: arial,sans-serif;
  */
  font-family: 'Figtree-Regular',arial,sans-serif;
  color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
  font-family: 'Figtree-Regular',arial,sans-serif;
}

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

h2 {
  font-size: 25px;
  line-height: 27px;
}

h3 {
  font-size: 18px;
  line-height: 20px;
}

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;
  color: #187fc4;
}

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

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

.section_title_center {
  text-align: center;
}

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

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

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.container {
  max-width: 1140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    /*width: 450px;*/
  }
}
@media only screen and (max-width: 479px) {
  .container {
    width: 100%;
  }
}
.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

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

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

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

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

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

/*- Overlay Color BG -*/
.bluewood-bg-overlay {
  position: relative;
}

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

.overly-bg-black {
  position: relative;
}

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

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

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

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

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

/*-- 
    Scroll Up 
-----------------------------------------*/
#scrollUp {
  background: #187fc4 none repeat scroll 0 0;
  bottom: 85px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  height: 45px;
  line-height: 39px;
  position: fixed;
  right: 5px;
  text-align: center;
  width: 45px;
  z-index: 9999;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.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;
  }
}
.title-center {
  position: relative;
  margin-bottom: 50px;
  font-size: 30px;
  text-align: center;
}
.title-center::before {
  content: "";
  top: 10px;
  border-top: 1px solid #efefef;
  left: 0;
  width: 100%;
  z-index: 0;
  position: absolute;
}
.title-center span {
  z-index: 1;
  position: relative;
  background: white;
  padding: 0 10px;
}

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

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

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

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

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

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

/* 02. Element */
.button {
  background: #ffeb3b;
  box-shadow: none;
  color: #1b1919;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 22px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 3px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes slideInDown {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    visibility: visible;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    visibility: visible;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* 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: #333;
  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;
    margin-bottom: 0;
    /* background: #1273b9; */
    position: relative;
    z-index: 1000;
  }
}
@media only screen and (max-width: 767px) {
  .Offcanvas_menu {
    display: block;
    margin-bottom: 0;
    /* background: #1971b7; */
    z-index: 1000;
    position: relative;
  }
}
header .header_top .email-contact {
  display: inline-block;
  vertical-align: middle;
  font-size: 19px;
  color: #000000;
  font-family: arial,sans-serif;
}

header .header_top .email-contact .call-img {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: white;
}

header .header_top .email-contact .call-img .icon {
  fill: #000000;
}

.Offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 99;
  top: 0;
  height: 100vh;
  transition: 0.5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 20px 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 .follow_us {
  display: block;
}

.Offcanvas_menu_wrapper .search-container {
  display: block;
  margin-right: 0;
  margin-bottom: 24px;
}

.Offcanvas_menu_wrapper .search_box {
  border: 1px solid #f0f0f0;
  width: 100%;
}

.Offcanvas_menu_wrapper .search_box input {
  padding: 0 70px 0 15px;
  height: 35px;
}

.Offcanvas_menu_wrapper .search_box button {
  width: 52px;
  font-size: 21px;
}

.Offcanvas_menu_wrapper .search_box button:hover {
  background: #187fc4;
  color: #333;
}

.Offcanvas_menu_wrapper .top_right {
  display: block;
  margin-bottom: 18px;
  text-align: center !important;
}

.Offcanvas_menu_wrapper .top_right > ul > li {
  padding-right: 4px;
  margin-right: 4px;
}

.Offcanvas_menu_wrapper .top_right > ul > li::before {
  display: none;
}

.Offcanvas_menu_wrapper .top_right > ul > li > a {
  font-size: 13px;
  line-height: 22px;
  color: #3c3c3c;
}

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

.offcanvas_main_menu li a:hover {
  color: #3a3a3a;
  font-weight: bold;
}

.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.Offcanvas_follow {
  display: flex;
  justify-content: center;
  margin-bottom: 21px;
}

.Offcanvas_follow label {
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 13px;
}

.Offcanvas_follow ul li {
  display: inline-block;
  margin-left: 16px;
}

.Offcanvas_follow ul li:first-child {
  margin-left: 0;
}

.Offcanvas_follow ul li a {
  font-size: 18px;
}

.Offcanvas_follow ul li a:hover {
  color: #187fc4;
}

.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: #187fc4;
}

.canvas_close {
  position: absolute;
  top: 7px;
  right: 13px;
}

.canvas_close a {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  width: 35px;
  height: 35px;
  display: block;
  text-align: center;
  line-height: 33px;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
}

.canvas_close a:hover {
  color: #187fc4;
}

.canvas_open {
  display: flex;
  justify-content: flex-end;
  /* border: 1px solid #f0f0f0; */
  padding: 7px 20px 6px;
}

.canvas_open span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: white;
}

.canvas_open a {
  font-size: 28px;
  color: #292927;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_area {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .header_area {
    padding-bottom: 25px;
  }
}
.header_area.header_padding {
  padding-bottom: 0;
}

.sticky-header.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  -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;
}

@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;
  }
}
.header_top {
  z-index: 2;
  background: #1eb1f7;
  position: relative;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .header_top {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_top {
    display: none;
  }
}
.top_inner {
  border-bottom: 0px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .top_inner {
    border: 0;
  }
}
.follow_us {
  display: flex;
}

.follow_us label {
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 17px;
  color: #484343;
  line-height: 31px;
  font-weight: bold;
  background: #187fc4;
  padding: 5px;
  display: inline-block;
}

.follow_us ul li {
  display: inline-block;
  margin-left: 16px;
}

.follow_us ul li:first-child {
  margin-left: 0;
}

.follow_us ul li a {
  color: #fff;
  font-size: 18px;
}

.follow_us ul li a:hover {
  opacity: 0.7;
}

.top_right > ul > li {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}

.top_right > ul > li:hover ul.dropdown_currency,
.top_right > ul > li:hover ul.dropdown_language,
.top_right > ul > li:hover ul.dropdown_links {
  top: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.top_right > ul > li:hover ul.dropdown_language {
  top: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.top_right > ul > li:hover ul.dropdown_links {
  top: 103%;
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.top_right > ul > li:hover > a {
  /* opacity: 0.7; */
}

@media only screen and (max-width: 767px) {
  .top_right > ul > li {
    padding-right: 15px;
    margin-right: 15px;
  }
}
.top_right > ul > li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.top_right > ul > li::before {
  position: absolute;
  content: "";
  /* width: 1px; */
  height: 12px;
  background: #1b1b1b;
  top: 50%;
  right: 0px;
  transform: translatey(-50%);
}

.top_right > ul > li:last-child::before {
  display: none;
}

.top_right > ul > li > a {
  color: #fff;
  text-transform: capitalize;
  line-height: 45px;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 767px) {
  .top_right > ul > li > a {
    line-height: 22px;
  }
}
.top_right > ul > li > a img {
  margin-right: 2px;
}

.top_right > ul > li > a i.ion-ios-arrow-down {
  margin-left: 6px;
  font-size: 11px;
}

.top_right > ul > li > a i.ion-android-person {
  margin-right: 4px;
}

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

.dropdown_currency,
.dropdown_language,
.dropdown_links {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 130px;
  text-align: left;
  top: 125%;
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  z-index: 9999;
  padding: 9px 18px 8px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #f0f0f0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .dropdown_currency,
.dropdown_language,
.dropdown_links {
    right: 0;
    left: auto;
    min-width: 142px;
    padding: 0 6px;
  }
}
.dropdown_currency li,
.dropdown_language li,
.dropdown_links li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown_currency li:last-child,
.dropdown_language li:last-child,
.dropdown_links li:last-child {
  border-bottom: 0;
}

.dropdown_currency li a,
.dropdown_language li a,
.dropdown_links li a {
  text-transform: capitalize;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  padding: 7px 0;
  line-height: 20px;
}

.dropdown_currency li a:hover,
.dropdown_language li a:hover,
.dropdown_links li a:hover {
  color: #313131;
  font-weight: bold;
}

.dropdown_language {
  right: 0;
}

.dropdown_language li a img {
  margin-right: 4px;
}

.dropdown_links {
  left: 0;
}

/*header top css end*/
/* 2.2 header middel css here */
@media only screen and (max-width: 767px) {
  .logo {
    text-align: center;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .logo a img {
    max-width: 135px;
    display: none;
  }
}
.header_middle {
  /* background: #1eb1f7; */
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_middle {
    padding: 21px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_middle {
    padding: 22px 0 20px;
  }
}
.middel_right {
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .middel_right {
    justify-content: unset;
    flex-direction: unset;
  }
}
.search-container {
  margin-right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-container {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .search-container {
    display: none;
  }
}
.search_box {
  position: relative;
  width: 500px;
  background: #fff;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .search_box {
    width: 360px;
  }
}
.search_box input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9e9e9e;
}

.search_box input::-moz-placeholder {
  /* Firefox 19+ */
  color: #9e9e9e;
}

.search_box input:-ms-input-placeholder {
  /* IE 10+ */
  color: #9e9e9e;
}

.search_box input:-moz-placeholder {
  /* Firefox 18- */
  color: #9e9e9e;
}

.search_box input {
  border: 0;
  background: none;
  width: 100%;
  height: 47px;
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 400;
  padding: 0 80px 0 20px;
  border: 1px solid gainsboro;
  border-radius: 3px;
  border-radius: 25px;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .search_box input {
    height: 40px;
    padding: 0 100px 0 20px;
  }
}
.search_box button {
  border: 0;
  position: absolute;
  top: 0;
  right: -21px;
  background: #f48120;
  width: 60px;
  height: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search_box button:hover {
  background: #2b3137;
}

@media only screen and (max-width: 767px) {
  .search_box button {
    padding: 0 20px;
    border-radius: 0 3px 3px 0;
  }
}
.middel_right_info {
  display: flex;
  align-items: center;
  margin-top: 7px;
  /* color: red; */
}

.header_wishlist {
  position: relative;
  margin-right: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_wishlist {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_wishlist {
    margin-right: 15px;
  }
}
.header_wishlist span.wishlist_quantity {
  position: absolute;
  left: 37px;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  background: #fe0008;
  border-radius: 50%;
  top: -7px;
  font-size: 11px;
  color: white;
}

.header_wishlist a {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  color: #484848;
}

.header_wishlist a:hover {
  color: #fd5018;
}

.header_wishlist a span {
  font-size: 32px;
  padding-right: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_wishlist a span {
    font-size: 27px;
    padding-right: 3px;
  }
}
.mini_cart_wrapper {
  position: relative;
}

.mini_cart_wrapper:hover > a {
  color: #fd5018;
}

.mini_cart_wrapper span.cart_quantity {
  position: absolute;
  left: 32px;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  background: #fe0008;
  border-radius: 50%;
  top: -7px;
  font-size: 11px;
  color: white;
}

.mini_cart_wrapper > a {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  color: #484848;
}

.mini_cart_wrapper > a span {
  font-size: 32px;
  padding-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_wrapper > a span {
    font-size: 27px;
    padding-right: 2px;
  }
}
.cart_close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.cart_text h3 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
}

.mini_cart_close > a {
  font-size: 25px;
}

.mini_cart_close > a:hover {
  color: #187fc4;
}

.mini_cart {
  position: fixed;
  width: 355px;
  height: 100%;
  padding: 18px 28px 33px;
  background: #fff;
  z-index: 999;
  right: 0;
  top: 0;
  transition: 0.5s;
  transform: translateX(100%);
}

.mini_cart.active {
  transform: translateX(0);
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  .mini_cart {
    width: 300px;
    height: 100%;
    padding: 18px 18px 33px;
  }
}
.cart_img {
  width: 32%;
  margin-right: 10px;
}

.cart_info {
  width: 52%;
}

.cart_info a {
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
  display: block;
  margin-bottom: 6px;
}

.cart_info a:hover {
  color: #187fc4;
}

.cart_info span {
  display: block;
}

.cart_info span.quantity {
  margin-bottom: 5px;
  font-size: 12px;
}

.cart_info span.price_cart {
  font-weight: 600;
}

.cart_remove {
  width: 10%;
  text-align: right;
}

.cart_remove a {
  color: #757575;
  font-size: 18px;
}

.cart_remove a:hover {
  color: #187fc4;
}

.cart_item {
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
}

.mini_cart_table {
  padding: 23px 0;
}

.cart_total {
  display: flex;
  justify-content: space-between;
}

.cart_total span {
  font-size: 14px;
  font-weight: 400;
}

.cart_total span.price {
  font-weight: 700;
}

.cart_button:first-child {
  margin-bottom: 15px;
}

.cart_button a {
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 600;
  background: #eef0f1;
  display: block;
  text-align: center;
  line-height: 20px;
  margin-bottom: 0;
  padding: 15px 0px 13px;
}

.cart_button a:hover {
  background: #187fc4;
  color: #fff;
}

.cart_button a.active {
  background: #187fc4;
  color: #423e3e;
}

/*header middel css end*/
/* 2.4 main menu css here */
.header_bottom {
  margin-bottom: 20px;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_bottom {
    margin-bottom: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_bottom {
    margin-bottom: 0;
    box-shadow: none;
  }
}
.header_position {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-page .header_middle .logo {
    text-align: center;
    width: 150px;
    margin: auto;
  }

  .home-page .header_middle .logo img {
    max-width: 100% !important;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main_menu nav {
    display: none;
  }
}
.main_menu nav > ul > li {
  display: inline-block;
  position: relative;
}

.main_menu nav > ul > li:hover ul.sub_menu {
  opacity: 1;
  visibility: visible;
  visibility: visible;
  top: calc(100% + 1px);
  opacity: 1;
}

.main_menu nav > ul > li:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  visibility: visible;
  top: calc(100% + 1px);
  opacity: 1;
}

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

.main_menu nav > ul > li:first-child > a {
  padding-left: 0;
}

.main_menu nav > ul > li > a {
  display: block;
  padding: 14px 20px 14px 20px;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main_menu nav > ul > li > a {
    font-size: 12px;
    padding: 10px 5px !important;
  }
}
.main_menu nav > ul > li > a i {
  margin-left: 3px;
}

.main_menu nav > ul > li ul.sub_menu {
  position: absolute;
  min-width: 100%;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  /* -webkit-transform: perspective(600px) rotateX(
  -90deg
  ); */
  /* transform: perspective(600px) rotateX(
  -90deg
  ); */
  /* -webkit-transform-origin: 0 0 0; */
  /* transform-origin: 0 0 0; */
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: calc(100% + 20px);
  text-align: left;
  opacity: 0;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 0;
}

.main_menu nav > ul > li ul.sub_menu li {
  min-width: 200px;
}

.main_menu nav > ul > li ul.sub_menu li {
  padding: 0px;
}

.main_menu nav > ul > li ul.sub_menu li a {
  font-weight: 500;
  display: block;
  line-height: 18px;
  text-transform: capitalize;
  font-family: arial,sans-serif;
  font-size: 14px;
  padding: 8px 22px !important;
}

.main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #000000;
  font-weight: 700;
}

.main_menu nav > ul > li ul.sub_menu li.home7new {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_menu nav > ul > li ul.sub_menu li.home7new span {
  font-size: 11px;
  text-transform: uppercase;
  background: #e91e63;
  color: #fff;
  padding: 0 9px;
  display: inline-block;
  border-radius: 5px;
  line-height: 22px;
}

.main_menu nav > ul > li.mega_items {
  position: static;
}

.main_menu nav > ul > li .mega_menu {
  position: absolute;
  /* min-width: 100%; */
  padding: 25px 30px 30px 30px;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  /* -webkit-transform: perspective(600px) rotateX(-90deg); */
  /* transform: perspective(600px) rotateX(-90deg); */
  /* -webkit-transform-origin: 0 0 0; */
  /* transform-origin: 0 0 0; */
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: calc(100% + 20px);
  text-align: left;
  opacity: 0;
  /* border: 1px solid #d2d2d2; */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 5px 1px #dadada;
  border-radius: 3px;
  max-width: 800px;
}

.main_menu nav > ul > li .mega_menu .banner_static_menu {
  margin-top: 20px;
}

.main_menu nav > ul > li .mega_menu .banner_static_menu a {
  width: 100%;
}

.main_menu nav > ul > li .mega_menu .banner_static_menu a img {
  width: 100%;
}

.main_menu nav > ul > li .mega_menu .banner_static_menu a img:hover {
  opacity: 0.7;
}

.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;
  font-family: "Lato", sans-serif;
  display: block;
  margin-bottom: 8px;
}

.mega_menu_inner > li > a:hover {
  color: #187fc4;
}

.mega_menu_inner > li ul li {
  display: block;
}

.mega_menu_inner > li ul li a {
  font-weight: 400;
  display: block;
  line-height: 28px;
  text-transform: capitalize;
  min-width: 160px;
}

.mega_menu_inner > li ul li a:hover {
  color: #000000;
  font-weight: 700;
}

/*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;
  }
}
/*-- 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: #f1f1f1;
  padding-left: 49px;
  position: relative;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  color: red;
  border: 1px solid #dadada;
  border-radius: 0px;
}

@media only screen and (max-width: 767px) {
  .categories_title {
    height: 48px;
    line-height: 48px;
  }
}
.categories_title::before {
  content: "";
  color: #313131;
  display: inline-block;
  font-family: Ionicons;
  position: absolute;
  font-size: 25px;
  line-height: 0px;
  left: 20px;
  top: 50%;
  transform: translatey(-50%);
}

.categories_title::after {
  content: "";
  color: #191919;
  display: inline-block;
  font-family: Ionicons;
  position: absolute;
  font-size: 14px;
  line-height: 0px;
  right: 20px;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.3s;
}

.categories_title.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.categories_title h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #333131;
  cursor: pointer;
  margin-bottom: 0;
  display: inline-block;
  font-family: "Lato", sans-serif;
}

.categories_menu_toggle {
  padding: 15px 0 9px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  position: absolute;
  width: 100%;
  top: 100%;
  z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle {
    display: none;
    max-height: 360px;
    overflow: auto;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle {
    display: none;
    max-height: 360px;
    overflow: auto;
    padding: 15px 10px 15px 20px;
  }
}
.categories_menu_toggle > ul > li {
  position: relative;
}

@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;
  }
}
.categories_menu_toggle > ul > li > a {
  font-size: 14px;
  color: #333;
  line-height: 43px;
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  cursor: pointer;
  padding: 0 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_menu_toggle > ul > li > a {
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li > a {
    line-height: 35px;
    padding: 0;
  }
}
.categories_menu_toggle > ul > li > a i.fa-angle-right {
  float: right;
  font-size: 15px;
  line-height: 35px;
  transition: 0.3s;
  -webkit-transition: 0.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: #187fc4;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li > a:hover {
    color: #187fc4;
  }
}
.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 {
  background: #f0f0f0;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li:hover > a {
    font-weight: 400;
    background: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li:hover > a {
    font-weight: 400;
    background: inherit;
  }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu {
  position: absolute;
  left: 120%;
  width: 720px;
  -webkit-box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px 20px 16px;
  overflow: hidden;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu {
    width: 680px;
  }
}
@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: 6px 20px 0px 30px;
  }
}
@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: 6px 20px 0px 40px;
  }
}
.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;
  width: 25%;
  float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
    width: 100%;
    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;
  margin-bottom: 5px;
}

.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a:hover {
  color: #187fc4;
}

@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;
  }
}
.categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > li {
  padding: 0;
  width: 50%;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > li {
    width: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > li {
    width: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > li.menu_item_children > a {
    position: relative;
  }

  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > 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.categorie_list ul.categories_mega_menu > li.menu_item_children > a {
    position: relative;
  }

  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > 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.categorie_list ul.categories_mega_menu > li.menu_item_children.open > a::before {
    display: none;
  }

  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > 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.categorie_list ul.categories_mega_menu > li.menu_item_children.open > a::before {
    display: none;
  }

  .categories_menu_toggle ul li.categorie_list ul.categories_mega_menu > 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: 1px 0 9px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categorie_sub_menu {
    display: none;
    padding: 1px 0 9px 30px;
  }
}
.categorie_sub_menu li a {
  color: #333;
  text-transform: capitalize;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
}

.categorie_sub_menu li a:hover {
  color: #187fc4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_sub_menu li a {
    line-height: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .categorie_sub_menu li a {
    line-height: 33px;
  }
}
.categories_menu_toggle ul li ul.categories_mega_menu.column_3 {
  width: 550px;
}

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

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

.categories_menu_toggle ul li ul.categories_mega_menu.column_2 > li {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .categories_menu_toggle ul li ul.categories_mega_menu.column_2 > li {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_menu_toggle ul li ul.categories_mega_menu.column_2 > li {
    width: 100%;
  }
}
.categorie_sub {
  opacity: 0;
  z-index: 999;
  position: absolute;
  width: 101%;
  left: -1px;
  border: lef;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 65%;
  visibility: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categorie_sub {
    width: 100%;
    left: 0px;
  }
}
.categorie_sub.open {
  top: 95%;
  opacity: 1;
  visibility: visible;
}

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

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

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 16px;
  padding-left: 15px;
  display: block;
  color: #333;
}

.categories_menu_toggle ul li.has-sub ul.categorie_sub li a:hover {
  background: #f0f0f0;
  font-weight: 700;
}

.categories_menu_toggle ul li.has-sub {
  padding-bottom: 10px;
}

.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 here*/
.top_two {
  background: inherit;
}

.top_two .follow_us ul li a:hover {
  color: #187fc4;
}

.middle_two {
  background: inherit;
}

.middle_two .header_wishlist > a:hover {
  color: #187fc4;
}

.middle_two .header_wishlist span.wishlist_quantity {
  background: #187fc4;
}

.middle_two .mini_cart_wrapper:hover > a {
  color: #187fc4;
}

.middle_two .mini_cart_wrapper span.cart_quantity {
  background: #187fc4;
}

.search_two .search_box {
  background: none;
}

.search_two .search_box button {
  background: #187fc4;
  color: #333;
}

.search_two .search_box button:hover {
  background: #efc747;
  color: #3c3c3c;
}

.bottom_two {
  box-shadow: inherit;
  /* border-top: 1px solid #e5e5e5; */
  /* border-bottom: 1px solid #e5e5e5; */
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bottom_two {
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .bottom_two {
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 25px;
  }
}
.header_bottom_container {
  display: flex;
  position: relative;
}

.header_bottom_container .categories_menu_toggle {
  display: none;
}

.header_bottom_container .categories_menu {
  width: 255px;
  margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_bottom_container .categories_menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_bottom_container .categories_menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.header_bottom_container .categories_title {
  background: #187fc4;
  border: 0;
  /* background: -webkit-linear-gradient(
  140deg
  ,#f3f3f3 50%,#f9f9f9 0); */
  background: -o-linear-gradient(140deg, #f3f3f3 50%, #f9f9f9 50%);
  /* background: linear-gradient(
  -162deg
  ,#f1f1f1 50%,#f9f8f8 30%); */
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_bottom_container .categories_title {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .header_bottom_container .categories_title {
    height: 45px;
    line-height: 45px;
  }
}
.header_bottom_container .categories_title::before {
  color: #333;
}

.header_bottom_container .categories_title::after {
  color: #333;
}

.header_bottom_container .categories_title h2 {
  color: #333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_bottom_container .categories_menu_toggle > ul > li ul.categories_mega_menu {
    width: 634px;
  }
}
/*home three css here*/
.header_b_three {
  background: #187fc4;
  box-shadow: inherit;
  margin-bottom: 30px;
}

.header_b_three.sticky-header.sticky {
  background: rgba(255, 213, 16, 0.7);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_b_three.sticky-header.sticky {
    background: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_b_three.sticky-header.sticky {
    background: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_b_three {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_b_three {
    display: none;
  }
}
.header_b_three .main_menu nav > ul > li:hover > a {
  color: #fff;
}

/*home four css here*/
.bottom_four {
  margin-bottom: 0;
}

.discount_area {
  padding: 9px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .discount_area {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .discount_area {
    padding: 18px 0;
  }
}
.discount_text {
  text-align: center;
}

.discount_text p {
  font-size: 13px;
  line-height: 22px;
}

/*color scheme 2 css here*/
.color_scheme_2 .follow_us ul li a:hover {
  color: #b2e515;
}

.color_scheme_2 .dropdown_currency li a:hover,
.color_scheme_2 .dropdown_language li a:hover,
.color_scheme_2 .dropdown_links li a:hover {
  color: #b2e515;
}

.color_scheme_2 .search_box button {
  background: #b2e515;
}

.color_scheme_2 .header_wishlist > a:hover {
  color: #b2e515;
}

.color_scheme_2 .header_wishlist span.wishlist_quantity {
  background: #b2e515;
}

.color_scheme_2 .mini_cart_wrapper span.cart_quantity {
  background: #b2e515;
}

.color_scheme_2 .mini_cart_wrapper:hover > a {
  color: #b2e515;
}

.color_scheme_2 .cart_info a:hover {
  color: #b2e515;
}

.color_scheme_2 .cart_remove a:hover {
  color: #b2e515;
}

.color_scheme_2 .cart_button a:hover {
  background: #b2e515;
}

.color_scheme_2 .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: #b2e515;
}

.color_scheme_2 .mega_menu_inner > li > a:hover {
  color: #b2e515;
}

.color_scheme_2 .mega_menu_inner > li ul li a:hover {
  color: #b2e515;
}

.header_b_three.color_scheme_2 {
  background: #b2e515;
}

.header_b_three.color_scheme_2.sticky-header.sticky {
  background: rgba(178, 229, 21, 0.7);
}

.Offcanvas_menu.color_scheme_2 .search_box button:hover {
  background: #333;
  color: #fff;
}

.Offcanvas_menu.color_scheme_2 .canvas_close a:hover:hover {
  color: #b2e515;
}

.Offcanvas_menu.color_scheme_2 .Offcanvas_follow ul li a:hover {
  color: #b2e515;
}

.Offcanvas_menu.color_scheme_2 .offcanvas_main_menu li a:hover {
  color: #b2e515;
}

.Offcanvas_menu.color_scheme_2 .canvas_open a:hover {
  color: #b2e515;
}

#main-slider {
  padding: 20px;
  position: relative;
}
#main-slider:before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 15px;
  left: 15px;
  border: 1px solid white;
}
#main-slider.yellow-bg {
  background: #187fc4;
}
#main-slider.gray-bg {
  background-image: linear-gradient(268deg, #fcfcfc 0%, #f4f4f4 80%);
  padding: 60px 20px;
}
#main-slider .carousel-control-prev,
#main-slider .carousel-control-next {
  color: #000000;
}
#main-slider .carousel-control-next {
  right: -37px;
}
#main-slider .carousel-control-prev {
  left: -37px;
}
#main-slider .button {
  color: #fff;
  background-color: #fe0008;
}
#main-slider .slider-image {
  padding: 20px 40px;
}

/* 02. slider area css here */
.single_slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 520px;
  background: #f1f1f1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_slider {
    height: 470px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_slider {
    height: 420px;
  }
}
@media only screen and (max-width: 767px) {
  .single_slider {
    background-position: 10%;
    height: 350px;
  }
}
.slider_area .owl-dots {
  position: absolute;
  bottom: 20px;
  text-align: center;
  left: 50%;
  transform: translatex(-50%);
  display: block;
}

@media only screen and (max-width: 767px) {
  .slider_area .owl-dots {
    bottom: 10px;
  }
}
.slider_area .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #333;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.slider_area .owl-dots .owl-dot.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider_area .owl-dots .owl-dot.active::before {
  position: absolute;
  content: "";
  background: #187fc4;
  width: 12px;
  height: 12px;
  left: -3px;
  top: -3px;
  border-radius: 50%;
}

.slider_content {
  padding: 40px 0 40px 50px;
}

@media only screen and (max-width: 767px) {
  .slider_content {
    text-align: center;
    padding: 25px 20px;
    width: 100%;
  }
}
.slider_content h1 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  max-width: 355px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content h1 {
    font-size: 45px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content h1 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 18px;
  }
}
.slider_content h2 {
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  position: relative;
}

.slider_content h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 70px;
  background: #333;
  right: -88px;
  opacity: 0.5;
  top: 50%;
  transform: translatey(-50%);
}

@media only screen and (max-width: 767px) {
  .slider_content h2::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content h2 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.slider_content a {
  font-size: 16px;
  font-weight: 400;
  margin-top: 45px;
  color: #333;
  height: 61px;
  line-height: 59px;
  padding: 0 25px;
  display: inline-block;
  font-family: "Lato", sans-serif;
  border-radius: 5px;
  font-family: "Fredoka One", cursive;
}

.slider_content a:hover {
  color: #1c1f24;
  background: #333;
  background: url(/assets/img/icon/bg-button.png) no-repeat;
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  font-family: "Fredoka One", cursive;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content a {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content a {
    margin-top: 20px;
    height: 43px;
    line-height: 43px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_content a {
    font-weight: 500;
    margin-top: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }
}
.active .slider_content h1,
.active .slider_content h2,
.active .slider_content a {
  -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 h1 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

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

/*home two css here*/
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_two .single_slider {
    height: 370px;
  }
}
.slider_two .slider_content {
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  .slider_two .slider_content {
    padding: 0 20px;
  }
}
.slider_two .slider_content h1 {
  max-width: 454px;
}

/*home three css here*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_three .single_slider {
    height: 436px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_three .slider_content h1 {
    font-size: 44px;
    line-height: 44px;
  }
}
/*home three css here*/
.slider_six {
  position: relative;
}

.slider_six .slider_content {
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .slider_six .slider_content {
    padding: 25px 20px;
    text-align: left;
  }
}
.slider_six .slider_content h1 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  max-width: 355px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_six .slider_content h1 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_six .slider_content h1 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 18px;
  }
}
.slider_six .slider_content h2 {
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.slider_six .slider_content h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 70px;
  background: #333;
  right: -88px;
  opacity: 0.5;
  top: 50%;
  transform: translatey(-50%);
}

@media only screen and (max-width: 767px) {
  .slider_six .slider_content h2::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .slider_six .slider_content h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
.slider_six .slider_content a {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  color: #333;
  height: 48px;
  line-height: 47px;
  padding: 0 25px;
  display: inline-block;
  font-family: "Lato", sans-serif;
  border-radius: 5px;
}

.slider_six .slider_content a:hover {
  color: #fff;
  background: #333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_six .slider_content a {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_six .slider_content a {
    margin-top: 20px;
    height: 43px;
    line-height: 43px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .slider_six .slider_content a {
    font-weight: 500;
    margin-top: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
}
.slider_six .owl-dots {
  left: 40px;
  transform: translateX(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_six .single_slider {
    height: 450px;
  }
}
/*color scheme 2 css here*/
.color_scheme_2 .slider_content a {
  background: #b2e515;
}

.color_scheme_2 .slider_content a:hover {
  color: #fff;
  background: #333;
}

.color_scheme_2 .owl-dots .owl-dot.active::before {
  background: #b2e515;
}

.color_scheme_2 .sidebar_banner .banner_text h4 {
  color: #b2e515;
}

.color_scheme_2 .banner_text a {
  background: #b2e515;
}

.color_scheme_2 .banner_text a:hover {
  background: #333;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .slider_new5 {
    margin-bottom: 17px;
  }
}
/*  04. banner section css here  */
@media only screen and (max-width: 767px) {
  .banner_area {
    margin-bottom: 31px;
  }
}
.banner_container {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .banner_container {
    flex-direction: column;
  }
}
.single_banner {
  margin-right: 10px;
  width: 50%;
}

.single_banner:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .single_banner {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.banner_thumb {
  position: relative;
}

.banner_thumb a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.banner_thumb a img:hover {
  opacity: 0.7;
}

.banner_text {
  position: absolute;
  top: 40px;
  left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_text {
    left: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_text {
    top: 23px;
    left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_text {
    top: 15px;
    left: 20px;
  }
}
.banner_text h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 21px;
  font-family: "Lato", sans-serif;
  width: 220px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_text h2 {
    font-size: 23px;
    line-height: 25px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_text h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_text h2 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 8px;
  }
}
.banner_text h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 3px;
  font-family: "Lato", sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_text h3 {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_text h3 {
    font-size: 15px;
    line-height: 17px;
  }
}
.banner_text a {
  font-size: 13px;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  padding: 0 30px;
  display: inline-block;
  background: #187fc4;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  pointer-events: visible;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  border: 2px solid #ce8f02;
  border-radius: 20px;
  color: #4c4343;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_text a {
    font-size: 12px;
    line-height: 28px;
    padding: 0 11px;
  }
}
.banner_text a:hover {
  background: #efc849;
  color: #4e4b4b;
}

@media only screen and (max-width: 767px) {
  .banner_text a {
    font-size: 12px;
    line-height: 30px;
    padding: 0 10px;
  }
}
/*home two css here*/
.banner_fullwidth {
  width: 100%;
}

.banner_fullwidth .banner_thumb > a {
  display: inline-block;
}

@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_thumb > a {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_thumb > a img {
    height: 138px;
    object-fit: cover;
    width: 100%;
  }
}
.banner_fullwidth .banner_text {
  right: 50px;
  left: auto;
  top: 50%;
  transform: translatey(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth .banner_text {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner_text {
    right: 10px;
  }
}
.banner_fullwidth .banner_text h2 {
  width: inherit;
  font-size: 48px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth .banner_text h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner_text h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_text h2 {
    font-size: 15px;
    line-height: 18px;
  }
}
.banner_fullwidth .banner_text h3 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth .banner_text h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner_text h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_text h3 {
    font-size: 15px;
    line-height: 16px;
  }
}
.banner_fullwidth .banner_text p {
  font-size: 18px;
  line-height: 25px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin-bottom: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth .banner_text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner_text p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 6px;
    width: 180px;
  }
}
@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_text p {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 7px;
    width: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_fullwidth .banner_text a {
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_fullwidth .banner_text a {
    font-size: 11px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .banner_fullwidth .banner_text a {
    font-size: 10px;
    line-height: 24px;
  }
}
/*home three css here*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar_banner {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar_banner {
    margin-top: 20px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar_banner .banner_thumb a img {
    width: 100%;
  }
}
.sidebar_banner .banner_text {
  left: 30px;
}

.sidebar_banner .banner_text h4 {
  font-size: 28px;
  line-height: 28px;
  color: #187fc4;
  margin-bottom: 3px;
}

.sidebar_banner .banner_text h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 10px;
}

.sidebar_banner .banner_text h2 {
  width: 100%;
  font-size: 42px;
  line-height: 42px;
  font-weight: 900;
}

/*home four css here*/
.banner_static {
  height: 370px;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner_static {
    height: 260px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_static {
    height: 260px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_static {
    height: 260px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_static {
    height: 210px;
    margin-bottom: 50px;
  }
}
.banner_static .banner_text {
  position: unset;
}

.banner_static .banner_text h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_static .banner_text h2 {
    font-size: 38px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_static .banner_text h2 {
    font-size: 25px;
    line-height: 25px;
  }
}
.banner_static .banner_text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner_static .banner_text h1 {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_static .banner_text h1 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
.banner_static .banner_text p {
  font-size: 18px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .banner_static .banner_text p {
    font-size: 14px;
    line-height: 20px;
  }
}
/*new banner section css here*/
.vidio_banner_thumb {
  position: relative;
}

.vidio_play-btn {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  text-align: center;
}

.vidio_play-btn a {
  font-size: 30px;
  color: #fff;
  border: 5px solid #fff;
  width: 70px;
  height: 70px;
  line-height: 60px;
  display: inline-block;
  border-radius: 50%;
}

.vidio_play-btn a:hover {
  border-color: #b2e515;
  color: #b2e515;
}

@media only screen and (max-width: 767px) {
  .vidio_play-btn a {
    font-size: 21px;
    border: 4px solid #fff;
    width: 55px;
    height: 55px;
    line-height: 47px;
  }
}
/* 360 images */
.cd-product-viewer-wrapper {
  text-align: center;
  padding: 2em 0;
}

.cd-product-viewer-wrapper > div {
  display: inline-block;
}

.cd-product-viewer-wrapper .product-viewer {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
}

.cd-product-viewer-wrapper img {
  /* this is the image visible before the image sprite is loaded */
  display: block;
  position: relative;
  z-index: 1;
}

.cd-product-viewer-wrapper .product-sprite {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  /* our image sprite is composed by 16 frames */
  width: 1600%;
  background: url(../img/img-sprite.png) no-repeat center center;
  background-size: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cd-product-viewer-wrapper.loaded .product-sprite {
  /* image sprite has been loaded */
  opacity: 1;
  cursor: ew-resize;
}

.cd-product-viewer-handle {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 300px;
  border-radius: 50em;
  margin: 1em auto 3em;
  height: 4px;
  background: #4d4d4d;
}

.cd-product-viewer-handle .fill {
  /* this is used to create the loading fill effect */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: #b54240;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}

.no-csstransitions .cd-product-viewer-handle .fill {
  display: none;
}

.loaded .cd-product-viewer-handle .fill {
  /* image sprite has been loaded */
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s 0.3s;
  transition: transform 0.3s, opacity 0.2s 0.3s;
}

.cd-product-viewer-handle .handle {
  position: absolute;
  z-index: 2;
  display: inline-block;
  height: 44px;
  width: 44px;
  left: 0;
  top: -20px;
  background: #b54240 url(../img/cd-arrows.svg) no-repeat center center;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(181, 66, 64, 0.3), 0 0 20px rgba(0, 0, 0, 0.2);
  /* replace text with image */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: transparent;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}

.cd-product-viewer-handle .handle:active {
  box-shadow: 0 0 0 0 rgba(181, 66, 64, 0), 0 0 20px rgba(0, 0, 0, 0.2);
}

.loaded .cd-product-viewer-handle .handle {
  /* image sprite has been loaded */
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-bounce 0.3s 0.3s;
  -moz-animation: cd-bounce 0.3s 0.3s;
  animation: cd-bounce 0.3s 0.3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  cursor: ew-resize;
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: translateX(-50%) scale(0);
  }
  60% {
    -moz-transform: translateX(-50%) scale(1.1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    transform: translateX(-50%) scale(0);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1);
    -moz-transform: translateX(-50%) scale(1.1);
    -ms-transform: translateX(-50%) scale(1.1);
    -o-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}
/* 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;
}

.section_title {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .section_title {
    flex-direction: column;
    text-align: left;
    margin-bottom: 0;
  }
}
.section_title::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #e9e9e9;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

@media only screen and (max-width: 767px) {
  .section_title::before {
    display: none;
  }
}
.section_title h2 {
  font-size: 23px;
  line-height: 33px;
  /* font-weight: 400; */
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
  color: #3e3e3e;
  font-family: "Mitr", sans-serif;
  font-weight: 100;
}

@media only screen and (max-width: 767px) {
  .section_title h2 {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 16px;
    padding-right: 0;
    position: relative;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section_title h2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: #e9e9e9;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
  }
}
.section_title h2 span {
  background: #ffffff;
  padding-right: 20px;
  position: relative;
  letter-spacing: 0.5px;
  font-family: "Mitr", sans-serif;
  text-transform: uppercase;
}

.section_title h2 span strong {
  margin-right: 5px;
}

.section_title ul.product_tab_button {
  margin-left: 180px;
  background: #ffffff;
  position: relative;
  /* border: 1px solid #e9e9e9; */
  padding: 0 15px;
  border-radius: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title ul.product_tab_button {
    margin-left: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .section_title ul.product_tab_button {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 20px;
    padding: 8px 15px 10px;
  }
}
.section_title ul.product_tab_button li {
  margin-right: 15px;
}

.section_title ul.product_tab_button li:last-child {
  margin-right: 0;
}

.section_title ul.product_tab_button li a {
  font-size: 14px;
  color: #333;
  line-height: 30px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0 15px;
  font-family: arial,sans-serif;
  border: 2px solid transparent;
  /* border-radius: 20px; */
}

@media only screen and (max-width: 767px) {
  .section_title ul.product_tab_button li a {
    line-height: 26px;
  }
}
.section_title ul.product_tab_button li a:hover {
  font-weight: 700;
}

.section_title ul.product_tab_button li a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: #d6d6d6;
  right: -15px;
  top: 50%;
  display: none;
}

.section_title ul.product_tab_button li a.active {
  font-weight: 700;
  border: 2px solid #ce8f02;
  border-radius: 20px;
  background: #187fc4;
  color: #4c4343;
}

.section_title ul.product_tab_button li:last-child a::before {
  display: none;
}

.product_thumb {
  position: relative;
}

.product_thumb a.secondary_img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.product_carousel .owl-nav {
  position: absolute;
  top: -56px;
  right: 0;
  background: #ffffff;
  display: flex;
  padding: 0 9px;
  border-radius: 25px;
  border: 1px solid #e9e9e9;
}

@media only screen and (max-width: 767px) {
  .product_carousel .owl-nav {
    display: none;
  }
}
.product_carousel .owl-nav > div {
  width: 25px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #a9a9a9;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product_carousel .owl-nav > div:hover {
  color: #187fc4;
}

.product_content {
  margin-top: 15px;
}

.single_product {
  padding: 10px 8px 18px 18px;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  margin: 1px;
}

.product-list .single_product:hover .product_thumb a.primary_img {
  display: none;
}

.product-list-full-width .right_caption {
  width: 200px;
}

.product-list-full-width .left_caption {
  width: 100%;
  padding-right: 20px;
  border-right: 1px solid #ddd;
  margin-right: 20px;
}

.single_product:hover .product_thumb a.secondary_img {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.single_product:hover .product_name h3 {
  margin-bottom: 10px;
  margin-top: 0;
}

.single_product:hover .product_name p {
  opacity: 1;
  margin-bottom: 9px;
}

.single_product:hover .action_links {
  opacity: 1;
  visibility: visible;
}

.single_product:hover .action_links ul li a {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.single_product:hover .add_to_cart {
  opacity: 1;
  visibility: visible;
}

.single_product:hover .add_to_cart a {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.action_links {
  transition: all 0.5s ease;
  position: absolute;
  right: 0;
  top: 8px;
  opacity: 0;
  visibility: hidden;
}

.action_links ul li a {
  line-height: 36px;
  width: 36px;
  text-align: center;
  font-size: 22px;
  display: block;
  transition: all 0.5s ease;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.action_links ul li a:hover {
  color: #187fc4;
}

.add_to_cart {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.add_to_cart a {
  line-height: 36px;
  width: 36px;
  text-align: center;
  font-size: 22px;
  display: block;
  transition: all 0.5s ease;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.add_to_cart a:hover {
  color: #187fc4;
}

.product_footer {
  justify-content: space-between;
}

.label_product {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  line-height: 20px;
  background: #187fc4;
  border-radius: 5px;
  transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  z-index: 3;
}

.label_product span {
  transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
}

.label_product span.label_sale,
.label_product span.label_new {
  padding: 0 10px;
  border-radius: 2px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}

.label_product span.label_new {
  background: #2777d0;
}

.product_name h3 {
  font-size: 14px;
  text-transform: capitalize;
  margin: 15px 0 4px 0;
  font-weight: 400;
  font-family: arial,sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product_name h3 a {
  line-height: 20px;
  display: block;
}

.product_name h3 a:hover {
  color: #ff9800;
}

.product_name p {
  line-height: 20px;
  display: block;
  opacity: 0;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product_name p a {
  text-transform: uppercase;
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.product_name p a:hover {
  color: #222;
}

.product_ratings {
  margin-bottom: 5px;
}

.product_ratings ul {
  display: flex;
}

.product_ratings ul li {
  line-height: 18px;
}

.product_ratings ul li a {
  color: #187fc4;
  font-size: 16px;
}

.price_box span.regular_price {
  font-weight: 600;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .price_box span.regular_price {
    font-size: 16px;
  }
}
.price_box span.old_price {
  color: #757575;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 16px;
}

.price_box span.current_price {
  color: #df0b31;
  font-weight: 600;
  font-size: 18px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .price_box span.current_price {
    font-size: 16px;
  }
}
/*single featured  css here*/
.featured_categories {
  background: #ffffff;
  padding: 42px 0 50px;
}

@media only screen and (max-width: 767px) {
  .featured_categories {
    padding: 50px 0 50px;
  }
}
.featured_categories .section_title h2 span {
  /* background: #f6f6f6; */
  position: relative;
}

.featured_carousel {
  background: #ffffff;
}

.featured_carousel .owl-item.last .single_featured {
  border-right: 0;
}

.single_featured {
  display: flex;
  padding: 19px;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.single_featured:last-child {
  border-bottom: 0;
}

.featured_thumb {
  width: 45%;
}

@media only screen and (max-width: 767px) {
  .featured_thumb {
    width: 38%;
  }
}
.featured_thumb a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.featured_thumb a img:hover {
  opacity: 0.7;
}

.featured_content {
  width: 55%;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .featured_content {
    width: 63%;
    padding-left: 16px;
  }
}
.featured_content h3 {
  font-size: 18px;
  font-family: arial,sans-serif;
  line-height: 22px;
  margin-bottom: 8px;
}

.featured_content h3 a:hover {
  color: #187fc4;
}

.featured_content > a {
  color: #333;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  float: right;
  position: relative;
  padding-right: 18px;
}

.featured_content > a:hover {
  color: #187fc4;
}

.featured_content > a::before {
  position: absolute;
  content: "";
  font-family: "Ionicons";
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
  display: inline-block;
  line-height: inherit;
  vertical-align: top;
  color: #187fc4;
  right: 0;
}

.sub_featured ul li a {
  display: block;
  line-height: 24px;
  text-transform: capitalize;
}

.sub_featured ul li a:hover {
  color: #187fc4;
}

/*small product area css here*/
.small_product .single_product {
  display: flex;
}

.small_product .product_content {
  width: 55%;
}

.small_product .product_content h3 {
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 400;
  font-family: arial,sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.small_product .product_content h3 a {
  line-height: 20px;
  display: block;
}

.small_product .product_content h3 a:hover {
  color: #ff9800;
}

.small_product .product_thumb {
  width: 45%;
}

.small_product .product_ratings {
  margin-bottom: 10px;
}

/*custom product area css here*/
.custom_product_area {
  margin-bottom: 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom_product_area {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom_product_area {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .custom_product_area {
    margin-bottom: 2px;
  }
}
.single_product_items {
  margin-bottom: 20px;
  display: flex !important;
}

.single_product_items .product_content {
  width: 70%;
  padding-left: 20px;
  margin-top: 0;
}

.single_product_items .product_content h3 {
  margin: 0 0 8px 0;
}

.single_product_items .product_thumb {
  width: 30%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom_product {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .custom_product {
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 479px) {
  .custom_product {
    margin-bottom: 23px;
  }
}
.custom_product .section_title h2 {
  font-size: 27px;
  /* font-weight: 700; */
}

@media only screen and (max-width: 767px) {
  .custom_product .section_title h2 {
    font-size: 18px;
  }
}
/*call to action css here*/
.call_to_action {
  background: #d8dfe4;
  padding: 42px 0 45px;
}

@media only screen and (max-width: 767px) {
  .call_to_action {
    padding: 42px 0 50px;
  }
}
.call_action_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .call_action_inner {
    flex-direction: column;
    text-align: center;
  }
}
.call_text h3 {
  font-size: 30px;
  line-height: 39px;
  font-family: arial,sans-serif;
  text-transform: capitalize;
  margin-bottom: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .call_text h3 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call_text h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .call_text h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.call_text h3 span {
  font-weight: bold;
}

.call_text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 767px) {
  .call_text p {
    margin-bottom: 14px;
  }
}
.link_follow ul li {
  display: inline-block;
  margin-right: 7px;
}

.link_follow ul li:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .link_follow ul li {
    margin-right: 3px;
  }
}
.link_follow ul li a {
  width: 48px;
  height: 48px;
  line-height: 46px;
  font-size: 18px;
  display: block;
  text-align: center;
  border: 1px solid #42474a;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .link_follow ul li a {
    width: 42px;
    height: 42px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .link_follow ul li a {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
}
.link_follow ul li a:hover {
  background: #333;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .discover_now {
    margin-bottom: 15px;
  }
}
.discover_now a {
  line-height: 48px;
  background: #333;
  color: #fff;
  padding: 0 33px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

.discover_now a:hover {
  background: #2b3137;
  color: #187fc4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .discover_now a {
    line-height: 43px;
    padding: 0 11px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .discover_now a {
    line-height: 38px;
    padding: 0 22px;
    font-size: 12px;
  }
}
/*call to action css end*/
/*home two css here*/
.single_product_list .single_product {
  margin-bottom: 20px;
}

.single_product_list .single_product:last-child {
  margin-bottom: 0;
}

.product_tab_button.tab_button2 {
  margin-left: 0;
  background: #f6f6f6;
  border: 0;
  padding: 0;
  margin-bottom: 22px;
  position: relative;
}

.product_tab_button.tab_button2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #e9e9e9;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

@media only screen and (max-width: 767px) {
  .product_tab_button.tab_button2::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product_tab_button.tab_button2 {
    flex-direction: column;
  }
}
.product_tab_button.tab_button2 li {
  margin-right: 20px;
}

.product_tab_button.tab_button2 li:first-child a {
  padding-left: 0;
}

.product_tab_button.tab_button2 li:last-child {
  margin-right: 0;
}

.product_tab_button.tab_button2 li a {
  font-size: 26px;
  line-height: 33px;
  font-family: "Lato", sans-serif;
  color: #333;
  background: #f6f6f6;
  position: relative;
  padding: 0 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product_tab_button.tab_button2 li a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .product_tab_button.tab_button2 li a {
    font-size: 20px;
    line-height: 33px;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product_tab_button.tab_button2 li a::before {
    display: none;
  }
}
.product_tab_button.tab_button2 li a span {
  font-weight: 700;
}

.new_product_area {
  background: #f6f6f6;
  padding: 43px 0 50px;
}

.sample_product {
  flex: 0 0 31.333333%;
  max-width: 31.333%;
  margin-right: 20px;
  padding: 20px 15px;
  background: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sample_product {
    flex: 0 0 30.333333%;
    max-width: 30.333%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sample_product {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .sample_product {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.sample_product .product_name {
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sample_product .product_name {
    margin-top: 0;
  }
}
.sample_product .product_name h3 {
  margin-top: 0;
}

.sample_product .manufacture_product p {
  opacity: 1;
}

.sample_product .product_content {
  margin-top: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sample_product .product_content {
    margin-top: 4px;
  }
}
.sample_product .product_ratings {
  margin-bottom: 13px;
}

.new_product_container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.new_product_container .product_carousel {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .new_product_container .product_carousel {
    flex: 0 0 49%;
    max-width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .new_product_container .product_carousel {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product_bg .single_product {
  background: #fff;
  border: 0;
  margin-bottom: 20px;
}

.product_bg .single_product:last-child {
  margin-bottom: 0;
}

.quantity_progress {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.quantity_progress p {
  margin-bottom: 10px;
  text-transform: capitalize;
  line-height: 20px;
}

.quantity_progress p span {
  font-weight: 700;
}

.bar_percent {
  height: 10px;
  background: #f0f0f0;
  width: 100%;
  border-radius: 25px;
  position: relative;
}

.bar_percent::before {
  position: absolute;
  content: "";
  width: 97%;
  height: 10px;
  left: 0;
  top: 0;
  background: #187fc4;
  border-radius: 25px 0 0 25px;
}

/*home three css here*/
.featured_c_three {
  padding: 0;
  background: none;
}

.featured_c_three .featured_container {
  border: 1px solid #f0f0f0;
}

.featured_c_three .section_title h2 span {
  background: #fff;
}

/*home four css here*/
.featured_four {
  border: 1px solid #f0f0f0;
}

.featured_four .single_featured {
  flex-direction: column;
  border: 0;
}

.featured_four .featured_thumb {
  width: 100%;
}

.featured_four .featured_content {
  width: 100%;
  padding-left: 0;
}

.featured_four .featured_content > a {
  float: left;
}

.featured_c_four {
  background: inherit;
  padding: 0;
}

.featured_c_four .section_title h2 span {
  background: #fff;
}

/*color schemen 2*/
.color_scheme_2 .featured_content h3 a:hover {
  color: #b2e515;
}

.color_scheme_2 .featured_content > a:hover {
  color: #b2e515;
}

.color_scheme_2 .featured_content > a::before {
  color: #b2e515;
}

.color_scheme_2 .sub_featured ul li a:hover {
  color: #b2e515;
}

.color_scheme_2 .owl-nav > div:hover {
  color: #b2e515;
}

.color_scheme_2 .product_name h3 a:hover {
  color: #b2e515;
}

.color_scheme_2 .product_name p a:hover {
  color: #b2e515;
}

.color_scheme_2 .small_product .product_content h3 a:hover {
  color: #b2e515;
}

.color_scheme_2 .product_ratings ul li a {
  color: #b2e515;
}

.color_scheme_2 .bar_percent::before {
  background: #b2e515;
}

.color_scheme_2 .label_product {
  background: #b2e515;
}

.color_scheme_2 .action_links ul li a:hover {
  color: #b2e515;
}

.color_scheme_2 .add_to_cart a:hover {
  color: #b2e515;
}

.color_scheme_2 .modal-content button.close:hover {
  color: #b2e515;
}

.color_scheme_2 .modal_price span {
  color: #b2e515;
}

.color_scheme_2 .modal_add_to_cart form button:hover {
  background: #b2e515;
  border-color: #b2e515;
}

.color_scheme_2 .modal_social ul li.facebook a:hover {
  background: #b2e515;
}

.color_scheme_2 .modal_social ul li.twitter a:hover {
  background: #b2e515;
}

.color_scheme_2 .modal_social ul li.pinterest a:hover {
  background: #b2e515;
}

.color_scheme_2 .modal_social ul li.google-plus a:hover {
  background: #b2e515;
}

.color_scheme_2 .modal_social ul li.linkedin a:hover {
  background: #b2e515;
}

.color_scheme_2 .product_navactive.owl-carousel .owl-nav div:hover {
  background: #b2e515;
}

.call_to_action.color_scheme_2 {
  background: #b2e515;
}

.call_to_action.color_scheme_2 .discover_now a:hover {
  color: #b2e515;
}

.product_detail_area {
  padding: 30px 0;
}
.product_detail_area .small_product img {
  max-width: 120px;
}

/* 10. shop page css here */
.header_shop {
  border-bottom: 1px solid #f0f0f0;
}

.header_shop .header_top {
  padding: 7px 0;
}

.header_shop .header_middel {
  padding: 40px 0 18px;
}

@media only screen and (max-width: 767px) {
  .header_shop .header_middel {
    padding: 21px 0 18px;
  }
}
.header_shop .header_bottom {
  padding: 0;
}

.canvas_padding {
  margin-bottom: 0;
}

.breadcrumb_content {
  padding: 0 0 12px 0;
  text-align: right;
}

.breadcrumb_content ul li {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  margin-right: 3px;
  /* padding-right: 13px; */
  position: relative;
  padding-left: 10px;
}

.breadcrumb_content ul li::before {
  position: absolute;
  content: "/";
  right: -12px;
  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 {
  color: #7b7b7b;
}

.breadcrumb_content ul li a:hover {
  color: #2d2d2d;
}

.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: 29px;
  padding-bottom: 35px;
}

.widget_list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget_list h2 {
  font-size: 16px;
  margin: 0 0 15px;
  padding: 0 0 5px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 24px;
}

.widget_list > ul > li {
  margin-bottom: 8px;
  position: relative;
}

.widget_list > ul > li:last-child {
  margin-bottom: 0;
}

.widget_list > ul > li input {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translatey(-50%);
  opacity: 0;
  cursor: pointer;
  z-index: 999;
}

.widget_list > ul > li input:checked ~ .checkmark {
  background-color: #187fc4;
  border: 1px solid #187fc4;
}

.widget_list > ul > li input:checked ~ .checkmark::before {
  display: block;
}

.widget_list > ul > li > a {
  font-size: 14px;
  display: block;
  line-height: 27px;
  margin-left: 30px;
}

.widget_list > ul > li > a:hover {
  color: #ff9800;
}

.widget_list > ul > li span.checkmark {
  height: 17px;
  width: 17px;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  background: #f4f4f4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.widget_list > ul > li span.checkmark::before {
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}

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

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

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #fff;
  border: 0;
  border-radius: 0;
  width: 19px;
  height: 19px;
  top: -7px;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid #187fc4;
}

.widget_list.widget_filter form {
  padding-top: 10px;
}

.widget_list.widget_filter form input {
  background: none;
  border: none;
  font-size: 12px;
  float: right;
  text-align: right;
  line-height: 31px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_list.widget_filter form input {
    width: 65px;
  }
}
.widget_list.widget_filter form button {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  text-transform: capitalize;
  color: #ffffff;
  background: #333;
  border: 0;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.widget_list.widget_filter form button:hover {
  background: #187fc4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_sidebar_banner {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .shop_sidebar_banner {
    text-align: center;
  }
}
.shop_sidebar_banner a img:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .shop_sidebar_banner a img {
    width: 100%;
  }
}
.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;
}

.shop_title {
  margin-bottom: 20px;
}

.shop_title h1 {
  font-size: 33px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 500;
}

@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: #187fc4;
}

.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: #187fc4;
}

.list_button ul li a.active i {
  background: #187fc4;
  color: #ffffff;
}

.product_ratting ul li {
  display: inline-block;
}

.product_ratting ul li a {
  color: #187fc4;
}

@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: #187fc4;
  color: #ffffff;
}

.pagination ul li.current {
  background: #187fc4;
  color: #ffffff;
}

.pagination ul li.next {
  width: 40px;
}

.shop_toolbar.t_bottom {
  justify-content: center;
  margin-bottom: 0;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_toolbar.t_bottom {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_toolbar.t_bottom {
    padding: 15px 10px 15px;
    margin-bottom: 50px;
  }
}
@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_area {
  margin-bottom: 50px;
  margin-top: 24px;
}

/* shop page css here*/
.shop_banner {
  margin-bottom: 44px;
}

@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_list .grid_name {
  display: none;
}

.grid_list .action_links {
  display: none;
}

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

.grid_list .product_content.list_content {
  display: block;
  min-width: 0 0 66.666667%;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .grid_list .product_content.list_content {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product_content.list_content {
    flex: 0 0 58.333333%;
    min-width: 58.333333%;
  }
}
@media only screen and (max-width: 767px) {
  .grid_list .product_content.list_content {
    flex: 0 0 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.grid_list .product_content.list_content .product_name h3 {
  margin: 0 0 12px;
}

.grid_list .product_content.list_content .product_ratings {
  margin-bottom: 8px;
}

.text_available {
  margin-bottom: 13px;
}

.text_available p {
  font-size: 14px;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text_available p {
    font-size: 13px;
  }
}
.text_available p span {
  color: #67c10a;
}

.cart_links_btn {
  margin-bottom: 20px;
}

.cart_links_btn a {
  line-height: 38px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  text-transform: capitalize;
  background: #187fc4;
  display: block;
  text-align: center;
  padding: 0 30px;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_links_btn a {
    padding: 0 18px;
  }
}
.cart_links_btn a:hover {
  background: #333;
  color: #fff;
}

.product-list .right_caption {
  width: 200px;
}

.product-list .left_caption {
  width: 100%;
  padding-right: 20px;
  border-right: 1px solid #ddd;
  margin-right: 20px;
}

.left_caption {
  width: 62%;
  padding-right: 20px;
  border-right: 1px solid #ddd;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .left_caption {
    width: 100%;
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .right_caption {
    width: 100%;
  }
}
.right_caption .price_box {
  margin-bottom: 20px;
}

.right_caption .price_box span {
  font-size: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .right_caption .price_box span {
    font-size: 15px;
  }
}
.right_caption .product_name h3 span {
  margin-right: 5px;
}

.right_caption .product_name h3 a {
  display: inline-block;
}

.right_caption .product_name h3 a:hover {
  color: #187fc4;
}

.action_links_btn {
  text-align: center;
}

.action_links_btn ul li {
  display: inline-block;
}

.action_links_btn ul li a {
  line-height: 36px;
  width: 36px;
  text-align: center;
  font-size: 22px;
  display: block;
}

.action_links_btn ul li a:hover {
  color: #187fc4;
}

.grid_list .single_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .grid_list .single_product {
    flex-direction: column;
    padding: 10px 18px 18px 18px;
  }
}
.grid_list .product_thumb {
  margin-bottom: 0;
  width: 300px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.grid_list .product_thumb .primary_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product_thumb {
    flex: 0 0 41.666667%;
    min-width: 41.666667%;
  }
}
@media only screen and (max-width: 767px) {
  .grid_list .product_thumb {
    flex: 0 0 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.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;
  align-items: center;
  border: 1px solid #ddd;
  padding: 8px 10px;
  margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
  .shop_toolbar_wrapper {
    flex-direction: column;
    padding: 15px 10px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .shop_toolbar_btn {
    margin-bottom: 20px;
  }
}
.shop_wrapper .single_product {
  position: relative;
  margin-bottom: 20px;
}

.shop_wrapper .label_product {
  bottom: 40px;
}

.shop_wrapper.grid_4 .price_box span.current_price {
  font-size: 15px;
  margin-right: 3px;
}

.shop_wrapper.grid_4 .price_box span.old_price {
  font-size: 14px;
}

.widget_inner {
  padding: 0 15pxpx;
  margin-bottom: 50px;
}

/* shop page css end*/
/*shop fullwidth css here*/
.product-list {
  margin-top: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-list {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-list {
    margin-bottom: 0;
  }
}
/* 15. product details css here */
#img-1 {
  border: 1px solid #f0f0f0;
}

.product_details {
  margin-bottom: 50px;
}

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

.product_d_right h1 {
  text-transform: capitalize;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 22px;
}

@media only screen and (max-width: 767px) {
  .product_d_right h1 {
    margin-bottom: 17px;
  }
}
.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.review a {
  color: #5a5a5a;
  margin-left: 10px;
}

.product_d_right .product_ratting ul li.review a:hover {
  color: #187fc4;
}

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

.product_d_right .price_box span.old_price {
  font-size: 20px;
}

.product_d_right .product_desc {
  margin-bottom: 19px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

@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 (max-width: 767px) {
  .product_d_right .priduct_social ul li {
    margin-right: 4px;
  }
}
.product_d_right .priduct_social ul li:last-child {
  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 5px;
  }
}
.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_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: #187fc4;
  border-radius: 3px;
  color: #2b2a2a;
  display: block;
  font-size: 15px;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  /* border: 1px solid #737373; */
}

.product_nav ul li a:hover {
  /* background: #333; */
}

.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: #187fc4;
  height: 42px;
  line-height: 42px;
  text-transform: capitalize;
  min-width: 270px;
  color: #000;
  /* border: 1px solid #717071; */
}

@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: #fad832;
}

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

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

.product_meta {
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .product_meta {
    margin-bottom: 15px;
    padding-bottom: 18px;
  }
}
.product_meta span {
  font-weight: 500;
}

.product_meta span a {
  color: #333;
  margin-left: 10px;
  font-weight: 400;
}

.product_info_button {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.product_info_button ul li a {
  display: block;
  float: left;
  text-transform: capitalize;
  font-size: 20px;
  color: #a9a9a9;
  font-weight: 600;
  margin-right: 35px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .product_info_button ul li a {
    margin-right: 25px;
    font-size: 18px;
  }
}
.product_info_button ul li a::before {
  content: "";
  width: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
  height: 2px;
  background: #187fc4;
  position: absolute;
}

.product_info_button ul li a.active {
  color: #333333;
}

.product_info_button ul li a.active::before {
  width: 100%;
}

.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: #3e444a;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
}

.product_review_form button:hover {
  background: #187fc4;
  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 0 50px;
  background: #ffffff;
}

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

.reviews_wrapper .product_ratting {
  margin-bottom: 20px;
}

.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: #187fc4;
}

.product_d_info {
  margin-bottom: 50px;
  background: #f6f6f6;
  padding: 0;
}

.product_d_info.sidebar {
  /* padding: 50px 30px; */
}

@media only screen and (max-width: 767px) {
  .product_d_info.sidebar {
    padding: 0;
    background: none;
    border: 1px solid #f0f0f0;
  }
}
.reviews_comment_box {
  display: flex;
  margin-bottom: 22px;
}

.reviews_comment_box .comment_text {
  width: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  margin-left: 21px;
  padding: 12px;
  border-radius: 3px;
}

.reviews_comment_box .comment_text::before {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
  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: #333;
  font-family: "Lato", sans-serif;
}

.s-tab-zoom.owl-carousel .owl-nav {
  display: block;
}

.s-tab-zoom.owl-carousel .owl-nav div {
  position: absolute;
  background: #187fc4;
  border-radius: 3px;
  color: #333;
  height: 32px;
  top: 50%;
  transform: translatey(-50%);
  width: 32px;
  text-align: center;
  line-height: 32px;
  left: -15px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  /* visibility: hidden; */
  /* border: 1px solid #444242; */
}

.s-tab-zoom.owl-carousel .owl-nav div:hover {
  background: #187fc4;
  color: #ffffff;
}

.s-tab-zoom.owl-carousel .owl-nav div.owl-next {
  right: -15px;
  left: auto;
}

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

.single-zoom-thumb {
  margin-top: 20px !important;
  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%;
}

/*06. newsletter area css here*/
.newletter_area {
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
}

.newletter_title {
  display: flex;
  align-items: center;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newletter_title img {
    margin-right: 10px;
  }
}
.newletter_content h2 {
  font-weight: 500;
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newletter_content h2 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .newletter_content h2 {
    font-size: 18px;
  }
}
.newletter_content p {
  font-size: 14px;
  margin: 13px 0 0;
  line-height: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newletter_content p {
    font-size: 13px;
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newletter_content p {
    font-size: 13px;
    margin: 5px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .newletter_content p {
    font-size: 13px;
    margin: 5px 0 0;
  }
}
.newletter_subscribe form {
  position: relative;
  width: 550px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 30px;
  float: right;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newletter_subscribe form {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newletter_subscribe form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .newletter_subscribe form {
    width: 100%;
  }
}
.newletter_subscribe form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a5a5a5;
}

.newletter_subscribe form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #a5a5a5;
}

.newletter_subscribe form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #a5a5a5;
}

.newletter_subscribe form input:-moz-placeholder {
  /* Firefox 18- */
  color: #a5a5a5;
}

.newletter_subscribe form input {
  width: 100%;
  border: 0;
  background: none;
  padding: 0 150px 0 20px;
  height: 50px;
  font-size: 14px;
  color: #a5a5a5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newletter_subscribe form input {
    padding: 0 125px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .newletter_subscribe form input {
    padding: 0 110px 0 20px;
    height: 40px;
  }
}
.newletter_subscribe form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  height: 100%;
  padding: 0 35px;
  background: #187fc4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 30px 30px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.newletter_subscribe form button:hover {
  background: #2777d0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newletter_subscribe form button {
    font-size: 13px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .newletter_subscribe form button {
    padding: 0 15px;
  }
}
.mailchimp-error {
  text-align: left;
  color: green;
}

.mailchimp-success {
  text-align: left;
  color: green;
}

.mailchimp-success.active {
  margin-top: 20px;
}

/*home two css here*/
.newletter_two {
  border-top: 1px solid #363636;
}

.newletter_two .newletter_content h2 {
  color: #fff;
}

.newletter_two .newletter_content p {
  color: #888888;
}

.newletter_two .newletter_subscribe form {
  background: #252525;
  border: 1px solid #363636;
}

/*home three css here*/
.newletter_three .newletter_subscribe form button {
  background: #fd5018;
}

.newletter_three .newletter_subscribe form button:hover {
  background: #333;
}

.mailchimp-error {
  text-align: left;
  color: white;
  background: #0f89d0;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #f59d9d;
}

.mailchimp-success.active {
  margin-top: 20px;
  color: white;
  background: #0f89d0;
  padding: 10px;
  border: 1px solid;
}

.mailchimp-error:empty, .mailchimp-success:empty {
  display: none;
}

/*  07. footer area css here */
.footerimage {
  padding-top: 80px;
  margin-top: 100px;
  background: #0f89d0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.footerimage:before {
  content: "";
  width: 100%;
  height: 120px;
  background: url(../img/bg/bg-pattern.png) no-repeat top;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: -1px;
  z-index: 1;
  background-size: 100%;
}

.footer_top {
  padding: 48px 0 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_top {
    padding: 48px 0 27px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_top {
    padding: 48px 0 14px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_top {
    padding: 48px 0 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets_container {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets_container {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .widgets_container {
    text-align: center;
  }
}
.widgets_container h3 {
  font-size: 25px;
  line-height: 24px;
  margin-bottom: 18px;
  text-transform: capitalize;
  font-weight: 300;
  font-family: arial,sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
}

@media only screen and (max-width: 767px) {
  .widgets_container h3 {
    margin-bottom: 8px;
    line-height: 22px;
  }
}
.widgets_container p {
  margin: 0;
  color: white;
}

.footer_logo {
  margin-bottom: 0px;
}

.footer_logo img {
  max-width: 200px;
}

@media only screen and (max-width: 767px) {
  .footer_logo a img {
    max-width: 126px;
  }
}
.footer_contact p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 25px;
}

@media only screen and (max-width: 767px) {
  .footer_contact p {
    margin-bottom: 23px;
  }
}
.footer_contact p span {
  display: block;
  color: #ffffff;
  font-size: 17px;
}

.footer_contact p a:hover {
  color: #187fc4;
}

.footer_menu ul li {
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .footer_menu ul li {
    line-height: 25px;
  }
}
.footer_menu ul li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: white;
}

.footer_menu ul li a:hover {
  color: #ffffff;
}

.subscribe_form {
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .subscribe_form {
    margin-top: 16px;
  }
}
.subscribe_form form {
  position: relative;
  width: 350px;
  background: #f0f0f0;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe_form form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe_form form {
    width: 100%;
  }
}
.subscribe_form form input {
  width: 100%;
  height: 48px;
  color: #666;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 0 120px 0 15px;
}

@media only screen and (max-width: 767px) {
  .subscribe_form form input {
    padding: 0 105px 0 15px;
  }
}
.subscribe_form form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #fae732;
  font-weight: 400;
  padding: 0 18px;
  border: 0;
  text-transform: uppercase;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  /* font-family: 'Mitr', sans-serif; */
}

.subscribe_form form button:hover {
  background: #187fc4;
}

@media only screen and (max-width: 767px) {
  .subscribe_form form button {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .copyright_area {
    text-align: center;
    margin-bottom: 14px;
  }
}
.copyright_area p {
  text-transform: capitalize;
  line-height: 30px;
  font-size: 14px;
  color: white;
}

.copyright_area p a:hover {
  text-decoration: underline;
  color: #187fc4;
}

.footer_bottom {
  padding: 6px 0;
  /* background: red; */
}

@media only screen and (max-width: 767px) {
  .footer_bottom {
    padding: 15px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_payment {
    text-align: center !important;
  }
}
/*color scheme 2 css here*/
.color_scheme_2 .footer_menu ul li a:hover {
  color: #b2e515;
}

.color_scheme_2 .footer_contact p a:hover {
  color: #b2e515;
}

.color_scheme_2 .subscribe_form form button {
  background: #b2e515;
}

.color_scheme_2 .subscribe_form form button:hover {
  background: #333;
}

.color_scheme_2 .copyright_area p a:hover {
  color: #b2e515;
}

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

.error_form {
  text-align: center;
}

.error_form h1 {
  font-size: 200px;
  font-weight: 700;
  color: #187fc4;
  letter-spacing: 10px;
  line-height: 160px;
  margin: 0 0 60px;
}

@media only screen and (max-width: 767px) {
  .error_form h1 {
    font-size: 130px;
    line-height: 120px;
    letter-spacing: 4px;
    margin: 0 0 45px;
  }
}
.error_form h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .error_form h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 17px;
  }
}
.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: 28px;
    line-height: 23px;
  }
}
.error_form form {
  width: 450px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .error_form form {
    width: 100%;
  }
}
.error_form form input {
  padding: 0 60px 0 30px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  color: #333;
  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: 0.3s;
  transition: 0.3s;
  top: 0;
  text-transform: uppercase;
  padding: 0 15px;
  font-weight: 600;
}

.error_form form button:hover {
  color: #187fc4;
}

.error_form a {
  color: #fff;
  display: inline-block;
  background: #333;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: uppercase;
  margin-top: 35px;
  border-radius: 3px;
}

.error_form a:hover {
  background: #187fc4;
}

.error_section {
  padding-bottom: 70px;
  padding-top: 59px;
}

@media only screen and (max-width: 767px) {
  .error_section {
    padding-bottom: 60px;
    padding-top: 45px;
  }
}
/*404 page css end*/
/* 10. about page css here */
.about_section {
  padding-bottom: 52px;
}

.information-container .list-Aboutus-info {
  margin-bottom: 20px;
}

.information-container .title-container h3 {
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
}

.information-container .title-container {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .about_section {
    padding-bottom: 50px;
  }
}
.about_content {
  text-align: center;
}

.about_content h1 {
  display: inline-block;
  font-size: 30px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .about_content h1 {
    font-size: 20px;
  }
}
.about_content p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 26px;
  padding: 0 13%;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_content p {
    padding: 0 8%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content p {
    padding: 0 2%;
  }
}
@media only screen and (max-width: 767px) {
  .about_content p {
    margin-bottom: 8px;
    padding: 0;
  }
}
.about_thumb {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .about_thumb {
    margin-bottom: 24px;
  }
}
.chose_title {
  text-align: center;
}

.chose_title h1 {
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .chose_title h1 {
    font-size: 20px;
  }
}
.chose_content h3 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 15px;
}

.choseus_area {
  margin-bottom: 55px;
}

.single_chose {
  text-align: center;
  margin: 20px 0;
}

.single_chose .chose_icone {
  margin-bottom: 20px;
}

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

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

@media only screen and (max-width: 767px) {
  .gallery_thumb img {
    width: 100%;
  }
}
.about_gallery_content {
  text-align: center;
}

.about_gallery_content h3 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
}

.about_gallery_content p {
  line-height: 26px;
}

/*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: 500;
  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 (max-width: 767px) {
  .services_thumb img {
    width: 100%;
  }
}
.single_services {
  margin-bottom: 25px;
}

.our_services {
  padding: 50px 0 25px;
}

@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: 49px 0 25px;
    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: 20px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 11px;
}

.services_icone {
  margin-right: 15px;
}

.services_icone i {
  font-size: 35px;
  line-height: 46px;
  color: #f44336;
}

.services_desc h3 {
  font-size: 13px;
  font-weight: 500;
}

.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: 768px) and (max-width: 991px) {
  .unlimited_services {
    margin-bottom: 59px;
  }
}
@media only screen and (max-width: 767px) {
  .unlimited_services {
    margin-bottom: 59px;
  }
}
.unlimited_services_content {
  text-align: center;
}

.unlimited_services_content h1 {
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  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;
  }
}
.unlimited_services_content a {
  font-size: 14px;
  padding: 6px 20px;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 30px;
}

.unlimited_services_content a:hover {
  background: #187fc4;
  border-color: #187fc4;
  color: #fff;
}

.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: #187fc4;
}

.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 #f0f0f0;
  line-height: 24px;
}

.priceing_list ul li:first-child {
  border-top: 1px solid #f0f0f0;
}

.priceing_list a {
  margin: 30px 0 0;
  line-height: 38px;
  padding: 0 20px;
  border: 1px solid #333;
  color: #333;
  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: #187fc4;
  border-color: #187fc4;
  color: #fff;
}

.advantages_ecommerce {
  padding: 54px 0;
}

@media only screen and (max-width: 767px) {
  .advantages_ecommerce {
    padding: 55px 0 60px;
  }
}
.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 #333;
}

.advantages_button a:hover {
  background: #187fc4;
  color: #fff;
  border-color: #187fc4;
}

@media only screen and (max-width: 767px) {
  .advantages_button a {
    padding: 5px 11px;
    font-size: 13px;
    margin-top: 20px;
  }
}
/*services page css end*/
/* 13. cart page css here */
.header_cart_page {
  border-bottom: 1px solid #f0f0f0;
}

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

.table_desc {
  border: 1px solid #f0f0f0;
  margin-bottom: 60px;
  margin-top: 2px;
}

.table_desc .cart_page table {
  width: 100%;
}

.table_desc .cart_page table thead tr th {
  /* border-bottom: 3px solid #187fc4; */
  border-right: 1px solid #f0f0f0;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
}

.table_desc .cart_page table tbody tr td {
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  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: #333;
}

.table_desc .cart_page table tbody tr td.product_remove a:hover {
  color: #fe3b00;
}

.table_desc .cart_page table tbody tr td.product_thumb {
  max-width: 80px;
  min-width: 50px;
}

.table_desc .cart_page table tbody tr td.product_name {
  min-width: 180px;
}

.table_desc .cart_page table tbody tr td.product_name a {
  text-transform: capitalize;
  text-decoration: none;
  color: #3a3838;
  font-size: 16px;
  font-weight: 600;
}

.table_desc .cart_page table tbody tr td.product_name a:hover {
  color: #3a3938;
}

.table_desc .cart_page table tbody tr td.product-price {
  min-width: 130px;
  color: #333;
  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: 600;
  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 #f0f0f0;
}

.table_desc .cart_page table .product_name {
  text-align: left;
}

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

.cart_submit button {
  background: #187fc4;
  border: 0;
  color: #4a4747;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 38px;
  line-height: 18px;
  padding: 10px 35px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
}

.cart_submit button:hover {
  background: #fad521;
}

.coupon_inner {
  padding: 10px 20px 25px;
}

.coupon_inner p {
  font-size: 13px;
  margin-bottom: 20px;
}

.coupon_inner button {
  background: #333;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
  background: #187fc4;
  border: 0;
  color: #4a4747;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 38px;
  line-height: 18px;
  padding: 10px 35px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
}

.coupon_inner button:hover {
  background: #187fc4;
}

.coupon_inner input {
  border: 1px dashed #828282;
  height: 40px;
  background: none;
  padding: 0 19px;
  margin-right: 20px;
  font-size: 12px;
  color: #333;
  border-radius: 25px;
}

@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 #f0f0f0;
  padding-bottom: 10px;
  border-radius: 3px;
}

.coupon_inner a:hover {
  color: #187fc4;
}

.coupon_code {
  /* border: 1px solid #f0f0f0; */
}

@media only screen and (max-width: 767px) {
  .coupon_code.left {
    margin-bottom: 59px;
  }
}
.coupon_code h3 {
  color: #403d3d;
  line-height: 36px;
  padding: 5px 15px;
  /* background: #ff424a; */
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .coupon_code h3 {
    line-height: 28px;
    padding: 5px 15px;
    font-size: 15px;
  }
}
.cart_subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart_subtotal p {
  font-weight: 600;
  font-size: 14px;
}

.cart_subtotal p.cart_amount {
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .cart_subtotal p.cart_amount {
    font-size: 14px;
  }
}
.cart_subtotal p span {
  margin-right: 30px;
}

.checkout_btn {
  text-align: right;
}

.checkout_btn a {
  background: #fe0008;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  /* font-weight: 600; */
  height: 38px;
  line-height: 18px;
  padding: 10px 35px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
}

.checkout_btn a:hover {
  background: #d61016;
  color: #ffffff;
}

.coupon_area {
  margin-bottom: 60px;
}

.footer_widgets.other_widgets .footer_top {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer_widgets.other_widgets .footer_top_inner {
  padding: 55px 0 53px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 59px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_widgets.other_widgets .footer_top_inner {
    padding: 55px 0 35px;
  }
}
/*cart page css end*/
/* 16. faq page css here */
.faq_content_area {
  padding-bottom: 56px;
}

.faq_area .accordion-header button {
  font-weight: 400;
  color: black;
  font-size: 18px;
  background: none;
}

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

.accordion-item {
  border: none;
  margin-bottom: 10px;
}

.accordion-item .accordion-collapse {
  border: 0;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  padding: 0;
  border: none;
}

.accordion-header button {
  height: 45px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: initial;
}

@media only screen and (max-width: 767px) {
  .accordion-header button {
    height: 60px;
  }
}
.accordion-header button:focus {
  box-shadow: none;
}

.accordion-header button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .accordion-header button i {
    right: 10px;
  }
}
.accordion-header button.accordion-button {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #ededed;
  border: 1px solid #ededed;
}

.accordion-header button.accordion-button.collapsed {
  width: 100%;
  text-align: left;
  color: #333;
}

@media only screen and (max-width: 767px) {
  .accordion-header button.accordion-button.collapsed {
    padding-right: 28px;
  }
}
.faq_content_wrapper h4 {
  font-size: 20px;
  font-weight: 400;
  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*/
/* 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 #f0f0f0;
  padding: 23px 20px 29px;
  border-radius: 5px;
}

.account_form label {
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  line-height: 12px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.account_form label:hover {
  color: #187fc4;
}

.account_form input {
  border: 1px solid #f0f0f0;
  height: 40px;
  max-width: 100%;
  padding: 0 20px;
  background: none;
  width: 100%;
}

.account_form button {
  background: #187fc4;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  line-height: 21px;
  padding: 5px 20px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 20px;
  border-radius: 20px;
}

.account_form button:hover {
  background: #333;
}

@media only screen and (max-width: 767px) {
  .account_form.register button {
    margin-left: 0;
  }
}
.login_submit label input[type=checkbox] {
  width: 15px;
  height: 13px;
  margin-right: 3px;
}

.login_submit {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .login_submit {
    text-align: left;
  }
}
.login_submit a {
  font-size: 13px;
  float: left;
  line-height: 39px;
}

.login_submit a:hover {
  color: #187fc4;
}

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

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

@media only screen and (max-width: 767px) {
  .account_form.register {
    margin-top: 57px;
  }
}
/*login page css end */
/*  18. my account css here */
.dashboard_tab_button {
  margin-bottom: 20px;
}

@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: #313131;
  font-weight: 500;
  text-transform: capitalize;
  background: #fff;
  border-radius: 0;
  padding: 10px;
}

.dashboard_tab_button ul li a:hover {
  background: #e8f0f3;
  color: #080808;
}

.dashboard_tab_button ul li a.active {
  background: #e8f0f3;
}

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

@media only screen and (max-width: 767px) {
  .main_content_area {
    padding: 35px 0 55px;
  }
}
.dashboard_content h3 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 15px;
}

.dashboard_content h4 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}

.dashboard_content a {
  color: #ff9800;
  font-weight: 500;
}

.dashboard_content a:hover {
  color: #333;
}

.dashboard_content p a {
  color: #ff9800;
  font-weight: 500;
}

.dashboard_content p a:hover {
  color: #333;
}

.table-responsive table thead {
  background: #f2f2f2;
}

.table-responsive table thead tr th {
  text-align: center;
}

.table-responsive table tbody tr td {
  border-right: 1px solid #f0f0f0;
  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: #ff9800;
}

.table-responsive table tbody tr td:last-child a:hover {
  color: #333;
}

.table-responsive .table {
  border-left: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

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

.account_login_form form span.custom_checkbox {
  display: flex;
}

.account_login_form form span.custom_checkbox input {
  top: 5px;
  margin-right: 7px;
}

.account_login_form form span.custom_checkbox label {
  margin-bottom: 0;
}

.account_login_form form .save_button button {
  padding: 0px 50px;
  height: 35px;
  line-height: 35px;
  border: 0;
  background: #fae732;
  color: #2f2f2f;
  border-radius: 16px;
  margin-top: 20px;
}

.account_login_form form .save_button button:hover {
  background: #187fc4;
}

/*my account css end*/
/* 14. checkout page css here */
/* checkout */
.checkout header {
  text-align: center;
}

.checkout header .title:before {
  display: none;
}

@media (min-width: 992px) {
  .checkout {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.checkout hr {
  border-color: #e0e0e0;
}

.checkout .cart-wrapper {
  margin: 15px 0;
}

@media print {
  .checkout .cart-wrapper {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }

  .checkout .cart-wrapper + .cart-wrapper {
    border-top: 0;
  }
}
.checkout .cart-block {
  position: relative;
}

@media (min-width: 768px) {
  .checkout .cart-block {
    display: table;
    width: 100%;
  }
}
.checkout .cart-block:last-child {
  margin-bottom: 0;
}

.checkout .cart-block > div {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .checkout .cart-block > div {
    display: table-cell;
    vertical-align: middle;
  }

  .checkout .cart-block > div img {
    width: 100%;
    vertical-align: middle;
  }

  .checkout .cart-block > div:nth-child(1) {
    width: 15%;
  }

  .checkout .cart-block > div:nth-child(2) {
    width: 45%;
  }

  .checkout .cart-block > div:nth-child(3) {
    width: 10%;
  }

  .checkout .cart-block > div:nth-child(4) {
    width: 30%;
  }

  .checkout .cart-block > div.quantity {
    text-align: center;
  }
}
.checkout .cart-block > div img {
  width: 100%;
  vertical-align: middle;
}

.checkout .cart-block > div.image {
  padding: 10px;
  width: 100px;
}

.checkout .cart-block > div.image a {
  display: block;
  position: relative;
  z-index: -1;
}

@media (max-width: 767px) {
  .checkout .cart-block > div.quantity,
.checkout .cart-block > div.price {
    width: 50%;
    float: left;
  }
}
.checkout .cart-block > div.quantity .form-quantity {
  display: inline-block;
  width: 80px;
}

.checkout .cart-block .title > * {
  margin: 0;
}

@media (min-width: 768px) {
  .checkout .cart-block .title {
    padding: 0 0 0 30px;
  }

  .checkout .cart-block .title > * {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .checkout .cart-block .price {
    padding-right: 30px;
  }

  .checkout .cart-block .price .form-control {
    text-align: center;
  }
}
.checkout .cart-block .price > span {
  display: block;
  text-align: right;
}

.checkout .cart-block .price .final {
  margin: 0;
}

.checkout .cart-block .price .discount {
  text-decoration: line-through;
}

.checkout .cart-block .icon-delete {
  position: absolute;
  cursor: pointer;
  padding: 5px;
  right: 0;
  top: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.checkout .cart-block .icon-delete:hover {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.checkout .cart-block-header {
  display: none;
  background-color: white;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media (min-width: 768px) {
  .checkout .cart-block-header {
    display: table;
    padding: 15px;
  }

  .checkout .cart-block-header > div {
    padding: 0;
  }
}
.checkout .cart-block-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

@media (max-width: 767px) {
  .checkout .cart-block-item {
    padding-bottom: 15px;
  }
}
.checkout .cart-block-footer {
  color: black;
  margin-top: 1px;
  background-color: white;
  padding: 5px 0;
}

@media (min-width: 768px) {
  .checkout .cart-block-footer .form-coupon {
    position: absolute;
    top: 0;
  }
}
@media (max-width: 767px) {
  .checkout .cart-block-footer {
    margin-bottom: 0;
    padding: 5px;
  }
}
.checkout .cart-block-footer.cart-block-footer-price {
  padding: 30px 0;
  background-color: white;
}

.checkout .cart-block-footer.cart-block-footer-price .alert {
  white-space: nowrap;
}

.checkout .cart-block-footer > div {
  padding: 0;
}

.checkout .cart-block-footer > div:nth-child(1),
.checkout .cart-block-footer > div:nth-child(2) {
  width: 50%;
  float: left;
}

.checkout .cart-block-footer > div:nth-child(2) {
  text-align: right;
}

.checkout .cart-block-footer .form-coupon {
  display: inline-block;
  width: inherit;
  margin-left: 10px;
  text-align: left;
}

/*  
  ----------------------------------
  Checkout steps
  ----------------------------------
*/
.btn.btn-clean-dark {
  background-color: transparent;
  border-color: rgba(58, 61, 69, 0.5);
  color: #3a3d45 !important;
}

.step-wrapper {
  padding: 40px 0 20px 0;
}

@media (min-width: 1200px) {
  .step-wrapper {
    padding: 40px 0 40px 0;
  }
}
@media print {
  .step-wrapper {
    display: none !important;
  }
}
.step-wrapper header {
  padding: 0;
}

.step-wrapper header .title {
  padding-top: 15px;
  color: white;
}

@media (min-width: 768px) {
  .step-wrapper header .title {
    padding-top: 40px;
  }
}
.step-wrapper .stepper {
  color: white;
}

.step-wrapper .stepper > ul {
  margin: 0;
  padding: 0;
}

.step-wrapper .stepper > ul > li {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-align: center;
  padding: 0;
  color: #F5F4EF;
}

.step-wrapper .stepper > ul > li:first-child:before {
  display: none;
}

.step-wrapper .stepper > ul > li:before {
  background-color: #F5F4EF;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  right: 50%;
  z-index: 0;
}

.step-wrapper .stepper > ul > li span {
  background-color: white;
  font-size: 30px;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  z-index: 9;
  font-family: "LinearIcons";
}

.step-wrapper .stepper > ul > li span:before {
  content: "";
}

.step-wrapper .stepper > ul > li span:after {
  content: attr(data-text);
  position: absolute;
  display: inline-block;
  bottom: 100%;
  text-transform: uppercase;
  text-align: center;
  width: initial;
  left: 50%;
  font-size: 10px;
  white-space: nowrap;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: arial,sans-serif;
}

@media (min-width: 992px) {
  .step-wrapper .stepper > ul > li span {
    width: 50px;
    height: 60px;
    font-size: 50px;
    line-height: 60px;
  }

  .step-wrapper .stepper > ul > li span:after {
    font-size: 15px;
    line-height: initial;
  }
}
@media (max-width: 480px) {
  .checkout .cart-block > div.image {
    padding: 10px;
    width: 100%;
  }
}
.step-wrapper .stepper > ul > li.active {
  color: #666666;
}

.step-wrapper .stepper > ul > li.active:before {
  background-color: black;
}

.step-wrapper .stepper > ul > li.active span {
  color: black;
}

.step-wrapper .stepper > ul > li.active span:before {
  content: "";
}

.login-wrapper .login-block.login-block-signin {
  display: none;
}

.login-wrapper .login-block.login-block-signup {
  display: block;
}

.checkout .checkbox input[type=checkbox],
.checkout .checkbox input[type=radio] {
  display: none;
}

.checkout .checkbox label {
  padding-left: 35px;
  line-height: 1.8;
}

.checkout .checkbox input[type=radio]:checked + label:before {
  content: "●";
  line-height: 16px;
  font-size: 20px;
}

.checkout .checkbox input[type=checkbox]:checked + label:before {
  content: "";
}

.checkout .checkbox input[type=checkbox] + label:before,
.checkout .checkbox input[type=radio] + label:before {
  font-family: "LinearIcons";
  content: "";
  line-height: 22px;
  font-size: 16px;
  position: absolute;
  border: 1px solid #bbc4c7;
  display: inline-block;
  height: 25px;
  width: 25px;
  padding: 0;
  left: 0;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.checkout .checkbox input[type=checkbox]:checked + label:before,
.checkout .checkbox input[type=radio]:checked + label:before {
  background: #3c5570;
  color: white;
  border-color: #3c5570;
  text-align: center;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.checkout .checkbox input[type=checkbox] + label:before,
.checkbox input[type=radio] + label:before {
  font-family: "LinearIcons";
  content: "";
  line-height: 22px;
  font-size: 16px;
  position: absolute;
  border: 1px solid #bbc4c7;
  display: inline-block;
  height: 25px;
  width: 25px;
  padding: 0;
  left: 0;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* checkout */
.user-actions {
  margin-bottom: 20px;
}

.user-actions h3 {
  font-size: 13px;
  font-weight: 400;
  background-color: #f7f6f7;
  padding: 15px 10px;
  border-top: 3px solid #187fc4;
  margin-bottom: 0;
}

.user-actions h3 a {
  color: #187fc4;
}

.checkout_info {
  border: 1px solid #f0f0f0;
  margin-top: 25px;
  padding: 20px 30px;
}

.checkout_info p {
  margin-bottom: 15px;
}

.checkout_info a {
  color: #187fc4;
  margin-top: 15px;
  display: block;
}

.form_group {
  margin-bottom: 20px;
}

.form_group label {
  font-size: 14px;
  display: block;
  line-height: 18px;
  margin-bottom: 6px;
}

.form_group input {
  border: 1px solid #f0f0f0;
  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: #333;
  border: 0;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 20px;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
}

.form_group button:hover {
  background: #187fc4;
}

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

.form_group.group_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form_group.group_3 label {
  margin-bottom: 0;
  line-height: 34px;
  cursor: pointer;
}

.form_group.group_3 label:hover {
  color: #187fc4;
}

#checkout_coupon input {
  background: none;
  border: 1px solid #f0f0f0;
  width: 200px;
  height: 45px;
  font-size: 12px;
  padding: 0 20px;
  color: #333;
}

#checkout_coupon button {
  width: 130px;
  background: #333;
  color: #ffffff;
  font-weight: 600;
  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: #187fc4;
}

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

.checkout_form h3 {
  font-size: 16px;
  line-height: 30px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #ffffff;
  background: #333;
  font-weight: 500;
}

.checkout_form input {
  border: 1px solid #f0f0f0;
  background: none;
  height: 40px;
  width: 100%;
  padding: 0 20px;
  color: #333;
}

.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: 600;
  margin-bottom: 6px;
}

.checkout_form label span {
  color: #187fc4;
}

.checkout_form label.righ_0 {
  cursor: pointer;
  font-size: 15px;
  line-height: 27px;
  padding: 5px 10px;
  text-transform: capitalize;
  color: #ffffff;
  background: #333;
  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: #757575;
}

.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: #187fc4;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
  border-radius: 5px;
}

.order_button button:hover {
  background: #333;
}

@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: #333;
}

.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-bottom: 1px solid #ddd;
}

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

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

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

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

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

.order_button button {
  border: 0;
}

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

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

@media only screen and (max-width: 767px) {
  .categories_thumb {
    height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .categories_thumb a {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .categories_thumb img {
    height: 100%;
    object-fit: cover;
  }
}
.categories_content {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translatey(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .categories_content {
    right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content {
    right: 15px;
  }
}
.categories_content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .categories_content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.categories_content h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .categories_content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.categories_content p {
  font-size: 17px;
  width: 440px;
  font-weight: 500;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content p {
    width: 310px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content p {
    font-size: 14px;
    width: 210px;
    line-height: 20px;
    margin-bottom: 5px;
    margin-top: 0;
  }
}
.categories_content a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid #757575;
}

.categories_content a:hover {
  color: #187fc4;
  border-color: #187fc4;
}

#fp-nav {
  right: 31px;
}

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

.categories_content.content_left {
  left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories_content.content_left {
    left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categories_content.content_left {
    left: 30px;
  }
}
/*collection area css here*/
.collection_area {
  margin-bottom: 94px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .collection_area {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection_area {
    margin-bottom: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_area {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_area {
    margin-bottom: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_img {
    margin-bottom: 21px;
  }
}
.collection_img img:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .collection_content {
    text-align: center;
  }
}
.collection_content h1 {
  font-size: 120px;
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h1 {
    font-size: 90px;
    line-height: 80px;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h1 {
    font-size: 90px;
    line-height: 80px;
    margin-bottom: 13px;
  }
}
.collection_content h4 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 23px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h4 {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h4 {
    margin-bottom: 12px;
  }
}
.collection_content h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
  }
}
.collection_content p {
  line-height: 24px;
  font-size: 16px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .collection_content p {
    font-size: 15px;
  }
}
.collection_content a {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid #757575;
  display: inline-block;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection_content a {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_content a {
    margin-top: 15px;
    font-size: 16px;
  }
}
.collection_content a:hover {
  color: #187fc4;
  border-color: #187fc4;
}

@media only screen and (max-width: 767px) {
  .collection_2 {
    margin-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_2 .collection_content {
    margin-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_4 {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .collection_4 .collection_content {
    margin-bottom: 29px;
  }
}
/* 15. contact page css here */
.contact_area {
  margin-bottom: 60px;
}

.contact_message h3 {
  font-size: 21px;
  text-transform: capitalize;
  line-height: 20px;
  margin-bottom: 25px;
}

p.form-messege.error {
  background: #f1dfdf;
  margin-top: 10px;
  padding: 10px;
  border-radius: 3px;
}

p.form-messege.success {
  background: #d9fbb2;
  margin-top: 10px;
  padding: 10px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: bold;
}

@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 #f0f0f0;
}

.contact_message ul li:last-child {
  padding-bottom: 0;
}

.contact_message ul li i {
  margin-right: 10px;
}

.contact_message ul li a:hover {
  color: #187fc4;
}

.contact_message label {
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact_message input {
  border: 1px dashed #a9a8a2;
  height: 45px;
  background: #ffffff;
  width: 100%;
  padding: 0 20px;
  color: #757575;
  border-radius: 30px;
}

.contact_message textarea {
  height: 170px;
  border: 1px dashed #a9a8a2;
  background: #ffffff;
  resize: none;
  margin-bottom: 20px;
  width: 100%;
  padding: 21px 20px;
  color: #333;
  border-radius: 41px;
}

.contact_message button {
  font-weight: 400;
  height: 42px;
  line-height: 42px;
  padding: 0 60px;
  text-transform: capitalize;
  border: none;
  background: #ff424a;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 40px;
}

.contact_message button:hover {
  background: #187fc4;
}

@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: 360px;
  width: 100%;
  border-radius: 30px;
  /* border: 2px dashed #505050; */
  padding: 10px;
}

/*contact page css end*/
/*privacy policy css here*/
.privacy_policy_main_area {
  padding: 26px 0 35px;
}

.privacy_content {
  margin-bottom: 22px;
}

.privacy_content:last-child {
  margin-bottom: 0;
}

.privacy_content h2 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  .privacy_content h2 {
    font-size: 18px;
  }
}
.privacy_content h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  .privacy_content h3 {
    font-size: 18px;
  }
}
.privacy_content p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .privacy_content p {
    font-size: 14px;
  }
}
.privacy_content p a {
  color: #a43d21;
}

.privacy_content p a:hover {
  color: #187fc4;
}

.privacy_content.section_1 p {
  margin-bottom: 0;
}

.privacy_content.section_2 h2 {
  margin-bottom: 24px;
}

/*privacy policy css end*/
/* 21. shipping css here */
.shipping_inner {
  /* border: 1px solid #ffffff; */
  padding: 19px 5px;
  border-radius: 4px;
  overflow: hidden;
}

.single_shipping {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-left: 1px solid #f0f0f0;
  width: 33%;
  float: left;
}

.single_shipping:first-child {
  border: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_shipping {
    margin-bottom: 12px;
    width: 30%;
    border: 0;
  }

  .shipping_content h2 {
    font-size: 17px !important;
  }

  p {
    font-size: 13px !important;
  }
}
@media only screen and (max-width: 767px) {
  .single_shipping {
    margin-bottom: 12px;
    border: 0;
    width: 100%;
  }

  .single_shipping:last-child {
    margin-bottom: 0;
  }
}
.shipping_icone {
  margin-right: 14px;
}

.shipping_content h2 {
  font-size: 23px;
  line-height: 23px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 4px;
  color: #3e3e3e;
  white-space: 22px;
  letter-spacing: 0.5px;
  font-family: arial,sans-serif;
}

.shipping_content p {
  font-size: 14px;
  line-height: 18px;
}

/*testimonial css here*/
.testimonial_container {
  padding: 22px 30px 20px;
}

.testimonial_container .testimonial_images {
  width: 84px;
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.testimonial_container .testimonial_images img {
  width: inherit;
  border-radius: 50%;
}

.testimonial_container .testimonial_content {
  margin-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_container .testimonial_content {
    margin-top: 50px;
  }
}
.testimonial_container .testimonial_content p {
  padding: 0;
  margin-bottom: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_container .testimonial_content p {
    margin-bottom: 12px;
  }
}
.testimonial_container .testimonial_content a {
  color: #187fc4;
  font-weight: 600;
  font-size: 16px;
}

.testimonial_container .testimonial_content a:hover {
  color: #333;
}

.testimonial_container:hover .owl-nav > div {
  opacity: 1;
  visibility: visible;
}

.testimonial_container .owl-nav > div {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 30px;
  background: #eaeaea;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  color: #313131;
  font-size: 18px;
  z-index: 1;
  height: 80px;
  border-radius: 0 3px 3px 0;
  line-height: 80px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0px;
}

.testimonial_container .owl-nav > div:hover {
  background: #187fc4;
  color: #fff;
}

.testimonial_container .owl-nav > div.owl-next {
  right: 0;
  left: auto;
  border-radius: 3px 0 0 3px;
}

.testimonial_banner {
  background: url(../img/about/testimonial.jpg) no-repeat 0 0;
  height: 155px;
  width: 100%;
}

.testimonial_section {
  border: 1px solid #f0f0f0;
  background: #fff;
}

.testimonial_are {
  margin-bottom: 68px;
}

@media only screen and (max-width: 767px) {
  .testimonial_are {
    margin-bottom: 63px;
  }
}
.testimonial_titile {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .testimonial_titile {
    margin-bottom: 15px;
  }
}
.testimonial_titile h1 {
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .testimonial_titile h1 {
    font-size: 20px;
  }
}
.testimonial_active.owl-carousel .single_testimonial img {
  width: inherit;
  margin: 0 auto;
  margin-bottom: 15px;
}

.testimonial_active.owl-carousel .owl-dots {
  position: relative;
  width: 100%;
  text-align: center;
  top: 15px;
}

@media only screen and (max-width: 767px) {
  .testimonial_active.owl-carousel .owl-dots {
    top: 10px;
  }
}
.testimonial_active.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #ebebeb;
  border-radius: 100%;
  margin: 0 4px;
  display: inline-block;
}

.testimonial_active.owl-carousel .owl-dots .owl-dot.active {
  background: #187fc4;
}

.single_testimonial {
  text-align: center;
}

.single_testimonial p {
  padding: 0 145px;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_testimonial p {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single_testimonial p {
    padding: 0;
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.single_testimonial span {
  display: block;
  margin-bottom: 20px;
  line-height: 16px;
}

@media only screen and (max-width: 767px) {
  .single_testimonial span {
    margin-bottom: 12px;
  }
}
.single_testimonial span.name {
  font-weight: 700;
  text-transform: uppercase;
}

/* 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: #187fc4;
  font-size: 12px;
  font-weight: 700;
  height: 38px;
  line-height: 18px;
  padding: 10px 20px;
  color: #333;
  text-transform: uppercase;
  border-radius: 3px;
}

.table_desc.wishlist table tbody tr td.product_total a:hover {
  background: #f3c83c;
  color: #292828;
}

.wishlist_share {
  text-align: center;
  padding: 20px 0;
  border: 1px solid #f0f0f0;
}

.wishlist_share h4 {
  font-size: 18px;
  font-weight: 600;
  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: #187fc4;
}

.wishlist_area {
  padding-bottom: 60px;
}

/*wishlist css end*/
/*--
     25. compare css here
-----------------------------------------*/
.compaer-page {
  margin: 32px 0 60px;
}

.compare-table .table tbody tr:first-child {
  border-top: 1px solid #eeeeee;
}

.compare-table .table tbody tr td {
  text-align: center;
  border: none;
  padding: 25px 30px;
  vertical-align: middle;
  border-bottom: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.compare-table .table tbody tr td:last-child {
  border-right: 1px solid #eeeeee;
}

.compare-table .table tbody tr td.first-column {
  min-width: 180px;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.compare-table .table tbody tr td.product-image-title {
  min-width: 305px;
  vertical-align: bottom;
}

.compare-table .table tbody tr td.product-image-title .image {
  clear: both;
  width: 100%;
  margin-bottom: 40px;
}

.compare-table .table tbody tr td.product-image-title .image img {
  max-width: 100%;
}

.compare-table .table tbody tr td.product-image-title .category {
  clear: both;
  color: #454545;
  float: left;
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 15px;
  margin-bottom: 7px;
  margin-top: 15px;
  text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title {
  float: left;
  clear: both;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
  color: #187fc4;
}

.compare-table .table tbody tr td.pro-desc p {
  text-align: left;
  margin: 0;
}

.compare-table .table tbody tr td.pro-price {
  font-size: 15px;
  font-weight: 600;
}

.compare-table .table tbody tr td.pro-color {
  font-size: 15px;
  font-weight: 600;
}

.compare-table .table tbody tr td.pro-stock {
  font-size: 15px;
  font-weight: 600;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart {
  position: relative;
  background: #187fc4;
  border-radius: 4px;
  display: inline-block;
  width: 170px;
  padding: 10px 6px;
  transition: all 0.7s;
  color: #333;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart:hover {
  background: #f1c741;
  color: #313131;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart span {
  transition: 0.3s;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 21px;
  overflow: hidden;
  display: block;
  text-align: center;
}

.compare-table .table tbody tr td.pro-remove button {
  border: none;
  background-color: transparent;
  padding: 0;
}

.compare-table .table tbody tr td.pro-remove button i {
  font-size: 20px;
}

.compare-table .table tbody tr td.pro-remove button:hover {
  color: #187fc4;
}

.compare-table .table tbody tr td.pro-ratting a {
  font-size: 17px;
  color: #ffc107;
}

.compare-table .table tbody tr td.pro-ratting a:hover {
  color: #187fc4;
}

/*  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 #f0f0f0;
  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: #187fc4;
}

.modal_social ul li.twitter a {
  background: #1da1f2;
}

.modal_social ul li.twitter a:hover {
  background: #187fc4;
}

.modal_social ul li.pinterest a {
  background: #bd081b;
}

.modal_social ul li.pinterest a:hover {
  background: #187fc4;
}

.modal_social ul li.google-plus a {
  background: #dc5043;
}

.modal_social ul li.google-plus a:hover {
  background: #187fc4;
}

.modal_social ul li.linkedin a {
  background: #010103;
}

.modal_social ul li.linkedin a:hover {
  background: #187fc4;
}

.modal_price {
  margin-bottom: 12px;
}

.modal_price span {
  font-weight: 600;
  color: #187fc4;
  font-size: 16px;
}

.modal_price span.old_price {
  color: #333;
  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 #f0f0f0;
  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 #333;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
  height: 45px;
  width: 230px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  background: #333;
  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: #187fc4;
  color: #ffffff;
  border-color: #187fc4;
}

.modal_body {
  padding: 29px 6px 38px;
}

@media only screen and (max-width: 767px) {
  .modal_body .modal_tab {
    margin-bottom: 28px;
  }
}
.modal-content {
  border-radius: 0;
}

.modal-content button.close {
  position: absolute;
  left: 94%;
  width: 35px;
  height: 35px;
  display: block;
  border: 1px solid #f0f0f0;
  top: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 9;
}

@media only screen and (max-width: 767px) {
  .modal-content button.close {
    left: 83%;
    width: 29px;
    height: 32px;
    top: 4px;
    margin-bottom: 14px;
  }
}
.modal-content button.close:hover {
  color: #187fc4;
}

.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: #187fc4;
  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: -179px;
  position: fixed !important;
  padding: 0;
  text-align: center;
  display: none;
  width: 750px;
}

.newletter-popup .box {
  padding: 40px 20px 40px 0;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .newletter-popup {
    padding: 30px 20px;
    width: 95%;
  }
}
#boxes .newletter-title h2 {
  font-size: 19px;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: bold;
}

@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 .newletter-label {
  width: 100%;
  margin-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  #boxes .box-content .newletter-label {
    width: 100%;
  }
}
#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 {
  padding: 0 126px 0 0px;
  height: 45px;
  border: 0;
  width: 100%;
  color: #747474;
  margin-bottom: 0;
  border-radius: 24px;
}

@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: #fed300;
  cursor: pointer;
  color: #191b1a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 45px;
  text-align: center;
  border-radius: 23px;
}

#frm_subscribe form a.theme-btn-outlined:hover {
  /* background: #ce2519; */
}

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

#popup2 span.b-close {
  position: absolute;
  right: 15px;
  top: 0px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  text-transform: capitalize;
  padding: 6px 12px;
  background: #191b1a;
  font-weight: 600;
  line-height: 17px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

#popup2:hover span.b-close {
  background: #080808;
}

/*newsletter popup css end*/
/* 05. blog area css here */
.blog_carousel .owl-nav {
  position: absolute;
  top: -56px;
  right: 0;
  background: #ffffff;
  display: flex;
  padding: 0 9px;
  border-radius: 25px;
  border: 1px solid #e9e9e9;
}

@media only screen and (max-width: 767px) {
  .blog_carousel .owl-nav {
    display: none;
  }
}
.blog_carousel .owl-nav > div {
  width: 25px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #a9a9a9;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_carousel .owl-nav > div:hover {
  color: #187fc4;
}

.single_blog {
  border: 1px solid #f0f0f0;
}

.blog_content {
  padding: 19px 19px 24px 19px;
}

.blog_content h3 {
  font-size: 15px;
  text-transform: capitalize;
  line-height: 22px;
  margin-bottom: 14px;
  font-weight: 400;
  padding-bottom: 17px;
  position: relative;
  font-family: arial,sans-serif;
}

.blog_content h3 a:hover {
  color: #187fc4;
}

.blog_content h3::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #d6d6d6;
  position: absolute;
  left: 0;
  bottom: 0;
}

.date_post span {
  line-height: 22px;
  background: #187fc4;
  display: inline-block;
  padding: 0 11px;
  font-size: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-bottom: 12px;
}

.blog_desc p {
  line-height: 22px;
  font-size: 13px;
}

/* 11. blog page css here */
.blog_page_section {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_page_section.blog_padding {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_page_section.blog_padding {
    margin-bottom: 43px;
  }
}
.blog_wrapper .single_blog {
  margin-bottom: 50px;
  border: 0;
  display: flex;
}

.blog_wrapper .single_blog:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .blog_wrapper .single_blog {
    flex-direction: column;
  }
}
.blog_wrapper .blog_thumb {
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_thumb a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_thumb a img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_thumb {
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.blog_wrapper .blog_content {
  padding: 0;
}

.blog_wrapper .blog_content h3 {
  font-size: 21px;
  line-height: 27px;
  font-family: arial,sans-serif;
  font-weight: 400;
  padding: 0;
  margin-bottom: 19px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_content h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_content h3 {
    font-size: 15px;
    margin-bottom: 9px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_content h3 {
    font-size: 15px;
    margin-bottom: 9px;
    line-height: 24px;
  }
}
.blog_wrapper .blog_content h3::before {
  display: none;
}

.blog_wrapper .blog_content span {
  margin-right: 15px;
}

.blog_wrapper .blog_content span:last-child {
  margin-right: 0;
}

.blog_wrapper .blog_content span a:hover {
  color: #187fc4;
}

.blog_wrapper .blog_meta {
  margin-bottom: 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_meta {
    margin-bottom: 12px;
  }
}
.blog_wrapper .blog_meta span {
  font-size: 14px;
  line-height: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_meta {
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_meta {
    margin-bottom: 7px;
  }
}
.blog_wrapper .blog_desc {
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrapper .blog_desc {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrapper .blog_desc {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_wrapper .blog_desc {
    margin-bottom: 15px;
  }
}
.blog_wrapper .blog_desc p {
  font-size: 14px;
  line-height: 24px;
  max-width: 355px;
}

.readmore_button a {
  height: 38px;
  line-height: 40px;
  background: #eaeae6;
  border: 0;
  color: #211d1d;
  display: inline-block;
  padding: 0 25px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  border-radius: 3px;
}

.readmore_button a:hover {
  background: #187fc4;
}

.blog_sidebar_widget .widget_list > h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.blog_sidebar_widget .widget_categories ul li a {
  margin-left: 0;
}

.widget_search input {
  height: 35px;
  border: 1px solid #f0f0f0;
  background: #fff;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 15px;
}

.widget_search button {
  color: #131313;
  display: inline-block;
  background: #fae732;
  border: none;
  padding: 0 40px;
  height: 38px;
  line-height: 38px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
}

.widget_search button:hover {
  background: #187fc4;
}

.tag_widget ul li {
  display: inline-block;
}

.tag_widget ul li a {
  margin: 0 6px 5px 0;
  display: block;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 0 15px;
  line-height: 29px;
  border-radius: 3px;
}

.tag_widget ul li a:hover {
  background: #187fc4;
  border-color: #187fc4;
  color: #000;
}

.post_thumb {
  width: 55px;
  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;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.post_wrapper:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.post_info h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 14px;
  margin-bottom: 5px;
}

.post_info h3 a:hover {
  color: #fd492c;
}

.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: #187fc4;
}

.blog_categories ul li:last-child a {
  padding-bottom: 0;
}

.comments_post .post_thumb {
  width: 52px;
}

.comments_post .post_thumb img {
  border-radius: 5px;
}

.comments_post .post_info span {
  font-size: 14px;
  display: block;
  line-height: 12px;
  margin-bottom: 8px;
}

.comments_post .post_info a:hover {
  color: #fd492c;
}

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

.widget_list.widget_search,
.widget_list.widget_post {
  margin-bottom: 30px;
}

.widget_list.widget_tag {
  margin-bottom: 30px;
}

.widget_list.comments_post {
  margin-bottom: 35px;
}

.blog_pagination {
  margin-bottom: 50px;
}

.blog_pagination .pagination {
  border: 1px solid #f0f0f0;
  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*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_fullwidth {
    margin-bottom: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_fullwidth {
    margin-bottom: 46px;
  }
}
.blog_fullwidth .single_blog {
  display: inherit;
}

.blog_fullwidth .blog_thumb {
  width: 100%;
  margin-bottom: 20px;
}

.blog_fullwidth .blog_content {
  width: 100%;
  margin-left: 0;
  text-align: center;
}

.blog_fullwidth .blog_desc p {
  max-width: 100%;
}

.blog_thumb_active {
  margin-bottom: 20px;
}

.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(255, 213, 76, 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 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_sidebar {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_sidebar {
    margin-bottom: 43px;
  }
}
.blog_sidebar .blog_content h3 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar .blog_content h3 {
    margin-bottom: 10px;
  }
}
.blog_sidebar .blog_meta {
  margin-bottom: 13px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar .blog_meta {
    margin-bottom: 8px;
  }
}
.blog_sidebar .blog_desc {
  margin-bottom: 21px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar .blog_desc {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_sidebar .blog_wrapper {
    margin-bottom: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_sidebar .blog_wrapper {
    margin-bottom: 46px;
  }
}
/* 12. blog details css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_wrapper {
    margin-bottom: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_wrapper {
    margin-bottom: 45px;
  }
}
.blog_details_wrapper .blog_thumb {
  margin-bottom: 21px;
}

.blog_details_wrapper .blog_thumb::before {
  display: none;
}

.blog_details_wrapper .blog_content {
  padding: 0;
}

.blog_details_wrapper .blog_content h3 {
  font-size: 24px;
  text-transform: inherit;
  font-weight: 600;
  margin-bottom: 19px;
  line-height: 26px;
  padding-bottom: 0;
}

.blog_details_wrapper .blog_content h3::before {
  display: none;
}

.blog_details_wrapper .post_meta {
  margin-bottom: 14px;
  color: #6d6d6d;
}

.blog_details_wrapper .post_meta span a:hover {
  color: #187fc4;
}

.blog_details_wrapper .post_content > p {
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 15px;
}

.blog_details_wrapper .post_content blockquote {
  border-left: 4px solid #187fc4;
  margin: 20px 0 20px 0;
  padding: 0 20px;
  font-style: italic;
}

.blog_details_wrapper .social_sharing {
  display: flex;
}

.blog_details_wrapper .social_sharing h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 20px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .blog_details_wrapper .social_sharing h3 {
    margin-right: 12px;
  }
}
.blog_details_wrapper .social_sharing ul li {
  display: inline-block;
}

.blog_details_wrapper .social_sharing ul li a {
  background: #e6e6e6;
  border-radius: 100%;
  display: inline-block;
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  margin-right: 5px;
  text-align: center;
  width: 28px;
}

.blog_details_wrapper .social_sharing ul li a:hover {
  color: #ffffff;
  background: #187fc4;
}

@media only screen and (max-width: 767px) {
  .blog_details_wrapper .social_sharing ul li a {
    margin-right: 3px;
  }
}
.blog_details_wrapper .social_sharing ul li:first-child a {
  padding-left: 0;
  border-left: 0;
}

.entry_content {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 26px;
  margin-bottom: 41px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .entry_content {
    flex-direction: column;
  }
}
.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:hover {
  color: #187fc4;
}

.comments_box {
  margin-bottom: 40px;
  border-top: 1px solid #f0f0f0;
  padding-top: 17px;
}

.comments_box h3 {
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 500;
  line-height: 28px;
}

.comment_list {
  overflow: hidden;
  margin-bottom: 30px;
}

.comment_list:last-child {
  margin-bottom: 0;
}

.comment_list .comment_thumb img {
  border-radius: 5px;
}

.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: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.comment_list .comment_content h5 a:hover {
  color: #187fc4;
}

.comment_list .comment_content span {
  line-height: 18px;
  margin-bottom: 8px;
  font-size: 12px;
  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: #333;
  display: block;
}

.comment_reply a:hover {
  background: #187fc4;
  color: #3a3a3a;
}

.comments_form h3 {
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 500;
  line-height: 28px;
}

.comments_form p {
  font-size: 14px;
  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 {
  color: #3e444a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.comments_form form textarea {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  margin-bottom: 10px;
  resize: none;
  padding: 10px;
}

.comments_form form input {
  width: 100%;
  height: 40px;
  border: 1px solid #f0f0f0;
  margin-bottom: 15px;
  padding: 0 20px;
}

.comments_form form button {
  border: 0;
  line-height: 36px;
  background: #fae732;
  font-weight: 500;
}

.comments_form form button:hover {
  background: #187fc4;
}

.comment_list.list_two {
  padding-left: 50px;
}

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

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

.related_thumb {
  margin-bottom: 20px;
}

@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 h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 5px;
}

.related_content h3 a {
  color: #333;
}

.related_content h3 a:hover {
  color: #187fc4;
}

.related_content span {
  font-size: 13px;
  line-height: 17px;
}

.related_content span i {
  margin-right: 3px;
}

.blog_details {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details.blog_padding {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details.blog_padding {
    margin-bottom: 43px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details .blog_sidebar {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details .blog_sidebar {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .single_related {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_related.column_3 {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .single_related.column_3 {
    margin-bottom: 0;
  }
}
/*blog details css end*/
/* 27. coming-soon css here */
.coming_soon_area {
  height: 100vh;
  background-repeat: no-repeat;
  /* background-attachment: scroll; */
  /* background-position: center center; */
  /* background-size: cover; */
  /* background-image: url(../img/bg/bg-slider0.png); */
  position: relative;
  display: flex;
  align-items: center;
  background: #ffeb3b;
}

.coming_soon_area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.15;
}

.coming_soon_title {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .coming_soon_title {
    margin-bottom: 36px;
  }
}
.coming_soon_title h2 {
  font-size: 37px;
  text-transform: capitalize;
  color: #353333;
  font-weight: 700;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .coming_soon_title h2 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 11px;
  }
}
.coming_soon_title p {
  color: #565555;
  font-size: 15px;
  max-width: 730px;
  margin: 0 auto;
  line-height: 24px;
}

.coming_soon_timing {
  text-align: center;
  margin: 57px 0 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coming_soon_timing {
    margin: 50px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .coming_soon_timing {
    margin: 34px 0 22px;
  }
}
.single_countdown {
  display: inline-block;
  margin-right: 35px;
}

@media only screen and (max-width: 479px) {
  .single_countdown {
    margin-right: 20px;
  }
}
.single_countdown:last-child {
  margin-right: 0;
}

.coming_soon_newsletter {
  text-align: center;
}

.coming_soon_newsletter .subscribe_form {
  margin-top: 0;
}

.coming_soon_newsletter .subscribe_form form {
  margin: 0 auto;
  width: 600px;
  background: inherit;
  border: 1px solid #3a3838;
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .coming_soon_newsletter .subscribe_form form {
    width: 100%;
  }
}
.coming_soon_newsletter .subscribe_form form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
}

.coming_soon_newsletter .subscribe_form form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}

.coming_soon_newsletter .subscribe_form form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}

.coming_soon_newsletter .subscribe_form form input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}

.coming_soon_newsletter .subscribe_form form input {
  color: #272727;
  font-size: 14px;
  padding: 0 120px 0 28px;
  background: inherit;
  height: 48px;
}

.coming_soon_newsletter .subscribe_form form button {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background: inherit;
  color: #1f1e1e;
}

.coming_soon_newsletter .subscribe_form form button:hover {
  color: #0e0e0e;
}

.coming_soon_newsletter .subscribe_form form button::before {
  content: "";
  background: #656464;
  width: 2px;
  position: absolute;
  bottom: 8px;
  top: 8px;
  left: 0;
}

.coming_soon_newsletter h3 {
  font-size: 16px;
  color: #333232;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.coming_soon_newsletter .mailchimp-error {
  text-align: center;
  color: #ffffff;
}

.coming_soon_newsletter .mailchimp-success {
  text-align: center;
  color: #ffffff;
}

.coming_soon_logo {
  margin-bottom: 52px;
}

@media only screen and (max-width: 479px) {
  .coming_soon_logo {
    margin-bottom: 35px;
  }
}
.coming_soon_link {
  text-align: center;
}

.coming_soon_link ul li {
  display: inline-block;
  margin-right: 20px;
}

.coming_soon_link ul li:last-child {
  margin-right: 0;
}

.coming_soon_link ul li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  padding: 0 50px;
  display: inline-block;
  background: #187fc4;
  color: #333;
  border-radius: 5px;
}

.coming_soon_link ul li a:hover {
  background: #333;
  color: #ffffff;
}

.countdown_number {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: #383838;
  margin-bottom: 8px;
  width: 60px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #212020;
  border-radius: 4px;
  background: #ffffff;
}

@media only screen and (max-width: 479px) {
  .countdown_number {
    width: 55px;
    font-size: 20px;
  }
}
.countdown_title {
  font-size: 13px;
  text-transform: capitalize;
  color: #484747;
}

/* 28. instagram css here */
.instagram-item {
  position: relative;
}

.instagram-item:hover::before {
  opacity: 0.5;
}

.instagram-item:hover .instagram-hvr-content {
  opacity: 1;
  visibility: visible;
}

.instagram-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}

.instagram-hvr-content {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.instagram-hvr-content span {
  margin-right: 7px;
  font-size: 16px;
  color: #fff;
}

.instagram-hvr-content span:last-child {
  margin-right: 0;
}

.instagram-hvr-content span i {
  margin-right: 7px;
}

@media only screen and (max-width: 767px) {
  .shop-product__variation-image .section_title h2 {
    font-size: 18px;
  }
}
.instagram-wrap button {
  position: absolute;
  top: -53px;
  right: 0;
  font-size: 27px;
  border: 0;
  background: #fff;
  color: #a9a9a9;
}

.instagram-wrap button:hover {
  color: #187fc4;
}

@media only screen and (max-width: 767px) {
  .instagram-wrap button {
    top: -42px;
    font-size: 24px;
  }
}
.instagram-wrap button.prev_arrow {
  margin-right: 28px;
}

@media only screen and (max-width: 767px) {
  .instagram-wrap button.prev_arrow {
    margin-right: 23px;
  }
}
/*----------------------------------------------
    Preloader
----------------------------------------------*/
.loader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999999;
}

.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 5px solid #ebebec;
  border-radius: 50%;
}

.loader .loader-container:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-top: 4px solid #e23131;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}

.loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/* common css */
.container {
  max-width: 1392px;
}

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

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
span.span-menu {
  background: red none repeat scroll 0 0;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 500;
  padding: 0 4px;
  position: absolute;
  top: 1px;
  letter-spacing: 0.5px;
  color: #fff;
  right: 5px;
  line-height: 12px;
}
span.span-menu.hot {
  background: red none repeat scroll 0 0;
}
span.span-menu.hot:before {
  border-color: red transparent transparent red;
}
span.span-menu.new {
  background: #3b5999 none repeat scroll 0 0;
}
span.span-menu.new:before {
  border-color: #3b5999 transparent transparent #3b5999;
}
span.span-menu.sale {
  background: #7fbc1e none repeat scroll 0 0;
}
span.span-menu.sale:before {
  border-color: #7fbc1e transparent transparent #7fbc1e;
}
span.span-menu:before {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border: 3px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: red transparent transparent red;
}

ul.follow_link li {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  height: 33px;
  width: 33px;
  margin: 0 2px;
  border-radius: 50%;
  border: 2px solid #fff;
  text-align: center;
  position: relative;
  box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 5px;
}
ul.follow_link li.facebook {
  /*background-color: #3b5999;*/
}
ul.follow_link li.facebook .social-icons__link i {
  content: "";
}
ul.follow_link li.twitter {
  /*background-color: #00aced;*/
}
ul.follow_link li.twitter .social-icons__link i {
  content: "";
}
ul.follow_link li.pinterest {
  /*background-color: #cb2027;*/
}
ul.follow_link li.pinterest .social-icons__link i {
  content: "";
}
ul.follow_link li.instagram {
  /*background-color: #cc2366;*/
}
ul.follow_link li.instagram .social-icons__link i {
  content: "";
}
ul.follow_link li.tumblr {
  /*background-color: #f26522;*/
}
ul.follow_link li.tumblr .social-icons__link i {
  content: "";
}
ul.follow_link li.youtube {
  /*background-color: #d12121;*/
}
ul.follow_link li.youtube .social-icons__link i {
  content: "";
}
ul.follow_link li a {
  width: 35px;
  height: 35px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  line-height: 23px;
}
ul.follow_link li a i {
  display: inline-block;
  vertical-align: middle;
  font-family: FontAwesome;
  font-weight: 400;
  position: relative;
  font-size: 14px;
  color: #fff;
  position: relative;
  top: 3px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.widget-breabcrums {
  margin-bottom: 30px;
}
.widget-breabcrums .breadcrumb_content {
  text-align: left;
}
.widget-breabcrums .breadcrumb_content ul li:first-child {
  padding-left: 0;
}

.newletter-container ul.follow_link {
  margin-bottom: 20px;
}

/* common css */
/* product list full width */
.product-list-full-width .product_thumb a.primary_img,
.product-list-full-width .product_thumb a.secondary_img,
.product-list .product_thumb a.primary_img,
.product-list .product_thumb a.secondary_img {
  position: relative;
}
.product-list-full-width .product_thumb .secondary_img,
.product-list .product_thumb .secondary_img {
  display: none;
}
.product-list-full-width .single_product:hover .product_thumb a.primary_img,
.product-list .single_product:hover .product_thumb a.primary_img {
  display: none;
}
.product-list-full-width .single_product:hover .product_thumb a.secondary_img,
.product-list .single_product:hover .product_thumb a.secondary_img {
  display: block;
}

/* product list full width */
/* carousel-slider */
.carousel-slider {
  padding: 0 50px;
  min-height: 500px;
}
.carousel-slider .carousel-item a {
  font-size: 16px;
  font-weight: 400;
  margin-top: 45px;
  color: #333;
  height: 48px;
  line-height: 47px;
  padding: 0 25px;
  display: inline-block;
  font-family: "Lato", sans-serif;
  border-radius: 5px;
  background-color: #187fc4;
}
.carousel-slider .carousel-item h4 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: arial,sans-serif;
  max-width: 355px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.carousel-slider .carousel-control-prev {
  left: -57px;
}
.carousel-slider .carousel-control-next {
  right: -57px;
}
.carousel-slider .carousel-control-prev,
.carousel-slider .carousel-control-next {
  color: #4b4b4b;
}

/* carousel-slider */
/* shopping_cart_area */
.shopping_cart_area {
  padding-top: 40px;
}
.shopping_cart_area h1 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 300;
}

/* shopping_cart_area */
/* product - detail page */
.vendor-box {
  margin-bottom: 10px;
}
.vendor-box p {
  margin-bottom: 0;
}

/* product - detail page */
/* widget */
.widget_categories .list-group-item {
  position: relative;
  border: 0;
  padding: 0.75rem 0rem;
}
.widget_categories .list-group-item[data-toggle=collapse]::before {
  position: absolute;
  right: 10px;
  top: 10px;
  content: "-";
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
}
.widget_categories .list-group-item[data-toggle=collapse].collapsed::before {
  content: "+";
}
.widget_categories .list-group-level1 .list-group-item {
  padding-left: 10px;
}
.widget_categories .list-group-level2 .list-group-item {
  padding-left: 20px;
}

.widget_products .view-all {
  text-align: right;
}
.widget_products .view-all a {
  background: 0 0;
  color: #7a7a7a;
  text-transform: capitalize;
  position: relative;
  float: right;
  padding: 10px 31px 15px 0;
  border: none;
  letter-spacing: 0;
  margin: 0;
  font-size: 13px;
}
.widget_products .view-all a i {
  top: 11px;
  position: absolute;
  right: 5px;
  color: #333333;
  font-size: 16px;
}
.widget_products .item {
  display: flex;
  margin-bottom: 10px;
}
.widget_products .item .span-sale {
  background: red none repeat scroll 0 0;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 500;
  padding: 0 4px;
  position: absolute;
  top: 1px;
  letter-spacing: 0.5px;
  color: #fff;
  right: 5px;
  line-height: 12px;
  background: red none repeat scroll 0 0;
}
.widget_products .item .item-title {
  padding: 10px;
}
.widget_products .item .item-title h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.widget_products .item .item-title .price_box .current_price {
  font-size: 15px;
}
.widget_products .item .item-title .price_box .old_price {
  font-size: 13px;
}
.widget_products .item .item-thumb {
  position: relative;
  max-width: 70px;
}
.widget_products .item .item-thumb img {
  max-width: 100%;
}

/* widget */
/* product detail */
.product-countdown .call-action-hurry {
  padding: 5px;
  color: red;
  font-weight: 700;
  animation: blink-animation 1s steps(5, start) infinite;
}
.product-countdown .count-down-box {
  margin: 10px 0;
  padding: 10px;
}
@media only screen and (max-width: 479px) {
  .product-countdown .countdown_number {
    width: 55px;
    font-size: 20px;
  }
}
.product-countdown .countdown_number {
  font-weight: bold;
}
.product-countdown .countdown_number,
.product-countdown .countdown_title {
  color: #1b1b1b;
  border: 0;
  text-align: center;
}

/* product detail */
/* header */
header {
  padding-top: 10px;
}
header .logo-mobile {
  display: none;
}
header .logo img {
  max-width: 250px;
}
header .header_top {
  background: none;
}
header .header_top .phone-contact {
  font-size: 17px;
  color: #2d2d2d;
}
header .header_top .phone-contact header .header_top .follow_us span i {
  font-size: 24px;
  margin-right: 5px;
}
header .header_top .email-contact {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  color: #2d2d2d;
  font-weight: 700;
}
header .header_top .email-contact .call-img {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: white;
}
header .header_top .email-contact .call-img .icon {
  fill: #2d2d2d;
  margin-top: -3px;
}
header .header_top .follow_us {
  padding-left: 15px;
}
header .header_top .follow_us ul {
  width: 250px;
  text-align: center;
}
header .header_top .follow_us span {
  display: none;
}
header .header_top .top_right {
  padding-right: 15px;
}
header .header_top a.my-account-button {
  background: #fe0008;
  border-radius: 40px;
  padding: 0px 30px;
  margin-top: 10px;
  height: 35px;
  line-height: 35px;
  color: #fff;
}
header .header_top .follow_us {
  padding-top: 5px;
}
header .header_top .follow_us span {
  background: #fbe657;
  height: 23px;
  line-height: 22px;
  color: #382a2e;
  padding: 0 5px;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 9px;
  border-left: 4px solid #403d3e;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-weight: bold;
}
header .header_middle {
  padding: 0px;
}
header .header_middle .middel_right {
  justify-content: space-between;
}
header .header_middle .middel_right .middel_right {
  justify-content: space-between;
}
header .header_middle .middel_right .main_menu {
  margin-right: 20px;
}
header .header_middle .middel_right .main_menu .logo-mobile {
  display: none;
}
header .header_middle .middel_right .main_menu .mega_menu .mega_menu_inner ul > li {
  min-width: 150px;
}
header .header_middle .middel_right .main_menu > nav {
  background: white;
  border-radius: 25px;
  padding: 0 20px;
  box-shadow: 4px 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #f6f6f6;
}
header .header_middle .middel_right .main_menu > nav ul > li {
  position: relative;
}
header .header_middle .middel_right .main_menu > nav ul > li a {
  padding: 10px 10px;
}
header .header_middle .middel_right .main_menu > nav ul > li:last-child > a {
  padding-right: 0;
}

header.home-page {
  margin-bottom: 50px;
  background: none;
  height: 1000px;
}
header.home-page .slider-title {
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 350px;
  width: 800px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
header.home-page .slider-title .buynow-btn {
  background: #fdfdfd;
  box-shadow: none;
  color: #131313;
  display: inline-block;
  padding: 8px 42px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 17px;
}
header.home-page .slider-title .buynow-btn:hover {
  background: #fe0f17;
  color: white;
}
header.home-page .slider-title h4 {
  width: 100%;
  font-size: 55px;
  color: white;
  font-family: "Otomanopee One", sans-serif;
  text-shadow: 1px 1px 1px #332e2e;
  letter-spacing: 3px;
  margin: 40px 0 40px;
}
header.home-page .slider-title div.sale-off {
  display: inline-block;
  margin-top: 30px;
  background: #fbe657;
  padding: 5px 20px;
  text-transform: capitalize;
  position: relative;
}
header.home-page .slider-title div.sale-off span.icon-left:before {
  content: "";
  position: absolute;
  left: -9px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 10px solid #fbe657;
  border-bottom: 13px solid transparent;
  top: 0;
}
header.home-page .slider-title div.sale-off span.icon-left:after {
  content: "";
  position: absolute;
  left: -9px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-right: 10px solid #fbe657;
  border-bottom: 0 solid transparent;
  bottom: 0;
}
header.home-page .slider-title div.sale-off span.icon-right:before {
  content: "";
  position: absolute;
  right: -9px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 10px solid #fbe657;
  border-bottom: 13px solid transparent;
  top: 0;
}
header.home-page .slider-title div.sale-off span.icon-right:after {
  content: "";
  position: absolute;
  right: -9px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 10px solid #fbe657;
  border-bottom: 0 solid transparent;
  bottom: 0;
}
header.home-page .logo img {
  max-width: auto;
}
header.home-page .header_wishlist a,
header.home-page .mini_cart_wrapper > a {
  color: white;
}
header.home-page .header_wishlist span.wishlist_quantity {
  background: #fbe657;
  color: #000;
}
header.home-page .header_top a.my-account-button {
  background: #fbe657;
  color: #4b4b4b;
}
header.home-page .header_top .phone-contact {
  font-size: 17px;
  color: #ffffff;
}
header.home-page .header_top .email-contact {
  color: #ffffff;
  font-weight: 400;
}
header.home-page .header_top .email-contact .call-img {
  color: white;
}
header.home-page .header_top .email-contact .call-img .icon {
  fill: white;
}
header.home-page .header_middle {
  padding-bottom: 10px;
  background: url(../img/bg/service-pattern.png) bottom no-repeat;
  padding-top: 20px;
}
header.home-page .header_middle .middel_right .main_menu .mega_menu .mega_menu_inner ul > li {
  min-width: 150px;
}
header.home-page .header_middle .middel_right .main_menu > nav {
  background: white;
}
header.home-page .header_middle .middel_right .main_menu > nav ul > li {
  position: relative;
}
header.home-page .canvas_open {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
header.home-page .canvas_open a {
  margin: 0 10px;
}
header.home-page .canvas_open .logo img {
  max-width: 120px;
}
header.home-page #hero-slider {
  position: absolute;
  top: 0;
  width: 100%;
}
header.home-page #hero-slider .carousel-control-prev,
header.home-page #hero-slider .carousel-control-next {
  opacity: 0;
}
header.home-page #hero-slider:hover .carousel-control-prev {
  opacity: 1;
  left: 20px;
}
header.home-page #hero-slider:hover .carousel-control-next {
  opacity: 1;
  right: 20px;
}
header.home-page .header_middle .middel_right {
  justify-content: space-between;
}

@media only screen and (min-width: 1600px) {
  header.home-page .slider-title {
    top: 30%;
  }
}
@media only screen and (max-width: 1400px) {
  .hidden-lg {
    display: none !important;
  }
}
@media only screen and (max-width: 1270px) {
  header .header_middle .middel_right .main_menu > nav ul > li a {
    padding: 10px 7px;
  }
}
@media only screen and (max-width: 1200px) {
  #main-slider.gray-bg {
    padding: 45px 20px;
  }
  #main-slider.gray-bg .carousel-item h4 {
    font-size: 20px;
  }
  #main-slider.gray-bg a.button {
    margin-top: 20px;
  }
  #main-slider.gray-bg .single_countdown {
    display: inline-block;
    margin-right: 15px;
  }
  #main-slider.gray-bg .countdown_number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #383838;
    margin-bottom: 8px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #212020;
    border-radius: 4px;
    background: #ffffff;
  }

  .container {
    max-width: 1140px;
  }

  .slider-title {
    top: 250px !important;
    padding: 25px 0;
  }
  .slider-title h4 {
    font-size: 30px !important;
  }

  .hidden-md {
    display: none !important;
  }

  header.home-page .header_middle .middel_right .main_menu nav ul li:first-child > a {
    padding-left: 0;
  }
  header.home-page .header_middle .middel_right .main_menu nav ul li a {
    font-size: 12px;
    padding: 10px 5px;
  }
}
@media only screen and (max-width: 992px) {
  .sidebar_banner .banner_thumb {
    margin-top: 10px !important;
  }

  header.header-2 .header_middle .middel_right {
    justify-content: flex-end;
  }

  .header_bottom_container .categories_menu {
    margin-top: 10px;
  }

  .main_menu nav {
    display: none;
  }

  .slider-title {
    display: none;
  }

  .product-list-full-width .grid_list .product_thumb {
    flex: 0 0 36.666667%;
    min-width: 36.666667%;
  }
  .product-list-full-width .single_product:hover .product_thumb a.primary_img {
    display: none;
  }
  .product-list-full-width .single_product:hover .product_thumb a.secondary_img {
    display: block;
  }
  .product-list-full-width .left_caption {
    width: 58%;
    padding-right: 20px;
    border-right: 1px solid #ddd;
    margin-right: 20px;
  }

  .breadcrumb_content {
    text-align: left;
  }

  header {
    margin-bottom: 30px;
  }
  header .main_menu .logo-mobile {
    display: block;
  }
  header .main_menu .logo-mobile img {
    max-width: 250px;
  }

  header.home-page {
    margin-bottom: 30px;
  }
  header.home-page .canvas_open {
    justify-content: flex-end;
  }
  header.home-page .canvas_open a {
    color: #ffffff;
  }
  header.home-page .main_menu .logo-mobile img {
    max-width: 200px;
  }
  header.home-page .header_wishlist a,
header.home-page .mini_cart_wrapper > a,
header.home-page .canvas_open a {
    color: #fff;
  }
  header.home-page .header_middle {
    padding: 0;
    margin-top: -34px;
  }
  header.home-page .header_middle .middel_right {
    justify-content: center;
  }

  .sidebar_widget {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .header_bottom .categories_menu {
    display: none;
  }

  #main-slider.gray-bg {
    padding: 15px 20px;
  }
  #main-slider.gray-bg .single_countdown {
    display: inline-block;
    margin-right: 15px;
  }
  #main-slider.gray-bg .countdown_number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #383838;
    margin-bottom: 8px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #212020;
    border-radius: 4px;
    background: #ffffff;
  }
  #main-slider.gray-bg .carousel-slider .carousel-item h4 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .sidebar_widget {
    display: block;
  }

  .shipping_area {
    display: none;
  }

  .section_title ul.product_tab_button li {
    margin-right: 0px;
  }

  .section_title h2 span {
    width: 100%;
    display: block;
    text-align: center;
  }

  .canvas_open {
    justify-content: flex-end;
  }

  .footer_logo {
    margin-bottom: 20px;
  }
  .footer_logo a img {
    max-width: 200px;
  }

  header .main_menu .logo-mobile {
    display: block !important;
  }
  header .main_menu .logo-mobile img {
    max-width: 150px;
  }

  header.home-page .header_wishlist a,
header.home-page .mini_cart_wrapper > a,
header.home-page .canvas_open a {
    color: #ffffff;
  }
  header.home-page .header_middle {
    padding-top: 0;
  }
  header.home-page .logo-mobile {
    display: block !important;
  }
  header.home-page .logo-mobile img {
    max-width: 150px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 689px) {
  .header_bottom_container .categories_menu {
    margin-top: 20px;
  }

  .bottom_two {
    margin-bottom: 0px;
  }

  header .logo-mobile img {
    max-width: 150px !important;
    margin-right: 20px;
  }

  header.home-page .logo-mobile img {
    max-width: 100px !important;
  }

  .slider_section {
    margin-top: 0 !important;
  }
  .slider_section .sidebar_banner {
    display: none;
  }

  header.header_area {
    margin-bottom: 0 !important;
  }

  #main-slider {
    padding: 10px 20px;
  }
  #main-slider .carousel-item {
    text-align: center;
  }
  #main-slider .carousel-item h4,
#main-slider .carousel-item p,
#main-slider .carousel-item .product-countdown {
    display: none;
  }
  #main-slider .carousel-control-prev {
    left: 0;
  }
  #main-slider .carousel-control-next {
    right: 0;
  }

  .carousel-control-next svg,
.carousel-control-prev svg {
    width: 25px;
  }

  .product_area,
.product_detail_area,
.new_product_area {
    display: none;
  }

  .title-center {
    font-size: 20px;
  }

  .section_title ul.product_tab_button li a {
    padding: 0 5px;
    font-size: 12px;
  }

  .section_title h2 span {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 650px) {
  .newletter-popup .row .col-sm-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .newletter-popup .row .col-sm-6:first-child {
    display: none;
  }
  .newletter-popup .newletter-title h2 {
    font-size: 15px;
    margin: 0;
  }
}
@media only screen and (max-width: 500px) {
  header.home-page {
    margin-bottom: 0;
  }

  .header_wishlist,
.mini_cart_wrapper {
    margin-right: 10px;
  }
  .header_wishlist a span,
.mini_cart_wrapper a span {
    font-size: 22px;
  }
}

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