@charset "UTF-8";

/*===================================================================
[Table Of Content]

    * Imported CSS
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Slider CSS
    * About CSS
    * Team CSS
    * Brand Logo CSS
    * Form CSS
    * Blog CSS
    * Contact CSS
    * Footer CSS

=====================================================================*/
/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/

body {
  color: #707070;
  font-size: 0.875rem;
  font-family: "Gilroy";
  font-weight: 400;
  line-height: 1.7143;
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #0f0f0f;
  font-family: "Gilroy";
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: #4ba94b;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
a:hover, a:active, a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #e32747;
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

p {
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}

:active,
:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
}

::-moz-selection {
  background: #4ba94b;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #4ba94b;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #4ba94b;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #4ba94b;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

img {
  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;
}

/*-------- Container Style Css --------*/
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .container {
    max-width: none;
    padding-left:30px;
    padding-right:30px;
  }
}

.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 [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-45 {
  margin-right: -22.5px;
  margin-left: -22.5px;
}
.row-gutter-45 [class*=col-] {
  padding-left: 22.5px;
  padding-right: 22.5px;
}

.row-gutter-20 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-gutter-20 [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

/*-------- Spacing Style Css --------*/
section .container,
section .container-fluid {
  padding-bottom: 62px;
  padding-top: 62px;
}
@media only screen and (max-width: 1199px) {
  section .container,
section .container-fluid {
    padding-bottom: 70px;
    padding-top: 70px;
  }
}

@media (min-width: 1920px) {
  .spacingX-90 {
    padding: 0 90px;
  }
}

/*-------- Hover Style Css --------*/
.thumb-scale-hover-style {
  position: relative;
  overflow: hidden; border-radius: 10px;
}
.thumb-scale-hover-style .hover-img {
  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;
  width: 100%;
}
.thumb-scale-hover-style:hover .hover-img {
  transform: scale(1.045) rotate(0.05deg);
  -webkit-transform: scale(1.045) rotate(0.05deg);
  -moz-transform: scale(1.045) rotate(0.05deg);
  -ms-transform: scale(1.045) rotate(0.05deg);
  -o-transform: scale(1.045) rotate(0.05deg);
}

.zoomImg {
  cursor: crosshair;
  pointer-events: none;
}

/*-------- Button Style Css --------*/
.btn-theme {
  background-color: #4ba94b;
  border: none;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  position: relative;
  text-transform: uppercase;
}
.btn-theme:hover {
  background-color: #222;
  color: #fff;
}

.btn-theme.btn-white {
  background-color: #fff;
  color: #253237;
}


.btn-theme1 {
  background-color: #295dab;
  border: none;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  position: relative;
  text-transform: uppercase;
}

.btn-theme1:hover {
  background-color: #222;
  color: #fff;
}


/*-------- Page Header Style Css --------*/
.page-header-area {
  padding: 30px 0 30px; background:#009529;
}

.breadcrumb-area {
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: block;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-area h2 { color:#fff; font-weight:300; }
.breadcrumb-area .breadcrumb li {
  color: #4ba94b;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-area .breadcrumb li {
    font-size: 14px;
  }
}
.breadcrumb-area .breadcrumb li a {
  color: #fff;
}
.breadcrumb-area .breadcrumb li a:hover {
  color: #4ba94b;
}
.breadcrumb-area .breadcrumb .breadcrumb-sep {
  font-size: 14px;
  color: #fff;
  margin: 0 10px;
  vertical-align: -1px;
}

/*-------- Login Account Style Css --------*/
.login-form-content {
  border: 1px solid #ebebeb;
  padding: 31px 15px 20px;
}
.login-form-content .login-form {
  border-bottom: none;
}
.login-form-content .login-form .form-group {
  margin-bottom: 20px;
}
.login-form-content .login-form .pass-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.login-form-content .login-form .pass-content .show-pass {
  background-color: #7a7a7a;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
  text-align: center;
  width: 66px;
}
.login-form-content .login-form label {
  color: #0f0f0f;
  font-size: 13px;
  font-weight: 300;
  padding-top: 12px;
  text-align: left;
}
.login-form-content .login-form .form-control {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
  height: 35px;
  padding: 5px 16px;
}
.login-form-content .login-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}
.login-form-content .login-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
.login-form-content .login-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}
.login-form-content .login-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
.login-form-content .login-form .btn-forgot {
  color: #555;
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 14px;
}
.login-form-content .login-form .btn-forgot:hover {
  color: #4ba94b;
}
.login-form-content .login-form .btn-signin {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  text-transform: capitalize;
}
.login-form-content .login-form .btn-signin:hover {
  background-color: #4ba94b;
}
.login-form-content .btn-create-account {
  color: #555;
  font-size: 14px;
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-top: 22px;
  text-align: center;
}
.login-form-content .btn-create-account:hover {
  color: #4ba94b;
}

/*-------- Register Style Css --------*/
.register-form-content {
  border: 1px solid #ebebeb;
  padding: 17px 15px 17px;
}
.register-form-content .register-form .login-account {
  color: #0f0f0f;
  font-weight: 300;
}
.register-form-content .register-form .login-account a {
  color: #0f0f0f;
}
.register-form-content .register-form .login-account a:hover {
  color: #4ba94b;
}
.register-form-content .register-form .form-group {
  margin-bottom: 20px;
}
.register-form-content .register-form .form-check {
  display: inline-block;
}
.register-form-content .register-form .form-check .form-check-input {
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #7a7a7a;
  background: #fff;
}
.register-form-content .register-form .form-check .form-check-input:checked:before {
  background-color: #2fb5d2;
  border-radius: 50%;
  content: "";
  left: 50%;
  height: calc(100% - 4px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: calc(100% - 4px);
}
.register-form-content .register-form .form-check .form-check-label {
  padding: 0;
  line-height: 1;
  vertical-align: -3px;
  font-size: 14px;
  margin-left: 2px;
}
.register-form-content .register-form .pass-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.register-form-content .register-form .pass-content .show-pass {
  background-color: #7a7a7a;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
  text-align: center;
  width: 66px;
}
.register-form-content .register-form label {
  color: #0f0f0f;
  font-size: 13px;
  font-weight: 300;
  padding-top: 12px;
  text-align: left;
}
.register-form-content .register-form .form-control {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
  height: 35px;
  line-height: 35px;
  padding: 8px 16px 5px;
}
.register-form-content .register-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}
.register-form-content .register-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
.register-form-content .register-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}
.register-form-content .register-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
.register-form-content .register-form .optional-label {
  font-size: 14px;
  font-weight: 300;
  color: #7a7a7a;
  height: 35px;
  display: inline-block;
  line-height: 35px;
}
.register-form-content .register-form .birth-date {
  color: #7a7a7a;
  font-size: 13px;
  margin-top: 2px;
  font-weight: 300;
  display: block;
}
.register-form-content .account-checkbox .form-check {
  cursor: pointer;
  margin-bottom: 23px;
}
.register-form-content .account-checkbox .form-check .form-check-input {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 2px solid #232323;
  cursor: pointer;
}
.register-form-content .account-checkbox .form-check .form-check-input:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 2px solid #232323;
  background-color: #232323;
}
.register-form-content .account-checkbox .form-check .form-check-label {
  color: #0f0f0f;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
}
.register-form-content .btn-save {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  text-transform: capitalize;
}
.register-form-content .btn-save:hover {
  background-color: #4ba94b;
}

/*-------- Account Style Css --------*/
.account-item .account-inner a {
  border: 1px solid #ebebeb;
  display: block;
  padding: 19px 15px 15px;
  text-align: center;
}
.account-item .account-inner a i,
.account-item .account-inner a span {
  display: block;
}
.account-item .account-inner a i {
  color: #232323;
  font-size: 35px;
  margin-bottom: 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;
}
.account-item .account-inner a span {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 600;
  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;
}
.account-item .account-inner a:hover i {
  color: #4ba94b;
}
.account-item .account-inner a:hover span {
  color: #232323;
}

/*-------- Pagination Style Css --------*/
.pagination-content-wrap {
  margin-top: 44px;
}
.pagination-content-wrap .pagination-nav .pagination li {
  margin-right: 5px;
}
.pagination-content-wrap .pagination-nav .pagination li a {
  background-color: #f6f6f6;
  border-radius: 50%;
  color: #0f0f0f;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  height: 36px;
  line-height: 39px;
  padding: 0;
  text-align: center;
  vertical-align: top;
  width: 36px;
}
.pagination-content-wrap .pagination-nav .pagination li a.active {
  color: #fff;
  background-color: #4ba94b;
}
.pagination-content-wrap .pagination-nav .pagination li a:hover {
  color: #fff;
  background-color: #4ba94b;
}
.pagination-content-wrap .pagination-nav .pagination li i {
  font-size: 10px;
  font-weight: 700;
}
.pagination-content-wrap .pagination-nav .pagination li:last-child {
  margin-right: 5px;
}

/*-------- Owl Carousel Style Css --------*/
.owl-carousel .owl-item {
  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: 0;
}
.owl-carousel .owl-item:not(.active) {
  opacity: 0;
  visibility: hidden;
}
.owl-carousel .owl-item:hover {
  z-index: 1;
}
.owl-carousel .product-slider .owl-stage-outer {
  margin: -25px 0 -105px 0;
  padding: 25px 0 105px 0;
}
.owl-carousel .owl-stage-outer {
  overflow: visible;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-nav {
  margin: 0;
}
.owl-carousel .owl-nav > [class*=owl-] {
  background-color: #fff !important;
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: #0f0f0f !important;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  margin: -14px 0 0 0;
  position: absolute;
  top: 50%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 50px;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .owl-carousel .owl-nav > [class*=owl-] {
    height: 40px;
    width: 40px;
  }
}
.owl-carousel .owl-nav > [class*=owl-]:before {
  color: #0f0f0f;
  font-size: 18px;
  line-height: 50px;
  display: block;
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
@media only screen and (max-width: 767px) {
  .owl-carousel .owl-nav > [class*=owl-]:before {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.owl-carousel .owl-nav > [class*=owl-] span {
  display: none;
}
.owl-carousel .owl-nav > [class*=owl-]:hover {
  background-color: #4ba94b !important;
  color: #fff !important;
}
.owl-carousel .owl-nav > [class*=owl-]:hover:before {
  color: #fff;
}
.owl-carousel .owl-nav .owl-prev {
  left: -25px;
}
@media only screen and (max-width: 1400px) {
  .owl-carousel .owl-nav .owl-prev {
    left: 5px;
  }
}
.owl-carousel .owl-nav .owl-prev:before {
  content: "";
}
.owl-carousel .owl-nav .owl-next {
  right: -25px;
}
@media only screen and (max-width: 1400px) {
  .owl-carousel .owl-nav .owl-next {
    right: 5px;
  }
}
.owl-carousel .owl-nav .owl-next:before {
  content: "";
}
.owl-carousel:hover .owl-nav > [class*=owl-] {
  opacity: 1;
  visibility: visible;
}

/*-------- 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;
}

.fz-24 {
  font-size: 24px;
}

.fz-28 {
  font-size: 28px;
}

@media only screen and (max-width: 1199px) {
  .fz-lg-22 {
    font-size: 22px;
  }
}

/*-------- Custom Color Style Css --------*/
.bg-theme-color {
  background-color: #4ba94b !important;
}

.bg-black-color {
  background-color: #4ba94b !important;
}

.text-theme-color {
  color: #4ba94b !important;
}

.text-black {
  color: #0f0f0f !important;
}

/*-------- Hidden Class Style Css --------*/
@media only screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}

.z-index-1 {
  z-index: 1 !important;
}

/*-------- Preloader Style Css --------*/
.preloader-deactive .preloader-wrap {
  display: none;
}

.preloader-wrap {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  overflow: hidden;
}
.preloader-wrap .preloader {
  position: absolute;
  width: 153px;
  height: 92px;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -50px;
}
.preloader-wrap .preloader .dot {
  height: 100%;
  width: 100%;
  display: block;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: la-rotateplane 1.2s infinite ease-in-out;
  animation: la-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #4ba94b;
}

@-webkit-keyframes la-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes la-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
  bottom: -60px;
  background-color: #4ba94b;
  color: #fff;
  position: fixed;
  right: 50px;
  display: block;
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  line-height: 50px;
  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);
  z-index: 999;
}
@media only screen and (max-width: 991px) {
  .scroll-to-top {
    font-size: 14px;
    line-height: 44px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .scroll-to-top {
    font-size: 10px;
    line-height: 35px;
    width: 32px;
    height: 32px;
  }
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
@media (max-width: 600px) {
  .scroll-to-top.show {
    bottom: 20px;
    right: 20px;
  }
}

/*
-----------------------------------------------------------------------
	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: #0e0e0e;
  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: #4ba94b;
}
.main-menu > li:hover > a:before, .main-menu > li.active > a:before {
  color: #4ba94b;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}
.has-submenu > a {
  position: relative;
}
.has-submenu > a:before {
  content: "";
  color: #4ba94b;
  font-size: 14px;
  line-height: 30px;
  font-family: "FontAwesome";
  position: absolute;
  right: 11px;
  top: 7px;
}
.has-submenu:hover > .submenu-nav {
  -webkit-transform: none;
          transform: none;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  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: -25px;
  top: 100%;
  opacity: 0;
  min-width: 250px;
  pointer-events: none;
  transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -ms-transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  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;
  visibility: hidden;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav {
    min-width: 210px;
  }
}
.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: #707070;
  font-size: 15px;
  line-height: 1.2;
  font-family: "FontAwesome";
  position: absolute;
  right: 25px;
  top: 12px;
}
.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 !important;
  -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;
}
.res-mobile-menu .slicknav_nav li {
  border-top: 1px solid #eee;
  position: relative;
}
.res-mobile-menu .slicknav_nav li:last-child {
  border-bottom: 0;
}
.res-mobile-menu .slicknav_nav li a {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  padding: 8px 20px;
  margin: 0;
  text-transform: capitalize;
  position: relative;
  letter-spacing: 0px;
}
.res-mobile-menu .slicknav_nav li a .slicknav_arrow {
  background-color: transparent;
  color: #1d1d1d;
  font-size: 20px;
  display: block;
  text-align: center;
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  height: 32px;
  line-height: 34px;
  width: 48px;
  border-radius: 50%;
}
.res-mobile-menu .slicknav_nav li a a {
  padding: 0;
}
.res-mobile-menu .slicknav_nav li a:hover {
  color: #4ba94b;
  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 {
  font-weight: 300;
  padding-left: 30px;
}
.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_open a > a {
  color: #4ba94b;
}
.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item {
  position: relative;
}
.res-mobile-menu .slicknav_nav .slicknav_open > .slicknav_item .slicknav_arrow {
  color: #4ba94b;
  background-color: transparent;
}
.res-mobile-menu .slicknav_nav .slicknav_open > ul > li > a > a {
  color: #5b5b5b;
}
.res-mobile-menu .slicknav_nav .slicknav_open > ul > li.slicknav_open > a > a {
  color: #4ba94b;
}

.section-title {
  margin-bottom: 40px;
}
.section-title .title {
  color: #0f0f0f;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 26px;
  }
}


.section-title .desc {
  color: #918e8e;
  font-size: 16px;
  line-height: 18px;
}


/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-area {
  padding: 0;
}
.header-area .container-fluid {
  padding: 0 90px;
}
@media only screen and (max-width: 1399.98px) {
  .header-area .container-fluid {
    padding: 0 30px;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 1460px) {
  .header-area.header-style.header-default .header-bottom .header-align {
    position: relative;
  }
}
@media (max-width: 1460px) {
  .header-area.header-style.header-default .header-bottom .header-align .header-navigation-area .main-menu.position-relative {
    position: static !important;
  }
}
@media (max-width: 1460px) {
  .header-area.header-style.header-default .header-bottom .header-align .header-navigation-area .main-menu .has-submenu .submenu-nav-mega {
    margin-top: -20px !important;
    min-width: auto !important;
    width: 100% !important;
  }
}
.header-area.header-style2.header-default .header-align {
  padding: 20.5px 0;
}
.header-area.header-style2 .sticky-header.sticky {
  padding: 15px 0;
}
.header-area.header-style2 .sticky-header.sticky .header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  height: 13px;
}
.header-area.header-style3.header-default .header-top {
  background-color: #f8c6c9;
}
.header-area.header-style3.header-default .header-top p {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-top .contact-email span {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-top .contact-email span a {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-top .contact-email span a:hover {
  color: #000;
}
.header-area.header-style3.header-default .header-top .theme-setting .dropdown-btn {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-top .theme-currency .dropdown-btn {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-top .theme-language .dropdown-btn {
  color: #302e2e;
}
.header-area.header-style3.header-default .header-bottom {
  background-color: #0f0f0f;
}
.header-area.header-style3.header-default .header-align {
  padding: 22px 0;
}
@media (max-width: 1460px) {
  .header-area.header-style3.header-default .header-align {
    position: relative;
  }
}
@media (max-width: 1460px) {
  .header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav.position-relative {
    position: static !important;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav > li {
    margin-right: 8px;
  }
}
.header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav > li > a {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav > li > a {
    font-size: 14px;
  }
}
.header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu > a:before {
  color: #fff;
}
@media (max-width: 1460px) {
  .header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav.submenu-nav-mega {
    margin-top: 0;
  }
}
@media (max-width: 1460px) and (max-width: 1460px) {
  .header-area.header-style3.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav.submenu-nav-mega:before {
    height: 46px;
  }
}
.header-area.header-style3.header-default .header-action-area .search-content-wrap .btn-search {
  color: #fff;
}
.header-area.header-style3.header-default .header-action-area .search-content-wrap .btn-search:hover {
  color: #4ba94b;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item .shop-button .icon {
  color: #fff;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item .shop-button .cart-total {
  color: #fff;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item .shop-button .shop-count {
  color: #0f0f0f;
  background-color: #fff;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item .shop-button:hover .icon {
  color: #4ba94b;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item .shop-button:hover .cart-total {
  color: #4ba94b;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item:hover .icon {
  color: #4ba94b;
}
.header-area.header-style3.header-default .header-action-area .shop-button-group .shop-button-item:hover .cart-total {
  color: #4ba94b;
}
.header-area.header-style4.header-default .header-top {
  background-color: #4ba94b;
}
.header-area.header-style4.header-default .header-top .contact-email span a:hover {
  color: #0f0f0f;
}
.header-area.header-style4.header-default .header-top .theme-setting .dropdown-btn:hover {
  color: #302e2e;
}
.header-area.header-style4.header-default .header-top .theme-currency .dropdown-btn:hover {
  color: #302e2e;
}
.header-area.header-style4.header-default .header-top .theme-language .dropdown-btn:hover {
  color: #302e2e;
}
.header-area .header-top {
  background: #82d406;
  line-height: 1;
  margin: 0;
  padding: 17px 0 12px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .header-area .header-top {
    padding: 10px 0;
  }
}
.header-area .header-top .contact-email {
  line-height: 1;
}
.header-area .header-top .contact-email span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}
.header-area .header-top .contact-email span a {
  color: #fff;
}
.header-area .header-top .contact-email span a:hover {
  color: #4ba94b;
}
.header-area .header-top p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
@media only screen and (max-width: 479.98px) {
  .header-area .header-top p {
    font-size: 12px;
  }
}
.header-area .header-top .theme-setting {
  display: inline-block;
  position: relative;
  margin-right: 26px;
}
.header-area .header-top .theme-setting .dropdown-btn {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
  .header-area .header-top .theme-setting .dropdown-btn {
    font-size: 12px;
  }
}
.header-area .header-top .theme-setting .dropdown-btn i {
  font-size: 12px;
  margin-left: 4px;
  vertical-align: -2px;
}
.header-area .header-top .theme-setting .dropdown-btn:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-setting .dropdown-content {
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border-radius: 0;
  border: none;
  left: auto;
  margin: 0;
  min-width: 130px;
  max-height: 0;
  margin-top: 12px;
  padding: 0 15px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  text-align: initial;
  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;
}
@media only screen and (max-width: 479.98px) {
  .header-area .header-top .theme-setting .dropdown-content {
    left: 0;
    right: auto;
  }
}
.header-area .header-top .theme-setting .dropdown-content li a {
  border-bottom: 1px solid #ebebeb;
  color: #0f0f0f;
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  padding: 10px;
}
.header-area .header-top .theme-setting .dropdown-content li a:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-setting .dropdown-content li:last-child a {
  border-bottom: none;
}
.header-area .header-top .theme-setting:hover .dropdown-content {
  max-height: 137px;
}
.header-area .header-top .theme-setting:hover:before {
  position: absolute;
  content: "";
  width: 130px;
  height: 18px;
  right: 0;
  bottom: -12px;
}
.header-area .header-top .theme-currency {
  display: inline-block;
  position: relative;
  margin-right: 25px;
}
.header-area .header-top .theme-currency .dropdown-btn {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
  .header-area .header-top .theme-currency .dropdown-btn {
    font-size: 12px;
  }
}
.header-area .header-top .theme-currency .dropdown-btn i {
  font-size: 12px;
  margin-left: 4px;
  vertical-align: -2px;
}
.header-area .header-top .theme-currency .dropdown-btn:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-currency .dropdown-content {
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border-radius: 0;
  border: none;
  left: auto;
  margin: 0;
  min-width: 130px;
  max-height: 0;
  margin-top: 12px;
  overflow: hidden;
  padding: 0 15px;
  position: absolute;
  right: 0;
  top: 100%;
  text-align: initial;
  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;
}
.header-area .header-top .theme-currency .dropdown-content li a {
  border-bottom: 1px solid #ebebeb;
  color: #0f0f0f;
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  padding: 10px;
}
.header-area .header-top .theme-currency .dropdown-content li a:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-currency .dropdown-content li:last-child a {
  border-bottom: none;
}
.header-area .header-top .theme-currency:hover .dropdown-content {
  max-height: 137px;
}
.header-area .header-top .theme-currency:hover:before {
  position: absolute;
  content: "";
  width: 130px;
  height: 18px;
  right: 0;
  bottom: -12px;
}
.header-area .header-top .theme-language {
  display: inline-block;
  position: relative;
  margin-right: 0;
}
.header-area .header-top .theme-language .dropdown-btn {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
  .header-area .header-top .theme-language .dropdown-btn {
    font-size: 12px;
  }
}
.header-area .header-top .theme-language .dropdown-btn img {
  margin-right: 9px;
  vertical-align: -1px;
}
.header-area .header-top .theme-language .dropdown-btn i {
  font-size: 12px;
  margin-left: 4px;
  vertical-align: -2px;
}
.header-area .header-top .theme-language .dropdown-btn:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-language .dropdown-content {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  border-radius: 0;
  border: none;
  left: auto;
  margin: 0;
  min-width: 130px;
  max-height: 0;
  margin-top: 12px;
  overflow: hidden;
  padding: 0 15px;
  position: absolute;
  right: 0;
  top: 100%;
  text-align: initial;
  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;
}
.header-area .header-top .theme-language .dropdown-content li a {
  border-bottom: 1px solid #ebebeb;
  color: #0f0f0f;
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  padding: 10px;
}
.header-area .header-top .theme-language .dropdown-content li a img {
  display: inline-block;
  margin-right: 5px;
}
.header-area .header-top .theme-language .dropdown-content li a:hover {
  color: #4ba94b;
}
.header-area .header-top .theme-language .dropdown-content li:last-child a {
  border-bottom: none;
}
.header-area .header-top .theme-language:hover .dropdown-content {
  max-height: 137px;
}
.header-area .header-top .theme-language:hover:before {
  position: absolute;
  content: "";
  width: 130px;
  height: 18px;
  right: 0;
  bottom: -12px;
}
.header-area .header-middle {
  border: 1px solid #ebebeb;
  padding: 10px 0;
}
.header-area .header-middle .contact-link {
  margin-right: 0;
  position: relative;
  padding-left: 46px;
}
@media only screen and (max-width: 1199px) {
  .header-area .header-middle .contact-link {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .header-area .header-middle .contact-link {
    display: none;
  }
}
.header-area .header-middle .contact-link:before {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url("../img/icons/call.png");
  position: absolute;
  left: 0;
  top: -2px;
}
.header-area .header-middle .contact-link .contact-info .phone {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 4px;
  display: block;
}
.header-area .header-middle .contact-link .contact-info .phone a {
  font-weight: 600;
}
.header-area .header-middle .contact-link .contact-info .time-contact {
  color: #615d5d;
  font-size: 14px;
  font-weight: 300;
}
.header-area .sticky-header {
  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;
}
.header-area .sticky-header.sticky {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  border: 0 !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  animation: ease-in-out 0.6s fadeInDown;
  -webkit-animation: ease-in-out 0.6s fadeInDown;
  -moz-animation: ease-in-out 0.6s fadeInDown;
  -ms-animation: ease-in-out 0.6s fadeInDown;
  -o-animation: ease-in-out 0.6s fadeInDown;
}
.header-area .sticky-header.sticky .header-align {
  padding: 5px 0;
}
.header-area.transparent {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header-area.header-default {
  background-color: #fff;
  padding: 0;
  position: relative;
  z-index: 999;
}
.header-area.header-default .header-align {
  padding: 15px 0;
}
.header-area.header-default .header-align.align-default {
  -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-area.header-default .header-align.align-default .align-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-area.header-default .header-align.align-default .align-left .header-logo-area {
  float: left;
  margin-right: 60px;
}
.header-area.header-default .header-align.align-default .align-left .header-navigation-area {
  float: left;
}
.header-area.header-default .header-align.align-default .align-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-area.header-default .header-align.align-right .align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-area.header-default .header-align.align-right .align-right .header-navigation-area {
  margin-right: 31px;
  margin-top: 2px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li {
  margin-right: 30px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li.active > a {
  color: #222 !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li.active > a:before {
  color: #222 !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li > a {
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  padding: 0 25px 0 0;
  text-transform: uppercase;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li > a:last-child {
  padding-right: 0;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li > a:hover {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav > li:last-child {
  margin-right: 0;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu {
  margin-right: 20px; 
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu > a:before {
  color: #1d1d1d;
  content: "";
  font-family: "Ionicons";
  font-weight: 400;
  font-size: 15px;
  line-height: 2px;
  opacity: 0.8;
  top: 8px;
  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-default .header-align .header-navigation-area .main-menu.nav .has-submenu > a:hover:before {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu:hover a {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu:hover a:before {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav {
  -webkit-box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  left: 0;
  min-width: 225px;
  margin-top: 18px;
  padding: 0;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  height: 26px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li {
  border-bottom: 1px solid #eee;
  padding: 7.5px 20px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active a {
  color: #4ba94b !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a {
  color: #666; 
  font-size: 14px;
  font-weight: 400;
  display: block;
  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-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a:hover {
  color: #4ba94b;
  padding-left: 10px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.mega-menu-item > a {
  color: #1d1d1d !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.mega-menu-item > ul > li.active > a {
  color: #4ba94b !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.mega-menu-item > ul > li > a {
  color: #1d1d1d !important;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 30px 25px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.submenu-nav-width {
  min-width: 1110px;
  width: 100%;
}
@media (max-width: 1460px) {
  .header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.submenu-nav-width {
    min-width: auto !important;
  }
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.submenu-nav-width {
  min-width: 1110px;
  width: 100%;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.submenu-nav-width-two {
  min-width: 765px;
  width: 100%;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item {
  border-bottom: none;
  margin: 0 15px;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item .mega-title {
  color: #1d1d1d;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 20px;
  text-transform: capitalize;
  padding-left: 0;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item .mega-title:hover {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item > ul > li > a {
  color: #666;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  opacity: 0.9;
  text-transform: capitalize;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item > ul > li > a:hover {
  color: #4ba94b;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:first-child {
  margin-left: 0;
}
.header-area.header-default .header-align .header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  margin-right: 0;
}
.header-area .contact-link {
  color: #0f0f0f;
  font-size: 16px;
  line-height: 1;
  margin-right: 50px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .header-area .contact-link {
    display: none;
  }
}
.header-area .contact-link .phone span {
  font-weight: 300;
  position: relative;
  top: -1px;
  margin-right: 1px;
}
.header-area .contact-link .phone a {
  color: #0f0f0f;
  font-weight: 700;
}
.header-area .contact-link .phone a:hover {
  color: #4ba94b;
}
.header-area .header-action-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-area .header-action-area .search-content-wrap {
  display: inline-block;
  position: relative;
  line-height: 1;
  margin-right: 30px;
}
.header-area .header-action-area .search-content-wrap .btn-search {
  background-color: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.header-area .header-action-area .search-content-wrap .btn-search-content {
  position: absolute;
  right: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: 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;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 5px 0 0 5px;
  border-right: 0;
  color: #1d1d1d;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  padding: 13px 140px 10px 20px;
  width: 100%;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .btn-src {
  background-color: #4ba94b;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #fff;
  height: 46px;
  font-size: 21px;
  line-height: 46px;
  width: 65px;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .btn-src i {
  line-height: 46px;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .btn-src:hover {
  background-color: #1d1d1d;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .search-categorie {
  position: absolute;
  right: 65px;
  top: 2px;
  display: inline-block;
  width: 150px;
  margin: 0;
  background: transparent;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .search-categorie .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1d1d1d;
  border: 0;
  background: url("../img/icons/select-arrow.png");
  background-repeat: no-repeat;
  background-position: center right 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  margin: 0;
  padding: 0 25px;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  width: 150px;
}
.header-area .header-action-area .search-content-wrap .btn-search-content form .form-input-item .search-categorie .form-select option {
  color: #666;
  font-size: 14px;
  line-height: 30px;
}
.header-area .header-action-area .search-content-wrap .btn-search-content.show {
  height: 46px;
  opacity: 1;
  margin-top: 6px;
  visibility: visible;
}
.header-area .header-action-area .shop-button-group {
  line-height: 1;
}
.header-area .header-action-area .shop-button-group .shop-button-item {
  display: inline-block;
  margin-right: 26px;
  position: relative;
}
.header-area .header-action-area .shop-button-group .shop-button-item .shop-button {
  display: inline-block;
  position: relative;
}
.header-area .header-action-area .shop-button-group .shop-button-item .shop-button .icon {
  color: #0f0f0f;
  font-size: 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;
}
.header-area .header-action-area .shop-button-group .shop-button-item .shop-button .shop-count {
  background-color: #4ba94b;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  width: 20px;
  height: 20px;
  padding-top: 1px;
  text-align: center;
  line-height: 20px;
  left: 17px;
  top: calc(100% - 16px);
  border-radius: 50%;
}
.header-area .header-action-area .shop-button-group .shop-button-item .shop-button .cart-total {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 700;
  margin-left: 12px;
  position: relative;
  top: -4px;
  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-action-area .shop-button-group .shop-button-item .shop-button:hover .icon {
  color: #4ba94b;
}
.header-area .header-action-area .shop-button-group .shop-button-item .shop-button:hover .cart-total {
  color: #4ba94b;
}
.header-area .header-action-area .shop-button-group .shop-button-item:last-child {
  margin-right: 0;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  margin: 0;
  width: 350px;
  top: 100%;
  left: auto;
  right: 0;
  position: absolute;
  z-index: 1001;
  text-align: left;
  padding-top: 0;
  margin-top: 17px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list {
  margin-bottom: 0;
  max-height: 271px;
  overflow-y: auto;
  padding: 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item {
  padding: 30px 0;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
  position: relative;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item a {
  position: relative;
  display: block;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item img {
  float: left;
  max-width: 85px;
  margin-right: 10px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-quantity {
  background-color: #4ba94b;
  position: absolute;
  top: 5px;
  left: 5px;
  min-width: 20px;
  line-height: 20px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  display: inline-block;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-title {
  display: block;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 20px;
  color: #0f0f0f;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 28px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-title:hover {
  color: #4ba94b;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-price {
  display: block;
  margin: 9px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: #0f0f0f;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-size {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #909296;
  margin: 8px 0 0;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-close {
  position: absolute;
  font-size: 18px;
  color: #888;
  top: 30px;
  right: 0px;
  padding-right: 0;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list .product-list-item .product-close:hover {
  color: #4ba94b;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .popup-product-list::-webkit-scrollbar {
  display: none;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content {
  padding: 30px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-subtotals .products {
  display: flow-root;
  line-height: 25px;
  margin-bottom: 8px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-subtotals .products .label {
  float: left;
  font-weight: 300;
  color: #9b9b9b;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-subtotals .products .value {
  float: right;
  font-weight: 600;
  color: #9b9b9b;
  font-size: 17px;
  line-height: 1;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-total {
  display: flow-root;
  line-height: 25px;
  margin-bottom: 0;
  margin-top: 10px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-total .label {
  color: #0f0f0f;
  float: left;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .price-content .cart-total .value {
  color: #4ba94b;
  float: right;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .checkout {
  padding: 0 30px 30px 30px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .checkout .btn-Checkout {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #0f0f0f;
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 15px;
  line-height: 28px;
  border: none;
  background: #f6f6f6;
  border-radius: 30px;
}
.header-area .header-action-area .shop-button-group .shop-button-item .popup-cart-content .checkout .btn-Checkout:hover {
  background-color: #4ba94b;
  color: #fff;
}
.header-area .header-action-area .shop-button-group .shop-button-item:hover .popup-cart-content {
  max-height: 478px;
}
.header-area .header-action-area .shop-button-group .shop-button-item:hover .icon {
  color: #4ba94b;
}
.header-area .header-action-area .shop-button-group .shop-button-item:hover .cart-total {
  color: #4ba94b;
}

.header-logo-area {
  position: relative;
}

.responsive-header {
  display: none;
}
@media only screen and (max-width: 991px) {
  .responsive-header {
    display: block;
  }
}
.responsive-header .header-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
}
@media only screen and (max-width: 575px) {
  .responsive-header .header-item {
    height: 70px;
  }
}
.responsive-header .header-item .btn-menu {
  color: #0f0f0f;
  font-size: 21px;
  height: 30px;
  line-height: 34px;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  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;
}
.responsive-header .header-item .btn-menu:hover {
  color: #4ba94b;
}
.responsive-header .header-item .btn-user {
  background-color: transparent;
  border: none;
  color: #0f0f0f;
  font-size: 24px;
  padding: 0;
  height: 30px;
  line-height: 35px;
  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;
}
.responsive-header .header-item .btn-user:hover {
  color: #4ba94b;
}
.responsive-header .header-item .btn-cart {
  background-color: transparent;
  border: none;
  color: #0f0f0f;
  font-size: 24px;
  padding: 0;
  height: 30px;
  line-height: 35px;
  margin-left: 14px;
  position: relative;
  padding-right: 12px;
  display: inline-block;
  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;
}
.responsive-header .header-item .btn-cart .item-count {
  background-color: #4ba94b;
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 16px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 19px;
  font-size: 11px;
  border-radius: 100%;
  text-align: center;
}
.responsive-header .header-item .btn-cart:hover {
  color: #4ba94b;
}
.responsive-header .responsive-search-content {
  margin-bottom: 12px;
}
.responsive-header .responsive-search-content .form-input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.responsive-header .responsive-search-content .form-input-item input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 5px 0 0 5px;
  border-right: 0;
  color: #1d1d1d;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  padding: 13px 138px 10px 20px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .responsive-header .responsive-search-content .form-input-item input {
    font-size: 12px;
    padding: 13px 108px 10px 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .responsive-header .responsive-search-content .form-input-item input {
    font-size: 9px;
    padding: 13px 88px 10px 20px;
  }
}
.responsive-header .responsive-search-content .form-input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
.responsive-header .responsive-search-content .form-input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
.responsive-header .responsive-search-content .form-input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
.responsive-header .responsive-search-content .form-input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
.responsive-header .responsive-search-content .form-input-item .btn-src {
  background-color: #4ba94b;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #fff;
  height: 46px;
  font-size: 21px;
  line-height: 46px;
  width: 65px;
}
.responsive-header .responsive-search-content .form-input-item .btn-src i {
  line-height: 46px;
}
.responsive-header .responsive-search-content .form-input-item .btn-src:hover {
  background-color: #1d1d1d;
}
.responsive-header .responsive-search-content .form-input-item .search-categorie {
  position: absolute;
  right: 65px;
  top: 2px;
  display: inline-block;
  width: 150px;
  margin: 0;
  background: transparent;
}
@media only screen and (max-width: 575px) {
  .responsive-header .responsive-search-content .form-input-item .search-categorie {
    right: 58px;
    width: 100px;
  }
}
@media only screen and (max-width: 479.98px) {
  .responsive-header .responsive-search-content .form-input-item .search-categorie {
    right: 58px;
    width: 80px;
  }
}
.responsive-header .responsive-search-content .form-input-item .search-categorie .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1d1d1d;
  border: 0;
  background: url("../img/icons/select-arrow.png");
  background-repeat: no-repeat;
  background-position: center right 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  margin: 0;
  padding: 0 25px;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  width: 150px;
}
@media only screen and (max-width: 575px) {
  .responsive-header .responsive-search-content .form-input-item .search-categorie .form-select {
    font-size: 12px;
    width: 100px;
    padding: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .responsive-header .responsive-search-content .form-input-item .search-categorie .form-select {
    font-size: 9px;
    width: 80px;
  }
}
.responsive-header .responsive-search-content .form-input-item .search-categorie .form-select option {
  color: #666;
  font-size: 14px;
  line-height: 30px;
}

.popup-product-quickview {
  background-color: #fff;
  height: 100%;
  left: 50%;
  max-width: 900px;
  max-height: 615px;
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  position: fixed;
  padding: 30px 15px 0 15px;
  top: 50%;
  width: 100%;
  visibility: hidden;
  z-index: 9999;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .popup-product-quickview {
    max-width: none;
    width: 100%;
  }
}
.popup-product-quickview.active {
  opacity: 1;
  visibility: visible;
}
.popup-product-quickview .product-single-item .product-thumb .single-product-thumb-slider a {
  cursor: auto;
}
.popup-product-quickview .product-single-item .product-thumb .single-product-thumb-slider a:before {
  display: none;
}
@media only screen and (max-width: 991px) {
  .popup-product-quickview .product-single-item .social-sharing {
    margin-bottom: 30px;
  }
}

.popup-product-overlay {
  background: #232324;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  z-index: 999;
}
.popup-product-overlay.active {
  opacity: 0.9;
  visibility: visible;
}

.popup-product-close {
  background-color: transparent;
  position: fixed;
  top: 40px;
  font-size: 38px;
  opacity: 0;
  visibility: hidden;
  right: 40px;
  color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  border: none;
}
.popup-product-close i {
  font-size: 38px;
}
.popup-product-close:hover {
  color: #fff;
  text-shadow: 0 0 15px #fff;
}
.popup-product-close.active {
  opacity: 1;
  visibility: visible;
}

.off-canvas-wrapper {
  position: fixed;
  left: -100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100vh;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: 9999;
}
.off-canvas-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  left: 0;
}
.off-canvas-wrapper.active .off-canvas-inner {
  -webkit-transform: none;
          transform: none;
}
.off-canvas-wrapper.active .off-canvas-inner .off-canvas-content {
  -webkit-transform: none;
          transform: none;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.off-canvas-wrapper.active .btn-close {
  display: block;
}
.off-canvas-wrapper.active .off-canvas-overlay {
  opacity: 1;
  visibility: visible;
}
.off-canvas-wrapper .off-canvas-overlay {
  background-color: rgba(15, 15, 15, 0.5);
  cursor: url("../img/icons/cancel-white.png"), auto;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #0f0f0f;
  opacity: 1;
  border-radius: 0;
  color: #fff;
  background-image: none;
  padding: 0 20px;
  line-height: 40px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  height: 40px;
  line-height: 40px;
  right: 18px;
}
.off-canvas-wrapper .off-canvas-inner {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100vh;
  width: 100%;
  z-index: 3;
}
.off-canvas-wrapper .off-canvas-inner .off-canvas-content {
  background-color: #fff;
  height: 100%;
  padding: 0;
  position: relative;
  overflow-y: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  width: 350px;
  z-index: 9;
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrapper .off-canvas-inner .off-canvas-content {
    width: 310px;
  }
}
.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item {
  margin: 0;
  padding: 0;
}
.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item:last-child {
  margin-bottom: 0;
}

.fix {
  overflow: hidden;
}

/*
-----------------------------------------------------------------------
	Home Slider CSS
-----------------------------------------------------------------------
*/
.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.animate-pulse .sub-title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-pulse .title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-pulse .btn-slide {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 1;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-flipInX .sub-title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-flipInX .title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-flipInX .btn-slide {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 1;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-jackInTheBox .sub-title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-jackInTheBox .title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content.animate-jackInTheBox .btn-slide {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
  opacity: 1;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .transition-slide-0 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .transition-slide-1 {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .transition-slide-2 {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .transition-slide-3 {
  -webkit-animation-duration: 1.9s;
  animation-duration: 1.9s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .transition-slide-4 {
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 783px;
  left: 0;
  top: 0;
  position: relative;
  width: 100%;
}
@media (max-width: 1799px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    background-position: right;
    height: 600px;
  }
}

@media (max-width: 1400px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    background-position: right;
    height: 540px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 520px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 420px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 460px;
  }
}
@media only screen and (max-width: 479.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 340px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
  margin-left: 62px;
  pointer-events: auto;
}
@media (max-width: 1799px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
    margin-left: 0;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
  color: #202020;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
    font-size: 16px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
  color: #0f0f0f;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 60px;
  }
}
@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: 50px;
  }
}
@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: 40px;
  }
}
@media only screen and (max-width: 479.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title + .title {
    margin-bottom: 0;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slide {
  background-color: #4ba94b;
  border-radius: 50px;
  color: #fff;
  display: inline-block !important;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  margin-top: 34px;
  position: relative;
  padding: 0 35px;
  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;
}
@media only screen and (max-width: 1400px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slide {
    margin-top: 4px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slide {
    font-size: 12px;
    height: 40px;
    line-height: 40px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slide:hover {
  background-color: #0f0f0f;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-slide {
  opacity: 0;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content-light .sub-title {
  color: #fff;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content-light .title {
  color: #fff;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content-light .btn-slide {
  background-color: #fff;
  color: #0f0f0f;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content-light .btn-slide:hover {
  color: #fff;
  background-color: #4ba94b;
}
.home-slider-area .home-slider-container.swiper-pagination-style .swiper-pagination {
  bottom: 30px;
  display: inline-block;
  line-height: 1;
  left: 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 0px);
  -webkit-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  -o-transform: translate(-50%, 0px);
  z-index: 8;
}
.home-slider-area .home-slider-container.swiper-pagination-style .swiper-pagination span {
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #9f9f9f;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 14px;
  margin: 0 5px;
  opacity: 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;
  width: 14px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container.swiper-pagination-style .swiper-pagination span {
    height: 10px;
    margin: 0 2px;
    width: 10px;
  }
}
.home-slider-area .home-slider-container.swiper-pagination-style .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #4ba94b;
  border-color: #4ba94b;
}
.home-slider-area .home-slider-container.swiper-pagination-style.dots-bg-light .swiper-pagination span {
  background-color: #fff;
  border-color: #fff;
}
.home-slider-area .home-slider-container.swiper-pagination-style.dots-bg-light .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #4ba94b;
  border-color: #4ba94b;
}

/*
-----------------------------------------------------------------------
    About CSS
-----------------------------------------------------------------------
*/
.about-area.about-page-area .container {
  max-width: 1200px;
  padding-bottom: 62px;
}
@media only screen and (max-width: 1199px) {
  .about-area.about-page-area .container {
    padding-bottom: 70px;
  }
}

.about-page-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page-wrap .about-content {
  margin-right: -30px;
  padding-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrap .about-content {
    margin-right: 0;
    padding-left: 0;
  }
}
.about-page-wrap .about-content .title {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom:14px;
  max-width: 500px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrap .about-content .title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.about-page-wrap .about-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrap .about-content p {
    margin-bottom: 28px;
  }
}
.about-page-wrap .about-content .btn-theme {
  border-radius: 8px;
  font-weight: 600;
  height: 50px;
  letter-spacing: 0.5px;
  line-height: 53px;
  padding: 0 40px;
}
.about-page-wrap .about-content .btn-theme:hover {
  background-color: #46c246;
  color: #fff;
}
.about-page-wrap .about-thumb {
  padding-left: 70px;
  padding-right: 70px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrap .about-thumb {
    padding-left: 50px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-page-wrap .about-thumb {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-page-wrap .about-thumb {
    margin-top: 40px;
  }
}
.about-page-wrap .about-thumb img {
  width: 100%; border-radius: 10px;
}

/*
-----------------------------------------------------------------------
	Team CSS
-----------------------------------------------------------------------
*/
.team-area .container {
  max-width: 1200px;
  padding-bottom: 44px;
}
@media only screen and (max-width: 1199px) {
  .team-area .container {
    padding-bottom: 32px;
  }
}

.team-item .inner-content {
  margin-bottom: 30px;
}
.team-item .inner-content .thumb {
  background-color: #4ba94b;
  overflow: hidden;
  position: relative;
}
.team-item .inner-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;
}
.team-item .inner-content .thumb .member-icons {
  left: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  text-align: center;
  top: 50%;
  margin-top: 30px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  right: 0;
  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;
}
.team-item .inner-content .thumb .member-icons a {
  background-color: #fff;
  border-radius: 7px;
  display: inline-block;
  color: #4ba94b;
  font-size: 16px;
  height: 36px;
  margin-right: 5px; padding-right:10px; padding-left:10px;
  line-height: 40px;
  text-align: 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;
}
.team-item .inner-content .thumb .member-icons a:last-child {
  margin-right: 0;
}
.team-item .inner-content .thumb .member-icons a:hover {
  background-color: #4ba94b;
  color: #fff;
}
.team-item .inner-content .content {
  margin-top: 27px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .team-item .inner-content .content {
    margin-top: 17px;
  }
}
.team-item .inner-content .content .title {
  font-size: 24px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
  .team-item .inner-content .content .title {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
.team-item .inner-content .content .title a {
  color: #0f0f0f;
}
.team-item .inner-content .content .title a:hover {
  color: #4ba94b;
}
.team-item .inner-content .content p {
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .team-item .inner-content .content p {
    font-size: 13px;
  }
}
.team-item .inner-content:hover .thumb img {
  opacity: 0.56;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.team-item .inner-content:hover .thumb .member-icons {
  opacity: 1;
  margin-top: 0;
}

/*
-----------------------------------------------------------------------
	Feature CSS
-----------------------------------------------------------------------
*/
.feature-area.feature-about-area {
  background-color: #efe3e2;
  margin: 0;
}
.feature-area.feature-about-area .container {
  max-width: 1200px;
  padding-bottom: 75px;
  padding-top: 82px;
}
@media only screen and (max-width: 1199px) {
  .feature-area.feature-about-area .container {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-area.feature-about-area .container {
    padding-bottom: 45px;
  }
}

.feature-icon-box .inner-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 46px 0;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .inner-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.feature-icon-box .inner-content .icon-box {
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 40px;
  height: 68px;
  line-height: 66px;
  margin-right: 15px;
  position: relative;
  text-align: center;
  min-width: 68px;
  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;
}
.feature-icon-box .inner-content .icon-box:before {
  border: 2px dashed #fff;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 100%;
  z-index: 10;
  opacity: 0;
  -webkit-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(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;
}
.feature-icon-box .inner-content .content {
  margin-top: 5px;
}
.feature-icon-box .inner-content .content .title {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.feature-icon-box .inner-content .content p {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.feature-icon-box .inner-content:hover .icon-box {
  border: 2px solid transparent;
}
.feature-icon-box .inner-content:hover .icon-box:before {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.feature-icon-box-style2 .inner-content {
  position: relative;
  padding-left: 100px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content {
    padding-left: 85px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-icon-box-style2 .inner-content {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-icon-box-style2 .inner-content {
    margin-bottom: 42px;
  }
}
.feature-icon-box-style2 .inner-content .icon-box {
  border: 3px solid rgba(236, 107, 129, 0.6);
  border-radius: 50%;
  height: 80px;
  line-height: 75px;
  left: 0;
  position: absolute;
  top: 0;
  text-align: center;
  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;
  width: 80px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content .icon-box {
    height: 70px;
    line-height: 62px;
    width: 70px;
  }
}
.feature-icon-box-style2 .inner-content .icon-box:before {
  border: 3px dashed rgba(236, 107, 129, 0.6);
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: 10;
  opacity: 0;
  -webkit-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(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;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content .icon-box .icon-img {
    width: 30px;
  }
}
.feature-icon-box-style2 .inner-content .content .title {
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content .content .title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.feature-icon-box-style2 .inner-content .content p {
  color: #6d6d6d;
  font-size: 16px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content .content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box-style2 .inner-content .content p br {
    display: none;
  }
}
.feature-icon-box-style2 .inner-content:hover .icon-box {
  border: 3px solid transparent;
}
.feature-icon-box-style2 .inner-content:hover .icon-box:before {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/*
-----------------------------------------------------------------------
    Divider CSS
-----------------------------------------------------------------------
*/
.divider-product-discount-area:hover .divider-content > *:not(a) {
  text-shadow: 0 1px #555, 0 1.5px #555, 0 2px #555, 0 2.5px #555, 0 3px #555, 0 3.5px #555, 0 4px #555, 0 4.5px #555;
  transform: translate(0px, -8px);
  -webkit-transform: translate(0px, -8px);
  -moz-transform: translate(0px, -8px);
  -ms-transform: translate(0px, -8px);
  -o-transform: translate(0px, -8px);
}
.divider-product-discount-area:hover .divider-content a {
  -webkit-box-shadow: 0 1px #555, 0 1.5px #555, 0 2px #555, 0 2.5px #555, 0 3px #555, 0 3.5px #555, 0 4px #555, 0 4.5px #555;
          box-shadow: 0 1px #555, 0 1.5px #555, 0 2px #555, 0 2.5px #555, 0 3px #555, 0 3.5px #555, 0 4px #555, 0 4.5px #555;
  transform: translate(0px, -8px);
  -webkit-transform: translate(0px, -8px);
  -moz-transform: translate(0px, -8px);
  -ms-transform: translate(0px, -8px);
  -o-transform: translate(0px, -8px);
}

.divider-style-wrap .divider-content .title {
  margin-bottom: 37px;
}
.divider-style-wrap .divider-content .title2 {
  font-size: 18px;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.divider-style-wrap .divider-content .title2.collapsed:before {
  content: "";
  font-family: "Ionicons";
  font-size: 17px;
  height: 22px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 22px;
}
.divider-style-wrap .divider-content .title2:not(.collapsed):before {
  content: "";
  font-family: "Ionicons";
  font-size: 17px;
  height: 22px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 22px;
}
.divider-style-wrap .divider-content .social-icons a {
  background-color: #fff;
  border-radius: 50%;
  color: #0f0f0f;
  display: inline-block;
  font-size: 32px;
  height: 42px;
  line-height: 42px;
  margin-right: 26px;
  position: relative;
  text-align: center;
  width: 42px;
}
.divider-style-wrap .divider-content .social-icons a:last-child {
  margin-right: 0;
}
.divider-style-wrap .divider-content .social-icons a:hover {
  background-color: #4ba94b;
  color: #fff;
}
.divider-style-wrap .divider-content p {
  color: #615d5d;
  font-size: 13px;
  line-height: 24px;
  margin: auto;
  margin-top: 36px;
  max-width: 420px;
}
@media only screen and (min-width: 768px) {
  .divider-style-wrap .divider-content .collapse {
    display: inherit;
  }
}
.divider-style2-wrap {
  padding-top: 12px;
  padding-bottom: 8px;
}
.divider-style2-wrap .divider-content > *:not(a) {
  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;
}
.divider-style2-wrap .divider-content .sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.divider-style2-wrap .divider-content .title {
  color: #fff;
  font-size: 90px;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style2-wrap .divider-content .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style2-wrap .divider-content .title {
    font-size: 60px;
    margin-bottom: 8px;
  }
}
.divider-style2-wrap .divider-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 33px;
}
.divider-style2-wrap .divider-content a {
  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 (max-width: 1599px) {
  .shape-group {
    display: none;
  }
}
.shape-group .shape-img1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.shape-group .shape-img2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/*
-----------------------------------------------------------------------
  Counter CSS
-----------------------------------------------------------------------
*/
.ht-countdown-style1 {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .ht-countdown-style1 {
    display: block;
  }
}
.ht-countdown-style1 .countdown-item {
  background-color: #4ba94b;
  display: inline-block;
  text-align: center;
  position: relative;
  width: 54px;
  border-radius: 3px;
  padding: 8px 0;
  margin: 0 7px;
}
@media only screen and (max-width: 767px) {
  .ht-countdown-style1 .countdown-item {
    border: 4px solid #fff;
    margin: 0;
    width: 50%;
  }
}
.ht-countdown-style1 .countdown-item__time {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .ht-countdown-style1 .countdown-item__time {
    font-size: 16px;
  }
}
.ht-countdown-style1 .countdown-item__label {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .ht-countdown-style1 .countdown-item__label {
    font-size: 10px;
  }
}
.ht-countdown-style1 .countdown-item:after {
  content: ":";
  color: #4ba94b;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 50%;
  vertical-align: middle;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
@media only screen and (max-width: 767px) {
  .ht-countdown-style1 .countdown-item:after {
    display: none;
  }
}
.ht-countdown-style1 .countdown-item:first-child {
  margin-left: 0;
}
.ht-countdown-style1 .countdown-item:last-child {
  margin-right: 0;
}
.ht-countdown-style1 .countdown-item:last-child:after {
  display: none;
}
.ht-countdown-style2 {
  display: inline-block;
}
.ht-countdown-style2 .countdown-item {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  position: relative;
  width: 70px;
  padding: 12px 0;
  margin: 0 7px;
}
@media only screen and (max-width: 479.98px) {
  .ht-countdown-style2 .countdown-item {
    margin: 1px;
  }
}
.ht-countdown-style2 .countdown-item__time {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 479.98px) {
  .ht-countdown-style2 .countdown-item__time {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.ht-countdown-style2 .countdown-item__label {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ht-countdown-style2 .countdown-item:after {
  content: ":";
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  right: -13px;
  top: 50%;
  vertical-align: middle;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
@media only screen and (max-width: 479.98px) {
  .ht-countdown-style2 .countdown-item:after {
    display: none;
  }
}
.ht-countdown-style2 .countdown-item:first-child {
  margin-left: 0;
}
.ht-countdown-style2 .countdown-item:last-child {
  margin-right: 0;
}
.ht-countdown-style2 .countdown-item:last-child:after {
  display: none;
}

/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.product-item .inner-content {
  background-color: #fff;
  position: relative;
  padding: 15px;
  text-align: 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;
  z-index: 1;
}
.product-item .inner-content:after {
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  bottom: -95px;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  z-index: -1;
  transform: rotateX(45deg);
  -webkit-transform: rotateX(45deg);
  -moz-transform: rotateX(45deg);
  -ms-transform: rotateX(45deg);
  -o-transform: rotateX(45deg);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  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-item .inner-content .product-flag {
  display: -ms-inline-grid;
  display: inline-grid;
  margin-bottom: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.product-item .inner-content .product-flag > li {
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  line-height: 20px;
  margin-bottom: 5px;
  padding: 0 5px;
  text-transform: capitalize;
  z-index: 1;
}
.product-item .inner-content .product-flag .discount {
  background-color: #090;
}
.product-item .inner-content .product-flag .new {
  background-color: #4ba94b;
}
.product-item .inner-content .product-action {
  left: 10px;
  position: absolute;
  top: 10px;
  z-index: 1;
}
.product-item .inner-content .product-action .addto-wrap > a {
  background: #f6f6f6;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #0f0f0f;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 47px;
  margin-right: 5px;
  padding: 0;
  text-align: center;
  width: 40px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(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;
}
.product-item .inner-content .product-action .addto-wrap > a:nth-child(2) {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
.product-item .inner-content .product-action .addto-wrap > a:hover {
  background-color: #4ba94b;
  color: #fff;
}
.product-item .inner-content .product-thumb {
  position: relative;
  overflow: hidden;
}
.product-item .inner-content .product-thumb img {
  width: 100%;
}
.product-item .inner-content .product-thumb .second-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  display: inline-block;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  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;
  -webkit-transition-duration: 500ms !important;
          transition-duration: 500ms !important;
}
.product-item .inner-content .product-info {
  background-color: #fff;
  padding-top: 22px;
  text-align: center;
}
.product-item .inner-content .product-info .title {
  color: #0f0f0f;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .product-info .title {
    font-size: 13px;
  }
}
.product-item .inner-content .product-info .title a {
  color: #0f0f0f;
}
.product-item .inner-content .product-info .title a:hover {
  color: #4ba94b;
}
.product-item .inner-content .product-info .star-content {
  margin-bottom: 6px;
}
.product-item .inner-content .product-info .star-content i {
  color: #fdd835;
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.product-item .inner-content .product-info .star-content i.icon-color-gray {
  color: #d0d0d0;
}
.product-item .inner-content .product-info .prices {
  line-height: 1;
}
.product-item .inner-content .product-info .prices .price {
  color: #4ba94b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.product-item .inner-content .product-info .prices .price-old {
  color: #9b9b9b;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 2px;
  font-size: 15px;
  line-height: 1;
}
.product-item .inner-content .btn-product-add {
  background-color: #f6f5f4;
  border-radius: 50px;
  color: #0f0f0f;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding: 13px 55px 13px 25px;
  overflow: hidden;
  text-align: center;
  text-transform: capitalize;
  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;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .btn-product-add {
    font-size: 12px;
    padding: 10px 38px 8px 15px;
  }
}
.product-item .inner-content .btn-product-add:after {
  background-color: #4ba94b;
  border-radius: 50px;
  content: "";
  height: 100%;
  left: 0;
  visibility: hidden;
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -moz-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -ms-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -o-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
}
.product-item .inner-content .btn-product-add:before {
  background-color: #fff;
  border-radius: 50%;
  color: #0f0f0f;
  font-size: 16px;
  font-family: "simple-line-icons";
  font-weight: 400;
  display: block;
  content: "";
  height: 40px;
  line-height: 40px;
  right: 5px;
  position: absolute;
  top: 5px;
  width: 40px;
}
@media only screen and (max-width: 1199px) {
  .product-item .inner-content .btn-product-add:before {
    font-size: 13px;
    height: 30px;
    line-height: 30px;
    width: 30px;
  }
}
.product-item .inner-content .btn-product-add:hover {
  color: #fff;
}
.product-item .inner-content .btn-product-add:hover:after {
  left: 0;
  right: auto;
  visibility: visible;
  width: 100%;
}
.product-item .inner-content .btn-quick-view {
  font-size: 14px;
  color: #222;
  line-height: 24px;
  border-bottom: none;
  text-transform: capitalize;
  display: inline-block;
}
.combo-breaker { border:1px solid dashed; color:#999; height:1px; margin:10px 0px; }

.product-item .inner-content .btn-quick-view:hover {
  color: #fff !important;
  border-color: none;
}
.product-item .inner-content .product-desc {
  position: relative;
}
.product-item .inner-content .product-desc .product-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  left: -15px;
  opacity: 0;
  visibility: hidden;
  padding: 20px 0 25px 0;
  position: absolute;
  right: -15px;
  text-align: center;
  top: 100%;
  transform: translate(0, 20px);
  -webkit-transform: translate(0, 20px);
  -moz-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  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-item .inner-content:hover {
  z-index: 3;
}
.product-item .inner-content:hover:after {
  bottom: -75px;
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
}
.product-item .inner-content:hover .product-thumb .second-image {
  opacity: 1;
  visibility: visible;
  transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  -o-transform: scale3d(1.1, 1.1, 1.1);
}
.product-item .inner-content:hover .product-desc .product-footer {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}
.product-item .inner-content:hover .product-action .addto-wrap > a {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.product-item .inner-content.discount-product {
  border: 2px solid #4ba94b;
}
.product-item .inner-content.discount-product .product-info {
  padding-top: 32px;
}
.product-item .inner-content.discount-product .product-info .star-content {
  margin-bottom: 7px;
}
.product-item .inner-content.discount-product .product-desc .product-footer {
  border-width: 2px;
  border-color: #4ba94b;
  border-top: 0;
  border-style: solid;
  left: -17px;
  right: -17px;
}
.product-item .inner-content.discount-product:hover {
  border-bottom: none;
}
.product-item .inner-content.product-list-item {
  text-align: left;
}
.product-item .inner-content.product-list-item:after {
  bottom: 0;
}
.product-item .inner-content.product-list-item .product-info {
  text-align: left;
  padding-top: 0;
}
.product-item .inner-content.product-list-item .product-info .prices {
  margin-bottom: 32px;
}
.product-item .inner-content.product-list-item .product-desc-list li {
  color: #888;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
.product-item .inner-content.product-list-item .product-desc {
  padding: 28px 0 20px 30px;
}
@media only screen and (max-width: 575px) {
  .product-item .inner-content.product-list-item .product-desc {
    padding: 28px 0 20px 5px;
  }
}
.product-item .inner-content.product-list-item .product-desc .product-footer {
  -webkit-transform: none;
          transform: none;
  padding: 0;
  text-align: left;
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 0;
  top: auto;
  right: 0;
}
.product-item .inner-content.product-list-item .product-desc .product-footer .btn-product-add {
  margin-right: 19px;
}
.product-item .inner-content.product-list-item .availability-list {
  color: #777;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 29px;
  text-transform: capitalize;
}
.product-item .inner-content.product-list-item .availability-list span {
  color: #090;
}
.product-item .inner-content.product-featured-list-item {
  padding: 0;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-item .inner-content.product-featured-list-item:after {
  display: none;
}
.product-item .inner-content.product-featured-list-item .product-thumb {
  width: 120px;
  min-width: 120px;
  margin-right: 20px;
}
.product-item .inner-content.product-featured-list-item .product-thumb .second-image {
  height: auto;
}
.product-item .inner-content.product-featured-list-item .product-desc {
  padding: 15px 10px 0 0;
}
.product-item .inner-content.product-featured-list-item .product-info {
  text-align: left;
  padding-top: 0;
}
.product-item .inner-content.product-featured-list-item .product-info .title {
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 7px;
}
.product-item .inner-content.product-featured-list-item .product-info .prices {
  margin-bottom: 32px;
}

.product-category-item .inner-content .thumb {
  position: relative;
  overflow: hidden;
}
.product-category-item .inner-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;
}
.product-category-item .inner-content .content {
  background: #295dab;
  padding: 26px 20px 18px;
  text-align: center;
  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-category-item .inner-content .content .product-number {
  color: #615d5d;
  line-height: 1;
  margin-bottom: 11px;
  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-category-item .inner-content .content .title {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
  text-transform: capitalize; font-family: "Gilroy";
}
.product-category-item .inner-content .content .title a {
  color: #fff;
  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-category-item .inner-content .content .title a:hover {
  text-decoration: underline;
}
.product-category-item .inner-content:hover .thumb .img {
  transform: scale(1.055) rotate(0.05deg);
  -webkit-transform: scale(1.055) rotate(0.05deg);
  -moz-transform: scale(1.055) rotate(0.05deg);
  -ms-transform: scale(1.055) rotate(0.05deg);
  -o-transform: scale(1.055) rotate(0.05deg);
}
.product-category-item .inner-content:hover .content {
  background-color: #4ba94b;
}
.product-category-item .inner-content:hover .content .product-number {
  color: #fff;
}
.product-category-item .inner-content:hover .content .title {
  color: #fff;
}
.product-category-item .inner-content:hover .content .title a {
  color: #fff;
}
.product-category-item .inner-content-style2 .thumb {
  position: relative;
  overflow: hidden;     border-radius: 10px;
}
.product-category-item .inner-content-style2 .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;
}
.product-category-item .inner-content-style2 .content {
  background: #fff;
  padding: 21px 18px 22px;
  text-align: center;
  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-category-item .inner-content-style2 .content .product-number {
  color: #4ba94b;
  line-height: 1;
  margin-bottom: 11px;
  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-category-item .inner-content-style2 .content .title {
  color: #0f0f0f;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.product-category-item .inner-content-style2 .content .title a {
  color: #0f0f0f;
  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-category-item .inner-content-style2 .content .title a:hover {
  color: #4ba94b;
}
.product-category-item .inner-content-style2:hover .thumb .img {
  transform: scale(1.055) rotate(0.05deg);
  -webkit-transform: scale(1.055) rotate(0.05deg);
  -moz-transform: scale(1.055) rotate(0.05deg);
  -ms-transform: scale(1.055) rotate(0.05deg);
  -o-transform: scale(1.055) rotate(0.05deg);
}

.product-tabs-content-wrap .product-tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-tabs-content-wrap .product-tab-nav li a {
  border-bottom: 2px solid transparent;
  color: #0f0f0f;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 30px;
  font-size: 14px;
  padding: 0;
  margin-right: 45px;
  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;
}
@media only screen and (max-width: 575px) {
  .product-tabs-content-wrap .product-tab-nav li a {
    font-size: 12px;
    margin-right: 25px;
  }
}
.product-tabs-content-wrap .product-tab-nav li a.active {
  border-bottom-color: #4ba94b;
  color: #4ba94b;
}
.product-tabs-content-wrap .product-tab-nav li:last-child a {
  margin-right: 0;
}
.product-inner-wrapper .product-header-wrap {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 32px;
  padding: 0 0 10px 0;
}
.product-inner-wrapper .product-header-wrap .product-tab-nav {
  float: left;
  margin-right: 35px;
}
@media only screen and (max-width: 479.98px) {
  .product-inner-wrapper .product-header-wrap .product-tab-nav {
    margin-right: 0;
  }
}
.product-inner-wrapper .product-header-wrap .product-tab-nav li a {
  color: #0f0f0f;
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
  margin-right: 15px;
}
.product-inner-wrapper .product-header-wrap .product-tab-nav li a.active {
  color: #4ba94b;
}
.product-inner-wrapper .product-header-wrap .total-products {
  font-size: 14px;
  color: #0f0f0f;
  float: left;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  padding: 5px;
  text-transform: capitalize;
}
.product-inner-wrapper .product-header-wrap .total-products p {
  margin-bottom: 0;
}
.product-inner-wrapper .product-header-wrap .sort-by-text {
  font-size: 14px;
  color: #888;
  text-align: right;
  line-height: 20px;
  margin: 0;
  padding: 5px;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .product-inner-wrapper .product-header-wrap .sort-by-text {
    display: none;
  }
}
.product-inner-wrapper .product-header-wrap .sort-by-form .form-select {
  border: 1px solid #ebebeb;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  padding: 2px 15px;
  height: 30px;
  line-height: 26px;
}
.product-inner-wrapper .product-header-wrap .sort-by-form select {
  background-image: url("../img/icons/arrow-down.png");
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-size: 10px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product-inner-wrapper .product-header-wrap .sort-by-form select option {
  color: #888;
  cursor: pointer;
  padding: 3px 15px;
}

.product-single-item .product-thumb .single-product-thumb-content a {
  cursor: crosshair;
  display: inline-block;
  position: relative;
}
.product-single-item .product-thumb .single-product-thumb-content a:before {
  font-family: "Ionicons";
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #e2e2e2;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  line-height: 50px;
  font-size: 46px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  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-thumb .single-product-thumb-content a .product-flag-new {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #4ba94b;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  line-height: 20px;
  margin-bottom: 0;
  padding: 0 5px;
  text-transform: capitalize;
  z-index: 1;
}
.product-single-item .product-thumb .single-product-thumb-content:hover a:before {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.product-single-item .product-thumb .single-product-nav-content {
  margin-top: 27px;
}
.product-single-item .product-thumb .single-product-nav-content .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-single-item .product-thumb .single-product-nav-content .swiper-slide {
  border: 1px solid #ebebeb;
  cursor: pointer;
  max-width: 105px;
  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-thumb .single-product-nav-content .swiper-slide-thumb-active {
  border-color: #4ba94b;
}
.product-single-item .product-thumb .single-product-nav-content .swiper-slide:last-child {
  margin-right: 0 !important;
}
.product-single-item .product-single-info .title {
  color: #0f0f0f;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}
.product-single-item .product-single-info .title span {
  color: #222;
}

.product-single-item .product-single-info .product-info {
  margin-bottom: 24px;
}
.product-single-item .product-single-info .product-info .star-content {
  display: inline-block;
  margin-right: 8px;
}
.product-single-item .product-single-info .product-info .star-content i {
  color: #fdd835;
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.product-single-item .product-single-info .product-info .star-content i.icon-color-gray {
  color: #d0d0d0;
}
.product-single-item .product-single-info .product-info .comments-advices {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  top: -2px;
}
.product-single-item .product-single-info .product-info .comments-advices li {
  display: inline-block;
}
.product-single-item .product-single-info .product-info .comments-advices li a {
  text-decoration: none;
  color: #253237;
  font-weight: 300;
  position: relative;
  margin-right: 11px;
  line-height: 21px;
  padding: 0;
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  display: inline-block;
}
.product-single-item .product-single-info .product-info .comments-advices li a i {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin-right: 9px;
}
.product-single-item .product-single-info .product-info .comments-advices li a:hover {
  color: #4ba94b;
}
.product-single-item .product-single-info .prices {
  line-height: 1;
  margin-bottom: 36px;
}
.product-single-item .product-single-info .prices .price {
  color: #0f0f0f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-right: 12px;
}
.product-single-item .product-single-info .prices .price-old {
  color: #9b9b9b;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 10px;
  font-size: 22px;
  line-height: 1;
}
.product-single-item .product-single-info .prices .discount-percentage {
  background-color: #0f0f0f;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 6px 10px 5px;
  vertical-align: 4px;
  border-radius: 0;
  text-transform: capitalize;
}
.product-single-item .product-single-info .prices .tax-label {
  color: #7a7a7a;
  font-size: 0.8125rem;
  font-weight: 300;
  margin-top: 8px;
}
.product-single-item .product-single-info .product-description {
  border-bottom: 1px solid #ebebeb;
  margin: 15px 0 35px;
  padding-bottom: 30px;
}
.product-single-item .product-single-info .product-description .product-desc-list {
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-description .product-desc-list li {
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
.product-single-item .product-single-info .product-variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 29px;
}
.product-single-item .product-single-info .product-variants-item {
  margin: 0;
  width: 25%;
}
.product-single-item .product-single-info .product-variants-item .title {
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 479.98px) {
  .product-single-item .product-single-info .product-variants-item .title {
    font-size: 13px;
  }
}
.product-single-item .product-single-info .product-variants-item .form-control-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=) no-repeat scroll right 0.5rem center/1.25rem 1.25rem;
  color: #0f0f0f;
  cursor: pointer;
  border: 1px solid #ebebeb;
  font-size: 14px;
  font-weight: 300;
  height: calc(2.5rem - 2px);
  padding: 2px 0.5rem 0;
  width: 55px;
}
.product-single-item .product-single-info .product-variants-item .product-color-select {
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-variants-item .product-color-select li {
  background-color: #434a54;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
  border: 2px solid #434a54;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin-right: 11px;
  width: 20px;
  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-info .product-variants-item .product-color-select li.active {
  background-color: #fff;
  border-color: #232323;
}
.product-single-item .product-single-info .product-variants-item .product-color-select li:hover {
  background-color: #fff;
  border-color: #232323;
}
.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;
  margin-bottom: 21px;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty {
  margin-right: 10px;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty {
  position: relative;
  width: 84px;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty input {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-right: none;
  color: #232323;
  font-weight: 300;
  height: 48px;
  padding: 0.175rem 0.5rem;
  width: 60px;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty .qty-btn {
  border: 1px solid #ebebeb;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 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;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty .qty-btn:hover {
  background-color: #f1f1f1;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty .inc {
  border-bottom: none;
  top: 0;
}
.product-single-item .product-single-info .product-quick-action .product-quick-qty .pro-qty .dec {
  bottom: 0;
}
.product-single-item .product-single-info .product-quick-action .btn-product-add {
  background-color: #f6f5f4;
  border-radius: 50px;
  color: #0f0f0f;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding: 13px 55px 13px 25px;
  overflow: hidden;
  text-align: center;
  text-transform: capitalize;
  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-single-item .product-single-info .product-quick-action .btn-product-add:after {
  background-color: #4ba94b;
  border-radius: 50px;
  content: "";
  height: 100%;
  left: 0;
  visibility: hidden;
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -moz-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -ms-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  -o-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
}
.product-single-item .product-single-info .product-quick-action .btn-product-add:before {
  background-color: #fff;
  border-radius: 50%;
  color: #0f0f0f;
  font-size: 16px;
  font-family: "simple-line-icons";
  font-weight: 400;
  display: block;
  content: "";
  height: 40px;
  line-height: 40px;
  right: 5px;
  position: absolute;
  top: 5px;
  width: 40px;
}
.product-single-item .product-single-info .product-quick-action .btn-product-add:hover {
  color: #fff;
}
.product-single-item .product-single-info .product-quick-action .btn-product-add:hover:after {
  left: 0;
  right: auto;
  visibility: visible;
  width: 100%;
}
.product-single-item .product-single-info .product-wishlist-compare {
  margin-bottom: 24px;
}
.product-single-item .product-single-info .product-wishlist-compare a {
  line-height: 24px;
  padding: 0;
  font-weight: 300;
  color: #666;
  font-size: 14px;
  background: transparent;
  margin-right: 20px;
  cursor: pointer;
  border-bottom: 1px solid #ebebeb;
  display: inline-block;
  margin-bottom: 0;
}
.product-single-item .product-single-info .product-wishlist-compare a i {
  margin-right: 5px;
  font-size: 16px;
  vertical-align: -1px;
}
.product-single-item .product-single-info .product-wishlist-compare a:hover {
  color: #4ba94b;
  border-bottom-color: #4ba94b;
}
.product-single-item .product-single-info .social-sharing span {
  display: inline-block;
  float: left;
  margin-right: 15px;
  margin-top: 5px;
  line-height: 1;
  font-weight: 700;
  color: #0f0f0f;
  font-size: 14px;
  text-transform: uppercase;
}
.product-single-item .product-single-info .social-sharing .social-icons a {
  color: #b4b4b4;
  display: inline-block;
  font-size: 20px;
  margin-right: 6px;
  text-align: center;
  line-height: 1;
}
.product-single-item .product-single-info .social-sharing .social-icons a:hover {
  color: #4ba94b;
}

.product-review-tabs-content .product-tab-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -1px;
}
.product-review-tabs-content .product-tab-nav li {
  display: inline-block;
}
.product-review-tabs-content .product-tab-nav li a {
  border-bottom: 2px solid transparent;
  color: #888;
  display: inline-block;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  margin-right: 63px;
  padding: 0 0 15px 0;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .product-review-tabs-content .product-tab-nav li a {
    font-size: 16px;
    margin-right: 34px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav li a {
    font-size: 14px;
    margin-right: 12px;
    padding-bottom: 8px;
  }
}
.product-review-tabs-content .product-tab-nav li a.active {
  border-bottom-color: #4ba94b;
  color: #253237;
}
.product-review-tabs-content .product-tab-nav li a:hover {
  border-bottom-color: #4ba94b;
  color: #253237;
}
.product-review-tabs-content .product-tab-content {
  background-color: #fff;
  border: 1px solid #ebebeb;
  padding: 31px 30px 29px;
}
.product-review-tabs-content .product-tab-content .product-description ul {
  margin-bottom: 0;
}
.product-review-tabs-content .product-tab-content .product-description ul li {
  color: #888;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
}
.product-review-tabs-content .product-tab-content .product-details .product-manufacturer {
  border: 1px solid #ddd;
  display: inline-block;
  margin-bottom: 31px;
  padding: 0.25rem;
}
.product-review-tabs-content .product-tab-content .product-details .product-reference {
  color: #707070;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}
.product-review-tabs-content .product-tab-content .product-details .product-reference span {
  font-size: 1rem;
  color: #232323;
  font-weight: 700;
  margin-right: 5px;
}
.product-review-tabs-content .product-tab-content .product-details .product-quantities {
  color: #707070;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 25px;
}
.product-review-tabs-content .product-tab-content .product-details .product-quantities span {
  font-size: 1rem;
  color: #232323;
  font-weight: 700;
  margin-right: 5px;
}
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet span {
  color: #0f0f0f;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  display: block;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .name,
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 49%;
  font-weight: 300;
  background: #f1f1f1;
  padding: 0.625rem;
  margin-right: 0.625rem;
  min-height: 2.5rem;
  word-break: normal;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .name,
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .value {
    margin-right: 0;
  }
}
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .name:nth-of-type(2n),
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet .value:nth-of-type(2n) {
  background-color: #f6f6f6;
}
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet dt,
.product-review-tabs-content .product-tab-content .product-details .product-data-sheet .data-sheet dd {
  margin-bottom: 0;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment {
  margin-bottom: 14px;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .grade {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .star-content {
  display: inline-block;
  margin-left: 9px;
  line-height: 1;
  position: relative;
  top: 1px;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .star-content i {
  color: #fdd835;
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .star-content i.icon-color-gray {
  color: #d0d0d0;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author-info {
  margin-top: 9px;
  margin-bottom: 17px;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author-info .title {
  color: #333;
  display: block;
  margin-bottom: 9px;
  line-height: 1;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author-info .date {
  color: #adadad;
  line-height: 1;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .comment-details .title {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment-author .comment-details .desc {
  font-weight: 300;
}
.product-review-tabs-content .product-tab-content .product-comments-content .comment + .comment {
  padding-top: 14px;
  border-top: 1px solid #ebebeb;
}
.product-review-tabs-content .product-tab-content .product-comments-content .btn-review {
  background-color: #0f0f0f;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  height: 35px;
  line-height: 28px;
  margin-bottom: 20px;
  padding: 5px 20px;
  text-transform: capitalize;
}
.product-review-tabs-content .product-tab-content .product-comments-content .btn-review:hover {
  background-color: #4ba94b;
}

.shopping-cart-wrap .shopping-cart-content .title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 14px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item {
  border-bottom: 1px solid #ebebeb;
  padding-top: 17px;
  padding-bottom: 15px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-content .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 14px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-content .title a {
  color: #0f0f0f;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-content .title a:hover {
  color: #4ba94b;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-content .product-price {
  color: #0f0f0f;
  font-size: 18px;
  margin-bottom: 9px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-content .product-size {
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty {
  margin-right: 0;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty {
  position: relative;
  width: 70px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty input {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-right: none;
  color: #232323;
  font-weight: 300;
  height: 40px;
  padding: 0.175rem 0.5rem;
  width: 48px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty .qty-btn {
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 14px;
  height: 21px;
  line-height: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 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;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty .qty-btn:hover {
  background-color: #f1f1f1;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty .inc {
  border-bottom: none;
  top: 0;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-quick-qty .pro-qty .dec {
  bottom: 0;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-price {
  font-size: 14px;
  margin-bottom: 0;
  padding-top: 12px;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-close a {
  color: #232323;
  font-size: 24px;
  line-height: 1;
  margin-top: 5px;
  display: block;
}
.shopping-cart-wrap .shopping-cart-content .shopping-cart-item .product-info .product-close a:hover {
  color: #4ba94b;
}
.shopping-cart-wrap .shopping-cart-content .btn-primary {
  background: #0f0f0f;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  line-height: 25px;
  padding: 5px 20px;
  margin-top: 29px;
  text-transform: capitalize;
}
.shopping-cart-wrap .shopping-cart-content .btn-primary:hover {
  background-color: #4ba94b;
}
.shopping-cart-wrap .shopping-cart-summary {
  border: 1px solid #ebebeb;
}
.shopping-cart-wrap .shopping-cart-summary .cart-detailed-totals .card-block {
  padding: 26px 20px 14px;
}
.shopping-cart-wrap .shopping-cart-summary .cart-detailed-totals .card-block .card-block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
  line-height: 1;
}
.shopping-cart-wrap .shopping-cart-summary .cart-detailed-totals .card-block .card-block-item .label {
  color: #0f0f0f;
  font-weight: 400;
  text-transform: capitalize;
}
.shopping-cart-wrap .shopping-cart-summary .cart-detailed-totals .card-block .card-block-item .value {
  color: #0f0f0f;
  font-weight: 600;
  font-size: 16px;
}
.shopping-cart-wrap .shopping-cart-summary .checkout-shopping {
  padding: 20px;
  text-align: center;
}
.shopping-cart-wrap .shopping-cart-summary .checkout-shopping .btn-checkout {
  background: #0f0f0f;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  line-height: 25px;
  padding: 5px 20px;
  margin-top: 0;
  text-transform: capitalize;
}
.shopping-cart-wrap .shopping-cart-summary .checkout-shopping .btn-checkout:hover {
  background-color: #4ba94b;
}
.shopping-cart-wrap .shopping-cart-summary .separator {
  border-top: 1px solid #ebebeb;
}
.shopping-cart-wrap .block-reassurance {
  margin-top: 12px;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
}
.shopping-cart-wrap .block-reassurance ul {
  margin-bottom: 0;
}
.shopping-cart-wrap .block-reassurance ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}
.shopping-cart-wrap .block-reassurance ul li img {
  margin-right: 10px;
}
.shopping-cart-wrap .block-reassurance ul li span {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  display: block;
  overflow: hidden;
}
.shopping-cart-wrap .block-reassurance ul li:last-child {
  margin-bottom: 0;
}

.shopping-checkout-content .checkout-accordion .checkout-accordion-item {
  border: 1px solid #ebebeb;
  margin-bottom: 10px;
  padding: 19px 24px 10px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading {
  line-height: 1px;
  margin-bottom: 0;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button {
  border: none;
  background-color: transparent;
  margin: 0;
  display: inline-block;
  padding: 0;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 479.98px) {
  .shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button {
    font-size: 16px;
  }
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button.collapsed {
  position: relative;
  padding-bottom: 9px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button.collapsed:before {
  font-family: "Ionicons";
  color: #4cbb6c;
  content: "";
  position: relative;
  font-size: 38px;
  font-weight: 400;
  line-height: 2px;
  vertical-align: -8px;
  margin-right: 16px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button.collapsed .step-number {
  display: none;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button:not(.collapsed) {
  padding-bottom: 0;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button:not(.collapsed):before {
  display: none;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button:not(.collapsed) .step-number {
  display: inline-block;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button .step-edit {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 300;
  float: right;
  position: relative;
  top: 2px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .heading .heading-button .step-number {
  margin-right: 11px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .accordion-collapse {
  border: none;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body {
  margin-top: 18px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-information ul {
  margin-bottom: 0;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-information ul li {
  color: #232323;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-information ul li small {
  color: #7a7a7a;
  font-size: 80%;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-information ul li a {
  color: #555;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-information ul li a:hover {
  color: #4ba94b;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses {
  padding-left: 24px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .p-text {
  color: #232323;
  font-weight: 300;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group {
  margin-bottom: 20px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group label {
  color: #0f0f0f;
  font-size: 13px;
  font-weight: 300;
  padding-top: 12px;
  text-align: left;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .form-control {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
  height: 35px;
  padding: 5px 16px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group select.form-control {
  color: #0f0f0f;
  font-size: 13px;
  padding-top: 6px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .optional-label {
  font-size: 14px;
  font-weight: 300;
  color: #7a7a7a;
  height: 35px;
  display: inline-block;
  line-height: 35px;
}
.shopping-checkout-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .btn-submit {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 300;
  border: none;
  line-height: 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  background: #0f0f0f;
  color: #fff;
  margin-top: 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-content .checkout-accordion .checkout-accordion-item .checkout-accordion-body .personal-addresses .delivery-address-form .form-group .btn-submit:hover {
  background-color: #4ba94b;
}
.shopping-checkout-content .shopping-checkout-disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ebebeb;
  margin-bottom: 10px;
  padding: 23px 25px 21px;
}
.shopping-checkout-content .shopping-checkout-disabled .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  margin: 0;
  display: block;
  cursor: not-allowed;
  opacity: 0.5;
}
@media only screen and (max-width: 479.98px) {
  .shopping-checkout-content .shopping-checkout-disabled .title {
    font-size: 16px;
  }
}
.shopping-checkout-content .shopping-checkout-disabled .title span {
  margin-right: 10px;
}

.shopping-wishlist-wrap .wishlist-content {
  margin: 0 15px;
}
.shopping-wishlist-wrap .wishlist-content .table {
  overflow-x: auto;
}
.shopping-wishlist-wrap .wishlist-content .table td,
.shopping-wishlist-wrap .wishlist-content .table th {
  border: 1px solid #f6f6f6;
}
.shopping-wishlist-wrap .wishlist-content .table thead th {
  border-bottom: 2px solid #f6f6f6;
  color: #707070;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 18px 12px 16px;
  vertical-align: bottom;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-name {
  width: 200px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-qty {
  width: 127px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-viewed {
  width: 190px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-created {
  width: 248px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-direct-link {
  width: 245px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-default {
  width: 191px;
}
.shopping-wishlist-wrap .wishlist-content .table thead .item-delete {
  width: 178px;
}
.shopping-wishlist-wrap .wishlist-content .table tbody td {
  padding: 12px 12px;
  vertical-align: middle;
}
.shopping-wishlist-wrap .wishlist-content .table tbody span {
  color: #707070;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}
.shopping-wishlist-wrap .wishlist-content .table tbody span a {
  color: #707070;
}
.shopping-wishlist-wrap .wishlist-content .table tbody span a:hover {
  color: #4ba94b;
}
.shopping-wishlist-wrap .wishlist-content .table tbody .item-delete {
  text-align: center;
}
.shopping-wishlist-wrap .wishlist-content .table tbody .item-delete a {
  background-color: #ccc;
  color: #666;
  font-size: 22px;
  height: 27px;
  display: inline-block;
  width: 28px;
  text-align: center;
  line-height: 30px;
  border-radius: 3px;
}
.shopping-wishlist-wrap .wishlist-content .wishlist-footer {
  margin-top: 51px;
}
.shopping-wishlist-wrap .wishlist-content .wishlist-footer .btn-wishlist {
  background: #0f0f0f;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  padding: 11px 20px 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
  .shopping-wishlist-wrap .wishlist-content .wishlist-footer .btn-wishlist {
    font-size: 13px;
  }
}
.shopping-wishlist-wrap .wishlist-content .wishlist-footer .btn-wishlist:hover {
  background-color: #4ba94b;
}

.shopping-compare-wrap .poscompare-table-container {
  overflow-x: auto;
  overflow-y: hidden;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: none;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr.poscompare-data-list:nth-child(even) {
  background-color: #eee;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr.poscompare-data-list .poscompare-product-td {
  padding: 16px 15px 11px;
  vertical-align: middle;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr.poscompare-data-list .title {
  -webkit-box-flex: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr.poscompare-data-list .span {
  color: #707070;
  font-weight: 300;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-tr.poscompare-data-list.list-bg-color .poscompare-product-td {
  background-color: #eee;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td {
  -ms-flex: 0 1 25%;
  -webkit-box-flex: 0;
          flex: 0 1 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  min-width: 222px;
  border: none !important;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb {
  margin-bottom: 26px;
  padding-top: 32px;
  position: relative;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb .poscompare-remove {
  color: #555;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 0;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb .poscompare-remove:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  display: inline-block;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  background-color: currentColor;
  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;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb .poscompare-remove:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  display: inline-block;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  background-color: currentColor;
  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;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb .poscompare-remove:hover:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-thumb .poscompare-remove:hover:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .title {
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 13px;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .title a {
  color: #0f0f0f;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .title a:hover {
  color: #4ba94b;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .star-content {
  margin-bottom: 9px;
  line-height: 1;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .star-content i {
  color: #fdd835;
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .star-content i.icon-color-gray {
  color: #d0d0d0;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .prices {
  line-height: 1;
  margin-bottom: 22px;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .prices .price {
  color: #4ba94b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .prices .price-old {
  color: #9b9b9b;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 2px;
  font-size: 15px;
  line-height: 1;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .btn-product-add {
  display: inline-block;
  background: #333;
  color: #fff;
  font-weight: 500;
  line-height: 40px;
  height: 40px;
  width: auto;
  padding: 0 40px;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 25px;
  position: relative;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-product .product-info .btn-product-add:hover {
  background-color: #4ba94b;
}
.shopping-compare-wrap .poscompare-table-container .poscompare-product-td .poscompare-remove-all {
  display: inline-block;
  height: 25px;
  -webkit-box-flex: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-sidebar-wrapper .sidebar-item .sidebar-title {
  border-bottom: 1px solid #ebebeb;
  color: #0f0f0f;
  font-size: 19px;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-title:after {
  background-color: #4ba94b;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-title a {
  color: #0f0f0f;
}
.shop-sidebar-wrapper .sidebar-item .small-title {
  color: #0f0f0f;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li {
  position: relative;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li a {
  color: #666;
  font-size: 14px;
  font-weight: 300;
  display: block;
  line-height: 35px;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: capitalize;
  width: 100%;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li a:hover {
  color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons {
  display: inline-block;
  height: 17px;
  position: absolute;
  width: 17px;
  top: 10px;
  right: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons:not(.collapsed) i:after {
  height: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons i {
  position: absolute;
  background-color: #707070;
  height: 1px;
  top: 7px;
  left: 4px;
  width: 10px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons i:after {
  background-color: #707070;
  content: "";
  position: absolute;
  height: 10px;
  left: 50%;
  top: 50%;
  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.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: 1px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons:hover i {
  background-color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li .collapse-icons:hover i:after {
  background-color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .category-sub-menu ul li ul {
  margin-left: 10px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-menu-list .list-item {
  cursor: pointer;
  line-height: 1;
  margin-bottom: 22px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-menu-list .list-item .form-check-input {
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: -2px 3px 0 0;
  border: 1px solid #dfdfdf;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  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;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-menu-list .list-item .form-check-label {
  cursor: pointer;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  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;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-menu-list .list-item:hover .form-check-input {
  border-color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-menu-list .list-item:hover .form-check-label {
  color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li {
  cursor: pointer;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  line-height: 1;
  margin-bottom: 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;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li:last-child {
  margin-bottom: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li:before {
  position: relative;
  content: "";
  background-color: #AAB2BD;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 3px;
  vertical-align: middle;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
  top: -2px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li.color-white:before {
  background-color: #fff;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li.color-black:before {
  background-color: #434A54;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li.color-camel:before {
  background-color: #C19A6B;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-product-color li:hover {
  color: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-horizontal {
  height: 5px;
  margin-right: 8px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-horizontal .noUi-handle {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: #fff;
  cursor: ew-resize;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-horizontal .noUi-handle.noUi-handle-lower {
  left: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-horizontal .noUi-handle.noUi-handle-lower:active {
  left: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-horizontal .noUi-handle:active {
  border: none;
  left: -7px;
  top: 50%;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-connect {
  background: #4ba94b;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-background {
  background-color: #e2e2e2;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .noUi-target {
  border-radius: 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .slider-labels {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .slider-labels span,
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .slider-labels .caption {
  color: #0f0f0f;
  font-size: 14px;
  line-height: 1;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .slider-labels .range-price-title {
  margin-right: 5px;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .sidebar-price-range .slider-labels .range-separator {
  margin: -2px 4px 0;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .product-categories ul li {
  display: inline-block;
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .product-categories ul li a {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 30px;
  color: #0f0f0f;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 25px;
  margin: 0 4px 8px 0;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .shop-sidebar-wrapper .sidebar-item .sidebar-body .product-categories ul li a {
    font-size: 12px;
    padding: 6px 16px;
  }
}
.shop-sidebar-wrapper .sidebar-item .sidebar-body .product-categories ul li a:hover {
  background-color: #4ba94b;
  border-color: #4ba94b;
  color: #fff;
}

/*
-----------------------------------------------------------------------
    Testimonial CSS
-----------------------------------------------------------------------
*/
.testimonial-item.testi-height-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .testimonial-item.testi-height-style {
    display: block;
  }
}
.testimonial-item .testi-inner-content .testi-author {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  margin-bottom: 16px;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-author .testi-thumb {
  height: 90px;
  margin-right: 20px;
  width: 90px;
}
.testimonial-item .testi-inner-content .testi-author .testi-thumb .img {
  width: 100%;
}
.testimonial-item .testi-inner-content .testi-author .testi-info {
  margin-top: 7px;
}
.testimonial-item .testi-inner-content .testi-content {
  background: #f5f5f5;
  padding: 41px 30px 34px;
  position: relative;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-content:before {
  content: "";
  display: none;
  position: absolute;
  top: -14px;
  left: 25px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #f5f5f5;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-content p {
  color: #615d5d;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
@media only screen and (max-width: 575px) {
  .testimonial-item .testi-inner-content .testi-content p {
    font-size: 14px;
  }
}
.testimonial-item .testi-inner-content .testi-info {
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-info .name {
  color: #0f0f0f;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.testimonial-item .testi-inner-content .testi-info .email {
  color: #808080;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
}

.firstActiveItem .testimonial-item .testi-inner-content .testi-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content {
  background-color: #f5f5f5;
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .firstActiveItem .testimonial-item .testi-inner-content .testi-content {
    padding: 15px;
  }
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content:before {
  display: block;
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content p {
  margin-bottom: 0;
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content .testi-info {
  display: none;
}

.testimonial-area:hover .owl-carousel .owl-nav > [class*=owl-] {
  opacity: 1;
  visibility: visible;
}

.testimonials-slider.owl-carousel .owl-nav [class*=owl-] {
  transform: translate(0px, 70%);
  -webkit-transform: translate(0px, 70%);
  -moz-transform: translate(0px, 70%);
  -ms-transform: translate(0px, 70%);
  -o-transform: translate(0px, 70%);
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav [class*=owl-] {
    transform: translate(0px, 50%);
    -webkit-transform: translate(0px, 50%);
    -moz-transform: translate(0px, 50%);
    -ms-transform: translate(0px, 50%);
    -o-transform: translate(0px, 50%);
  }
}
@media (max-width: 1539px) {
  .testimonials-slider.owl-carousel .owl-nav [class*=owl-] {
    display: none;
  }
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev {
  left: -100px;
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav .owl-prev {
    left: -60px;
  }
}
.testimonials-slider.owl-carousel .owl-nav .owl-next {
  right: -100px;
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav .owl-next {
    right: -60px;
  }
}

/*
-----------------------------------------------------------------------
    Form CSS
-----------------------------------------------------------------------
*/
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group .form-control {
  border: 1px solid #e7e2dc;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  height: 55px;
  line-height: 55px;
  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: #4ba94b;
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 15px;
  color: #52565b;
}
.contact-form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 15px;
  color: #52565b;
}
.contact-form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 15px;
  color: #52565b;
}
.contact-form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  font-size: 15px;
  color: #52565b;
}
.contact-form .form-group textarea.form-control {
  height: 250px;
}
@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 {
  font-weight: 500;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  margin-top: 21px;
  padding: 0px 49px;
  line-height: 63px;
  text-transform: capitalize;
  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 .btn-theme:hover {
  background-color: #000;
  border-color: #000;
}

/*
-----------------------------------------------------------------------
    Home Default CSS
-----------------------------------------------------------------------
*/
.feature-area {
  margin: 0 90px;
}
@media (max-width: 1800px) {
  .feature-area {
    margin: 0 15px;
  }
}
.feature-area .container-fluid {
  padding: 0 158px;
}
@media (max-width: 1800px) {
  .feature-area .container-fluid {
    padding: 0 15px;
  }
}

.blog-area .container {
  padding-bottom: 135px;
}

/*
-----------------------------------------------------------------------
    Blog CSS
-----------------------------------------------------------------------
*/
.blog-area.blog-single-area .container {
  max-width: 1200px;
  padding-top: 82px;
  padding-bottom: 82px;
}
@media only screen and (max-width: 991px) {
  .blog-area.blog-single-area .container {
    padding-bottom: 52px;
  }
}

.post-item .inner-content {
  margin-bottom: 35px;
  position: relative;
}
.post-item .inner-content .thumb {
  position: relative;
  overflow: hidden;
}
.post-item .inner-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;
}
.post-item .inner-content .thumb:hover .img {
  transform: scale(1.05) rotate(0.05deg);
  -webkit-transform: scale(1.05) rotate(0.05deg);
  -moz-transform: scale(1.05) rotate(0.05deg);
  -ms-transform: scale(1.05) rotate(0.05deg);
  -o-transform: scale(1.05) rotate(0.05deg);
}
.post-item .inner-content .content {
  background-color: #fff;
  bottom: 0;
  left: 70px;
  position: absolute;
  padding: 20px 0 0 20px;
  right: 0;
  transform: translate(0px, 40px);
  -webkit-transform: translate(0px, 40px);
  -moz-transform: translate(0px, 40px);
  -ms-transform: translate(0px, 40px);
  -o-transform: translate(0px, 40px);
}
@media only screen and (max-width: 991px) {
  .post-item .inner-content .content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    -webkit-transform: none;
            transform: none;
    padding-left: 0;
  }
}
.post-item .inner-content .content .category {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.post-item .inner-content .content .category:hover {
  text-decoration: underline;
}
.post-item .inner-content .content .title {
  display: block;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .post-item .inner-content .content .title {
    font-size: 16px;
  }
}
.post-item .inner-content .content .title a {
  color: #0f0f0f;
}
.post-item .inner-content .content .title a:hover {
  color: #4ba94b;
}
.post-item .inner-content .content .meta {
  color: #707070;
  font-size: 14px;
}
.post-item .inner-content .content .meta a {
  color: #707070;
  font-size: 14px;
}
.post-item .inner-content .content .meta a:hover {
  color: #4ba94b;
}
.post-item .inner-content .content .meta .author {
  color: #4ba94b;
}
.post-item .inner-content.post-grid-four .content {
  left: 15px;
}
@media only screen and (max-width: 991px) {
  .post-item .inner-content.post-grid-four .content {
    left: 0;
    padding-left: 0;
  }
}
.post-item .inner-content.post-list-style {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 30px;
  padding-bottom: 60px;
}
.post-item .inner-content.post-list-style .content {
  bottom: auto;
  left: auto;
  position: relative;
  padding: 0;
  right: auto;
  -webkit-transform: none;
          transform: none;
}
@media only screen and (max-width: 767px) {
  .post-item .inner-content.post-list-style .content {
    padding-top: 20px;
  }
}
.post-item .inner-content.post-list-style .content .title {
  margin-bottom: 16px;
}
.post-item .inner-content.post-list-style .content .meta {
  line-height: 1;
  margin-bottom: 15px;
}
.post-item .inner-content.post-list-style .content .meta span {
  border-right: 1px solid #555;
  color: #555;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  margin-right: 8px;
  padding-right: 10px;
}
.post-item .inner-content.post-list-style .content .meta a {
  border-right: 1px solid #555;
  color: #555;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  margin-right: 8px;
  padding-right: 10px;
}
.post-item .inner-content.post-list-style .content .meta a:hover {
  color: #4ba94b;
}
.post-item .inner-content.post-list-style .content .meta .category {
  border-right: none;
  color: #4ba94b;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
  text-transform: capitalize;
}
.post-item .inner-content.post-list-style .content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 10px;
  text-align: justify;
}
.post-item .inner-content.post-list-style .content .btn-read-more {
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.post-item .inner-content.post-list-style .content .btn-read-more:hover {
  color: #4ba94b;
}

.post-single-item .thumb {
  margin-bottom: 53px;
}
@media only screen and (max-width: 1199px) {
  .post-single-item .thumb {
    margin-bottom: 33px;
  }
}
.post-single-item .thumb img {
  width: 100%;
}
.post-single-item .content {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .post-single-item .content {
    margin-bottom: 40px;
  }
}
.post-single-item .content .meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .post-single-item .content .meta ul {
    margin-bottom: 10px;
  }
}
.post-single-item .content .meta ul > li {
  font-weight: 500;
  font-size: 17px;
  margin-right: 35px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .post-single-item .content .meta ul > li {
    font-size: 14px;
  }
}
.post-single-item .content .meta ul > li:last-child {
  margin-right: 0;
}
.post-single-item .content .meta ul > li > span {
  color: #4ba94b;
}
.post-single-item .content .title {
  color: #4ba94b;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1199px) {
  .post-single-item .content .title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
.post-single-item .content p {
  font-size: 15px;
  line-height: 1.7333;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.post-single-item .content p.p-text2 {
  margin-bottom: 32px;
}
.post-single-item .content p.p-text4 {
  margin-bottom: 32px;
}
.post-single-item .post-single-footer {
  background-color: #f9f9f9;
  border: 2px solid #efefef;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 27px 16px;
}
@media only screen and (max-width: 479.98px) {
  .post-single-item .post-single-footer {
    display: block;
  }
}
.post-single-item .post-single-footer .post-tag-content span {
  color: #2e2e2e;
  font-size: 25px;
  margin-right: 5px;
  position: relative;
  top: 5px;
}
.post-single-item .post-single-footer .post-tag-content a {
  color: #474748;
  font-size: 15px;
}
.post-single-item .post-single-footer .post-tag-content a:hover {
  color: #4ba94b;
}
.post-single-item .post-single-footer .post-social-icons {
  position: relative;
  top: 5px;
}
@media only screen and (max-width: 479.98px) {
  .post-single-item .post-single-footer .post-social-icons {
    top: 0;
    margin-top: 20px;
  }
}
.post-single-item .post-single-footer .post-social-icons a {
  color: #000;
  font-size: 14px;
}
.post-single-item .post-single-footer .post-social-icons a + a {
  margin-left: 13.2px;
}
.post-single-item .post-single-footer .post-social-icons a:hover {
  color: #4ba94b;
}

.comment-area {
  margin-top: 100px;
}
@media only screen and (max-width: 1199px) {
  .comment-area {
    margin-top: 50px;
  }
}
.comment-area .title-sec {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 54px;
}
@media only screen and (max-width: 1199px) {
  .comment-area .title-sec {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.comment-view-area {
  background-color: #f6f6f6;
  border: 2px solid #efefef;
  border-radius: 15px;
  margin-bottom: 44px;
  padding: 56px 38px 20px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area {
    padding: 46px 38px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-view-area {
    padding: 46px 25px 46px;
  }
}
.comment-view-area .comment-content .single-comment {
  margin-bottom: 55px;
  position: relative;
}
.comment-view-area .comment-content .single-comment .author-info {
  position: relative;
  padding-left: 150px;
}
@media only screen and (max-width: 767px) {
  .comment-view-area .comment-content .single-comment .author-info {
    padding-left: 0;
  }
}
.comment-view-area .comment-content .single-comment .author-info .thumb {
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 12px;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .comment-view-area .comment-content .single-comment .author-info .thumb {
    position: relative;
  }
}
.comment-view-area .comment-content .single-comment .author-info .thumb img {
  border-radius: 50%;
}
.comment-view-area .comment-content .single-comment .author-details .title {
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.comment-view-area .comment-content .single-comment .author-details .title a {
  color: #0f0f0f;
}
.comment-view-area .comment-content .single-comment .author-details .title a:hover {
  color: #4ba94b;
}
.comment-view-area .comment-content .single-comment .author-details .post-date {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.comment-view-area .comment-content .single-comment .author-details .post-date a {
  color: #4ba94b;
}
.comment-view-area .comment-content .single-comment .author-details .post-date a:hover {
  color: #0f0f0f;
}
.comment-view-area .comment-content .single-comment .author-details p {
  font-size: 16px;
  margin-bottom: 15px;
}
.comment-view-area .comment-content .single-comment .author-details .btn-reply {
  color: #000;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: -1px;
  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;
}
@media only screen and (max-width: 767px) {
  .comment-view-area .comment-content .single-comment .author-details .btn-reply {
    position: relative;
    top: 0;
  }
}
.comment-view-area .comment-content .single-comment .author-details .btn-reply:before {
  background-color: #000;
  bottom: 0px;
  content: "";
  height: 1px;
  position: absolute;
  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;
}
.comment-view-area .comment-content .single-comment .author-details .btn-reply i {
  margin-right: 6px;
}
.comment-view-area .comment-content .single-comment .author-details .btn-reply:hover {
  color: #4ba94b;
}
.comment-view-area .comment-content .single-comment .author-details .btn-reply:hover:before {
  background-color: #4ba94b;
}
.comment-view-area .comment-content .single-comment.comment-reply {
  margin-left: 72px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area .comment-content .single-comment.comment-reply {
    margin-left: 20px;
  }
}

.comment-form-area {
  background-color: #f6f6f6;
  border: 2px solid #efefef;
  border-radius: 15px;
  padding: 56px 38px 58px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-area {
    padding: 46px 38px 48px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form-area {
    padding: 46px 25px 46px;
  }
}
.comment-form-area .comment-form-wrapper .form-group {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .comment-form-area .comment-form-wrapper .form-group {
    margin-bottom: 20px;
  }
}
.comment-form-area .comment-form-wrapper .form-group .form-control {
  height: 60px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 15px;
  padding: 11px 19px 10px;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.15px;
  color: #4c4c4c;
  line-height: 60px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
@media only screen and (max-width: 767px) {
  .comment-form-area .comment-form-wrapper .form-group .form-control {
    height: 50px;
    padding: 12px 19px 10px;
    font-size: 15px;
    line-height: 50px;
  }
}
.comment-form-area .comment-form-wrapper .form-group .form-control:active, .comment-form-area .comment-form-wrapper .form-group .form-control:focus {
  border-color: #4ba94b;
  color: #4ba94b;
}
.comment-form-area .comment-form-wrapper .form-group .form-control:active::-webkit-input-placeholder, .comment-form-area .comment-form-wrapper .form-group .form-control:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4ba94b;
}
.comment-form-area .comment-form-wrapper .form-group .form-control:active::-moz-placeholder, .comment-form-area .comment-form-wrapper .form-group .form-control:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #4ba94b;
}
.comment-form-area .comment-form-wrapper .form-group .form-control:active:-ms-input-placeholder, .comment-form-area .comment-form-wrapper .form-group .form-control:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #4ba94b;
}
.comment-form-area .comment-form-wrapper .form-group .form-control:active:-moz-placeholder, .comment-form-area .comment-form-wrapper .form-group .form-control:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #4ba94b;
}
.comment-form-area .comment-form-wrapper .form-group .form-control.textarea {
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .comment-form-area .comment-form-wrapper .form-group .form-control.textarea {
    height: 150px;
  }
}
.comment-form-area .comment-form-wrapper .form-group::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4c4c4c;
}
.comment-form-area .comment-form-wrapper .form-group::-moz-placeholder {
  /* Firefox 19+ */
  color: #4c4c4c;
}
.comment-form-area .comment-form-wrapper .form-group:-ms-input-placeholder {
  /* IE 10+ */
  color: #4c4c4c;
}
.comment-form-area .comment-form-wrapper .form-group:-moz-placeholder {
  /* Firefox 18- */
  color: #4c4c4c;
}
.comment-form-area .comment-form-wrapper .form-group .btn-theme {
  border: 1px solid #4ba94b;
  width: 200px;
  height: 50px;
  border-radius: 18px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15px;
  margin-top: 10px;
  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;
}
.comment-form-area .comment-form-wrapper .form-group .btn-theme:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.sidebar-area .widget-item {
  border: 2px solid #efefef;
  background-color: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 60px;
  padding: 35px 28px 37px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-item {
    margin-bottom: 30px;
    padding: 23px 16px 26px;
  }
}
@media only screen and (max-width: 991px) {
  .sidebar-area .widget-item {
    margin-top: 50px;
  }
}
.sidebar-area .widget-item .widget-title .title {
  color: #000;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sidebar-area .widget-search-box form .form-input-item {
  position: relative;
}
.sidebar-area .widget-search-box form .form-input-item input {
  border: 1px solid #d9d9d9;
  background-color: #f6f6f6;
  border-radius: 15px;
  color: #919090;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 10px 70px 10px 19px;
  width: 100%;
}
.sidebar-area .widget-search-box form .form-input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #919090;
}
.sidebar-area .widget-search-box form .form-input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #919090;
}
.sidebar-area .widget-search-box form .form-input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #919090;
}
.sidebar-area .widget-search-box form .form-input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #919090;
}
.sidebar-area .widget-search-box form .form-input-item .btn-src {
  border: none;
  background-color: #4ba94b;
  border-radius: 0 15px 15px 0;
  color: #fff;
  font-size: 18px;
  position: absolute;
  padding: 9px 23.65px;
  height: 100%;
  top: 0;
  right: 0;
  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;
}
.sidebar-area .widget-search-box form .form-input-item .btn-src:hover {
  background-color: #000;
  color: #fff;
}
.sidebar-area .widget-categories ul {
  margin: 0;
}
.sidebar-area .widget-categories ul li {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 0;
  height: 48px;
  line-height: 48px;
  padding: 0 19px;
  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;
}
.sidebar-area .widget-categories ul li:last-child {
  margin-bottom: 0;
}
.sidebar-area .widget-categories ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #494949;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  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;
}
.sidebar-area .widget-categories ul li a span {
  color: #494949;
  font-size: 18px;
  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;
}
.sidebar-area .widget-categories ul li:hover {
  background-color: #4ba94b;
  border-color: #4ba94b;
}
.sidebar-area .widget-categories ul li:hover a {
  color: #fff;
}
.sidebar-area .widget-categories ul li:hover a span {
  color: #fff;
}
.sidebar-area .widget-blog-post {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 29px;
  padding-bottom: 31px;
}
.sidebar-area .widget-blog-post:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar-area .widget-blog-post ul {
  margin: 0;
}
.sidebar-area .widget-blog-post ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebar-area .widget-blog-post ul li .thumb {
  margin-right: 16px;
}
.sidebar-area .widget-blog-post ul li .thumb img {
  max-width: 98px;
}
.sidebar-area .widget-blog-post ul li .content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.sidebar-area .widget-blog-post ul li .content span {
  color: #4ba94b;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.sidebar-area .widget-blog-post ul li .content h4 {
  color: #383838;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 0;
}
.sidebar-area .widget-blog-post ul li .content h4 a {
  color: #383838;
}
.sidebar-area .widget-blog-post ul li .content h4 a:hover {
  color: #4ba94b;
}
.sidebar-area .widget-tags ul {
  margin: 0;
}
.sidebar-area .widget-tags ul li {
  display: inline-block;
}
.sidebar-area .widget-tags ul li a {
  color: #656565;
  border: 1px solid #dddddd;
  border-radius: 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  padding: 0 23px;
  margin-bottom: 15px;
  margin-right: 11px;
  height: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-tags ul li a {
    font-size: 13px;
    margin-right: 5px;
    margin-bottom: 9px;
  }
}
.sidebar-area .widget-tags ul li a:hover {
  background-color: #4ba94b;
  border-color: #4ba94b;
  color: #fff;
}
.sidebar-area.inner-right-padding {
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area.inner-right-padding {
    padding-left: 0;
  }
}
.sidebar-area.inner-left-padding {
  padding-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area.inner-left-padding {
    padding-right: 0;
  }
}

/*
-----------------------------------------------------------------------
    Contact CSS
-----------------------------------------------------------------------
*/
.contact-area.contact-page-area .container {
  max-width: 1200px;
  padding-top: 82px;
  padding-bottom: 65px;
}

.contact-info-static .info-item {
  text-align: center;
}
.contact-info-static .info-item .icon-box {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}
.contact-info-static .info-item p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .contact-info-static .info-item p {
    line-height: 24px;
  }
}
.contact-info-static .info-item:hover .icon-box {
  -webkit-animation: tada 1s linear infinite;
          animation: tada 1s linear infinite;
}
.contact-info-static .col-border {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-info-list {
  margin-left: 70px;
  margin-top: 50px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .contact-info-list {
    margin-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .contact-info-list {
    margin-top: 30px;
  }
}
.contact-info-list .contact-info {
  background-size: cover;
  position: relative;
  padding:50px 50px;
}
@media only screen and (max-width: 1199px) {
  .contact-info-list .contact-info {
    padding: 66px 55px 40px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contact-info-list .contact-info {
    padding: 46px 25px 30px;
  }
}
.contact-info-list .contact-info:after {
  background-color: #f7f7f7;
  border: 1px solid #eee;
  content: "";
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  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;
}
.contact-info-list .contact-info .info-item {
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}
.contact-info-list .contact-info .info-item:last-child {
  margin-bottom: 0;
}
.contact-info-list .contact-info .info-item .info .title {
  color: #4ba94b;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-info-list .contact-info .info-item .info p {
  color: #0f0f0fa6;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.contact-info-list .contact-info .info-item .info p a {
  color: #0f0f0fa6;
  display: block;
}
.contact-info-list .contact-info .info-item .info p a:hover {
  color: #4ba94b;
}
.contact-page-wrapper .contact-form-wrap {
  margin-right: -30px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-wrapper .contact-form-wrap {
    margin-right: 0;
  }
}
.contact-page-wrapper .contact-form-wrap .contact-form-title .sub-title {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-wrapper .contact-form-wrap .contact-form-title .sub-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.contact-page-wrapper .contact-form-wrap .contact-form-title .title {
  font-size: 42px;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-wrapper .contact-form-wrap .contact-form-title .title {
    font-size: 32px;
    margin-bottom: 28px;
  }
}

.newsletter-content-wrap .newsletter-form {
  position: relative;
}
.newsletter-content-wrap .newsletter-form .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  color: #b2b2b2;
  display: inline-block;
  font-size: 14px;
  height: 52px;
  padding: 13px 120px 10px 30px;
  width: 100%;
}
.newsletter-content-wrap .newsletter-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b2b2b2;
}
.newsletter-content-wrap .newsletter-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #b2b2b2;
}
.newsletter-content-wrap .newsletter-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #b2b2b2;
}
.newsletter-content-wrap .newsletter-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #b2b2b2;
}
.newsletter-content-wrap .newsletter-form .btn-submit {
  background-color: #4ba94b;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  position: absolute;
  padding: 0 20px;
  right: 0;
  top: 50%;
  text-transform: uppercase;
  transform: translate(-5px, -50%);
  -webkit-transform: translate(-5px, -50%);
  -moz-transform: translate(-5px, -50%);
  -ms-transform: translate(-5px, -50%);
  -o-transform: translate(-5px, -50%);
}
.newsletter-content-wrap .newsletter-form .btn-submit:hover {
  background-color: #0f0f0f;
}

/*
-----------------------------------------------------------------------
  Footer CSS
-----------------------------------------------------------------------
*/
.footer-area {
  background: #009529;
  padding: 60px 0 0;
}
@media only screen and (max-width: 991px) {
  .footer-area {
    padding: 45px 0 0;
  }
}
.footer-area p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.footer-area .about-widget {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .footer-area .about-widget {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .about-widget {
    display: block;
  }
}
.footer-area .about-widget .inner-content {
  max-width: 220px;
  margin-right: 30px;
}
@media only screen and (max-width: 575px) {
  .footer-area .about-widget .inner-content {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer-area .about-widget .inner-content .footer-logo {
  margin-bottom: 22px;
}
.footer-area .about-widget .widget-desc {
  max-width: 330px;
}
.footer-area .widget-menu-wrap .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
}
@media only screen and (max-width: 991px) {
  .footer-area .widget-menu-wrap .nav-menu {
    margin-bottom: 0;
  }
}
.footer-area .widget-menu-wrap .nav-menu li {
  margin-bottom: 15px;
  padding-right: 30px;
  width: 33.33%;
}
@media only screen and (max-width: 575px) {
  .footer-area .widget-menu-wrap .nav-menu li {
    width: 40%;
  }
}
@media only screen and (max-width: 479.98px) {
  .footer-area .widget-menu-wrap .nav-menu li {
    padding-right: 0;
  }
}
.footer-area .widget-menu-wrap .nav-menu li a {
  color: #fff;
  font-size: 14px;
  display: block;
  line-height: 24px;
}
.footer-area .widget-menu-wrap .nav-menu li a:hover {
  color: #4ba94b;
  padding-left: 10px;
}
.footer-area .footer-bottom {
  background: #000;
  padding: 23px 0 18px;
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-bottom {
    text-align: center;
  }
}
.footer-area .footer-bottom .copyright i {
  color: #4ba94b;
  font-size: 12px;
  margin: 0 5px;
}
.footer-area .footer-bottom .copyright a {
  color: #ffffff9e;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.footer-area .footer-bottom .copyright a:hover {
  color: #4ba94b;
}
.footer-area .footer-bottom .payment {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-bottom .payment {
    margin-top: 15px;
    text-align: center;
  }
}

.swiper-button-prev, .swiper-button-next { color:#fff; }

@media (max-width:480px) { 
.logo-main { height:45px; }
#fixed-social { display:none }
.product-category-item { margin-bottom:20px;} 
}


.bg1 { background:#4ba94b}
.bg2 { background:#ffe292}
.bg3 { background:#bcd3ee}
.bg4 { background:#c3e7ab}
.bg5 { background:#9adedd}

.bg6 { background:#fff}

.clr1 { color:#1c1c1c !important; font-family: 'Playfair Display', serif !important;}
.clr2 { color:#121417 !important; font-family: 'Playfair Display', serif !important;}
.clr3 { color:#1c2118 !important; font-family: 'Playfair Display', serif !important;}
.clr4 { color:#c3e7ab !important}
.clr5 { color:#9adedd !important}




.tl1 { font-family: 'Playfair Display', serif !important; color:#000 !important;  }


 /* fixed social*/
#fixed-social {
   position: fixed;
   top:174px; z-index: 999; left: 8px;
}

#fixed-social a {
   color: #fff;
   display: block;
   height: 45px;
   position: relative;
   text-align: center;
    line-height: 45px;
   width: 45px;
   margin-bottom: 1px;
   z-index: 2;
   font-size: 14px;
   border-radius: 7px;
}
#fixed-social a:hover>span{
  visibility: visible;
  left: 46px;
  opacity: 1;
} 
#fixed-social a span {
  line-height: 45px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px; border-radius: 7px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}

 .fixed-whatsapp{
  background-color: #25d366;
 }
 .fixed-whatsapp span{
  background-color: #25d366;
 }

 .fixed-facebook{
  background-color: #3f55ab;
 }
 .fixed-facebook span{
  background-color: #3f55ab;
 }
 .fixed-twitter{
  background-color: #60b8ff;

 }
 .fixed-twitter span{
  background-color: #60b8ff;
 }
 .fixed-gplus{
  background-color: #f53340;

 }
 .fixed-gplus span{
  background-color: #f53340;
 }
 .fixed-linkedin{
  background-color: #1082bb;

 }
 .fixed-linkedin span{
  background-color: #1082bb;
 }
 .fixed-instagrem{
  background-color: #e03586;

 }
 .fixed-instagrem span{
  background-color: #e03586;
 }
 .fixed-tumblr{
  background-color: #EB1471;

 }
 .fixed-tumblr span{
  background-color: #EB1471;
 }
/*end fixed social*/


.weltitle { color:#fff; font-weight:300; margin:20px auto;  }
.weltext {
    color: #fff; text-align: center;
    font-size: 18px; padding: 10px 15%;
    font-weight: 400;
    line-height:25px;
    margin-bottom:9px;
}
.welbg { background:#295dab; padding:0px 0px; }
@media (max-width:480px) {
.weltitle { color:#fff; font-weight:300; margin:0px auto; font-size:24px;  }
.weltext {
    color: #fff; text-align: center;
    font-size: 16px; padding: 10px 10px !important;
    font-weight: 400;
    line-height:22px;
    margin-bottom:9px;
}
.welbg { background:#295dab; padding:0px 0px; }

.btn-theme {
    font-size: 13px;
    font-weight: 700;
	padding: 0 22px;
}
.testimonials-slider .owl-stage { width:260px !important }
}


.weltitle1 { color:#222; font-weight:300; margin:0px auto;  }
.weltext1 {
    color: #222; text-align: center;
    font-size: 18px; padding: 10px 10% 25px 10%;
    font-weight: 400;
    line-height:25px;
    margin-bottom:9px;
}


.img-bdr { border:1px solid #ddd; }

.unslide { background:#82d406; padding:15px 0px !important; width: 100%; margin: 0px auto; }
.unslide p { color:#fff; font-size: 18px; font-weight: 200;  }




.abt-clr { color:#0080ff }

.weltitle { color:#fff; font-weight:300; margin:20px auto;  }
.weltext {
    color: #fff; text-align: center;
    font-size: 18px; padding: 10px 15%;
    font-weight: 400;
    line-height:25px;
    margin-bottom:9px;
}
.welbg { background:#0080ff ; padding:0px 0px; }
@media (max-width:480px) {
.weltitle { color:#fff; font-weight:300; margin:0px auto; font-size:24px;  }
.weltext {
    color: #fff; text-align: center;
    font-size: 16px; padding: 10px 10px !important;
    font-weight: 400;
    line-height:22px;
    margin-bottom:9px;
}
.welbg { background:#0080ff; padding:0px 0px;}
.header-logo-area img {
    min-height: 60px;
    height: 60px;
}
}



.parallax {
  /* The image used */
  background-image: url("../img/slider/nsl-parr.jpg");
  /* Set a specific height */
  min-height: 400px; 
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}




.policies { margin: 0px auto; padding: 15px 0px; width: 100%; text-align: center; border: 0px solid #000 }

.policies h4 { padding-top:0px; line-height: 20px; text-align: justify; padding-bottom: 10px; 
  font-size: 24px; font-weight: 800; letter-spacing:1px; text-transform: uppercase;    }

  .policies h6 { padding:20px 0 0px 10px; line-height: 20px; text-align: justify;  
  font-size: 20px; font-weight: 800; letter-spacing:.5px; text-transform: uppercase;    }

  .policies h3 { padding:10px 10px; border: 1px solid #fff; line-height: 30px; text-align: left; 
  font-size: 22px; margin: 0px 10px; font-weight: 800; letter-spacing:1px; text-transform: uppercase;    }

    .policies h2 { padding:10px 10px; border: 1px solid #fff; line-height: 30px; text-align: left; 
  font-size: 26px; margin: 0px 10px; font-weight: 800; letter-spacing:1px; text-transform: uppercase;    }

.policies p { padding:15px 20px 20px 15px; line-height: 26px; text-align: justify; font-size: 16px; 
  font-weight: 400; letter-spacing:.2px; color: #111;}

.policies ol {   padding:0px 10px; line-height: 24px; text-align: justify; font-size: 16px; 
  font-weight: 400; letter-spacing:.2px; color: #111; margin: 0px 0px 0px 25px; list-style-type:circle;}
.policies ol li {  text-align: justify; list-style-type:circle; }

.policies ul {   padding:0px 10px; line-height: 24px; text-align: justify; font-size: 16px; 
  font-weight: 400; letter-spacing:.2px; color: #111; margin: 0px 0px 0px 25px; list-style-type:circle !important; }
.policies ul li {  text-align: justify; list-style-type:circle !important; }

.policies li { margin-bottom: 10px;  text-align: justify; }