@charset "UTF-8";
/*===================================================================
[Table Of Content]

    * Imported CSS
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Slider CSS
    * Team CSS
    * Brand Logo CSS
    * Form CSS
    * Blog CSS
    * Contact CSS
    * Footer CSS

=====================================================================*/
/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/
body {
  color: #474747;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media only screen and (max-width: 1199px) {
  body {
    font-size: 17px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: #eb3e32;
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:hover, a:active, a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #be1e13;
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

p {
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

:active,
:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
}

::-moz-selection {
  background: #eb3e32;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #eb3e32;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #eb3e32;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #eb3e32;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
}

iframe {
  border: none !important;
}

textarea:focus, textarea:active, input:focus, input:active {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

table p {
  margin-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/
/*-------- Background Style Css --------*/
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}
.bg-img-tr {
  background: no-repeat top right;
}
.bg-img-tl {
  background: no-repeat top left;
}
.bg-img-br {
  background: no-repeat bottom right;
}
.bg-img-bl {
  background: no-repeat bottom left;
}
.bg-img-nr {
  background: no-repeat center center;
  background-size: contain;
}
.bg-img-rc {
  background: no-repeat;
  background-size: contain;
}

.parallax {
  background-size: cover;
  background-repeat: no-repeat;
}

/*-------- Container Style Css --------*/
.wrapper {
  overflow-x: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

/*-------- Gutter Style Css --------*/
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter .col,
.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-50 {
  margin-right: -25px;
  margin-left: -25px;
}
.row-gutter-50 .col,
.row-gutter-50 [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

/*-------- Spacing Style Css --------*/
.container,
.container-fluid {
  padding-bottom: 80px;
  padding-top: 110px;
}
@media only screen and (max-width: 1199px) {
  .container,
.container-fluid {
    padding-bottom: 54px;
    padding-top: 85px;
  }
}

/*-------- Button Style Css --------*/
.btn-theme {
  background-color: #eb3e32;
  border: 2px solid #eb3e32;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 22px 62px 21px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .btn-theme {
    font-weight: 500;
    padding: 14px 28px 14px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .btn-theme {
    padding: 12px 26px 13px;
    font-size: 15px;
  }
}
.btn-theme:hover {
  background-color: #fff;
  border-color: #eb3e32;
  color: #eb3e32;
}
.btn-theme.btn-sm {
  font-weight: 500;
  padding: 14px 28px 13px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .btn-theme.btn-sm {
    padding: 11px 24px 11px;
    font-size: 15px;
  }
}

.btn-theme-border {
  background-color: transparent;
  border: 2px solid #eb3e32;
  color: #eb3e32;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 21px 62px 22px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .btn-theme-border {
    font-weight: 500;
    padding: 14px 28px 14px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .btn-theme-border {
    padding: 12px 26px 13px;
    font-size: 15px;
  }
}
.btn-theme-border:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}

.btn-link {
  color: #333131;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}
.btn-link:hover {
  color: #eb3e32;
  text-decoration: underline;
}

/*-------- Z Index Style Css --------*/
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

/*-------- Fancybox Images Style Css --------*/
.fancybox-slide {
  cursor: url("../img/icons/cancel-white.webp"), auto;
}

/*-------- Page Header Style Css --------*/
.page-header-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 140px 0 146px;
}
@media only screen and (max-width: 1199px) {
  .page-header-area {
    padding: 120px 0 126px;
  }
}
@media only screen and (max-width: 991px) {
  .page-header-area {
    padding: 100px 0 106px;
  }
}

.page-header-content {
  text-align: center;
}
.page-header-content .title {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 58px;
  letter-spacing: 0;
  margin: 0 0 22px 0;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .page-header-content .title {
    font-size: 48px;
    margin: 0 0 14px 0;
  }
}
@media only screen and (max-width: 991px) {
  .page-header-content .title {
    font-size: 40px;
    margin: 0 0 8px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 479.98px) {
  .page-header-content .title {
    font-size: 30px;
  }
}

.breadcrumb-area {
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-area .breadcrumb li {
  color: #eb3e32;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-area .breadcrumb li {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-area .breadcrumb li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-area .breadcrumb li {
    font-size: 16px;
  }
}
.breadcrumb-area .breadcrumb li a {
  color: #fff;
}
.breadcrumb-area .breadcrumb li a:hover {
  color: #eb3e32;
}
.breadcrumb-area .breadcrumb .breadcrumb-sep {
  letter-spacing: -2.5px;
  margin: 0 12px 0 11px;
  vertical-align: 0;
}

/*-------- Pagination Style Css --------*/
.pagination-items {
  margin-top: 32px;
  margin-bottom: 30px;
}
.pagination-items .pagination li {
  display: inline-block;
}
.pagination-items .pagination li + li {
  margin-left: 20px;
}
.pagination-items .pagination li a {
  background-color: transparent;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  color: #9e9e9e;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  line-height: 48px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  text-align: center;
  width: 50px;
}
.pagination-items .pagination li a.active {
  border-color: #eb3e32;
  color: #eb3e32;
}
.pagination-items .pagination li a:hover {
  border-color: #eb3e32;
  color: #eb3e32;
}

/*-------- Custom Font Style Css --------*/
.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

/*-------- Custom Color Style Css --------*/
.bg-theme-color {
  background-color: #eb3e32 !important;
}

.bg-color-f2 {
  background-color: #f2f2f2;
}

/*-------- Margin & Padding Custom Style Css --------*/
.m--0 {
  margin: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml--0 {
  margin-left: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

@media only screen and (max-width: 991px) {
  .mt-md-30 {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 575px) {
  .mt-xs-30 {
    margin-top: 30px !important;
  }
}
.p--0 {
  padding: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

@media only screen and (max-width: 1199px) {
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
}
.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  bottom: -60px;
  background-color: #eb3e32;
  color: #fff;
  position: fixed;
  right: 2%;
  display: block;
  padding: 0;
  width: 35px;
  height: 35px;
  border-radius: 0;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  z-index: 999;
}
@media only screen and (max-width: 991px) {
  .scroll-to-top {
    right: 2%;
    padding: 0 0 2px 0;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 23px;
  }
}
.scroll-to-top span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.scroll-to-top:hover {
  background-color: #333131;
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .scroll-to-top.show {
    bottom: 25px;
  }
}
.scroll-to-top.show:hover {
  opacity: 1;
}

.fixed {
  position: fixed;
  display: block;
  right: 0;
  top: 150px;
  padding-right: 230px !important;
}

/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/
.main-menu > li {
  margin-right: 14px;
  padding: 3px 0;
}
.main-menu > li:last-child {
  margin-right: 0;
}
.main-menu > li > a {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  padding: 7px 25px;
  position: relative;
}
.main-menu > li:hover > a, .main-menu > li.active > a {
  color: #eb3e32;
}
.main-menu > li:hover > a:before, .main-menu > li.active > a:before {
  color: #eb3e32;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}
.has-submenu > a {
  position: relative;
}
.has-submenu > a:before {
  content: "";
  color: #fff;
  font-size: 14px;
  font-family: "FontAwesome";
  position: absolute;
  right: -3px;
  top: 0;
  line-height: 49px;
}
.has-submenu:hover > .submenu-nav {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav {
  background-color: #111;
  border: none;
  border-bottom: none;
  padding: 15px 0 15px;
  position: absolute;
  left: -15px;
  top: 100%;
  opacity: 0;
  min-width: 230px;
  pointer-events: none;
  margin-top: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  visibility: hidden;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav {
    min-width: 210px;
    left: 0;
  }
}
.has-submenu .submenu-nav:before {
  content: "";
  position: absolute;
  height: 56px;
  width: 100%;
  left: 0;
  bottom: 100%;
}
.has-submenu .submenu-nav > li {
  padding: 10px 25px;
}
.has-submenu .submenu-nav > li a {
  color: #aaa;
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: inherit;
  text-transform: capitalize;
}
.has-submenu .submenu-nav > li a:hover {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover > a {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover:after {
  color: #fff !important;
}
.has-submenu .submenu-nav > li.has-submenu {
  position: relative;
}
.has-submenu .submenu-nav > li.has-submenu a:before {
  display: none;
}
.has-submenu .submenu-nav > li.has-submenu:hover > .submenu-nav {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav > li.has-submenu:after {
  content: "";
  color: #474747;
  font-size: 15px;
  line-height: 1;
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -57%);
  -webkit-transform: translate(0%, -57%);
  -moz-transform: translate(0%, -57%);
  -ms-transform: translate(0%, -57%);
  -o-transform: translate(0%, -57%);
}
.has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  left: 100%;
  top: 0;
}
.has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 50px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav-mega {
    width: 830px;
  }
}
.has-submenu .submenu-nav-mega .mega-menu-item {
  padding: 0;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  border-right: 0;
}
.has-submenu .submenu-nav-mega.colunm-two .mega-menu-item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.has-submenu.full-width {
  position: static;
}

/* Responsive Mobile Menu */
.res-mobile-menu {
  margin: 0;
}
.res-mobile-menu .slicknav_btn {
  display: none;
}
.res-mobile-menu .slicknav_menu {
  background-color: transparent;
  padding: 0;
}
.res-mobile-menu .slicknav_nav {
  display: block !important;
  padding: 26px 40px 50px;
  margin: 0;
}
.res-mobile-menu .slicknav_nav li a {
  margin: 0;
  background-color: transparent;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  padding: 17px 0;
  letter-spacing: 0.4px;
  color: #fff;
  opacity: 1;
  position: relative;
}
.res-mobile-menu .slicknav_nav li a .slicknav_arrow {
  font-size: 12px;
  right: 0;
  position: absolute;
  top: 50%;
  margin: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.res-mobile-menu .slicknav_nav li a:hover {
  color: inherit;
  background-color: transparent;
}
.res-mobile-menu .slicknav_nav li img {
  display: none;
}
.res-mobile-menu .slicknav_nav li div {
  display: none;
}
.res-mobile-menu .slicknav_nav li ul {
  margin: 0;
  padding-left: 0;
}
.res-mobile-menu .slicknav_nav li ul li a {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 12px 0;
  padding-left: 15px;
}
.res-mobile-menu .slicknav_nav li ul li.slicknav_parent a {
  color: #fff;
}
.res-mobile-menu .slicknav_nav li ul li ul li a {
  font-size: 14px;
  padding-left: 40px;
}
.res-mobile-menu .slicknav_nav .slicknav_parent .slicknav_item a {
  padding-left: 0;
}
.res-mobile-menu .slicknav_nav .slicknav_parent .slicknav_item a span + span {
  background-color: #5465FF;
  color: #fff;
  width: 36px;
  font-size: 12px;
  display: inline-block;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 50px;
  position: relative;
  top: -20px;
  right: 20px;
}
.res-mobile-menu .slicknav_nav .slicknav_open a > a {
  color: #eb3e32;
}
.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item {
  position: relative;
}
.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item .slicknav_arrow {
  color: #eb3e32;
  background-color: transparent;
}
.res-mobile-menu .slicknav_nav .slicknav_open > ul > li.slicknav_open > a > a {
  color: #eb3e32;
}

/*
-----------------------------------------------------------------------
  Offcanvas Header
-----------------------------------------------------------------------
*/
.off-canvas-wrapper.offcanvas {
  background-color: #fff;
  width: 310px;
}
@media only screen and (max-width: 991px) {
  .off-canvas-wrapper.offcanvas {
    width: 310px;
  }
}
.off-canvas-wrapper .offcanvas-header {
  padding: 0;
}
.off-canvas-wrapper .offcanvas-body {
  padding: 0 0 20px;
  scrollbar-width: auto;
  scrollbar-color: #1f1f1f #292929;
  /* Chrome, Edge, and Safari */
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar {
  width: 2px;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-track {
  background: #292929;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #1f1f1f;
  border-radius: 2px;
  border: 2px solid #1f1f1f;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #eb3e32;
  opacity: 1;
  border-radius: 0;
  color: #fff;
  background-image: none;
  padding: 0 20px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.off-canvas-wrapper .btn-menu-close:hover {
  color: #fff;
  background-color: #2f2f2f;
}

.offcanvas-backdrop,
.modal-backdrop {
  background-color: rgba(43, 43, 43, 0.92);
  cursor: url("../img/icons/cancel-white.webp"), auto;
}
.offcanvas-backdrop.show,
.modal-backdrop.show {
  opacity: 1;
}

.mobile-menu-items {
  padding: 0;
}
.mobile-menu-items ul {
  border-top: 1px solid #373737;
}
.mobile-menu-items ul li {
  position: relative;
}
.mobile-menu-items ul li a {
  display: block;
  width: 100%;
  background: none;
  text-align: left;
  padding: 10px 20px;
  border: 0;
  border-bottom: 1px solid #373737;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.mobile-menu-items ul li a:hover {
  color: #eb3e32;
}
.mobile-menu-items ul li .mobile-menu-expand {
  position: absolute;
  right: 20px;
  top: 17px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.mobile-menu-items ul li .mobile-menu-expand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-menu-items ul li .mobile-menu-expand::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::before {
  background-color: #eb3e32;
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::after {
  background-color: #eb3e32;
  height: 0;
}
.mobile-menu-items ul li.active-expand a {
  color: #eb3e32;
}
.mobile-menu-items ul li.active-expand ul li a {
  color: #fff;
}
.mobile-menu-items ul li ul {
  border-top: 0;
}
.mobile-menu-items ul li ul li a {
  font-size: 14px;
  padding-left: 12%;
}
.mobile-menu-items ul li ul li a:hover {
  color: #eb3e32;
}
.mobile-menu-items ul li ul li ul li a {
  font-size: 14px;
  padding-left: 18%;
}

/*
-----------------------------------------------------------------------
  Section Title CSS
-----------------------------------------------------------------------
*/
.section-title {
  margin-bottom: 57px;
}
@media only screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 47px;
  }
}
.section-title .title {
  font-size: 48px;
  margin-bottom: 26px;
  line-height: 0.8;
}
@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 38px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title .title {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title .title {
    font-size: 27px;
  }
}
.section-title .desc p {
  color: #595959;
  font-size: 18px;
  line-height: 1.56;
}
@media only screen and (max-width: 1199px) {
  .section-title .desc p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title .desc p {
    font-size: 15px;
  }
}

/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-top {
  background-color: #f4f4f4;
  padding: 8px 0 9px;
}
.header-top .desc {
  color: #454545;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .header-top .desc {
    font-size: 13px;
  }
}
.header-top .desc p {
  margin-bottom: 0;
}
@media only screen and (max-width: 479.98px) {
  .header-top .desc p {
    line-height: 1.75;
  }
}
.header-top .header-top-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .header-top .header-top-align {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-middle {
  padding: 27px 0 26px;
}
.header-middle .header-middle-align {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-middle .header-middle-align-center {
  position: relative;
  left: -29px;
}
@media only screen and (max-width: 1199px) {
  .header-middle .header-middle-align-center {
    left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header-middle .header-middle-align-center {
    display: none;
  }
}

.header-area {
  padding: 0;
}
.header-area .container {
  padding: 0 15px;
}
@media only screen and (max-width: 1399.98px) {
  .header-area .container {
    max-width: none;
    padding: 0 15px;
  }
}
.header-area.sticky-header {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.header-area.sticky-header.sticky {
  background-color: #eb3e32;
  -webkit-box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  left: 0;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.header-area.sticky-header.sticky .header-logo-area .logo-main {
  display: block;
}
.header-area.sticky-header.sticky .header-logo-area .logo-light {
  display: none;
}
.header-area.transparent {
  background-color: transparent;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header-area.header-default {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.header-area .header-align {
  background-color: #eb3e32;
  border-radius: 10px 10px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 991px) {
  .header-area .header-navigation-area {
    display: none;
  }
}
.header-area .header-navigation-area .main-menu.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-area .header-navigation-area .main-menu.nav > li {
  padding: 0;
  margin-right: 0;
}
.header-area .header-navigation-area .main-menu.nav > li.active > a {
  color: #fffc;
}
.header-area .header-navigation-area .main-menu.nav > li.active > a:before {
  color: #fffc;
}
.header-area .header-navigation-area .main-menu.nav > li > a {
  color: #fff;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0.4px;
  position: relative;
  margin: 0 13px;
  padding: 0 13px;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-area .header-navigation-area .main-menu.nav > li > a span {
  position: relative;
}
.header-area .header-navigation-area .main-menu.nav > li > a span:before {
  content: "";
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-area .header-navigation-area .main-menu.nav > li > a:hover {
  color: #fffc;
}
.header-area .header-navigation-area .main-menu.nav > li > a:hover:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-area .header-navigation-area .main-menu.nav > li:first-child {
  margin-left: 0;
}
.header-area .header-navigation-area .main-menu.nav > li:first-child > a {
  margin-left: 0;
  padding-left: 0;
}
.header-area .header-navigation-area .main-menu.nav > li:last-child {
  margin-right: 0;
}
.header-area .header-navigation-area .main-menu.nav > li:last-child > a {
  margin-right: 0;
  padding-right: 0;
}
.header-area .header-navigation-area .main-menu.nav > li:hover span:before {
  background-color: #fffc;
  width: 100%;
  left: 0;
  right: auto;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu > a:before {
  display: inline-block;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu:hover a {
  color: #fffc;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu:hover a:before {
  color: #fffc;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu:hover a:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav {
  -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  color: #555;
  padding: 0 0;
  position: absolute;
  width: 230px;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  display: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
  padding: 0;
  margin-bottom: 0;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active a {
  color: #eb3e32 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active:after {
  color: #eb3e32;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a {
  color: #1d1d1d;
  display: block;
  font-size: 13px;
  padding: 11px 25px 10px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a:hover {
  color: #eb3e32;
  background-color: rgba(173, 181, 189, 0.15);
}
@media only screen and (max-width: 1399.98px) {
  .header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu {
    padding: 0px 28px;
  }
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
  color: #555;
}
@media only screen and (max-width: 1399.98px) {
  .header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
    right: auto;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    top: calc(50% + -8px);
    left: 20px;
  }
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu.active:after {
  color: #eb3e32;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  border-radius: 0 4px 4px 4px;
  -webkit-box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
  left: 100%;
  right: auto;
  top: 7px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
    left: auto;
    right: 100%;
  }
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav:before {
  content: "";
  display: block;
  height: 30px;
  position: absolute;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a {
  color: #555 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a:hover {
  color: #eb3e32 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li.active > a {
  color: #eb3e32 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover a {
  color: #eb3e32;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover:after {
  color: #eb3e32 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  min-width: 100%;
  padding: 0;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  width: 500px;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.column-3 {
  width: 720px;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item {
  border-right: 1px solid rgba(173, 181, 189, 0.15);
  border-bottom: none;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin: 0;
  padding: 0 0;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  border-right: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li.active > a {
  color: #eb3e32 !important;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li > a {
  color: #1d1d1d !important;
  font-size: 13px;
  padding: 11px 35px 10px;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li > a:hover {
  background-color: rgba(173, 181, 189, 0.15);
  color: #eb3e32 !important;
  text-decoration: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li:first-child {
  border-top: 1px solid rgba(173, 181, 189, 0.15);
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li:last-child {
  border-bottom: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:hover .mega-title {
  color: #eb3e32;
  text-decoration: none;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-title {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 14px 0 0 0;
  padding: 11px 35px;
  text-decoration: none;
  text-transform: uppercase;
}
.header-area .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-title:hover {
  background-color: transparent;
  color: #2d2d2d;
  cursor: auto;
  text-decoration: none;
}
.btn-menu {
  background-color: transparent;
  border: none;
  display: none;
  margin: 0;
  padding: 0;
  font-size: 27px;
  margin-left: 8px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 991px) {
  .btn-menu {
    display: block;
  }
}
.btn-menu:hover {
  color: #eb3e32;
}

@media only screen and (max-width: 991px) {
  .header-info-items {
    display: none;
  }
}
.header-info-items .info-items {
  padding-top: 4px;
}
@media only screen and (max-width: 991px) {
  .header-info-items .info-items {
    margin-top: 10px;
  }
}
.header-info-items .info-items > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .header-info-items .info-items > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-info-items .info-items > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header-info-items .info-items > ul > li {
  display: inline-block;
  line-height: 1;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .header-info-items .info-items > ul > li {
    margin-right: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-info-items .info-items > ul > li {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    margin-bottom: 7px;
  }
}
.header-info-items .info-items > ul > li:before {
  background-color: #888888;
  content: "";
  height: 15px;
  position: absolute;
  width: 1px;
  right: 0;
  top: 2px;
}
@media only screen and (max-width: 479.98px) {
  .header-info-items .info-items > ul > li:before {
    width: 100%;
    height: 1px;
    bottom: 0;
    top: auto;
    opacity: 0.3;
  }
}
.header-info-items .info-items > ul > li:last-child {
  margin-right: 0;
  padding-right: 0;
}
@media only screen and (max-width: 479.98px) {
  .header-info-items .info-items > ul > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.header-info-items .info-items > ul > li:last-child:before {
  display: none;
}
.header-info-items .info-items > ul > li > i {
  color: #eb3e32;
  font-size: 16px;
  margin-right: 14px;
  position: relative;
  top: 1px;
}
@media only screen and (max-width: 575px) {
  .header-info-items .info-items > ul > li > i {
    font-size: 13px;
    margin-right: 8px;
  }
}
.header-info-items .info-items > ul > li > a {
  color: #454545;
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .header-info-items .info-items > ul > li > a {
    font-size: 13px;
  }
}
.header-info-items .info-items > ul > li > a:hover {
  color: #eb3e32;
}

.header-logo-area {
  position: relative;
}
.header-logo-area a {
  display: block;
}
.header-logo-area img {
  max-width: 255px;
}
.header-logo-area .logo-light {
  display: none;
}

.header-search-area .header-searchbox {
  position: relative;
}
.header-search-area .header-searchbox .form-control {
  border: 2px solid #e8e8e8;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  background-clip: inherit;
  color: #989898;
  font-size: 14px;
  height: 44px;
  line-height: 44px;
  padding: 5px 73px 5px 21px;
  width: 450px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-search-area .header-searchbox .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #989898;
}
.header-search-area .header-searchbox .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #989898;
}
.header-search-area .header-searchbox .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #989898;
}
.header-search-area .header-searchbox .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #989898;
}
.header-search-area .header-searchbox .btn-submit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eb3e32;
  border-radius: 0 8px 8px 0;
  border: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 25px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 65px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-search-area .header-searchbox .btn-submit:hover {
  background-color: #333131;
}

.header-action-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: 1px;
}
@media only screen and (max-width: 479.98px) {
  .header-action-area {
    top: 6px;
  }
}
.header-action-area .shopping-search {
  margin-right: 8px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .header-action-area .shopping-search {
    display: block;
  }
}
.header-action-area .shopping-search-btn {
  display: inline-block;
  color: #252525;
  font-size: 27px;
  position: relative;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  padding: 0;
}
.header-action-area .shopping-search-btn:hover {
  color: #eb3e32;
}
.header-action-area .shopping-wishlist {
  margin-right: 12px;
}
.header-action-area .shopping-wishlist-btn {
  display: inline-block;
  color: #252525;
  font-size: 27px;
  position: relative;
}
.header-action-area .shopping-wishlist-btn:hover {
  color: #eb3e32;
}
.header-action-area .shopping-cart-btn {
  color: #252525;
  display: inline-block;
  font-size: 25px;
  position: relative;
  background: none;
  border: none;
  padding: 0 6px 0 0;
}
.header-action-area .shopping-cart-btn:hover {
  color: #eb3e32;
}
.header-action-area .shopping-cart-btn .shop-count {
  background-color: #eb3e32;
  color: #fff;
  font-size: 13px;
  height: 21px;
  width: 21px;
  position: absolute;
  display: inline-block;
  line-height: 21px;
  text-align: center;
  border-radius: 50%;
  right: 0;
  top: 3px;
}

.off-canvas-wrapper.offcanvas {
  background-color: #1f1f1f;
  width: 440px;
}
@media only screen and (max-width: 991px) {
  .off-canvas-wrapper.offcanvas {
    width: 310px;
  }
}
.off-canvas-wrapper .offcanvas-header {
  padding: 0;
}
.off-canvas-wrapper .offcanvas-body {
  padding: 0;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #eb3e32;
  opacity: 1;
  border-radius: 0;
  color: #fff;
  background-image: none;
  padding: 0 40px;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.off-canvas-wrapper .btn-menu-close:hover {
  color: #eb3e32;
  background-color: #313131;
}
.off-canvas-wrapper .info-items > ul {
  margin-bottom: 0;
}
.off-canvas-wrapper .info-items > ul > li {
  display: block;
  line-height: 1;
  position: relative;
  border-bottom: 1px solid #373737;
  padding: 20px 10px 23px 40px;
}
.off-canvas-wrapper .info-items > ul > li:last-child {
  border-bottom: none;
}
.off-canvas-wrapper .info-items > ul > li > a {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrapper .info-items > ul > li > a {
    font-size: 13px;
  }
}
.off-canvas-wrapper .info-items > ul > li > a > i {
  color: #eb3e32;
  font-size: 16px;
  position: absolute;
  top: 48%;
  left: 0;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrapper .info-items > ul > li > a > i {
    font-size: 13px;
    margin-right: 8px;
  }
}
.off-canvas-wrapper .info-items > ul > li > a:hover {
  color: #eb3e32;
}

.modal-backdrop {
  background-color: rgba(43, 43, 43, 0.92);
  cursor: url("../img/icons/cancel-white.webp"), auto;
}
.modal-backdrop.show {
  opacity: 1;
}

.search-box-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  min-height: 550px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  top: 0;
  height: 100vh;
  padding: 0 15px;
  width: 100vw;
  z-index: 999;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
}
.search-box-wrapper .search-box-content-inner {
  width: 800px;
  margin: 0 auto;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap {
  text-align: center;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap .search-note {
  margin-bottom: 15px;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap .search-note p {
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 479.98px) {
  .search-box-wrapper .search-box-content-inner .search-box-form-wrap .search-note p {
    font-size: 15px;
  }
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  color: #fff;
  text-align: left;
  font-size: 28px;
  padding: 0;
  border-radius: 0;
  height: 73px;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 73px;
  padding-right: 58px;
}
@media only screen and (max-width: 479.98px) {
  .search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control {
    font-size: 24px;
    height: 54px;
  }
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .search-button {
  color: #fff;
  border: none;
  line-height: 1;
  font-size: 26px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 18px;
  right: 0;
}
@media only screen and (max-width: 479.98px) {
  .search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .search-button {
    font-size: 24px;
  }
}
.search-box-wrapper .search-box-content-inner .search-box-form-wrap form .search-form .search-button:hover {
  color: #eb3e32;
}
.search-box-wrapper .search-close {
  color: #fff;
  font-size: 40px;
  display: block;
  position: absolute;
  z-index: 5;
  top: 20%;
  right: 20%;
  line-height: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-box-wrapper .search-close:hover {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  color: #eb3e32;
}
.search-box-wrapper.show {
  visibility: visible;
  opacity: 1;
}
.search-box-wrapper.show .search-box-content-inner .search-box-form-wrap {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.aside-search-box-wrapper .search-box-form-wrap .search-note p {
  font-size: 14px;
  text-transform: capitalize;
  color: #666;
  font-weight: 400;
  margin-bottom: 8px;
}
.aside-search-box-wrapper .search-form {
  position: relative;
}
.aside-search-box-wrapper .search-form .form-control {
  border: 1px solid #eb3e32;
  color: #eb3e32;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  height: 70px;
  font-size: 15px;
  font-weight: 400;
  line-height: 70px;
  padding: 12px 75px 13px 24px;
}
.aside-search-box-wrapper .search-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #eb3e32;
}
.aside-search-box-wrapper .search-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #eb3e32;
}
.aside-search-box-wrapper .search-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #eb3e32;
}
.aside-search-box-wrapper .search-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #eb3e32;
}
.aside-search-box-wrapper .search-form .search-button {
  border: none;
  background-color: #eb3e32;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70px;
  font-size: 18px;
  color: #fff;
}
.aside-search-box-wrapper .search-form .search-button:hover {
  color: #eb3e32;
  background-color: #333131;
}
.aside-search-box-wrapper.offcanvas-top {
  height: 239px;
}
.aside-search-box-wrapper .offcanvas-header {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
}
.aside-search-box-wrapper .offcanvas-body {
  padding-top: 64px;
}
.aside-search-box-wrapper .btn-close {
  position: absolute;
  background-image: none;
  background-color: #eb3e32;
  color: #fff;
  opacity: 1;
  font-size: 38px;
  top: 0;
  width: 40px;
  padding: 0;
  margin: 0;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  right: 0;
}
.aside-search-box-wrapper .btn-close:hover {
  color: #eb3e32;
  background-color: #333131;
}

/*
-----------------------------------------------------------------------
    Home Slider CSS
-----------------------------------------------------------------------
*/
.home-slider-area .home-slider-container {
  position: relative;
}
.home-slider-area .home-slider-container .home-slider-wrapper {
  position: relative;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .desc-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .btn-box {
  opacity: 1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-thumb .thumb img {
  opacity: 1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: top right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 748px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 490px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 430px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: auto;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .container {
  padding-bottom: 0;
  padding-top: 0;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
  bottom: 56px;
  position: absolute;
  font-size: 92px;
  letter-spacing: 28px;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5aa0f2;
  line-height: 1;
  margin: 0;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  left: -22px;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    bottom: 0;
    left: 8px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
    font-size: 72px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
    font-size: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-text-shape {
    display: none;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
  margin-top: -18px;
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
    margin-top: 70px;
    text-align: center;
    margin-bottom: 40px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-box {
  opacity: 0;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title-box {
  transform: translate(0px, 35px);
  -webkit-transform: translate(0px, 35px);
  -moz-transform: translate(0px, 35px);
  -ms-transform: translate(0px, 35px);
  -o-transform: translate(0px, 35px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc-box {
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
  -moz-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-box {
  transform: translate(0px, 25px);
  -webkit-transform: translate(0px, 25px);
  -moz-transform: translate(0px, 25px);
  -ms-transform: translate(0px, 25px);
  -o-transform: translate(0px, 25px);
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
  color: #fff;
  font-size: 80px;
  line-height: 1.1375;
  margin-bottom: 17px;
  margin-left: -4px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 60px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 47px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 28px;
    margin-left: 0;
    margin-bottom: 4px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 54px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc {
    font-size: 19px;
    margin-bottom: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc {
    font-size: 17px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .desc {
    margin-bottom: 15px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slider {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 21px 62px 22px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slider {
    font-size: 16px;
    padding: 16px 42px 18px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slider {
    padding: 13px 34px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slider {
    font-size: 14px;
    padding: 13px 24px 14px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slider:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 571px;
  position: relative;
  width: 570px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb {
    height: 451px;
    width: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb {
    height: 351px;
    width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb {
    height: 261px;
    width: 260px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb {
    height: 261px;
    width: 260px;
    margin: 0 auto 80px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb {
  right: -20px;
  position: relative;
  top: 20px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb {
    right: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb {
    right: -5px;
    top: 17px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb img {
  opacity: 0;
  transform: translate(50px, 0px);
  -webkit-transform: translate(50px, 0px);
  -moz-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  -o-transform: translate(50px, 0px);
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb img {
    width: 310px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb img {
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb img {
    width: 190px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group-one {
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group-two {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group-two {
    width: 400px;
    left: 32px;
    top: 52px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group-two {
    width: 300px;
    top: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .shape-group-two {
    width: 240px;
    top: 28px;
    left: 20px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two {
  background-position: top right;
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two {
    background-position: top;
    height: 420px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title-box {
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
  -moz-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .desc-box {
  transform: translate(0px, 35px);
  -webkit-transform: translate(0px, 35px);
  -moz-transform: translate(0px, 35px);
  -ms-transform: translate(0px, 35px);
  -o-transform: translate(0px, 35px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title {
  font-size: 80px;
  line-height: 1.13;
  margin-bottom: 43px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title {
    font-size: 64px;
    line-height: 1.13;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title {
    font-size: 44px;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title span {
  font-size: 58px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title span {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .title span {
    font-size: 38px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area-two .slider-content .desc {
  margin-bottom: 13px;
}
.home-slider-area .home-slider-container .swiper-btn-wrap {
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 30px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .swiper-btn-wrap {
    right: 10px;
    bottom: 10px;
  }
}
.home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev, .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-next {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 34px;
  color: #fff;
  text-align: center;
  line-height: 45px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev, .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-next {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 28px;
  }
}
.home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev {
  margin-right: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.home-slider-area .home-slider-container:hover .swiper-btn-wrap {
  opacity: 1;
}
.home-slider-area .home-slider-container:hover .swiper-btn-wrap .swiper-btn-prev {
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container:hover .swiper-btn-wrap .swiper-btn-prev {
    margin-right: 10px;
  }
}

/*
-----------------------------------------------------------------------
  About CSS
-----------------------------------------------------------------------
*/
.about-default-wrapper .container {
  padding-bottom: 110px;
  padding-top: 104px;
}
@media only screen and (max-width: 1199px) {
  .about-default-wrapper .container {
    padding-bottom: 90px;
    padding-top: 85px;
  }
}

.about-thumb {
  display: inline-block;
  margin-top: 5px;
}

@media only screen and (max-width: 991px) {
  .about-content {
    margin-top: 60px;
    text-align: left;
  }
}
.about-content .sub-title {
  color: #444141;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.14px;
  line-height: 1;
  margin-bottom: 9px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .about-content .sub-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .about-content .sub-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .sub-title {
    font-size: 22px;
  }
}
.about-content .title {
  color: #444141;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.14px;
  margin-bottom: 35px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .about-content .title {
    font-size: 48px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .about-content .title {
    font-size: 42px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .title {
    font-size: 35px;
  }
}
.about-content .desc {
  color: #3a3a3a;
  margin-bottom: 39px;
  margin-right: -1px;
}
@media only screen and (max-width: 1199px) {
  .about-content .desc {
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-content .desc {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .desc {
    font-size: 15px;
  }
}
/*
-----------------------------------------------------------------------
  Team CSS
-----------------------------------------------------------------------
*/
.team-item {
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .team-item {
    max-width: 290px;
    margin: 0 auto 30px;
  }
}
.team-item .thumb {
  position: relative;
  overflow: hidden;
}
.team-item .thumb img {
  border-radius: 50%;
  width: 100%;
}
.team-item .thumb:before {
  background-color: #eb3e32;
  border-radius: 50%;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.team-item .thumb .member-icons {
  bottom: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  margin-bottom: 40px;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  visibility: hidden;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.team-item .thumb .member-icons a {
  background-color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 7px;
  color: #000;
  font-size: 16px;
}
.team-item .thumb .member-icons a + a {
  margin-left: 10px;
}
.team-item .thumb .member-icons a:hover {
  background-color: #eb3e32;
  color: #fff;
}
.team-item .content {
  margin-top: 25px;
  text-align: center;
}
.team-item .content .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
}
.team-item .content .title a {
  color: #000;
}
.team-item .content .title a:hover {
  color: #eb3e32;
}
.team-item .content p {
  color: #585757;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}
.team-item:hover .thumb:before {
  opacity: 0.34;
  visibility: visible;
}
.team-item:hover .thumb .member-icons {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*
-----------------------------------------------------------------------
    Testimonial CSS
-----------------------------------------------------------------------
*/
.testimonial-item {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #f3f3f3;
  margin-bottom: 30px;
  padding: 58px 36px 46px 45px;
}
@media only screen and (max-width: 767px) {
  .testimonial-item {
    padding: 38px 16px 26px 25px;
  }
}
.testimonial-item .testi-inner-content .testi-thumb {
  float: left;
  margin-right: 30px;
}
@media only screen and (max-width: 479.98px) {
  .testimonial-item .testi-inner-content .testi-thumb {
    float: inherit;
  }
}
.testimonial-item .testi-inner-content .testi-thumb img {
  border: 2px solid #f3f3f3;
  -webkit-box-shadow: 0px 0px 12.87px 0.13px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 0px 12.87px 0.13px rgba(0, 0, 0, 0.24);
  border-radius: 50%;
}
.testimonial-item .testi-inner-content .testi-content {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 479.98px) {
  .testimonial-item .testi-inner-content .testi-content {
    overflow: inherit;
    margin-top: 30px;
  }
}
.testimonial-item .testi-inner-content .testi-content p {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  padding-left: 31px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .testimonial-item .testi-inner-content .testi-content p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-item .testi-inner-content .testi-content p {
    font-size: 18px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .testimonial-item .testi-inner-content .testi-content p {
    font-size: 16px;
  }
}
.testimonial-item .testi-inner-content .testi-content .testi-quote {
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.testimonial-item .testi-inner-content .testi-info .name {
  color: #eb3e32;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 41px;
}
@media only screen and (max-width: 479.98px) {
  .testimonial-item .testi-inner-content .testi-info .name {
    font-size: 16px;
  }
}
.testimonial-item .testi-inner-content .testi-info .name:before {
  background-color: #eb3e32;
  content: "";
  height: 3px;
  width: 32px;
  position: absolute;
  top: calc(50% - 0px);
  left: 0;
}

/*
-----------------------------------------------------------------------
    Feature CSS
-----------------------------------------------------------------------
*/
.feature-box-wrap {
  background-color: #f3f3f3;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 46px 80px 51px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .feature-box-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 26px 8px 30px;
  }
}
.feature-box-wrap .col-item {
  margin-right: 30px;
  padding-right: 31px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .feature-box-wrap .col-item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .feature-box-wrap .col-item {
    width: 100%;
  }
}
.feature-box-wrap .col-item:before {
  background-color: #d0d0d0;
  content: "";
  height: 41px;
  right: 0;
  width: 2px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .feature-box-wrap .col-item:before {
    display: none;
  }
}
.feature-box-wrap .col-item:first-child {
  margin-right: 40px;
}
@media only screen and (max-width: 991px) {
  .feature-box-wrap .col-item:first-child {
    margin-right: 0;
  }
}
.feature-box-wrap .col-item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.feature-box-wrap .col-item:last-child:before {
  display: none;
}

.feature-content-box {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.feature-content-box .shape-group {
  z-index: -1;
}
.feature-content-box .shape-group-one {
  left: 120px;
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .feature-content-box .shape-group-one {
    left: auto;
    top: -4px;
    width: 155px;
    right: -40px;
  }
}
.feature-content-box .shape-group-two {
  bottom: 0;
  right: 0;
  position: absolute;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .feature-content-box .shape-group-two {
    display: none;
  }
}
.feature-content-box .shape-group-three {
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
.feature-content-box .shape-group-four {
  right: 250px;
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .feature-content-box .shape-group-four {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .feature-content-box .shape-group-four {
    display: none;
  }
}

.feature-icon-box .inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .feature-icon-box .inner-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.feature-icon-box .inner-content .content {
  margin-top: 9px;
  margin-left: 16px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .inner-content .content {
    margin-top: 0;
  }
}
.feature-icon-box .inner-content .content .title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (max-width: 479.98px) {
  .feature-icon-box .inner-content .content .title {
    font-size: 16px;
  }
}

/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.product-area.product-default-area .container {
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .product-area.product-default-area .container {
    padding-bottom: 46px;
  }
}
.product-area.product-best-seller-area .container {
  padding-bottom: 72px;
}
@media only screen and (max-width: 1199px) {
  .product-area.product-best-seller-area .container {
    padding-bottom: 46px;
  }
}
.product-area.product-category-area .container-fluid {
  padding: 30px 30px 0;
}
@media only screen and (max-width: 767px) {
  .product-area.product-category-area .container-fluid {
    padding: 15px 15px 0;
  }
}
.product-area.product-single-area .container {
  padding-bottom: 109px;
}
@media only screen and (max-width: 1199px) {
  .product-area.product-single-area .container {
    padding-bottom: 85px;
  }
}

.product-item {
  margin-bottom: 36px;
}
.product-item .inner-content .product-thumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #e1e1e1;
  background-color: #fff;
  border-radius: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.product-item .inner-content .product-thumb img {
  border-radius: 13px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  width: 100%;
}
.product-item .inner-content .product-thumb .product-flag {
  left: 18px;
  line-height: 1;
  position: absolute;
  top: 18px;
}
.product-item .inner-content .product-thumb .product-flag ul {
  margin-bottom: 0;
}
.product-item .inner-content .product-thumb .product-flag ul > li {
  background-color: #eb3e32;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  height: 24px;
  padding: 0 12.42px;
  text-align: center;
}
.product-item .inner-content .product-thumb .product-action {
  right: 18px;
  position: absolute;
  top: 18px;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .product-thumb .product-action {
    right: 12px;
    top: 12px;
  }
}
.product-item .inner-content .product-thumb .product-action a {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  color: #888;
  display: block;
  font-size: 15px;
  height: 40px;
  line-height: 38px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 40px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .product-thumb .product-action a {
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 28px;
  }
}
.product-item .inner-content .product-thumb .product-action a + a {
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .product-thumb .product-action a + a {
    margin-right: 7px;
  }
}
.product-item .inner-content .product-thumb .product-action a:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}
.product-item .inner-content .product-thumb .product-action button {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  color: #888;
  display: block;
  font-size: 15px;
  height: 40px;
  line-height: 36px;
  margin: 10px 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 40px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .product-thumb .product-action button {
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 28px;
  }
}
.product-item .inner-content .product-thumb .product-action button:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}
.product-item .inner-content .product-thumb + .product-info {
  margin-top: 13px;
}
.product-item .inner-content .product-info .category {
  margin-bottom: 4px;
}
.product-item .inner-content .product-info .category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.product-item .inner-content .product-info .category ul > li {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
.product-item .inner-content .product-info .category ul > li > a {
  color: #666;
}
.product-item .inner-content .product-info .category ul > li > a:hover {
  color: #eb3e32;
  text-decoration: underline;
}
.product-item .inner-content .product-info .title {
  font-size: 16px;
  margin-bottom: 15px;
}
.product-item .inner-content .product-info .title a {
  color: #000;
}
.product-item .inner-content .product-info .title a:hover {
  color: #eb3e32;
}
.product-item .inner-content .product-info .prices {
  color: #666;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}
.product-item .inner-content .product-info .prices .price-old {
  font-weight: 300;
  text-decoration: line-through;
}
.product-item:hover .product-thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.product-item:hover .product-thumb .product-action a {
  opacity: 1;
  visibility: visible;
}
.product-item:hover .product-thumb .product-action button {
  opacity: 1;
  visibility: visible;
}
.product-item.product-list-item {
  border: 2px solid #e8e8e8;
  border-radius: 13px;
  background-color: #fff;
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .product-item.product-list-item {
    padding: 20px 20px 28px;
  }
}
.product-item.product-list-item .inner-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .product-item.product-list-item .inner-content {
    display: block;
  }
}
.product-item.product-list-item .inner-content .product-thumb {
  border: 2px solid #e8e8e8;
  height: 360px;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .product-item.product-list-item .inner-content .product-thumb {
    width: 100%;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-item.product-list-item .inner-content .product-thumb {
    height: 300px;
  }
}
.product-item.product-list-item .inner-content .product-info {
  margin-top: -10px;
  padding-left: 35px;
  padding-right: 4px;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .product-item.product-list-item .inner-content .product-info {
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
.product-item.product-list-item .inner-content .product-info .title {
  font-size: 28px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product-item.product-list-item .inner-content .product-info .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-item.product-list-item .inner-content .product-info .title {
    font-size: 20px;
  }
}
.product-item.product-list-item .inner-content .product-info .prices {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product-item.product-list-item .inner-content .product-info .prices {
    font-size: 17px;
  }
}
.product-item.product-list-item .inner-content .product-info p {
  font-size: 15px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 479.98px) {
  .product-item.product-list-item .inner-content .product-info p {
    font-size: 14px;
  }
}

.product-collection {
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .product-collection {
    height: 360px;
  }
}
.product-collection-content {
  padding-top: 33px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .product-collection-content {
    padding-top: 22px;
  }
}
.product-collection-content .title {
  font-size: 36px;
  margin-bottom: 9px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .product-collection-content .title {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.product-collection-content .title a {
  color: #fff;
}
.product-collection-content .price {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .product-collection-content .price {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.product-collection-thumb {
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-collection .banner-link-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.product-collection:before {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: -280px;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.product-collection:after {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: 180%;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.product-collection:hover:before {
  left: 180%;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.product-collection:hover:after {
  left: -280px;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.product-collection:hover .product-collection-thumb {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.product-category {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 427px;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1669px) {
  .product-category {
    height: 310px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-category {
    height: 260px;
  }
}
.product-category-content {
  text-align: center;
}
.product-category-content .content {
  border: 2px solid transparent;
  display: inline-block;
  padding: 42px 58px 38px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .product-category-content .content {
    padding: 32px 38px 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-category-content .content {
    padding: 17px 18px 13px;
  }
}
.product-category-content .sub-title {
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.14px;
  margin-bottom: 16px;
}
@media (max-width: 1669px) {
  .product-category-content .sub-title {
    font-size: 26px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-category-content .sub-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-category-content .sub-title {
    font-size: 20px;
  }
}
.product-category-content .title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.14px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 1669px) {
  .product-category-content .title {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-category-content .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-category-content .title {
    font-size: 25px;
  }
}
.product-category-content .title a {
  color: #fff;
}
.product-category-thumb {
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-category .banner-link-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.product-category:before {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: -280px;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.product-category:after {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: 180%;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.product-category:hover:before {
  left: 180%;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.product-category:hover:after {
  left: -280px;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.product-category:hover .product-category-thumb {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.product-category:hover .product-category-content .content {
  border-color: rgba(255, 255, 255, 0.5);
}

.shop-top-bar {
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  padding: 11px 29px 10px 30px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.shop-top-bar .shop-top-left {
  width: 180px;
}
@media only screen and (max-width: 1199px) {
  .shop-top-bar .shop-top-left {
    width: 195px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-left {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-top-left {
    width: 100%;
    text-align: center;
  }
}
.shop-top-bar .shop-top-center {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-center {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-top-center {
    width: 100%;
  }
}
.shop-top-bar .shop-top-right {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-right {
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 8px;
  }
}
.shop-top-bar .pagination-line {
  color: #6c6c6c;
  line-height: 1;
}
.shop-top-bar .product-nav {
  position: relative;
  right: -2px;
}
.shop-top-bar .product-nav .nav-tabs {
  border: none;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .product-nav .nav-tabs {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .product-nav .nav-tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}
.shop-top-bar .product-nav .nav-tabs .nav-link {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  line-height: 1;
  font-size: 24px;
  color: #9e9e9e;
}
.shop-top-bar .product-nav .nav-tabs .nav-link + .nav-link {
  margin-left: 22px;
}
.shop-top-bar .product-nav .nav-tabs .nav-link.active {
  color: #eb3e32;
}
.shop-top-bar .product-nav .nav-tabs .nav-link:hover {
  color: #eb3e32;
}
.shop-top-bar .shop-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-top-bar .shop-sort span {
  color: #6c6c6c;
  font-size: 16px;
  display: inline-block;
  margin-right: 4px;
}
.shop-top-bar .shop-sort .form-select {
  background: url("../img/icons/arrow.webp") no-repeat right center;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #090909;
  width: 153px;
  height: 32px;
  line-height: 32px;
  border-radius: 0;
  border: none;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-sort .form-select {
    width: 85%;
  }
}
@media only screen and (max-width: 575px) {
  .shop-top-bar .shop-sort .form-select {
    width: 82%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-sort .form-select {
    width: 70%;
  }
}
.shop-top-bar .shop-sort .form-select option {
  font-size: 14px;
}

.product-slider-wrap {
  position: relative;
}
@media only screen and (max-width: 1399.98px) {
  .product-slider-wrap .product-swiper-btn-wrap {
    display: none;
  }
}
.product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev, .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
  background-color: #fff;
  border: 1px solid #eb3e32;
  border-radius: 50%;
  color: #eb3e32;
  font-size: 18px;
  height: 50px;
  line-height: 48px;
  position: absolute;
  text-align: center;
  top: 112px;
  width: 50px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  z-index: 1;
}
@media (max-width: 1559px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev, .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
    border-radius: 4px;
    font-size: 12px;
    height: 30px;
    line-height: 28px;
    width: 30px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev, .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
    position: relative;
    top: auto;
  }
}
.product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev:hover, .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next:hover {
  background-color: #eb3e32;
  color: #fff;
}
.product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev {
  left: -110px;
}
@media (max-width: 1559px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev {
    left: -45px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-prev {
    left: auto;
  }
}
.product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
  right: -110px;
}
@media (max-width: 1559px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
    right: -45px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .product-slider-wrap .product-swiper-btn-wrap .product-swiper-btn-next {
    right: auto;
    left: 0;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .product-single-item .product-single-thumb {
    max-width: 510px;
  }
}
.product-single-item .product-single-thumb .single-product-thumb {
  border-radius: 15px;
  position: relative;
}
.product-single-item .product-single-thumb .single-product-thumb img {
  border-radius: 15px;
  border: 2px solid #e1e1e1;
  width: 100%;
}
.product-single-item .product-single-thumb .single-product-nav {
  margin-top: 20px;
}
.product-single-item .product-single-thumb .single-product-nav .swiper-slide {
  cursor: pointer;
}
.product-single-item .product-single-thumb .single-product-nav .swiper-slide img {
  border-radius: 10px;
  border: 2px solid #e1e1e1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-single-item .product-single-thumb .single-product-nav .swiper-slide-thumb-active img {
  border-color: #eb3e32;
}
.product-single-item .product-single-thumb-normal .single-product-nav {
  display: none;
}
.product-single-item .product-single-info {
  margin-left: 33px;
  margin-bottom: 31px;
  margin-top: -8px;
}
@media only screen and (max-width: 1199px) {
  .product-single-item .product-single-info {
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 40px;
  }
}
.product-single-item .product-single-info .main-title {
  font-size: 36px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .main-title {
    font-size: 30px;
  }
}
.product-single-item .product-single-info .prices {
  color: #000;
  font-size: 36px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .prices {
    font-size: 28px;
  }
}
.product-single-item .product-single-info .rating-box-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 32px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .rating-box-wrap {
    margin-bottom: 22px;
    padding-bottom: 30px;
  }
}
.product-single-item .product-single-info .rating-box-wrap .rating-box {
  color: #ffde00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .rating-box-wrap .rating-box {
    font-size: 16px;
  }
}
.product-single-item .product-single-info .rating-box-wrap .rating-box i {
  line-height: 1;
}
.product-single-item .product-single-info .rating-box-wrap .rating-box i + i {
  margin-left: 7.36px;
}
.product-single-item .product-single-info .rating-box-wrap .review-status {
  line-height: 1;
  margin-left: 14px;
}
.product-single-item .product-single-info .rating-box-wrap .review-status a {
  color: #929191;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .rating-box-wrap .review-status a {
    font-size: 15px;
  }
}
.product-single-item .product-single-info .rating-box-wrap .review-status a:hover {
  color: #eb3e32;
}
.product-single-item .product-single-info p {
  margin-right: -6px;
  color: #181818;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info p {
    font-size: 15px;
    margin-right: 0;
  }
}
.product-single-item .product-single-info .product-quick-action {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-single-item .product-single-info .pro-qty {
  height: 65px;
  position: relative;
  display: inline-block;
  width: 60px;
}
.product-single-item .product-single-info .pro-qty input {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-clip: inherit;
  border: 1px solid #e1e1e1;
  border-bottom: 0;
  color: #424242;
  font-size: 18px;
  font-weight: 600;
  height: 40px;
  outline: none;
  width: 60px;
  text-align: center;
}
.product-single-item .product-single-info .pro-qty input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #424242;
}
.product-single-item .product-single-info .pro-qty input::-moz-placeholder {
  /* Firefox 19+ */
  color: #424242;
}
.product-single-item .product-single-info .pro-qty input:-ms-input-placeholder {
  /* IE 10+ */
  color: #424242;
}
.product-single-item .product-single-info .pro-qty input:-moz-placeholder {
  /* Firefox 18- */
  color: #424242;
}
.product-single-item .product-single-info .pro-qty .qty-btn {
  border: 1px solid #e1e1e1;
  cursor: pointer;
  width: 30px;
  height: 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
  position: absolute;
  bottom: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-single-item .product-single-info .pro-qty .qty-btn.dec {
  left: 0;
}
.product-single-item .product-single-info .pro-qty .qty-btn.inc {
  border-left: none;
  right: 0;
}
.product-single-item .product-single-info .pro-qty .qty-btn:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}
.product-single-item .product-single-info .btn-theme {
  margin-left: 20px;
  padding: 22px 55px 21px;
}
.product-single-item .product-single-info .product-color {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: 32px;
}
.product-single-item .product-single-info .product-color .title {
  color: #1d1d1d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-right: 22px;
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-color .color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-color .color-list li {
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
  z-index: 1;
}
.product-single-item .product-single-info .product-color .color-list li + li {
  margin-left: 12px;
}
.product-single-item .product-single-info .product-color .color-list li:before {
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  content: "";
  height: calc(100% + 6px);
  left: 50%;
  position: absolute;
  top: 50%;
  width: calc(100% + 6px);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  z-index: -1;
}
.product-single-item .product-single-info .product-color .color-list li.active:before {
  border-color: #eb3e32;
}
.product-single-item .product-single-info .product-color .color-list li:hover:before {
  border-color: #eb3e32;
}
.product-single-item .product-single-info .product-size {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.product-single-item .product-single-info .product-size .title {
  color: #1d1d1d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-right: 36px;
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-size .size-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-size .size-list li {
  background-color: #e1e1e1;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #525252;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  height: 40px;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 1;
}
.product-single-item .product-single-info .product-size .size-list li + li {
  margin-left: 12px;
}
.product-single-item .product-single-info .product-size .size-list li:before {
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  content: "";
  height: calc(100% + 6px);
  left: 50%;
  position: absolute;
  top: 50%;
  width: calc(100% + 6px);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  z-index: -1;
}
.product-single-item .product-single-info .product-size .size-list li.active:before {
  border-color: #eb3e32;
}
.product-single-item .product-single-info .product-size .size-list li:hover:before {
  border-color: #eb3e32;
}
.product-single-item .product-single-info .product-wishlist-compare {
  border-bottom: 1px solid #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 22px;
  margin-top: 41px;
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-wishlist-compare {
    padding-bottom: 18px;
    margin-top: 38px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-single-item .product-single-info .product-wishlist-compare {
    display: block;
  }
}
.product-single-item .product-single-info .product-wishlist-compare a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-wishlist-compare a {
    font-size: 15px;
  }
}
.product-single-item .product-single-info .product-wishlist-compare a i {
  color: #eb3e32;
  font-size: 23px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-wishlist-compare a i {
    font-size: 20px;
    margin-right: 8px;
  }
}
.product-single-item .product-single-info .product-wishlist-compare a + a {
  margin-left: 28px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-wishlist-compare a + a {
    margin-left: 18px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-single-item .product-single-info .product-wishlist-compare a + a {
    margin-left: 0;
    margin-top: 10px;
  }
}
.product-single-item .product-single-info .product-wishlist-compare a:hover {
  color: #eb3e32;
}
.product-single-item .product-single-info .product-info-footer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-single-item .product-single-info .product-info-footer .code {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-info-footer .code {
    font-size: 15px;
  }
}
.product-single-item .product-single-info .product-info-footer .code span {
  color: #eb3e32;
  font-weight: 500;
  margin-right: 10px;
}
.product-single-item .product-single-info .product-info-footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.product-single-item .product-single-info .product-info-footer .social-icons span {
  color: #eb3e32;
  font-size: 16px;
  font-weight: 500;
  margin-right: 11px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-info-footer .social-icons span {
    font-size: 15px;
  }
}
.product-single-item .product-single-info .product-info-footer .social-icons a {
  color: #919191;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .product-single-item .product-single-info .product-info-footer .social-icons a {
    font-size: 15px;
  }
}
.product-single-item .product-single-info .product-info-footer .social-icons a:hover {
  color: #eb3e32;
}
.product-single-item .product-single-info .product-info-footer .social-icons a + a {
  margin-left: 22px;
}

.group-product-list {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .group-product-list {
    overflow-x: auto;
  }
}
.group-product-list .info-text {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 479.98px) {
  .group-product-list .info-text {
    font-size: 14px;
  }
}
.group-product-list .info-text .text-primary {
  color: #eb3e32 !important;
  font-weight: 700;
}
.group-product-list table {
  width: 100%;
  margin-bottom: 15px;
  border-top: 1px dotted #e5e5e5;
}
@media only screen and (max-width: 991px) {
  .group-product-list table {
    min-width: 400px;
  }
}
.group-product-list table tbody tr td {
  font-weight: 500;
  padding: 10px 10px 10px 0;
  border-width: 0 0 1px 0;
  border-style: dotted;
  border-color: #e5e5e5;
  background-color: transparent;
}
.group-product-list table tbody tr .thumb {
  width: 50px;
}
.group-product-list table tbody tr .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.group-product-list table tbody tr .title a {
  color: #282828;
}
.group-product-list table tbody tr .title a:hover {
  color: #eb3e32;
}
.group-product-list table tbody tr input {
  cursor: pointer;
}
.group-product-list table tbody tr .price {
  padding-right: 0;
  text-align: right;
}
.group-product-list table tbody tr .price .pro-price span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.group-product-list table tbody tr .price .pro-price .old {
  font-size: 14px;
  margin-right: 5px;
  text-decoration: line-through;
  opacity: 0.5;
}
.group-product-list .info-text {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.product-review-tabs-content {
  margin-top: 72px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content {
    margin-top: 60px;
  }
}
.product-review-tabs-content .product-tab-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-review-tabs-content .product-tab-nav li a {
  border-bottom: 2px solid transparent;
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 14px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 991px) {
  .product-review-tabs-content .product-tab-nav li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav li a {
    font-size: 14px;
  }
}
.product-review-tabs-content .product-tab-nav li a.active {
  border-bottom-color: #eb3e32;
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-nav li + li {
  margin-left: 40px;
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav li + li {
    margin-left: 15px;
  }
}
.product-review-tabs-content .product-tab-content {
  border: 2px solid #f4f4f4;
  margin-top: -2px;
  padding: 40px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content {
    padding: 20px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content {
  border: 2px solid #f4f4f4;
  padding: 35px 40px 29px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content .product-review-content {
    padding: 25px 20px 19px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-content .product-review-content .review-content-header h3 {
    font-size: 20px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-rating {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 25px;
  letter-spacing: 0;
}
@media only screen and (max-width: 575px) {
  .product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-rating {
    margin-bottom: 5px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-rating li {
  color: #f5c61a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-caption {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 575px) {
  .product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-caption {
    display: block;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-write-btn {
  color: #434343;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  float: right;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 575px) {
  .product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-write-btn {
    float: inherit;
    display: block;
    margin-bottom: 24px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-write-btn.show {
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-content-header .review-info .review-write-btn:hover {
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 35px;
  padding-bottom: 40px;
  display: none;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area.show {
  display: block;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 0;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group {
  margin-bottom: 18px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group label {
  cursor: pointer;
  color: #626262;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 12px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .form-control {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-clip: initial;
  color: #434343;
  font-weight: 400;
  font-size: 14px;
  height: 44px;
  padding: 8px 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .form-control:active, .product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .form-control:focus {
  border-color: #eb3e32;
  background-color: #fff;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group textarea.form-control {
  height: 284px;
}
@media only screen and (max-width: 991px) {
  .product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group textarea.form-control {
    height: 180px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .title {
  cursor: pointer;
  color: #626262;
  display: block;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 15px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .review-rating {
  display: block;
  margin-right: 0;
  margin-bottom: 0;
  letter-spacing: 0;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-group .review-rating li {
  color: #eb3e32;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -3px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-submit-btn {
  margin-top: 5px;
  text-align: right;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-submit-btn .btn-submit {
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  height: 42px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  width: 158px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-form-area .reviews-form-content .form-submit-btn .btn-submit:hover {
  background-color: #fff;
  color: #eb3e32;
  border-color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 100%;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .review-rating {
  margin-top: 24px;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .review-rating li {
  color: #f5c61a;
  letter-spacing: 0;
  font-size: 14px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .title {
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .title {
    font-size: 14px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .sub-title {
  color: #b7b7b7;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 18px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item .sub-title span {
  color: #9d9d9d;
  font-size: 13px;
  font-weight: 500;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 44px;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item a {
  color: #000;
  font-size: 11px;
  font-weight: 400;
  float: right;
  margin-bottom: 25px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-review-tabs-content .product-tab-content .product-review-content .reviews-content-body .review-item a:hover {
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-pagination {
  color: #000;
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content .product-review-content .review-pagination {
    margin-top: 20px;
  }
}
.product-review-tabs-content .product-tab-content .product-review-content .review-pagination .pagination-pag {
  cursor: pointer;
  font-size: 14px;
  font-weight: #666;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-pagination .pagination-pag:hover {
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-pagination .pagination-next {
  cursor: pointer;
  float: right;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-review-tabs-content .product-tab-content .product-review-content .review-pagination .pagination-next:hover {
  color: #eb3e32;
}
.product-review-tabs-content .product-tab-content .product-information p {
  color: #181818;
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content .product-information p {
    font-size: 15px;
  }
}
.product-review-tabs-content .product-tab-content .product-description p {
  color: #181818;
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content .product-description p {
    font-size: 15px;
  }
}

.shopping-cart-area .container {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .shopping-cart-area .container {
    padding-bottom: 85px;
  }
}

.shopping-cart-form {
  margin-bottom: 30px;
}
.shopping-cart-form .table thead {
  background-color: #f7f7f7;
}
.shopping-cart-form .table thead .product-remove {
  text-align: left;
  width: 30px;
}
.shopping-cart-form .table thead .product-thumb {
  text-align: left;
  min-width: 110px;
}
@media only screen and (max-width: 767px) {
  .shopping-cart-form .table thead .product-thumb {
    min-width: 50px;
  }
}
.shopping-cart-form .table thead .product-name {
  text-align: left;
  width: 545px;
}
.shopping-cart-form .table thead .product-price {
  width: 200px;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table thead .product-price {
    display: none;
  }
}
.shopping-cart-form .table thead .product-quantity {
  width: 100px;
}
.shopping-cart-form .table thead .product-subtotal {
  width: 205px;
}
.shopping-cart-form .table thead tr th {
  border-radius: 0;
  color: #333131;
  font-weight: 600;
  font-size: 15px;
  border: none;
  padding: 13px 0;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table thead tr th {
    font-size: 14px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-remove {
  text-align: left;
}
.shopping-cart-form .table tbody .cart-product-item .product-remove a {
  color: #333131;
  font-size: 16px;
}
.shopping-cart-form .table tbody .cart-product-item .product-remove a:hover {
  color: #eb3e32;
}
.shopping-cart-form .table tbody .cart-product-item .product-thumb {
  text-align: left;
}
.shopping-cart-form .table tbody .cart-product-item .product-name {
  text-align: left;
}
.shopping-cart-form .table tbody .cart-product-item .product-name .title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 0;
  color: #242424;
}
@media only screen and (max-width: 767px) {
  .shopping-cart-form .table tbody .cart-product-item .product-name .title {
    font-size: 12px;
  }
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .product-name .title {
    font-size: 14px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-name .title a {
  color: #333131;
}
.shopping-cart-form .table tbody .cart-product-item .product-name .title a:hover {
  color: #eb3e32;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .product-price {
    display: none;
  }
}
.shopping-cart-form .table tbody .cart-product-item .price {
  font-size: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .price {
    font-size: 14px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty {
  display: inline-block;
  position: relative;
  width: 80px;
  margin-right: 0;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty {
    width: 60px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty input {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  height: 50px;
  padding: 10px 20px 8px;
  line-height: 50px;
  text-align: center;
  width: 80px;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty input {
    height: 40px;
    padding: 8px 14px;
    line-height: 40px;
    width: 60px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty input:active, .shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty input:focus {
  border-color: #333131;
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty .qty-btn {
  position: absolute;
  top: 0;
  height: 50px;
  cursor: pointer;
  width: 20px;
  font-size: 14px;
  font-family: sans-serif;
  line-height: 50px;
  left: 0;
  text-align: right;
}
@media only screen and (max-width: 479.98px) {
  .shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty .qty-btn {
    height: 40px;
    width: 14px;
    line-height: 40px;
  }
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .pro-qty .inc {
  text-align: left;
  left: auto;
  right: 0;
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .btn-add-to-cart {
  background-color: #333131;
  color: #fff;
  border: none;
  padding: 15px 45px;
  font-weight: 700;
  cursor: not-allowed;
  line-height: 30px;
  margin-bottom: 10px;
  margin-right: 6px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .btn-add-to-cart:hover {
  background-color: #eb3e32;
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .addto-wrap {
  display: inline-block;
}
.shopping-cart-form .table tbody .cart-product-item .product-quantity .addto-wrap a {
  display: inline-block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  width: 37px;
}
.shopping-cart-form .table tbody .actions {
  border-bottom: none;
  height: 104px;
  text-align: left;
}
.shopping-cart-form .table tbody .actions .btn-theme {
  background-color: #232324;
  border: 1px solid #232324;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  height: 54px;
  display: inline-block;
  line-height: 54px;
  text-transform: uppercase;
  padding: 0 40px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767px) {
  .shopping-cart-form .table tbody .actions .btn-theme {
    text-align: center;
    width: 100%;
  }
}
.shopping-cart-form .table tbody .actions .btn-theme:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}
.shopping-cart-form .table tbody .actions .clear-cart {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .shopping-cart-form .table tbody .actions .clear-cart {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.shopping-cart-form .table tbody .actions button {
  border: 1px solid #e8e8e8;
  background-color: transparent;
  border-radius: 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  color: #333131;
  font-weight: 700;
  font-size: 12px;
  float: right;
  height: 54px;
  line-height: 52px;
  letter-spacing: 0.5px;
  min-width: 180px;
  outline: none;
  text-transform: uppercase;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 991px) {
  .shopping-cart-form .table tbody .actions button {
    font-size: 11px;
    height: 46px;
    line-height: 46px;
    min-width: 175px;
  }
}
@media only screen and (max-width: 767px) {
  .shopping-cart-form .table tbody .actions button {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}
.shopping-cart-form .table tbody .actions button:hover {
  background-color: #232324;
  color: #fff;
}
.shopping-cart-form .table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  height: 156px;
}
.shopping-cart-form table,
.shopping-cart-form table th,
.shopping-cart-form table td {
  padding: 0;
  vertical-align: middle;
  border-top: none;
}

.section-title-cart {
  margin-bottom: 30px;
}
.section-title-cart .title {
  font-size: 18px;
  margin-bottom: 14px;
}
.section-title-cart .desc p {
  font-size: 13px;
  color: #8a8a8a;
}

.shipping-form-calculate span {
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
  color: #8a8a8a;
}
.shipping-form-calculate .form-group {
  margin-bottom: 10px;
}
.shipping-form-calculate .form-group .form-control {
  border-radius: 0;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333131;
  font-size: 12px;
  height: 50px;
  padding: 0 20px;
  text-transform: capitalize;
}
.shipping-form-calculate .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shipping-form-calculate .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shipping-form-calculate .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shipping-form-calculate .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shipping-form-calculate .form-group .form-control:active, .shipping-form-calculate .form-group .form-control:focus {
  border-color: #626262;
}
.shipping-form-calculate .form-group select {
  background-image: url("../img/icons/bottom-arrow.webp");
  line-height: normal;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-size: 8px;
  background-position: right 10px center;
  background-repeat: no-repeat;
  color: #333131;
}
.shipping-form-calculate .update-totals {
  color: #232324;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  background: none;
  padding: 5px 0;
  float: right;
  margin-top: 10px;
}
.shipping-form-calculate .update-totals:hover {
  color: #eb3e32;
  border-color: #eb3e32;
}
.shipping-form-calculate .collapse.show {
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
}
.shipping-form-coupon .form-group {
  margin-bottom: 10px;
}
.shipping-form-coupon .form-group .form-control {
  border-radius: 0;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #626262;
  font-size: 12px;
  height: 50px;
  padding: 0 20px;
  text-transform: capitalize;
}
.shipping-form-coupon .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shipping-form-coupon .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shipping-form-coupon .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shipping-form-coupon .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shipping-form-coupon .form-group .form-control:active, .shipping-form-coupon .form-group .form-control:focus {
  border-color: #333131;
}
.shipping-form-coupon .form-group select {
  background-image: url("../img/icons/bottom-arrow.webp");
  line-height: normal;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-size: 8px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.shipping-form-coupon .coupon-btn {
  color: #232324;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  background: none;
  padding: 5px 0;
  float: right;
  margin-top: 10px;
}
.shipping-form-coupon .coupon-btn:hover {
  color: #eb3e32;
  border-color: #eb3e32;
}
.shipping-form-cart-totals table {
  background-color: #f7f7f7;
  border-width: 0;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 24px 34px;
  display: inline-block;
  border-radius: 0;
}
@media only screen and (max-width: 1199px) {
  .shipping-form-cart-totals table {
    padding: 18px 28px;
  }
}
.shipping-form-cart-totals table .shipping .shipping-list {
  margin-bottom: 20px;
}
.shipping-form-cart-totals table .shipping .shipping-list li {
  margin-bottom: 5px;
}
.shipping-form-cart-totals table .shipping .shipping-list li:last-child {
  margin-bottom: 0;
}
.shipping-form-cart-totals table .shipping .shipping-list li label {
  cursor: pointer;
  margin-left: 8px;
}
.shipping-form-cart-totals table .shipping .shipping-list li input {
  cursor: pointer;
}
.shipping-form-cart-totals table tbody tr td {
  color: #333131;
  font-weight: 400;
  font-size: 14px;
}
.shipping-form-cart-totals table td {
  border: none;
}
.shipping-form-cart-totals .btn-theme {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 20px 40px 19px;
  background-color: #232324;
  border-color: #232324;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 991px) {
  .shipping-form-cart-totals .btn-theme {
    font-size: 11px;
    padding: 20px 15px;
  }
}
.shipping-form-cart-totals .btn-theme:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}
.shipping-form-cart-totals .thumb {
  margin-top: 28px;
}

.shopping-wishlist-area .container {
  padding-bottom: 94px;
}
@media only screen and (max-width: 1199px) {
  .shopping-wishlist-area .container {
    padding-bottom: 69px;
  }
}

@media only screen and (max-width: 991px) {
  .shopping-wishlist-table .table {
    width: 800px;
  }
}
.shopping-wishlist-table .table thead {
  background-color: #f7f7f7;
}
.shopping-wishlist-table .table thead .product-remove {
  text-align: left;
  width: 30px;
}
.shopping-wishlist-table .table thead .product-thumb {
  text-align: left;
  width: 110px;
}
.shopping-wishlist-table .table thead .product-name {
  text-align: left;
  width: 363px;
}
.shopping-wishlist-table .table thead .product-stock-status {
  text-align: left;
  width: 242px;
}
.shopping-wishlist-table .table thead .product-price {
  width: 143px;
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table thead .product-price {
    display: none;
  }
}
.shopping-wishlist-table .table thead .product-action {
  text-align: left;
  width: 302px;
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table thead .product-action {
    text-align: center;
    width: 90px;
  }
}
.shopping-wishlist-table .table thead tr th {
  border-radius: 0;
  color: #333131;
  font-weight: 600;
  font-size: 15px;
  border: none;
  padding: 13px 0;
}
@media only screen and (max-width: 575px) {
  .shopping-wishlist-table .table thead tr th {
    font-size: 13px;
  }
}
.shopping-wishlist-table .table .product-remove,
.shopping-wishlist-table .table .product-thumb,
.shopping-wishlist-table .table .product-name,
.shopping-wishlist-table .table .product-stock-status {
  text-align: left;
}
.shopping-wishlist-table .table .product-action {
  text-align: right;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-remove {
  text-align: left;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-remove a {
  font-size: 16px;
  margin-bottom: 0;
  color: #17192e;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-remove a:hover {
  color: #eb3e32;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-thumb {
  text-align: left;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-name {
  text-align: left;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-name .title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 0;
  color: #242424;
}
@media only screen and (max-width: 575px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .product-name .title {
    font-size: 14px;
  }
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-name .title a {
  color: #333131;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-name .title a:hover {
  color: #eb3e32;
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .product-stock-status .stock {
  font-size: 12px;
  background-color: #35d56a;
  display: inline-block;
  color: #fff;
  border-radius: 15px;
  padding: 2px 15px;
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .product-stock-status .stock {
    font-size: 11px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .product-stock-status .stock {
    font-size: 10px;
    padding: 0 7px;
  }
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .btn-cart {
  border: 1px solid #8a8a8a;
  display: inline-block;
  font-size: 13px;
  padding: 7px 18px 5px;
  color: #757575 !important;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .btn-cart {
    font-size: 11px;
    padding: 5px 16px;
  }
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .btn-cart {
    font-size: 10px;
    padding: 4px 0;
    width: 65px;
    text-align: center;
  }
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .btn-cart:hover {
  border-color: #eb3e32;
  color: #eb3e32 !important;
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .product-price {
    display: none;
  }
}
.shopping-wishlist-table .table tbody .cart-wishlist-item .price {
  font-size: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .shopping-wishlist-table .table tbody .cart-wishlist-item .price {
    font-size: 13px;
  }
}
.shopping-wishlist-table .table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  height: 156px;
}
.shopping-wishlist-table table,
.shopping-wishlist-table table th,
.shopping-wishlist-table table td {
  padding: 0;
  vertical-align: middle;
  border-top: none;
}

.shopping-compare-area .container {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .shopping-compare-area .container {
    padding-bottom: 85px;
  }
}

.shopping-compare-form .table {
  color: #333131;
  font-size: 13px;
  display: block;
  margin: 0;
  border: none;
  width: 100%;
  overflow: auto;
  padding: 0;
}
.shopping-compare-form .table tbody tr .product-remove {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 19px;
}
.shopping-compare-form .table tbody tr .product-remove a {
  color: #333131;
  font-size: 13px;
  font-weight: 500;
}
.shopping-compare-form .table tbody tr .product-remove a:hover {
  color: #eb3e32;
}
.shopping-compare-form .table tbody tr .product-remove i {
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.shopping-compare-form .table tbody tr .product-thumb {
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.shopping-compare-form .table tbody tr .product-name .title {
  color: #333131;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 12px;
  margin-top: 24px;
}
.shopping-compare-form .table tbody tr .product-name .title a {
  color: #333131;
}
.shopping-compare-form .table tbody tr .btn-cart {
  background-color: #343538;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
  display: inline-block;
  margin-top: 6px;
  font-weight: 500;
  text-transform: capitalize;
}
.shopping-compare-form .table tbody tr .price {
  color: #343538;
  font-size: 14px;
}
.shopping-compare-form .table tbody tr .product-sku {
  color: #333131;
  font-size: 13px;
  text-transform: uppercase;
}
.shopping-compare-form .table tbody tr .product-desc {
  color: #333131;
  font-size: 13px;
  line-height: 1.714286;
}
.shopping-compare-form .table tbody tr .product-stock {
  background-color: #35d56a;
  font-size: 0.875em;
  display: inline-block;
  color: #fff;
  border-radius: 15px;
  padding: 2px 15px;
}
.shopping-compare-form .table tbody tr th {
  color: #333131;
  min-width: 200px;
  width: 200px;
  font-size: 14px;
  background-color: #f2f2f2;
  vertical-align: middle;
  border-color: #e7e7e7;
  font-weight: bold;
  border-left: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.shopping-compare-form .table tbody tr td {
  min-width: 250px;
  width: 322px;
  border-color: #e7e7e7;
  text-align: center;
  padding: 20px 0;
  vertical-align: middle;
}
.shopping-compare-form .table th,
.shopping-compare-form .table td {
  border-width: 1px;
  border-style: solid;
  padding: 10px;
}

@media only screen and (max-width: 1199px) {
  .shopping-checkout-wrap .container {
    padding-bottom: 85px;
    padding-top: 85px;
  }
}
.shopping-checkout-wrap .title {
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 45px;
}
.shopping-checkout-wrap .title:before {
  background-color: #333131;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card h3 {
  background-color: #eeeff2;
  color: #333131;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 23px 40px 20px;
  margin-bottom: 30px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card h3 i {
  font-size: 14px;
  color: #6dde6d;
  margin-right: 14px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card h3 a {
  color: #333131;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card h3 a:hover {
  color: #eb3e32;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body {
  padding: 0;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap p {
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 22px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group {
  margin-bottom: 30px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group label {
  color: #333131;
  font-size: 14px;
  margin-bottom: 8px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group label .required {
  color: red;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #626262;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control:active, .shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group .form-control:focus {
  border-color: #333131;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group.left-m {
  margin-left: 17px;
}
@media only screen and (max-width: 991px) {
  .shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .form-group.left-m {
    margin-left: 0;
  }
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .btn-login {
  background-color: #efefef;
  border: 1px solid #eee;
  color: #333131;
  padding: 10px 30px;
  margin-right: 20px;
  display: inline-block;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .rememberme-account {
  display: inline-block;
  position: relative;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .rememberme-account .custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  border-color: #333131;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 18px;
  height: 18px;
  border-width: 2px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .rememberme-account .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  display: inline-block;
  color: #666;
  content: "";
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  text-align: center;
  padding-left: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 1px;
  top: 6px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .rememberme-account .custom-checkbox .custom-control-label {
  color: #333131;
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-top: 2px;
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .rememberme-account .custom-checkbox .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e4e4e4;
  width: 18px;
  height: 18px;
  border-width: 2px;
  position: absolute;
  left: 0;
  border-style: solid;
  top: 8px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .lost-password {
  color: #333131;
  font-size: 14px;
  display: block;
  margin-top: 20px;
  margin-bottom: 55px;
}
.shopping-checkout-wrap .checkout-page-login-wrap .login-accordion .card .card-body .login-wrap form .lost-password:hover {
  color: #eb3e32;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap {
  margin-bottom: 55px;
}
@media only screen and (max-width: 1199px) {
  .shopping-checkout-wrap .checkout-page-coupon-wrap {
    margin-bottom: 30px;
  }
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card h3 {
  background-color: #eeeff2;
  color: #333131;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 23px 40px 20px;
  margin-bottom: 30px;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card h3 i {
  font-size: 14px;
  color: #6dde6d;
  margin-right: 14px;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card h3 a {
  color: #333131;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card h3 a:hover {
  color: #eb3e32;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body {
  padding: 0;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap p {
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 22px;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group {
  margin-bottom: 30px;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #626262;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon {
  background-color: #333131;
  border: none;
  color: #fff;
  width: 162px;
  height: 50px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px;
  line-height: 22px;
  margin-left: 17px;
}
@media only screen and (max-width: 991px) {
  .shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon {
    margin-left: 0;
  }
}
.shopping-checkout-wrap .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon:hover {
  background-color: #eb3e32;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group {
  margin-bottom: 20px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group label {
  font-size: 14px;
  color: #333131;
  margin-bottom: 8px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group label .required {
  color: #f00;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e8e8e8;
  color: #626262;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:active, .shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:focus {
  border-color: #333131;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group textarea.form-control {
  border: none;
  min-height: 120px;
  line-height: inherit;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
  padding: 20px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group select {
  background-image: url("../img/icons/bottom-arrow.webp");
  line-height: normal;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-size: 8px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox {
  position: relative;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  border-color: #333131;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 18px;
  height: 18px;
  border-width: 2px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  display: inline-block;
  color: #666;
  content: "";
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  text-align: center;
  padding-left: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 1px;
  top: 7px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-label {
  color: #333131;
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-top: 2px;
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e4e4e4;
  width: 18px;
  height: 18px;
  border-width: 2px;
  position: absolute;
  left: 0;
  border-style: solid;
  top: 9px;
}
.shopping-checkout-wrap .checkout-order-details-wrap {
  margin-left: 83px;
}
@media only screen and (max-width: 1199px) {
  .shopping-checkout-wrap .checkout-order-details-wrap {
    margin-left: 0;
  }
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap {
  border-color: rgba(52, 53, 56, 0.1);
  border-width: 2px;
  border-style: solid;
  margin-bottom: 50px;
  padding: 48px 50px 54px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap {
    padding: 20px 20px 20px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .product-total {
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item {
  line-height: 20px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item:first-child td {
  padding-top: 27px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item:last-child td {
  padding-bottom: 27px;
  border-bottom-width: 1px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .shipping td {
  min-width: 140px;
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .product-quantity {
  color: #333131;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot td {
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot td,
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot th {
  padding: 15px 0 !important;
  border-bottom-width: 1px !important;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table th {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #e8e8e8;
  padding: 8px 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table td {
  border-width: 0;
  border-color: #e8e8e8;
  border-style: solid;
  padding: 8px 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table th,
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table td {
  color: #333131;
  font-weight: 400;
  font-size: 14px;
  vertical-align: middle;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method {
  margin-top: 21px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card {
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 10px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header {
  border: none;
  background-color: transparent;
  padding: 0;
  display: inline-block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  padding-bottom: 0;
  text-transform: uppercase;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title:before {
  position: absolute;
  content: "";
  background-color: #fff;
  border: 1px solid #666;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #0075ff;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  display: block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=false]:after {
  display: none;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=true]:before {
  border-color: #0075ff;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=true]:after {
  display: block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header:hover {
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-body {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-body p {
  color: #747474;
  font-size: 12px;
  line-height: 24px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text {
  color: #747474;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 18px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text a {
  color: #eb3e32;
  text-decoration: underline;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text a:hover {
  color: #eb3e32;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .required {
  color: #f00;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox {
  position: relative;
  padding-left: 24px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #fff;
  border-radius: 0;
  border-color: #333131;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 15px;
  height: 15px;
  border-width: 2px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  display: inline-block;
  color: #666;
  content: "";
  font-family: "FontAwesome";
  font-size: 8px;
  position: absolute;
  text-align: center;
  padding-left: 0px;
  line-height: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 4px;
  top: 8px;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-label {
  color: #333131;
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 0;
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-label:before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e4e4e4;
  width: 15px;
  height: 15px;
  border-width: 2px;
  border-style: solid;
  top: 8px;
  left: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .btn-theme {
  display: block;
  text-align: center;
  border-radius: 0;
  padding: 22px 20px;
  margin-top: 45px;
  background-color: #232324;
  border-color: #232324;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .btn-theme:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}

.product-quick-view-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  left: 0;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .product-quick-view-modal {
    padding: 0 10px;
  }
}
.product-quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}
.product-quick-view-modal.active .product-quick-view-inner {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.product-quick-view-modal .canvas-overlay {
  cursor: url("../img/icons/cancel-white.webp"), auto;
  position: fixed;
  top: 0;
  opacity: 0.9;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #2b2b2b;
}
.product-quick-view-inner {
  margin: 150px auto;
  max-width: 1000px;
  transition: -webkit-transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  position: relative;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .product-quick-view-inner {
    margin: 50px auto;
  }
}
.product-quick-view-content {
  border-radius: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: auto;
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
  padding: 50px;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .product-quick-view-content {
    padding: 20px;
  }
}
.product-quick-view-content .btn-close {
  background-image: none;
  padding: 0;
  margin: 0;
  color: #232323;
  cursor: pointer;
  float: right;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  position: absolute;
  right: 10px;
  text-shadow: 0 1px 0 #fff;
  top: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid #232323;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.product-quick-view-content .content {
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .product-quick-view-content .content {
    margin-top: 20px;
  }
}
.product-quick-view-content .content .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.product-quick-view-content .content .prices {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 22px;
}
.product-quick-view-content .content .prices .price {
  color: #eb3e32;
}
.product-quick-view-content .content .prices .price-old {
  color: #333131;
  margin-right: 8px;
  text-decoration: line-through;
}
.product-quick-view-content .content p {
  font-size: 14px;
}
.product-quick-view-content .content .quick-view-select-item {
  margin-bottom: 12px;
}
.product-quick-view-content .content .quick-view-select-item .form-label {
  color: #666666;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.product-quick-view-content .content .quick-view-select-item .form-select {
  cursor: pointer;
  background: rgba(0, 0, 0, 0) url("../img/icons/qcv-arrow-down.webp") no-repeat scroll right 20px center;
  border: 1px solid #dddddd;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #666666;
  font-size: 14px;
  height: 43px;
  padding-left: 10px;
  position: relative;
  width: 100%;
  border-radius: 0;
}
.product-quick-view-content .content .action-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}
.product-quick-view-content .content .action-top .pro-qty {
  width: 80px;
  height: 48px;
  position: relative;
  margin-right: 30px;
}
.product-quick-view-content .content .action-top .pro-qty input {
  border: 1px solid #dddddd;
  height: 48px;
  width: 80px;
  text-align: center;
}
.product-quick-view-content .content .action-top .pro-qty .qty-btn {
  color: #666666;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  height: 20px;
  line-height: 17px;
  position: absolute;
  text-align: center;
  width: 20px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  left: 8px;
}
.product-quick-view-content .content .action-top .pro-qty .qty-btn.inc {
  right: 8px;
  left: auto;
}
.product-quick-view-content .content .action-top .btn-black {
  background-color: #333;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.025em;
  border-radius: 2px;
  height: 48px;
  width: 139px;
}

.aside-cart-wrapper .btn-aside-cart-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #f7f7f7;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  opacity: 1;
  border-radius: 0;
  color: #242424;
  background-image: none;
  padding: 0 49px;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-aside-cart-close {
    padding: 0 19px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
  }
}
.aside-cart-wrapper .btn-aside-cart-close i {
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-aside-cart-close i {
    font-size: 12px;
    right: 19px;
  }
}
.aside-cart-wrapper .btn-aside-cart-close:hover {
  color: #eb3e32;
  background-color: #222;
}
.aside-cart-wrapper .aside-cart-product-list {
  margin-bottom: 35px;
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .aside-cart-product-list .product-list-item {
    margin-bottom: 18px;
  }
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item .remove {
  color: #343538;
  display: block;
  font-weight: normal;
  font-size: 16px;
  height: 20px;
  line-height: 17px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 20px;
  font-family: Verdana, sans-serif;
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item a {
  color: #333131;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 5px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .aside-cart-product-list .product-list-item a {
    font-size: 14px;
  }
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item a img {
  float: left;
  max-width: 70px;
  margin-right: 20px;
  border: 1px solid #eee;
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item a:hover {
  color: #eb3e32;
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item .product-price {
  color: #343538;
  font-size: 14px;
}
.aside-cart-wrapper .aside-cart-product-list .product-list-item:last-child {
  margin-bottom: 0;
}
.aside-cart-wrapper .cart-total {
  color: #333131;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
}
.aside-cart-wrapper .cart-total span {
  color: #333131;
  font-size: 16px;
  font-weight: 500;
}
.aside-cart-wrapper .cart-total .amount {
  font-weight: 500;
  font-size: 18px;
  float: right;
}
.aside-cart-wrapper .btn-theme {
  border-radius: 0;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 18px 19px 16px;
  background-color: #232324;
  border-color: #232324;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-theme {
    font-size: 12px;
    padding: 16px 19px 14px;
  }
}
.aside-cart-wrapper .btn-theme:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}
.aside-cart-wrapper.offcanvas {
  -webkit-box-shadow: 0px 0px 87px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 0px 87px 0px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper.offcanvas {
    width: 310px;
  }
}
.aside-cart-wrapper .offcanvas-header {
  padding: 0;
}
.aside-cart-wrapper .offcanvas-body {
  padding: 50px 50px 102px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .offcanvas-body {
    padding: 19px 19px 70px;
  }
}

/*
-----------------------------------------------------------------------
    Divider CSS
-----------------------------------------------------------------------
*/
.divider-style1 {
  padding: 90px 0 100px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 {
    padding: 71px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .divider-style1 {
    padding: 71px 0 70px;
  }
}
.divider-style1 .divider-content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .divider-style1 .divider-content {
    text-align: center;
  }
}
.divider-style1 .divider-content .sub-title {
  color: #eb3e32;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.14px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 36px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 26px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
.divider-style1 .divider-content .title {
  color: #333131;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .title {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-content .title {
    font-size: 40px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .title {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
.divider-style1 .divider-content .desc {
  color: #595858;
  font-size: 24px;
  margin-bottom: 44px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .desc {
    font-size: 21px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-content .desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.divider-style1 .divider-content:before {
  font-size: 92px;
  color: #eb3e32;
  content: attr(data-title);
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 68px;
  letter-spacing: 27px;
  position: absolute;
  right: -270px;
  top: 0;
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #eb3e32;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content:before {
    font-size: 62px;
    top: -10px;
    -webkit-transform: rotate(-61deg);
            transform: rotate(-61deg);
  }
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-content:before {
    display: none;
  }
}
.divider-style2 .divider-thumb-content .thumb {
  position: relative;
  overflow: hidden;
}
.divider-style2 .divider-thumb-content .thumb img {
  width: 100%;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.divider-style2 .divider-thumb-content .thumb:before {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: -500px;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.divider-style2 .divider-thumb-content .thumb:after {
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
  height: 200%;
  left: 280%;
  position: absolute;
  top: -50%;
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
  z-index: 0;
}
.divider-style2 .divider-thumb-content .content {
  padding: 53px 0 0 70px;
}
@media only screen and (max-width: 1399.98px) {
  .divider-style2 .divider-thumb-content .content {
    padding: 53px 0 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-thumb-content .content {
    padding: 30px 0 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style2 .divider-thumb-content .content {
    padding: 30px 0 45px 0;
  }
}
.divider-style2 .divider-thumb-content .content .title {
  color: #333131;
  font-size: 60px;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-thumb-content .content .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style2 .divider-thumb-content .content .title {
    font-size: 34px;
    margin-bottom: 8px;
  }
}
.divider-style2 .divider-thumb-content .content .desc {
  color: #595858;
  font-size: 24px;
  margin-bottom: 34px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-thumb-content .content .desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.divider-style2 .divider-thumb-content:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.divider-style2 .divider-thumb-content:hover .thumb:before {
  left: 500%;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.divider-style2 .divider-thumb-content:hover .thumb:after {
  left: -500px;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.divider-style3 {
  padding: 78px 0 80px;
  position: relative;
}
.divider-style3 .divider-thumb {
  display: inline-block;
  padding-left: 82px;
}
@media only screen and (max-width: 991px) {
  .divider-style3 .divider-thumb {
    display: block;
    padding-left: 0;
    margin: 0 auto 0;
    width: 300px;
    text-align: center;
    position: relative;
  }
}
.divider-style3 .divider-thumb .shape-one {
  bottom: 60px;
  left: 115px;
  position: absolute;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-thumb .shape-one {
    width: 250px;
    bottom: auto;
    top: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style3 .divider-thumb .shape-one {
    width: 250px;
    top: 40%;
    left: 10%;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style3 .divider-thumb .shape-one {
    top: 50%;
  }
}
.divider-style3 .divider-thumb .shape-two {
  bottom: 50px;
  left: 0px;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-thumb .shape-two {
    width: 380px;
    bottom: auto;
    left: 60px;
    top: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style3 .divider-thumb .shape-two {
    bottom: auto;
    top: 70px;
    width: 400px;
    left: -30px;
  }
}
.divider-style3 .divider-content {
  margin-top: 14px;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-content {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style3 .divider-content {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style3 .divider-content {
    margin-top: 50px;
  }
}
.divider-style3 .divider-content .sub-title {
  color: #eb3e32;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.14px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-content .sub-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style3 .divider-content .sub-title {
    font-size: 20px;
  }
}
.divider-style3 .divider-content .title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-content .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style3 .divider-content .title {
    font-size: 34px;
  }
}
.divider-style3 .divider-content .desc {
  color: #fff;
  font-size: 24px;
  margin-bottom: 44px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style3 .divider-content .desc {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style3 .divider-content .desc {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

.bg-overlay {
  position: relative;
  z-index: 1;
}
.bg-overlay:before {
  content: "";
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.bg-overlay.bg-overlay-black-5:before {
  background-color: #000;
  opacity: 0.5;
}

.bg-layer-style {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .bg-layer-style {
    position: relative;
    height: 320px;
    width: 100%;
    top: auto;
    left: auto;
  }
}
.bg-layer-style:before {
  background-color: #f2f2f2;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  height: 100%;
  position: absolute;
  width: 218px;
}
@media only screen and (max-width: 991px) {
  .bg-layer-style:before {
    clip-path: polygon(0 0, 0% 100%, 50% 0);
    -webkit-clip-path: polygon(0 0, 0% 100%, 50% 0);
  }
}
@media only screen and (max-width: 767px) {
  .bg-layer-style:before {
    height: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    clip-path: polygon(100% 0, 1% 0, 50% 100%);
    -webkit-clip-path: polygon(100% 0, 1% 0, 50% 100%);
    width: 170px;
  }
}

.shape-group-style2 {
  pointer-events: none;
}
.shape-group-style2 .shape-group-one {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .shape-group-style2 .shape-group-one {
    display: none;
  }
}
.shape-group-style2 .shape-group-two {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 54px;
}
@media only screen and (max-width: 767px) {
  .shape-group-style2 .shape-group-two {
    display: none;
  }
}
.shape-group-style2 .shape-group-three {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .shape-group-style2 .shape-group-three {
    display: none;
  }
}
.shape-group-style2 .shape-group-four {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.shape-group-style3 {
  pointer-events: none;
}
.shape-group-style3 .shape-group-one {
  left: 200px;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .shape-group-style3 .shape-group-one {
    display: none;
  }
}
.shape-group-style3 .shape-group-two {
  right: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .shape-group-style3 .shape-group-two {
    display: none;
  }
}
.shape-group-style3 .shape-group-three {
  bottom: 0;
  left: 12px;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .shape-group-style3 .shape-group-three {
    display: none;
  }
}
.shape-group-style3 .shape-group-four {
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .shape-group-style3 .shape-group-four {
    display: none;
  }
}

/*
-----------------------------------------------------------------------
  Form CSS
-----------------------------------------------------------------------
*/
.contact-form .form-group {
  margin-bottom: 30px;
}
.contact-form .form-group .form-control {
  border: 1px solid #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: #999999;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.14px;
  height: 49px;
  line-height: 49px;
  padding: 8px 24px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.contact-form .form-group .form-control:active, .contact-form .form-group .form-control:focus {
  border-color: #eb3e32;
}
.contact-form .form-group .form-control:active::-webkit-input-placeholder, .contact-form .form-group .form-control:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
.contact-form .form-group .form-control:active::-moz-placeholder, .contact-form .form-group .form-control:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.contact-form .form-group .form-control:active:-ms-input-placeholder, .contact-form .form-group .form-control:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
.contact-form .form-group .form-control:active:-moz-placeholder, .contact-form .form-group .form-control:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.14px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.contact-form .form-group .form-control::-webkit-input-placeholder:active, .contact-form .form-group .form-control::-webkit-input-placeholder:focus {
  color: #000;
}
.contact-form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.14px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.contact-form .form-group .form-control::-moz-placeholder:active, .contact-form .form-group .form-control::-moz-placeholder:focus {
  color: #000;
}
.contact-form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.14px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.contact-form .form-group .form-control:-ms-input-placeholder:active, .contact-form .form-group .form-control:-ms-input-placeholder:focus {
  color: #000;
}
.contact-form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.14px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.contact-form .form-group .form-control:-moz-placeholder:active, .contact-form .form-group .form-control:-moz-placeholder:focus {
  color: #000;
}
.contact-form .form-group textarea.form-control {
  height: 250px;
  line-height: 24px;
  resize: inherit;
  padding-top: 22px;
}
@media only screen and (max-width: 1199px) {
  .contact-form .form-group textarea.form-control {
    height: 198px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form .form-group textarea.form-control {
    height: 160px;
  }
}
.contact-form .form-group .btn-theme {
  margin-top: 60px;
  padding: 21px 41px 22px;
}
@media only screen and (max-width: 991px) {
  .contact-form .form-group .btn-theme {
    margin-top: 30px;
    padding: 15px 21px 17px;
  }
}

.form-message .alert-success {
  padding: 10px 20px;
  margin-top: 20px;
}
.form-message .btn-close {
  background: transparent;
  font-size: 19px;
  line-height: 22px;
  padding: 0 0 0 1px;
  margin: 0;
  background-color: #85bba2;
  border: 1px solid #79a591;
  text-align: center;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  margin-right: 11px;
}

.login-form-content {
  max-width: 570px;
  margin: 0 auto;
}
.login-form-content .form-group {
  margin-bottom: 25px;
}
.login-form-content .form-group label {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.login-form-content .form-group label .required {
  color: #f00;
}
.login-form-content .form-group .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  height: 60px;
  padding: 0 20px;
  font-size: 14px;
}
.login-form-content .form-group .form-control:active, .login-form-content .form-group .form-control:focus {
  border-color: #eb3e32;
}
.login-form-content .form-group .btn-login {
  background-color: #333131;
  border-color: #333131;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 64px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.login-form-content .form-group .btn-login:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}
.login-form-content .account-info-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 479.98px) {
  .login-form-content .account-info-group {
    display: block;
  }
}
.login-form-content .rememberme-account {
  float: left;
}
@media only screen and (max-width: 479.98px) {
  .login-form-content .rememberme-account {
    float: none;
  }
}
.login-form-content .rememberme-account .form-check {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.login-form-content .rememberme-account .form-check .form-check-input {
  cursor: pointer;
  width: 15px;
  margin: 0;
  height: 15px;
  border-radius: 0;
  border: 2px solid #e6e6e6;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  position: relative;
  top: -2px;
}
.login-form-content .rememberme-account .form-check .form-check-input:checked ~ .form-check-label {
  border-color: #eb3e32;
  color: #eb3e32;
}
.login-form-content .rememberme-account .form-check .form-check-input:checked[type=checkbox] {
  background-color: #eb3e32;
}
.login-form-content .rememberme-account .form-check .form-check-label {
  color: #8c8c8c;
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  top: -1px;
  padding-left: 8px;
}
.login-form-content .rememberme-account .form-check .form-check-label:hover {
  color: #eb3e32;
}
.login-form-content .lost-password {
  color: #8c8c8c;
  font-size: 15px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.login-form-content .lost-password:hover {
  color: #eb3e32;
}

.register-form-content {
  max-width: 570px;
  margin: 0 auto 10px;
}
.register-form-content .form-group {
  margin-bottom: 25px;
}
.register-form-content .form-group label {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.register-form-content .form-group label .required {
  color: #f00;
}
.register-form-content .form-group .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  height: 60px;
  padding: 0 20px;
  font-size: 14px;
}
.register-form-content .form-group .form-control:active, .register-form-content .form-group .form-control:focus {
  border-color: #eb3e32;
}
.register-form-content .form-group .btn-register {
  background-color: #333131;
  border-color: #333131;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 64px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.register-form-content .form-group .btn-register:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
}

/*
-----------------------------------------------------------------------
  Sidebar CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .shop-sidebar {
    margin-top: 35px;
    margin-bottom: 31px;
  }
}
.shop-sidebar .sidebar-title {
  color: #535353;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 18px;
  text-transform: capitalize;
  z-index: 1;
}
.shop-sidebar .sidebar-title:before {
  background-color: #e1e1e1;
  bottom: 0;
  content: "";
  left: 0;
  height: 2px;
  position: absolute;
  width: 150px;
  z-index: -1;
}
.shop-sidebar-category {
  background-color: #fafafa;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  margin-bottom: 30px;
  padding: 41px 28px 36px;
}
.shop-sidebar-category .category-list {
  margin-bottom: 0;
}
.shop-sidebar-category .category-list > li {
  display: block;
  line-height: 1;
}
.shop-sidebar-category .category-list > li > a {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  display: block;
}
.shop-sidebar-category .category-list > li > a:hover {
  color: #eb3e32;
}
.shop-sidebar-price-range {
  background-color: #fafafa;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  margin-bottom: 30px;
  padding: 41px 28px 51px;
}
.shop-sidebar-price-range .sidebar-title {
  margin-bottom: 30px;
}
.shop-sidebar-price-range #price-range {
  background-color: #ebebeb;
  height: 3px;
  width: 100%;
  border-radius: 1px;
  position: relative;
  margin-top: 28px;
}
.shop-sidebar-price-range #price-range .ui-slider-range {
  background-color: #eb3e32;
  height: 100%;
  border-radius: 1px;
  position: absolute;
  top: 0;
}
.shop-sidebar-price-range #price-range .ui-slider-handle {
  position: absolute;
  top: 50%;
  height: 7px;
  width: 7px;
  background-color: #eb3e32;
  border-radius: 50%;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
}
.shop-sidebar-price-range #price-range .ui-slider-handle span {
  bottom: 18px;
  color: #888888;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  left: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
}
.shop-sidebar-price-range #price-range .ui-slider-handle:nth-child(3) {
  margin-left: -1px;
}
.shop-sidebar-color {
  background-color: #fafafa;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  margin-bottom: 30px;
  padding: 41px 24px 29px 28px;
}
.shop-sidebar-color .sidebar-title {
  margin-bottom: 30px;
}
.shop-sidebar-color .color-list {
  line-height: 1;
  margin-bottom: 0;
}
.shop-sidebar-color .color-list > li {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 14px;
  margin-right: 9px;
  margin-bottom: 15px;
  position: relative;
  width: 14px;
  z-index: 1;
}
.shop-sidebar-color .color-list > li:before {
  -webkit-box-shadow: 0 0 3px rgba(35, 35, 36, 0.25);
          box-shadow: 0 0 3px rgba(35, 35, 36, 0.25);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.shop-sidebar-color .color-list > li.active:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.shop-sidebar-color .color-list > li:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.shop-sidebar-size {
  background-color: #fafafa;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  margin-bottom: 30px;
  padding: 41px 28px 38px;
}
.shop-sidebar-size .sidebar-title {
  margin-bottom: 23px;
}
.shop-sidebar-size .size-list {
  margin-bottom: 0;
}
.shop-sidebar-size .size-list > li {
  display: block;
  line-height: 1;
}
.shop-sidebar-size .size-list > li > a {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  display: block;
  text-transform: uppercase;
}
.shop-sidebar-size .size-list > li > a:hover {
  color: #eb3e32;
}
.shop-sidebar-brand {
  background-color: #fafafa;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  padding: 41px 28px 38px;
}
.shop-sidebar-brand .sidebar-title {
  margin-bottom: 23px;
}
.shop-sidebar-brand .brand-list {
  margin-bottom: 0;
}
.shop-sidebar-brand .brand-list > li {
  display: block;
  line-height: 1;
}
.shop-sidebar-brand .brand-list > li > a {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  display: block;
  text-transform: capitalize;
}
.shop-sidebar-brand .brand-list > li > a:hover {
  color: #eb3e32;
}

.blog-sidebar {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar {
    margin-top: 40px;
  }
}
.blog-sidebar .blog-sidebar-wrap {
  background-color: #f5f5f5;
  border: 2px solid #e1e1e1;
  border-radius: 13px;
  margin-top: 50px;
  padding: 41px 38px 50px;
}
.blog-sidebar .sidebar-title {
  color: #535353;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 18px;
  text-transform: capitalize;
  z-index: 1;
}
.blog-sidebar .sidebar-title:before {
  background-color: #e1e1e1;
  bottom: 0;
  content: "";
  left: 0;
  height: 2px;
  position: absolute;
  width: 150px;
  z-index: -1;
}
.blog-sidebar-search .sidebar-search-form {
  position: relative;
}
.blog-sidebar-search .sidebar-search-form input {
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #b1b1b1;
  font-size: 16px;
  height: 80px;
  line-height: 83px;
  padding: 9px 75px 9px 29px;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.blog-sidebar-search .sidebar-search-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b1b1b1;
}
.blog-sidebar-search .sidebar-search-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #b1b1b1;
}
.blog-sidebar-search .sidebar-search-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #b1b1b1;
}
.blog-sidebar-search .sidebar-search-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #b1b1b1;
}
.blog-sidebar-search .sidebar-search-form button {
  background-color: #eb3e32;
  color: #fff;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 11px;
  top: 50%;
  display: inline-block;
  border-radius: 15px;
  width: 58px;
  height: 58px;
  font-size: 18px;
  line-height: 58px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.blog-sidebar-search .sidebar-search-form button:hover {
  background-color: #333131;
}
.blog-sidebar-category .category-list {
  margin-bottom: 31px;
}
.blog-sidebar-category .category-list > li {
  display: block;
  line-height: 2.25;
}
.blog-sidebar-category .category-list > li > a {
  color: #444444;
  font-size: 16px;
  line-height: 1;
}
.blog-sidebar-category .category-list > li > a:hover {
  color: #eb3e32;
}
.blog-sidebar-post {
  margin-bottom: 43px;
}
.blog-sidebar-post .single-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar-post .single-post {
    display: block;
  }
}
.blog-sidebar-post .single-post:last-child {
  margin-bottom: 0;
}
.blog-sidebar-post .single-post .post-thumb {
  margin-right: 15px;
  min-width: 98px;
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar-post .single-post .post-thumb {
    min-width: 98px;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.blog-sidebar-post .single-post .post-thumb img {
  border-radius: 5px;
}
.blog-sidebar-post .single-post .post-content .date {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
}
.blog-sidebar-post .single-post .post-content .date a {
  color: #393939;
}
.blog-sidebar-post .single-post .post-content .date a:hover {
  color: #eb3e32;
}
.blog-sidebar-post .single-post .post-content .date i {
  color: #eb3e32;
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  bottom: -1px;
}
.blog-sidebar-post .single-post .post-content .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.blog-sidebar-post .single-post .post-content .title a {
  color: #464646;
}
.blog-sidebar-post .single-post .post-content .title a:hover {
  color: #eb3e32;
}
.blog-sidebar-category-sub-menu .sub-menu-list {
  margin-bottom: 32px;
}
.blog-sidebar-category-sub-menu .sub-menu-list > li {
  display: block;
  line-height: 2.25;
}
.blog-sidebar-category-sub-menu .sub-menu-list > li > a {
  color: #444444;
  font-size: 16px;
  line-height: 1;
}
.blog-sidebar-category-sub-menu .sub-menu-list > li > a:hover {
  color: #eb3e32;
}
.blog-sidebar-tags .tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}
.blog-sidebar-tags .tags-list > li {
  margin-bottom: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar-tags .tags-list > li {
    margin-bottom: 10px;
    margin-right: 9px;
  }
}
.blog-sidebar-tags .tags-list > li:last-child {
  margin: 0;
}
.blog-sidebar-tags .tags-list > li > a {
  border: 1px solid #dddddd;
  background-color: #fff;
  color: #474748;
  display: block;
  height: 40px;
  line-height: 39px;
  padding: 0 25.2px;
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar-tags .tags-list > li > a {
    height: 36px;
    line-height: 34px;
    padding: 0 16px;
    font-size: 14px;
  }
}
.blog-sidebar-tags .tags-list > li > a:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}

/*
-----------------------------------------------------------------------
  Page Not Found CSS
-----------------------------------------------------------------------
*/
.page-not-found-area {
  border-bottom: 4px solid #eb3e32;
}
@media only screen and (max-width: 991px) {
  .page-not-found-area {
    border-top: 4px solid #eb3e32;
  }
}

.page-not-found-wrap {
  padding-bottom: 130px;
  padding-top: 110px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap {
    padding-bottom: 100px;
    padding-top: 82px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap {
    padding-top: 90px;
  }
}
.page-not-found-wrap .page-not-found-content {
  text-align: center;
}
.page-not-found-wrap .page-not-found-content .not-found-text {
  color: #eb3e32;
  font-size: 170px;
  letter-spacing: -3px;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 90px;
  }
}
.page-not-found-wrap .page-not-found-content .title {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 38px;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 34px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 31px;
    margin-top: 4px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .desc {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .desc {
    margin-bottom: 19px;
    font-size: 15px;
  }
}
.page-not-found-wrap .page-not-found-content .btn-theme-border {
  padding: 18px 44px 19px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .btn-theme-border {
    padding: 14px 28px 14px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .btn-theme-border {
    padding: 12px 26px 13px;
    font-size: 15px;
  }
}

/*
-----------------------------------------------------------------------
  Blog CSS
-----------------------------------------------------------------------
*/
.blog-details-area .container {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .container {
    padding-bottom: 55px;
  }
}

.post-item {
  margin-bottom: 30px;
}
.post-item .inner-content .thumb {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.post-item .inner-content .thumb img {
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  width: 100%;
}
.post-item .inner-content .content {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content {
    margin-top: 28px;
  }
}
.post-item .inner-content .content .meta-post {
  margin-bottom: 21px;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .meta-post {
    margin-bottom: 16px;
  }
}
.post-item .inner-content .content .meta-post ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.post-item .inner-content .content .meta-post ul > li {
  line-height: 1;
}
.post-item .inner-content .content .meta-post ul > li + li {
  margin-left: 20px;
}
.post-item .inner-content .content .meta-post ul > li > i {
  color: #eb3e32;
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .meta-post ul > li > i {
    font-size: 15px;
  }
}
.post-item .inner-content .content .meta-post ul > li > a {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .meta-post ul > li > a {
    font-size: 14px;
  }
}
.post-item .inner-content .content .meta-post ul > li > a:hover {
  color: #eb3e32;
  text-decoration: underline;
}
.post-item .inner-content .content .title {
  font-size: 24px;
  line-height: 1.46;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .title {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.post-item .inner-content .content .title a {
  color: #2b2b2b;
}
.post-item .inner-content .content .title a:hover {
  color: #eb3e32;
}
.post-item .inner-content .content .post-btn {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 31px 14px;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .post-btn {
    font-size: 14px;
    padding: 9px 20px 10px;
  }
}
.post-item .inner-content .content .post-btn:hover {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}
.post-item:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.blog-details-content-wrap {
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-content-wrap {
    margin-right: 0;
  }
}
.blog-details-content-wrap.details-left {
  margin-right: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-content-wrap.details-left {
    margin-left: 0;
  }
}

.blog-details-item .blog-details-thumb {
  margin-bottom: 59px;
}
.blog-details-item .blog-details-thumb img {
  border-radius: 10px;
  width: 100%;
}
.blog-details-item .blog-meta-post {
  margin-bottom: 27px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .blog-meta-post {
    margin-bottom: 17px;
  }
}
.blog-details-item .blog-meta-post ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.blog-details-item .blog-meta-post ul > li {
  line-height: 1;
}
.blog-details-item .blog-meta-post ul > li + li {
  margin-left: 20px;
}
.blog-details-item .blog-meta-post ul > li > i {
  color: #eb3e32;
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .blog-meta-post ul > li > i {
    font-size: 14px;
    margin-right: 8px;
    top: -1px;
  }
}
.blog-details-item .blog-meta-post ul > li > a {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .blog-meta-post ul > li > a {
    font-size: 15px;
  }
}
.blog-details-item .blog-meta-post ul > li > a:hover {
  color: #eb3e32;
  text-decoration: underline;
}
.blog-details-item .main-title {
  color: #2b2b2b;
  font-size: 36px;
  line-height: 1.48;
  margin-bottom: 36px;
  margin-right: -1px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .main-title {
    font-size: 33px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-item .main-title {
    font-size: 28px;
  }
}
.blog-details-item p {
  margin-right: -5px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item p {
    margin-right: 0;
    font-size: 15px;
  }
}
.blog-details-item blockquote {
  background-color: #eb3e32;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 45px 26px 49px 40px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item blockquote {
    padding: 35px 18px 39px 30px;
  }
}
.blog-details-item blockquote p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.584;
  margin-bottom: 29px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item blockquote p {
    font-size: 20px;
    margin-bottom: 19px;
  }
}
.blog-details-item blockquote .user-name {
  color: #fff;
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding-left: 41px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item blockquote .user-name {
    font-size: 19px;
    padding-left: 41px;
  }
}
.blog-details-item blockquote .user-name:before {
  background-color: #fff;
  content: "";
  left: 0;
  height: 2px;
  position: absolute;
  top: 9px;
  width: 30px;
}
.blog-details-item blockquote .inner-shape {
  bottom: -5px;
  position: absolute;
  pointer-events: none;
  right: -4px;
  z-index: -1;
}
.blog-details-item .blog-details-footer {
  border-bottom: 2px solid #e1e1e1;
  border-top: 2px solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 54px;
  padding: 31px 0 28px;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .blog-details-footer {
    margin-top: 38px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-details-item .blog-details-footer {
    display: block;
  }
}
.blog-details-item .tage-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .blog-details-item .tage-list {
    margin-bottom: 20px;
  }
}
.blog-details-item .tage-list span {
  color: #525252;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  margin-right: 18px;
  position: relative;
  top: -1px;
}
.blog-details-item .tage-list a {
  color: #474748;
  font-size: 16px;
  line-height: 1;
}
.blog-details-item .tage-list a + a {
  margin-left: 5px;
}
.blog-details-item .tage-list a:hover {
  color: #eb3e32;
}
.blog-details-item .social-icons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.blog-details-item .social-icons span {
  color: #525252;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  margin-right: 15px;
  position: relative;
  top: -1px;
}
.blog-details-item .social-icons a {
  color: #eb3e32;
  font-size: 16px;
  line-height: 1;
}
.blog-details-item .social-icons a + a {
  margin-left: 29px;
}
.blog-details-item .social-icons a:hover {
  color: #333131;
}
.blog-details-item .p-image-right {
  display: inline;
  float: right;
  margin-left: 32px;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .p-image-right {
    display: inline-block;
    float: inherit;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    margin-bottom: 35px;
  }
}
.blog-details-item .article-next-previous {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 479.98px) {
  .blog-details-item .article-next-previous {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-details-item .article-next-previous .arrow-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 292px;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .article-next-previous .arrow-item {
    display: block;
  }
}
@media only screen and (max-width: 479.98px) {
  .blog-details-item .article-next-previous .arrow-item {
    width: 100%;
  }
}
.blog-details-item .article-next-previous .arrow-item.next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 575px) {
  .blog-details-item .article-next-previous .arrow-item.next {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .blog-details-item .article-next-previous .arrow-item.next {
    margin-top: 25px;
  }
}
.blog-details-item .article-next-previous .arrow-item.next .arrow-thumb {
  margin-left: 15px;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .article-next-previous .arrow-item.next .arrow-thumb {
    margin-left: auto;
  }
}
.blog-details-item .article-next-previous .arrow-item.next .arrow-content {
  text-align: end;
}
.blog-details-item .article-next-previous .arrow-item.next .arrow-content .date i {
  margin-left: 10px;
  margin-right: 0;
}
.blog-details-item .article-next-previous .arrow-thumb {
  margin-right: 15px;
  min-width: 98px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .article-next-previous .arrow-thumb {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 98px;
  }
}
.blog-details-item .article-next-previous .arrow-thumb img {
  border-radius: 5px;
}
.blog-details-item .article-next-previous .arrow-thumb .overlay {
  border-radius: 5px;
  background-color: rgba(235, 62, 50, 0.5);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  opacity: 0;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.blog-details-item .article-next-previous .arrow-thumb:hover .overlay {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
}
.blog-details-item .article-next-previous .arrow-content {
  margin-top: -2px;
}
.blog-details-item .article-next-previous .arrow-content .date {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 13px;
}
.blog-details-item .article-next-previous .arrow-content .date a {
  color: #393939;
}
.blog-details-item .article-next-previous .arrow-content .date a:hover {
  color: #eb3e32;
}
.blog-details-item .article-next-previous .arrow-content .date i {
  color: #eb3e32;
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  bottom: 1px;
}
.blog-details-item .article-next-previous .arrow-content .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.blog-details-item .article-next-previous .arrow-content .title a {
  color: #464646;
}
.blog-details-item .article-next-previous .arrow-content .title a:hover {
  color: #eb3e32;
}

.comment-view-area {
  margin-top: 104px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area {
    margin-top: 75px;
  }
}
.comment-view-area .title-main {
  color: #535353;
  font-size: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area .title-main {
    font-size: 21px;
    padding-bottom: 12px;
    margin-bottom: 40px;
  }
}
.comment-view-area .title-main:before {
  background-color: #e1e1e1;
  content: "";
  height: 2px;
  position: absolute;
  width: 250px;
  bottom: 0;
  left: 0;
}

.reply-comment {
  border-bottom: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  margin: 39px 0 40px 132px;
  padding: 40px 0 40px;
}
@media only screen and (max-width: 767px) {
  .reply-comment {
    margin: 39px 0 40px 50px;
  }
}
.reply-comment p {
  margin-right: -2px;
}

.single-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 575px) {
  .single-comment {
    display: block;
  }
}
.single-comment .author-pic {
  border-radius: 5px;
  margin-right: 30px;
}
.single-comment .author-pic img {
  border-radius: 5px;
  min-width: 101px;
}
.single-comment .author-info {
  padding-top: 5px;
}
@media only screen and (max-width: 575px) {
  .single-comment .author-info {
    padding-top: 30px;
  }
}
.single-comment .author-info .title {
  color: #393939;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 575px) {
  .single-comment .author-info .title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.single-comment .author-info .title a {
  color: #393939;
  display: inline-block;
}
.single-comment .author-info .title a:hover {
  color: #eb3e32;
}
.single-comment .author-info .title .comment-date {
  color: #565656;
  font-weight: 400;
}
.single-comment .author-info .title .comment-date:hover {
  color: #eb3e32;
}
.single-comment .author-info p {
  color: #000;
  line-height: 1.875;
  margin-bottom: 17px;
}
@media only screen and (max-width: 1199px) {
  .single-comment .author-info p {
    font-size: 15px;
  }
}
.single-comment .author-info .comment-reply {
  background-color: #595959;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 6px 0 8px;
  line-height: 1;
  width: 80px;
}
.single-comment .author-info .comment-reply:hover {
  background-color: #eb3e32;
  color: #fff;
}

.comment-form-area {
  margin-top: 80px;
}
.comment-form-area .title-main {
  color: #535353;
  font-size: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-area .title-main {
    font-size: 21px;
    padding-bottom: 12px;
    margin-bottom: 40px;
  }
}
.comment-form-area .title-main:before {
  background-color: #e1e1e1;
  content: "";
  height: 2px;
  position: absolute;
  width: 250px;
  bottom: 0;
  left: 0;
}

.comment-form-content .form-group {
  margin-bottom: 30px;
}
.comment-form-content .form-group .form-control {
  border: 1px solid #d7d7d7;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: #999999;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.15px;
  line-height: 50px;
  height: 49px;
  padding: 0 18px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.comment-form-content .form-group .form-control:active, .comment-form-content .form-group .form-control:focus {
  border-color: #eb3e32;
  color: #000;
}
.comment-form-content .form-group .form-control:active::-webkit-input-placeholder, .comment-form-content .form-group .form-control:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
.comment-form-content .form-group .form-control:active::-moz-placeholder, .comment-form-content .form-group .form-control:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.comment-form-content .form-group .form-control:active:-ms-input-placeholder, .comment-form-content .form-group .form-control:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
.comment-form-content .form-group .form-control:active:-moz-placeholder, .comment-form-content .form-group .form-control:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
.comment-form-content .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.comment-form-content .form-group .form-control::-webkit-input-placeholder:active, .comment-form-content .form-group .form-control::-webkit-input-placeholder:focus {
  color: #000;
}
.comment-form-content .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.comment-form-content .form-group .form-control::-moz-placeholder:active, .comment-form-content .form-group .form-control::-moz-placeholder:focus {
  color: #000;
}
.comment-form-content .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.comment-form-content .form-group .form-control:-ms-input-placeholder:active, .comment-form-content .form-group .form-control:-ms-input-placeholder:focus {
  color: #000;
}
.comment-form-content .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.comment-form-content .form-group .form-control:-moz-placeholder:active, .comment-form-content .form-group .form-control:-moz-placeholder:focus {
  color: #000;
}
.comment-form-content .form-group textarea.form-control {
  height: 250px;
  padding-top: 9px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-content .form-group textarea.form-control {
    height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .comment-form-content .form-group textarea.form-control {
    height: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form-content .form-group textarea.form-control {
    height: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .comment-form-content .form-group textarea.form-control {
    height: 120px;
  }
}
.comment-form-content .form-group .btn-theme {
  margin-top: 60px;
  padding: 22px 28px 21px;
}
@media only screen and (max-width: 991px) {
  .comment-form-content .form-group .btn-theme {
    margin-top: 30px;
    padding: 16px 20px 16px;
    font-size: 14px;
  }
}

/*
-----------------------------------------------------------------------
    Contact CSS
-----------------------------------------------------------------------
*/
.contact-area.contact-page-area .container {
  padding-top: 110px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .contact-area.contact-page-area .container {
    padding-top: 85px;
    padding-bottom: 65px;
  }
}

.contact-page-wrapper .contact-form-wrap {
  -webkit-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 71px 60px 83px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .contact-page-wrapper .contact-form-wrap {
    padding: 51px 40px 56px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-page-wrapper .contact-form-wrap {
    padding: 36px 20px 40px;
  }
}
.contact-page-wrapper .contact-form-wrap .contact-form-title .title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.234;
  margin-bottom: 47px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-wrapper .contact-form-wrap .contact-form-title .title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-page-wrapper .contact-form-wrap .contact-form-title .title {
    font-size: 28px;
    margin-bottom: 26px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-info-wrap {
    margin-top: 30px;
  }
}
.contact-info-wrap .contact-info .info-item {
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 40px 30px 32px;
  text-align: center;
}
.contact-info-wrap .contact-info .info-item .icon {
  margin-bottom: 26px;
}
.contact-info-wrap .contact-info .info-item .info .title {
  font-weight: 500;
  font-size: 24px;
  color: #2e2e2e;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.contact-info-wrap .contact-info .info-item .info p {
  color: #000;
  line-height: 1.8125;
}
.contact-info-wrap .contact-info .info-item .info a {
  color: #000;
  line-height: 1.8125;
}
.contact-info-wrap .contact-info .info-item .info a:hover {
  color: #eb3e32;
}

.contact-map-area {
  height: 600px;
}
.contact-map-area iframe {
  height: 600px;
  width: 100%;
}

.account-area .container {
  padding-top: 95px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .account-area .container {
    padding-top: 70px;
    padding-bottom: 75px;
  }
}
.account-area .section-title {
  border-bottom: 1px solid #e8e8e8;
  max-width: 570px;
  margin: 0 auto 40px;
  padding-bottom: 14px;
}
.account-area .section-title .title {
  font-size: 44px;
  margin-bottom: 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .account-area .section-title .title {
    font-size: 30px;
  }
}

.my-account-area {
  padding: 110px 0 110px;
}
@media only screen and (max-width: 1199px) {
  .my-account-area {
    padding: 90px 0 90px;
  }
}

.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .myaccount-tab-menu {
    margin-bottom: 40px;
  }
}
.myaccount-tab-menu.nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  border-radius: 0;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  text-align: left;
  text-transform: capitalize;
}
.myaccount-tab-menu.nav-tabs .nav-link:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #eb3e32;
}
.myaccount-tab-menu.nav-tabs .nav-link:hover, .myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #eb3e32;
  border-color: #eb3e32;
  color: #fff;
}

.myaccount-content {
  border: 1px solid #eeeeee;
  padding: 30px 30px 15px;
}
@media only screen and (max-width: 1199px) {
  .myaccount-content {
    padding: 25px 25px 10px;
  }
}
.myaccount-content form {
  margin-top: -20px;
}
.myaccount-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .myaccount-content h3 {
    font-size: 18px;
  }
}
.myaccount-content .welcome a {
  font-family: "Poppins", sans-serif;
}
.myaccount-content .welcome a:hover {
  color: #eb3e32;
}
.myaccount-content .welcome strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #eb3e32;
}
.myaccount-content p {
  font-family: "Poppins", sans-serif;
  line-height: 28px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .myaccount-content p {
    font-size: 15px;
  }
}
.myaccount-content fieldset {
  margin-top: 20px;
}
.myaccount-content fieldset legend {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
@media only screen and (max-width: 991px) {
  .myaccount-content fieldset legend {
    font-size: 15px;
  }
}
.myaccount-content .account-details-form {
  margin-top: 50px;
}
.myaccount-content .account-details-form .single-input-item {
  margin-bottom: 20px;
}
.myaccount-content .account-details-form .single-input-item label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  margin: 0 0 5px;
}
.myaccount-content .account-details-form .single-input-item input {
  border: 1px solid #e8e8e8;
  width: 100%;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #1f2226;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item input:focus {
  border: 1px solid #343538;
}
.myaccount-content .account-details-form .single-input-item button {
  border: none;
  background-color: #eb3e32;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 20px 40px;
  line-height: 1;
  color: #fff;
  font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item button:hover {
  background-color: #1f2226;
}

.myaccount-table {
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.myaccount-table table th,
.myaccount-table .table th {
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  background-color: #f8f8f8;
  border-color: #ccc;
  border-bottom: 0;
  color: #1f2226;
}
.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ccc;
}
.myaccount-table table td a,
.myaccount-table .table td a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000;
}

/*
-----------------------------------------------------------------------
  Footer CSS
-----------------------------------------------------------------------
*/
.footer-area {
  background-color: #26292e;
}
@media only screen and (max-width: 991px) {
  .footer-area .widget-item {
    margin-bottom: 35px;
  }
}
.footer-area .widget-item .widget-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget-item .widget-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-item .widget-title {
    display: none;
  }
}
.footer-area .widget-menu-wrap .nav-menu li {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget-menu-wrap .nav-menu li {
    font-size: 15px;
  }
}
.footer-area .widget-contact-wrap ul > li {
  color: #cacaca;
  font-size: 16px;
  line-height: 2.0625;
  font-weight: 300;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget-contact-wrap ul > li {
    font-size: 15px;
  }
}
.footer-area .widget-contact-wrap ul > li > span {
  font-weight: 400;
}
.footer-area .widget-collapsed-title {
  display: block;
  position: relative;
  background-color: #36393f;
  border: 1px solid #36393f;
  height: 65px;
  line-height: 64px;
  padding: 0 24px;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .footer-area .widget-collapsed-title {
    display: none;
  }
}
.footer-area .widget-collapsed-title:before {
  font-family: "IcoFont";
  font-size: 14px;
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 60px;
  text-align: center;
}
.footer-area .widget-collapsed-title:not(.collapsed):before {
  content: "";
  font-family: "IcoFont";
}
.footer-area .widget-collapse-body {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
  .footer-area .widget-collapse-body {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-collapse-body {
    background-color: #26292e;
    border: 1px solid #36393f;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-collapse-body .collapse-body {
    padding: 27px 25px 0;
  }
}

.footer-main {
  padding: 104px 0 70px;
}
@media only screen and (max-width: 1199px) {
  .footer-main {
    padding: 85px 0 52px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-main {
    padding: 85px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main {
    padding: 85px 0 61px;
  }
}
.footer-main a {
  color: #cacaca;
}
.footer-main a:hover {
  color: #eb3e32;
}
.footer-main p {
  color: #cacaca;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 1199px) {
  .footer-main p {
    font-size: 15px;
  }
}
.footer-main .about-widget-wrap {
  margin-top: -10px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .about-widget-wrap {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .about-widget-wrap {
    text-align: center;
    margin-bottom: 45px;
  }
}
.footer-main .about-widget-wrap .desc {
  margin-bottom: 29px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .about-widget-wrap .desc {
    margin-bottom: 20px;
  }
}
.footer-main .widget-logo-area {
  margin-bottom: 26px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-logo-area {
    margin-bottom: 21px;
  }
}
.footer-main .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer-main .social-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-main .social-icons a {
  display: inline-block;
  background-color: #5d5d5d;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 37px;
  font-size: 16px;
  border-radius: 7px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .social-icons a {
    width: 32px;
    height: 32px;
    line-height: 33px;
    font-size: 13px;
  }
}
.footer-main .social-icons a + a {
  margin-left: 10px;
}
.footer-main .social-icons a:hover {
  background-color: #eb3e32;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-item {
    margin-bottom: 25px;
  }
}
.footer-main .widget-item.widget-services-item {
  padding-left: 52px;
}
@media only screen and (max-width: 991px) {
  .footer-main .widget-item.widget-services-item {
    padding-left: 0;
  }
}
.footer-main .widget-item.widget-account-item {
  padding-left: 29px;
}
@media only screen and (max-width: 991px) {
  .footer-main .widget-item.widget-account-item {
    padding-left: 0;
  }
}

.footer-bottom {
  background-color: #36393f;
  padding: 19px 0 19px;
}
@media only screen and (max-width: 767px) {
  .footer-bottom {
    padding: 19px 0 27px;
  }
}
.footer-bottom .payment {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer-bottom .payment {
    text-align: center;
  }
}
.footer-bottom .copyright {
  color: #cacaca;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  top: 5px;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom .copyright {
    font-size: 15px;
    top: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-bottom .copyright {
    text-align: center;
    margin-bottom: 18px;
  }
}
.footer-bottom .copyright a {
  color: #cacaca;
}
.footer-bottom .copyright a:hover {
  color: #fff;
}
.footer-bottom .copyright i {
  color: #eb3e32;
  font-size: 16px;
  margin: 0 2px;
}