@charset "UTF-8";
/*===================================================================
[Table Of Content]

    * Imported CSS
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Slider CSS
    * Team CSS
    * Brand Logo CSS
    * Form CSS
    * Blog CSS
    * Contact CSS
    * Footer CSS

=====================================================================*/
/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/
body {
  color: #181818;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media only screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}

:root{
  --main-color:#344667;
  --sec-color:#61718b;
    --brand-color: #1b2c50;
    --brand-light: #2d4575;
    --brand-lighter: #f8f9fb;
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #2c2c2c;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:hover, a:active, a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--main-color);
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

button {
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
button:hover, button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: 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: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #91b2c3;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #91b2c3;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

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

iframe {
  border: none !important;
}

textarea:focus, textarea:active, input:focus, input:active {
  outline: none;
}

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

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

table p {
  margin-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/
/*-------- Background Style Css --------*/
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}

/*-------- Container Style Css --------*/
.wrapper {
  overflow-x: hidden;
}

.container {
  /* padding-left: 15px; */
  /* padding-right: 15px; */
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row > * {
  margin-top: 0;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

/*-------- Gutter Style Css --------*/
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter .col,
.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-43 {
  margin-right: -21.5px;
  margin-left: -21.5px;
}
.row-gutter-43 .col,
.row-gutter-43 [class*=col-] {
  padding-left: 21.5px;
  padding-right: 21.5px;
}

/*-------- Spacing Style Css --------*/
.container,
.container-fluid {
  /* padding-bottom: 90px; */
  /* padding-top: 120px; */
}
@media only screen and (max-width: 1199px) {
  .container,
.container-fluid {
    /* padding-bottom: 50px; */
    /* padding-top: 50px; */
  }
}

/*-------- Button Style Css --------*/
.btn-theme {
  background-color: transparent;
  border: none;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  height: 55px;
  line-height: 56px;
  letter-spacing: 0.3px;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  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: 180px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .btn-theme {
    font-size: 14px;
    height: 44px;
    line-height: 46px;
    width: 140px;
  }
}
.btn-theme:before {
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 20px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn-theme.transparent:before {
  background-color: var(--sec-color);
  border: 2px solid var(--sec-color);
  border-radius: 20px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn-theme:after {
  background-color: #b79e55;
  border-radius: 20px;
  content: "";
  height: 100%;
  right: -3px;
  position: absolute;
  top: 3px;
  width: 100%;
  z-index: -2;
  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;
}
.btn-theme:hover {
  color: #fff;
  opacity: 0.8;
}
.btn-theme.btn-theme-color {
  color: #fff;
}
.btn-theme.btn-theme-color:before {
  border-radius: 15px;
  background-color: #721b65;
  border: 2px solid #721b65;
}
.btn-theme.btn-theme-color:after {
  border-radius: 15px;
  background-color: #a45798;
}
.btn-theme.btn-theme-color:hover {
  opacity: 0.8;
}
.btn-theme.btn-sm {
  border-radius: 15px;
  font-size: 14px;
  width: 133px;
  height: 41px;
  line-height: 44px;
}
@media only screen and (max-width: 1199px) {
  .btn-theme.btn-sm {
    font-size: 12px;
    width: 108px;
    height: 35px;
    line-height: 35px;
  }
}
.btn-theme.btn-sm:before {
  border-radius: 15px;
}
.btn-theme.btn-sm:after {
  border-radius: 15px;
}

.btn-theme-link {
  color: #721b65;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  position: relative;
  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;
}
.btn-theme-link:before {
  background-color: #721b65;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: -1px;
}
.btn-theme-link:hover {
  opacity: 0.8;
}

/*-------- Z Index Style Css --------*/
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

/*-------- Fancybox Images Style Css --------*/
.fancybox-slide {
  cursor: url("../img/icons/cancel-white.webp.png"), auto;
}

/*-------- Custom Color Style Css --------*/
.bg-theme-color {
  background-color: var(--sec-color) !important;
}

.bg-color-f2 {
  background-color: #f2f2f2;
}

.bg-color-f6 {
  background-color: #f6f6f6;
}

.text-color-theme {
  color: #721b65;
}

/*-------- Margin & Padding Custom Style Css --------*/
.m--0 {
  margin: 0 !important;
}

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

.mb-25 {
  margin-bottom: 25px !important;
}

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

@media only screen and (max-width: 991px) {
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
}
.ml--0 {
  margin-left: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.p--0 {
  padding: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  bottom: -60px;
  background-color: var(--main-color);
  color: #fff;
  position: fixed;
  right: 30px;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 38px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 999;
}
.scroll-to-top:hover {
  background-color: var(--main-color);
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 0.8;
  bottom: 20px;
}
.scroll-to-top.show:hover {
  opacity: 1;
}

/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/
.main-menu > li {
  margin-right: 14px;
  padding: 3px 0;
}
.main-menu > li:last-child {
  margin-right: 0;
}
.main-menu > li > a {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  padding: 7px 25px;
  position: relative;
}
.main-menu > li:hover > a, .main-menu > li.active > a {
  color: #721b65;
}
.main-menu > li:hover > a:before, .main-menu > li.active > a:before {
  color: #721b65;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}
.has-submenu > a {
  position: relative;
}
.has-submenu > a:before {
  content: "";
  color: var(--main-color);
  display: none;
  font-size: 12px;
  font-family: "FontAwesome";
  position: absolute;
  right: -16px;
  top: 0;
  line-height: 51px;
}
.has-submenu:hover > .submenu-nav {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav {
  background-color: #111;
  border: none;
  border-bottom: none;
  padding: 15px 0 15px;
  position: absolute;
  left: -15px;
  top: 100%;
  opacity: 0;
  min-width: 230px;
  pointer-events: none;
  margin-top: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  visibility: hidden;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav {
    min-width: 210px;
    left: 0;
  }
}
.has-submenu .submenu-nav:before {
  content: "";
  position: absolute;
  height: 56px;
  width: 100%;
  left: 0;
  bottom: 100%;
}
.has-submenu .submenu-nav > li {
  padding: 10px 25px;
}
.has-submenu .submenu-nav > li a {
  color: #aaa;
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: inherit;
  text-transform: capitalize;
}
.has-submenu .submenu-nav > li a:hover {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover > a {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover:after {
  color: #fff !important;
}
.has-submenu .submenu-nav > li.has-submenu {
  position: relative;
}
.has-submenu .submenu-nav > li.has-submenu a:before {
  display: none;
}
.has-submenu .submenu-nav > li.has-submenu:hover > .submenu-nav {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav > li.has-submenu:after {
  content: "";
  color: #181818;
  font-size: 15px;
  line-height: 1;
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -57%);
  -webkit-transform: translate(0%, -57%);
  -moz-transform: translate(0%, -57%);
  -ms-transform: translate(0%, -57%);
  -o-transform: translate(0%, -57%);
}
.has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  left: 100%;
  top: 0;
}
.has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 50px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav-mega {
    width: 830px;
  }
}
.has-submenu .submenu-nav-mega .mega-menu-item {
  padding: 0;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  border-right: 0;
}
.has-submenu .submenu-nav-mega.colunm-two .mega-menu-item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.has-submenu.full-width {
  position: static;
}

/*
-----------------------------------------------------------------------
  Offcanvas Header
-----------------------------------------------------------------------
*/
.off-canvas-wrapper.offcanvas {
  background-color: #1f1f1f;
  width: 310px;
}
@media only screen and (max-width: 991px) {
  .off-canvas-wrapper.offcanvas {
    width: 310px;
  }
}
.off-canvas-wrapper .offcanvas-header {
  padding: 0;
}
.off-canvas-wrapper .offcanvas-body {
  padding: 12px 20px 20px;
  scrollbar-width: auto;
  scrollbar-color: #1f1f1f #292929;
  /* Chrome, Edge, and Safari */
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar {
  width: 2px;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-track {
  background: #292929;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #1f1f1f;
  border-radius: 2px;
  border: 2px solid #1f1f1f;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--main-color);
  opacity: 1;
  border-radius: 0;
  color: #fff;
  background-image: none;
  padding: 0 20px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.off-canvas-wrapper .btn-menu-close:hover {
  color: #fff;
  background-color: #222;
}

.offcanvas-backdrop,
.modal-backdrop {
  background-color: rgba(43, 43, 43, 0.92);
  cursor: url("../img/icons/cancel-white.webp.png"), auto;
}
.offcanvas-backdrop.show,
.modal-backdrop.show {
  opacity: 1;
}

.offcanvas-menu-nav {
  position: relative;
  z-index: 1;
}

.offcanvas-menu-nav ul ul {
  display: none;
}

.offcanvas-menu-nav li.active > ul {
  display: block;
}

.offcanvas-menu-nav li a {
  color: #fff;
  display: block;
  text-transform: capitalize;
  position: relative;
  font-size: 17px;
  font-weight: 400;
  padding: 15px 0;
  line-height: 1;
}
.offcanvas-menu-nav li a:hover {
  color: #fff;
}

.offcanvas-menu-nav li ul {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  padding-left: 18px;
  margin-bottom: 18px;
}
.offcanvas-menu-nav li ul li {
  padding: 4px 0;
}
.offcanvas-menu-nav li ul li a {
  color: #fff;
  display: block;
  text-transform: capitalize;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  line-height: 1.8;
}
.offcanvas-menu-nav li ul li a:hover {
  color: #fff;
}

.offcanvas-menu-nav .offcanvas-nav-parent ul li .offcanvas-nav-item {
  font-size: 15px;
  padding: 4px 0;
}
.offcanvas-menu-nav .offcanvas-nav-parent ul li .offcanvas-nav-item:after {
  top: 4px;
}
.offcanvas-menu-nav .offcanvas-nav-parent ul li ul {
  margin-bottom: 8px;
}

.offcanvas-menu-nav a:not(:only-child):after {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 15px;
}

.offcanvas-menu-nav .active > a:not(:only-child):after {
  content: "";
}

/*
-----------------------------------------------------------------------
  Section Title CSS
-----------------------------------------------------------------------
*/
.section-title {
  margin-bottom: 72px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 42px;
  }
}
.section-title .sub-title {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .section-title .sub-title {
    font-size: 13px;
  }
}
.section-title .title {
  font-size: 48px;
  line-height: 1.125;
  margin-bottom: 0;
  color: var(--main-color);
}
@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
  }
}
.section-title.shape-left {
  position: relative;
  z-index: 1;
}
.section-title.shape-left:before {
  content: url("../img/icons/sec.webp.png");
  position: absolute;
  left: 0;
  top: -16px;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .section-title.shape-left:before {
    display: none;
  }
}
.section-title.shape-center {
  position: relative;
  z-index: 1;
}
.section-title.shape-center:before {
  /* content: url("../img/icons/sec.webp.png"); */
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  top: -11px;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .section-title.shape-center:before {
    display: none;
  }
}

/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-area {
  padding: 0;
  z-index: 9;
  position: relative;
  background:var(--main-color);
}
.header-area .container {
  padding: 0 15px;
}
@media only screen and (max-width: 1399.98px) {
  .header-area .container {
    max-width: none;
    padding: 0 15px;
  }
}
.header-area.sticky-header {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.header-area.sticky-header.sticky {
  background-color: #721b65;
  -webkit-box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  left: 0;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.header-area.sticky-header.sticky .header-logo-area .logo-main {
  display: block;
}
.header-area.sticky-header.sticky .header-logo-area .logo-light {
  display: none;
}
.header-area.transparent {
  background-color: transparent;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header-area.header-default {
  background-size: cover;
  background-position: top left 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.header-area .header-align {
  -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;
  /* height: 100px; */
}
@media only screen and (max-width: 1199px) {
  .header-area .header-align {
    height: 88px;
  }
}
@media only screen and (max-width: 991px) {
  .header-navigation-area {
    display: none;
  }
}
.header-navigation-area .main-menu.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-navigation-area .main-menu.nav > li {
  padding: 0;
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li.active > a {
  color: var(--main-color);
}
.header-navigation-area .main-menu.nav > li.active > a:before {
  color: var(--main-color);
}
.header-navigation-area .main-menu.nav > li > a {
  color: #fff;
  font-size: 17px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 6;
  height: 56px;
  line-height: 56px;
  letter-spacing: 0;
  position: relative;
  margin: 0 6px;
  padding: 0 13px;
  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;
  font-weight: 600;
}
.header-action-area a{
  font-size: 18px;
}

.header-action-area div:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #b5b7bc;
}
.header-navigation-area .main-menu.nav > li > a span {
  position: relative;
}
.header-navigation-area .main-menu.nav > li > a span:before {
  content: "";
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav > li > a:hover {
  color: var(--main-color);
}
.header-navigation-area .main-menu.nav > li > a:hover:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav > li:first-child {
  margin-left: 0;
}
.header-navigation-area .main-menu.nav > li:first-child > a {
  margin-left: 0;
  padding-left: 0;
  color:#fff;
}
.header-navigation-area .main-menu.nav > li:last-child {
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li:last-child > a {
  margin-right: 0;
  padding-right: 0;
}
.header-navigation-area .main-menu.nav > li:hover span:before {
  background-color: #fff;
  width: 100%;
  left: 0;
  right: auto;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a {
  color: var(--main-color);
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:before {
  color: var(--main-color);
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav {
  -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  color: #555;
  padding: 0 0;
  position: absolute;
  width: 230px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  display: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
  padding: 0;
  margin-bottom: 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active a {
  color: #721b65 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active:after {
  color: #721b65;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a {
  color: #1d1d1d;
  display: block;
  font-size: 14px;
  padding: 11px 25px 10px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a:hover {
  color: #721b65;
  background-color: rgba(173, 181, 189, 0.15);
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu {
    padding: 0px 28px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
  color: #555;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
    right: auto;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    top: calc(50% + -8px);
    left: 20px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu.active:after {
  color: #721b65;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  border-radius: 0 4px 4px 4px;
  -webkit-box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
  left: 100%;
  right: auto;
  top: 7px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
    left: auto;
    right: 100%;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav:before {
  content: "";
  display: block;
  height: 30px;
  position: absolute;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a {
  color: #555 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a:hover {
  color: #721b65 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li.active > a {
  color: #721b65 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover a {
  color: #721b65;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover:after {
  color: #721b65 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  min-width: 100%;
  padding: 0;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  width: 500px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega.column-3 {
  width: 720px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item {
  border-right: 1px solid rgba(173, 181, 189, 0.15);
  border-bottom: none;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin: 0;
  padding: 0 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  border-right: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li.active > a {
  color: #721b65 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li > a {
  color: #1d1d1d !important;
  font-size: 13px;
  padding: 11px 35px 10px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li > a:hover {
  background-color: rgba(173, 181, 189, 0.15);
  color: #721b65 !important;
  text-decoration: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li:first-child {
  border-top: 1px solid rgba(173, 181, 189, 0.15);
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item ul > li:last-child {
  border-bottom: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-menu-item:hover .mega-title {
  color: #721b65;
  text-decoration: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-title {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  margin: 14px 0 0 0;
  padding: 11px 35px;
  text-decoration: none;
  text-transform: uppercase;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav-mega .mega-title:hover {
  background-color: transparent;
  color: #2d2d2d;
  cursor: auto;
  text-decoration: none;
}

.btn-menu {
  color: #fff;
  background-color: transparent;
  border: none;
  display: none;
  margin: 0;
  padding: 0;
  font-size: 28px;
  margin-left: 8px;
  position: relative;
  top: 1px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 575px) {
  .btn-menu {
    font-size: 26px;
    margin-left: 4px;
  }
}
@media only screen and (max-width: 991px) {
  .btn-menu {
    display: block;
  }
}
.btn-menu:hover {
  opacity: 0.7;
}

.header-logo-area {
  position: relative;
  /* object-fit: contain; */
}
.header-logo-area a {
  display: block;
}
.header-logo-area img {
  /* max-width: 198px; */
  height: 76px;
  width: 100%;
  padding: 4px;
}
@media only screen and (max-width: 1399.98px) {
  .header-logo-area img {
    max-width: 125px;
    height:65px;
  }
}
.header-logo-area .logo-light {
  display: none;
}

.header-action-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-action-area [class*=shopping-] {
  height: 42px;
}
.header-action-area .shopping-search {
  margin-right: 12px;
}
@media only screen and (max-width: 991px) {
  .header-action-area .shopping-search {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-search {
    margin-right: 8px;
  }
}
.header-action-area .shopping-search-btn {
  display: inline-block;
  color: #fff;
  font-size: 25px;
  position: relative;
  top: 1px;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-search-btn {
    font-size: 22px;
  }
}
.header-action-area .shopping-search-btn:hover {
  opacity: 0.7;
}
.header-action-area .shopping-account {
  margin-right: 15px;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-account {
    margin-right: 5px;
  }
}
.header-action-area .shopping-account-btn {
  display: inline-block;
  color: #fff;
  font-size: 29px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-account-btn {
    font-size: 25px;
  }
}
.header-action-area .shopping-account-btn:hover {
  opacity: 0.7;
}
.header-action-area .shopping-wishlist {
  margin-right: 11px;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-wishlist {
    margin-right: 6px;
  }
}
.header-action-area .shopping-wishlist-btn {
  display: inline-block;
  color: #fff;
  font-size: 27px;
  position: relative;
  top: 0;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-wishlist-btn {
    font-size: 24px;
  }
}
.header-action-area .shopping-wishlist-btn:hover {
  opacity: 0.7;
}
.header-action-area .shopping-cart-btn {
  color: #fff;
  display: inline-block;
  font-size: 26px;
  position: relative;
  padding: 0 8px 0 0;
  border: none;
  background-color: transparent;
  margin: 0;
}
@media only screen and (max-width: 575px) {
  .header-action-area .shopping-cart-btn {
    font-size: 24px;
  }
}
.header-action-area .shopping-cart-btn:hover {
  opacity: 0.7;
}
.header-action-area .shopping-cart-btn .shop-count {
  background-color: var(--main-color);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  height: 20px;
  width: 20px;
  position: absolute;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  right: 0;
  top: 0;
}

.aside-search-box-wrapper .search-box-form-wrap .search-note p {
  font-size: 14px;
  text-transform: capitalize;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
}
.aside-search-box-wrapper .search-form {
  position: relative;
}
.aside-search-box-wrapper .search-form .form-control {
  border: 1px solid #721b65;
  color: #721b65;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  height: 70px;
  font-size: 15px;
  font-weight: 600;
  line-height: 70px;
  text-transform: capitalize;
  padding: 10px 75px 10px 24px;
}
.aside-search-box-wrapper .search-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #721b65;
}
.aside-search-box-wrapper .search-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #721b65;
}
.aside-search-box-wrapper .search-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #721b65;
}
.aside-search-box-wrapper .search-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #721b65;
}
.aside-search-box-wrapper .search-form .search-button {
  border: none;
  background-color: #721b65;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70px;
  font-size: 18px;
  color: #fff;
}
.aside-search-box-wrapper .search-form .search-button:hover {
  color: #721b65;
  background-color: var(--main-color);
}
.aside-search-box-wrapper.offcanvas-top {
  height: 239px;
}
.aside-search-box-wrapper .offcanvas-header {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
}
.aside-search-box-wrapper .offcanvas-body {
  padding-top: 64px;
}
.aside-search-box-wrapper .btn-close {
  position: absolute;
  background-image: none;
  background-color: #721b65;
  color: #fff;
  opacity: 1;
  font-size: 38px;
  top: 0;
  width: 40px;
  padding: 0;
  margin: 0;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  right: 15px;
}
.aside-search-box-wrapper .btn-close:hover {
  color: #721b65;
  background-color: var(--main-color);
}

/*
-----------------------------------------------------------------------
    Home Slider CSS
-----------------------------------------------------------------------
*/
.home-slider-area .home-slider-container {
  position: relative;
}
.home-slider-area .home-slider-container .home-slider-wrapper {
  position: relative;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .sub-title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-content .btn-box {
  opacity: 1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-thumb .thumb .shape-one {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-area .slider-thumb .thumb img {
  opacity: 1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-two-area .slider-content .sub-title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-two-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-two-area .slider-content .desc-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .swiper-slide-active .slider-content-two-area .slider-content .btn-box {
  opacity: 1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: top left 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 796px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 490px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 430px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area {
    height: 177px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .container {
  padding-bottom: 0;
  padding-top: 0;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100% !important;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
  margin-right: -7px;
  margin-top: 79px;
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content {
    margin-right: 0;
    margin-top: 150px;
    margin-bottom: 80px;
    text-align: center;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-box {
  opacity: 0;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title-box {
  transform: translate(0px, 35px);
  -webkit-transform: translate(0px, 35px);
  -moz-transform: translate(0px, 35px);
  -ms-transform: translate(0px, 35px);
  -o-transform: translate(0px, 35px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title-box {
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
  -moz-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .btn-box {
  transform: translate(0px, 25px);
  -webkit-transform: translate(0px, 25px);
  -moz-transform: translate(0px, 25px);
  -ms-transform: translate(0px, 25px);
  -o-transform: translate(0px, 25px);
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
  color: var(--sec-color);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3.2px;
  margin-bottom: 21px;
  padding-left: 66px;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
    font-size: 14px;
    margin-bottom: 14px;
    padding-left: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title {
    display: inline-block;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title:before {
  background-color: var(--main-color) ;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: calc(50% - 2px);
  width: 50px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .sub-title:before {
    width: 30px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
  color: var(--main-color);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.181;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 62px;
    margin-bottom: 30px;
  }
}
@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;
    margin-bottom: 22px;
  }
}
@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: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-content .title {
    font-size: 34px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb {
  bottom: 0;
  left: calc(50% + 58px);
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb {
    left: 0;
    position: relative;
    text-align: center;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
  background-color: var(--main-color);
  border-radius: 50%;
  height: 569px;
  left: -42px;
  position: absolute;
  top: -49px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  width: 569px;
  z-index: -1;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
    height: 510px;
    left: -52px;
    top: -68px;
    width: 510px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
    height: 300px;
    left: -12px;
    top: -36px;
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
    height: 280px;
    left: -22px;
    top: -26px;
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
    height: 230px;
    left: -22px;
    top: -26px;
    width: 230px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb .thumb .shape-one {
    display: none;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb img {
  opacity: 0;
  transform: translate(100px, 0px);
  -webkit-transform: translate(100px, 0px);
  -moz-transform: translate(100px, 0px);
  -ms-transform: translate(100px, 0px);
  -o-transform: translate(100px, 0px);
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb img {
    width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb img {
    width: 330px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-area .slider-thumb img {
    width: 290px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 796px;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area {
    height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area {
    height: 530px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area {
    height: 470px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area {
    height: auto;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .container {
  padding-bottom: 0;
  padding-top: 0;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content {
  margin-top: 79px;
  margin-left: 70px;
  margin-right: 36px;
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content {
    margin-right: 0;
    margin-left: 0;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content {
    margin-top: 130px;
    margin-bottom: 60px;
    text-align: center;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .desc-box,
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .btn-box {
  opacity: 0;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title-box {
  transform: translate(0px, 35px);
  -webkit-transform: translate(0px, 35px);
  -moz-transform: translate(0px, 35px);
  -ms-transform: translate(0px, 35px);
  -o-transform: translate(0px, 35px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title-box {
  transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
  -moz-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .desc-box {
  transform: translate(0px, 25px);
  -webkit-transform: translate(0px, 25px);
  -moz-transform: translate(0px, 25px);
  -ms-transform: translate(0px, 25px);
  -o-transform: translate(0px, 25px);
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .btn-box {
  transform: translate(0px, 20px);
  -webkit-transform: translate(0px, 20px);
  -moz-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  -o-transform: translate(0px, 20px);
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3.2px;
  margin-bottom: 21px;
  padding-left: 0;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .sub-title {
    display: inline-block;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.181;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
    font-size: 62px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
    font-size: 50px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .title {
    font-size: 34px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.9375;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .slider-content .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .home-overlay {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}
@media only screen and (max-width: 991px) {
  .home-slider-area .home-slider-container .home-slider-wrapper.slider-default .slider-content-two-area .home-overlay {
    opacity: 0.6;
  }
}
.home-slider-area .home-slider-container .swiper-btn-wrap {
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 30px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .swiper-btn-wrap {
    right: 10px;
    bottom: 10px;
  }
}
.home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev, .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-next {
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: var(--main-color);
  text-align: center;
  line-height: 46px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev, .home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-next {
    width: 30px;
    height: 30px;
    font-size: 22px;
    line-height: 32px;
  }
}
.home-slider-area .home-slider-container .swiper-btn-wrap .swiper-btn-prev {
  margin-right: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.home-slider-area .home-slider-container:hover .swiper-btn-wrap {
  opacity: 1;
}
.home-slider-area .home-slider-container:hover .swiper-btn-wrap .swiper-btn-prev {
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-area .home-slider-container:hover .swiper-btn-wrap .swiper-btn-prev {
    margin-right: 10px;
  }
}

/*
-----------------------------------------------------------------------
  About CSS
-----------------------------------------------------------------------
*/
.about-inner-area .container {
  padding-top: 124px;
  padding-bottom: 60px;
}

.about-area{
  background-color: #fafafa;
  background: linear-gradient(135deg, #cbcbcb 0%, #ffffff 100%);
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  color: black;
}
@media only screen and (max-width: 1199px) {
  .about-inner-area .container {
    padding-top: 74px;
    padding-bottom: 72px;
  }
}
@media only screen and (max-width: 991px) {
  .about-inner-area .container {
    padding-top: 78px;
    padding-bottom: 53px;
  }
}

.about-thumb {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .about-thumb {
    margin-bottom: 40px;
  }
}

.about-content {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .about-content {
    margin-bottom: 30px;
  }
}
.about-content .section-title {
  margin-bottom: 58px;
}
@media only screen and (max-width: 1199px) {
  .about-content .section-title {
    margin-bottom: 18px;
  }
}
.about-content p {
  margin-right: -2px;
}
@media only screen and (max-width: 1199px) {
  .about-content p {
    margin-bottom: 18px;
  }
}
.about-content .btn-theme {
  margin-top: 19px;
}

.about-item-style2 .about-thumb {
  margin-top: -35px;
}
@media only screen and (max-width: 1199px) {
  .about-item-style2 .about-thumb {
    margin-top: 0;
  }
}
.about-item-style2 .about-content {
  margin-right: -5px;
}

/*
-----------------------------------------------------------------------
  Team CSS
-----------------------------------------------------------------------
*/
.team-item {
  margin-bottom: 30px;
}
.team-item .thumb {
  overflow: hidden;
  position: relative;
}
.team-item .thumb img {
  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;
}
.team-item .content {
  margin-top: 37px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .team-item .content {
    margin-top: 18px;
  }
}
.team-item .content .title {
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1199px) {
  .team-item .content .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.team-item .content p {
  color: #000;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .team-item .content p {
    font-size: 15px;
  }
}
.team-item .member-icons {
  background-color: #fff;
  bottom: 12px;
  right: -20%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  position: absolute;
  padding: 0 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;
}
.team-item .member-icons a {
  color: #721b65;
  font-size: 16px;
  height: 43px;
  line-height: 46px;
}
.team-item .member-icons a + a {
  margin-left: 25px;
}
.team-item .member-icons a:hover {
  color: #000;
}
.team-item:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.team-item:hover .member-icons {
  opacity: 1;
  right: 0;
}

/*
-----------------------------------------------------------------------
    Feature CSS
-----------------------------------------------------------------------
*/
.feature-area {
  border-top: 1px solid #d7d7d7;
}
.feature-area .container {
  padding-bottom: 60px;
  padding-top: 57px;
}
@media only screen and (max-width: 1199px) {
  .feature-area .container {
    padding-bottom: 45px;
    padding-top: 57px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-area .container {
    padding-bottom: 27px;
  }
}

.feature-style2-area {
  border-top: 0;
  border-bottom: 1px solid #d7d7d7;
}

.feature-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .feature-icon-box {
    margin-bottom: 30px;
  }
}
.feature-icon-box .icon-box {
  padding-top: 7px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .icon-box {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .icon-box img {
    width: 40px;
  }
}
.feature-icon-box .content {
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .content {
    padding-left: 10px;
  }
}
.feature-icon-box .content .title {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .feature-icon-box .content .title {
    font-size: 20px;
  }
}
.feature-icon-box .content p {
  color: #848484;
  line-height: 1;
}

/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.daily-product2-area .container {
  padding-bottom: 90px;
  padding-top: 198px;
}
@media only screen and (max-width: 1199px) {
  .daily-product2-area .container {
    padding-bottom: 50px;
    padding-top: 80px;
  }
}

.product-item {
    margin-bottom: 30px;
    position: relative;
    background: #f4f4f4;
    /*padding: 15px;*/
    border: 1px solid #c8c8c8;
    border-radius: 15px;
    overflow: hidden;
}
.product-item .product-thumb {
    overflow: hidden;
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#fff;
}

.product-info{
    padding:15px;
}

.product-item .product-thumb 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%;
}
.product-item .product-info {
  margin-top: 0;
  /*text-align: center;*/
}
.product-item .product-info .title {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 7px;
}
.product-item .product-info .title a {
  color: #1b2c50;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
.product-item .product-info .title a:hover {
  color: #721b65;
}
.product-item .product-info .prices {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.product-item .product-action {
  position: absolute;
  right: 15px;
  top: 15px;
}
.product-item .product-action button {
  background-color: #fff;
  color: #000;
  font-size: 24px;
  height: 44px;
  width: 44px;
  display: block;
  border: none;
  border-radius: 50%;
  line-height: 50px;
  margin-bottom: 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;
}
.product-item .product-action button:hover {
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.08);
  color: #721b65;
}
.product-item .product-action .product-action-links {
  position: absolute;
  opacity: 0;
  top: 100%;
  right: 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-item .product-action .product-action-links button {
  font-size: 22px;
  line-height: 47px;
}
.product-item .product-action .product-action-links button + button {
  transform: translate(-10px, 0px);
  -webkit-transform: translate(-10px, 0px);
  -moz-transform: translate(-10px, 0px);
  -ms-transform: translate(-10px, 0px);
  -o-transform: translate(-10px, 0px);
}
.product-item:hover .product-thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.product-item:hover .product-action .product-action-links {
  opacity: 1;
  right: 0;
}
.product-item:hover .product-action .product-action-links button + button {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.product-list-item {
  border: 2px solid #efefef;
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .product-list-item {
    padding: 15px;
  }
}
.product-list-item .product-thumb {
  border-radius: 12px;
}
.product-list-item .product-thumb img {
  border-radius: 12px;
}
.product-list-item .product-info {
  margin-top: 10px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .product-list-item .product-info {
    margin-top: 0;
    padding: 20px 5px 20px;
  }
}
.product-list-item .product-info .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.product-list-item .product-info .prices {
  font-size: 19px;
  margin-bottom: 18px;
}
.product-list-item .product-info .desc {
  font-size: 15px;
  margin-bottom: 26px;
}
.product-list-item .product-info .btn-theme {
  font-size: 13px;
}
@media only screen and (max-width: 1199px) {
  .product-list-item .product-info .btn-theme {
    font-size: 12px;
    width: 128px;
  }
}

.daily-product-item .product-thumb {
  border: 1px solid #d0d0d0;
}
.daily-product-item .product-thumb img {
  width: 100%;
}
.daily-product-item .product-info {
  margin: 0;
  padding: 0;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .daily-product-item .product-info {
    margin-top: 30px;
  }
}
.daily-product-item .product-feature-list {
  border-top: 2px dotted var(--main-color);
  margin-top: 33px;
  padding-top: 33px;
}
@media only screen and (max-width: 1199px) {
  .daily-product-item .product-feature-list {
    margin-top: 18px;
    padding-top: 18px;
  }
}
.daily-product-item .product-feature-list ul {
  margin-bottom: 0;
}
.daily-product-item .product-feature-list ul li {
  color: #721b65;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
}
@media only screen and (max-width: 1199px) {
  .daily-product-item .product-feature-list ul li {
    font-size: 14px;
  }
}
.daily-product-item .product-feature-list ul li span {
  font-weight: 600;
}
.daily-product-item .product-feature-list ul li:before {
  background-color: #721b65;
  border-radius: 50%;
  height: 6px;
  position: absolute;
  width: 6px;
  content: "";
  display: inline-block;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.daily-product-item .product-feature-list ul li:last-child {
  margin-bottom: 0;
}

.product-category-item {
  margin-bottom: 30px;
  text-align: center;
}
.product-category-item .thumb {
  border-radius: 50%;
  display: inline-block;
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 200px;
}
.product-category-item .thumb img {
  border-radius: 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: 100%;
}
.product-category-item .thumb:before {
  border: 2px dashed #721b65;
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 10;
  opacity: 0;
  animation: spinAround 20s linear infinite;
  -webkit-animation: spinAround 20s linear infinite;
  -moz-animation: spinAround 20s linear infinite;
  -ms-animation: spinAround 20s linear infinite;
  -o-animation: spinAround 20s linear infinite;
  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 .content {
  margin-top: 14px;
}
.product-category-item .content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.product-category-item .content .title a {
  color: #000;
}
.product-category-item .content .title a:hover {
  color: #000;
}
.product-category-item:hover .thumb:before {
  opacity: 1;
}
.product-category-item:hover .thumb img {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
.product-category-item:hover .content .title a {
  color: #721b65;
}

.banner-product-single-item {
  margin-bottom: 30px;
  position: relative;
}
.banner-product-single-item .thumb {
  overflow: hidden;
  position: relative;
}
.banner-product-single-item .thumb img {
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
@media only screen and (max-width: 1199px) {
  .banner-product-single-item .thumb img {
    min-height: 240px;
  }
}
.banner-product-single-item .content {
  left: calc(50% + 42px);
  margin-top: -4px;
  position: absolute;
  pointer-events: none;
  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%);
}
@media only screen and (max-width: 991px) {
  .banner-product-single-item .content {
    left: calc(50% + 16px);
  }
}
@media only screen and (max-width: 767px) {
  .banner-product-single-item .content {
    left: calc(50% + 85px);
  }
}
@media only screen and (max-width: 575px) {
  .banner-product-single-item .content {
    left: auto;
    right: 18px;
  }
}
.banner-product-single-item .content .sub-title {
  color: #721b65;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1199px) {
  .banner-product-single-item .content .sub-title {
    font-size: 18px;
  }
}
.banner-product-single-item .content .title {
  color: #721b65;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 26px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .banner-product-single-item .content .title {
    font-size: 27px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-product-single-item .content .title {
    font-size: 25px;
  }
}
.banner-product-single-item .content .btn-theme {
  pointer-events: visible;
}
.banner-product-single-item:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.banner-product-single-style2-item {
  margin-bottom: 40px;
  position: relative;
}
.banner-product-single-style2-item .thumb {
  overflow: hidden;
  position: relative;
}
.banner-product-single-style2-item .thumb img {
  min-height: 247px;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
.banner-product-single-style2-item .content {
  left: 49px;
  margin-top: 0;
  position: absolute;
  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%);
}
.banner-product-single-style2-item .content .sub-title {
  color: #721b65;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 11px;
}
.banner-product-single-style2-item .content .title {
  color: #721b65;
  font-size: 24px;
  line-height: 1.292;
  margin-bottom: 28px;
  max-width: 200px;
  text-transform: capitalize;
}
.banner-product-single-style2-item .content .btn-theme {
  pointer-events: visible;
}
.banner-product-single-style2-item:hover .thumb img {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.banner-product-single-style3-item {
  margin-bottom: 30px;
  position: relative;
}
.banner-product-single-style3-item .thumb {
  overflow: hidden;
  position: relative;
}
.banner-product-single-style3-item .thumb img {
  min-height: 247px;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
.banner-product-single-style3-item .content {
  left: 30px;
  margin-top: 0;
  position: absolute;
  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%);
}
.banner-product-single-style3-item .content .sub-title {
  color: #721b65;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1199px) {
  .banner-product-single-style3-item .content .sub-title {
    font-size: 16px;
  }
}
.banner-product-single-style3-item .content .title {
  color: #721b65;
  font-size: 24px;
  line-height: 1.292;
  margin-bottom: 28px;
  max-width: 170px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .banner-product-single-style3-item .content .title {
    font-size: 20px;
    max-width: 130px;
  }
}
.banner-product-single-style3-item .content .btn-theme {
  pointer-events: visible;
}
.banner-product-single-style3-item:hover .thumb img {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.shop-top-bar {
  border: 2px solid #f4f4f4;
  background-color: #f4f4f4;
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  padding: 17px 29px 14px 30px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.shop-top-bar .shop-top-left {
  width: 180px;
}
@media only screen and (max-width: 1199px) {
  .shop-top-bar .shop-top-left {
    width: 195px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-left {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-top-left {
    width: 100%;
    text-align: center;
  }
}
.shop-top-bar .shop-top-center {
  width: 105px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-center {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-top-center {
    width: 100%;
  }
}
.shop-top-bar .shop-top-right {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-top-right {
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 8px;
  }
}
.shop-top-bar .pagination-line {
  color: #721b65;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: -1px;
}
.shop-top-bar .pagination-line a {
  color: var(--main-color);
}
.shop-top-bar .pagination-line a:hover {
  color: #000;
}
.shop-top-bar .product-nav {
  position: relative;
  right: -2px;
}
.shop-top-bar .product-nav .nav-tabs {
  border: none;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .product-nav .nav-tabs {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: end !important;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .product-nav .nav-tabs {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin-top: 10px;
  }
}
.shop-top-bar .product-nav .nav-tabs .nav-link {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  line-height: 1;
  font-size: 18px;
  color: #721b65;
}
.shop-top-bar .product-nav .nav-tabs .nav-link + .nav-link {
  margin-left: 23px;
}
.shop-top-bar .product-nav .nav-tabs .nav-link.active {
  color: var(--main-color);
}
.shop-top-bar .product-nav .nav-tabs .nav-link:hover {
  color: var(--main-color);
}
.shop-top-bar .shop-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-top-bar .shop-sort span {
  color: #721b65;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-right: 4px;
  line-height: 1;
  position: relative;
  top: -1px;
}
.shop-top-bar .shop-sort .form-select {
  background: url("../img/icons/bottom-arrow2.webp.png") no-repeat right top 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  width: 153px;
  height: 24px;
  line-height: 24px;
  border-radius: 0;
  border: none;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop-top-bar .shop-sort .form-select {
    width: 85%;
  }
}
@media only screen and (max-width: 575px) {
  .shop-top-bar .shop-sort .form-select {
    width: 82%;
  }
}
@media only screen and (max-width: 479.98px) {
  .shop-top-bar .shop-sort .form-select {
    width: 70%;
  }
}
.shop-top-bar .shop-sort .form-select option {
  font-size: 14px;
}

.product-single-thumb .single-product-thumb {
  margin-bottom: 20px;
}
.product-single-thumb .single-product-thumb img {
  width: 100%;
}
.product-single-thumb .single-product-nav {
  max-width: 421px;
}
@media only screen and (max-width: 1199px) {
  .product-single-thumb .single-product-nav {
    max-width: 100%;
  }
}
.product-single-thumb .single-product-nav .swiper-slide-thumb-active img {
  border-color: #721b65;
}
.product-single-thumb .single-product-nav img {
  border: 1px solid #f4f4f4;
  cursor: pointer;
  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%;
}
.product-single-thumb .swiper-btn-prev,
.product-single-thumb .swiper-btn-next {
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .product-single-thumb .swiper-btn-prev,
.product-single-thumb .swiper-btn-next {
    z-index: 1;
  }
}
.product-single-thumb .swiper-btn-prev:hover,
.product-single-thumb .swiper-btn-next:hover {
  background-color: #721b65;
}
.product-single-thumb .swiper-btn-prev {
  left: 25px;
}
@media only screen and (max-width: 1199px) {
  .product-single-thumb .swiper-btn-prev {
    left: 0;
  }
}
.product-single-thumb .swiper-btn-next {
  right: 25px;
}
@media only screen and (max-width: 1199px) {
  .product-single-thumb .swiper-btn-next {
    right: 0;
  }
}

.product-single-info {
  margin-left: 33px;
  margin-bottom: 31px;
  margin-top: -8px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info {
    margin-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .product-single-info {
    margin-top: 40px;
  }
}
.product-single-info .main-title {
  color: #000;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .main-title {
    font-size: 30px;
  }
}
.product-single-info .prices {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .prices {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.product-single-info .rating-box-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 32px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .rating-box-wrap {
    margin-bottom: 14px;
    padding-bottom: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .product-single-info .rating-box-wrap {
    display: block;
  }
}
.product-single-info .rating-box-wrap .rating-box {
  color: #ffde00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .rating-box-wrap .rating-box {
    font-size: 16px;
  }
}
.product-single-info .rating-box-wrap .rating-box i {
  line-height: 1;
}
.product-single-info .rating-box-wrap .rating-box i + i {
  margin-left: 7.36px;
}
.product-single-info .rating-box-wrap .review-status {
  line-height: 1;
  margin-left: 14px;
}
@media only screen and (max-width: 575px) {
  .product-single-info .rating-box-wrap .review-status {
    margin-top: 12px;
    margin-left: 0;
  }
}
.product-single-info .rating-box-wrap .review-status a {
  color: #929191;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .rating-box-wrap .review-status a {
    font-size: 15px;
  }
}
.product-single-info .rating-box-wrap .review-status a:hover {
  color: #721b65;
}
.product-single-info p {
  margin-right: -6px;
  color: #181818;
  line-height: 28px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info p {
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.product-single-info .product-single-meta ul {
  margin-bottom: 0;
}
.product-single-info .product-single-meta ul li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .product-single-meta ul li {
    font-size: 15px;
  }
}
.product-single-info .product-single-meta ul li span {
  color: #721b65;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .product-single-meta ul li span {
    font-size: 15px;
  }
}
.product-single-info .product-single-meta ul li a {
  color: #000;
}
.product-single-info .product-single-meta ul li a:hover {
  color: #721b65;
}
.product-single-info .product-quick-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .product-single-info .product-quick-action {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-single-info .product-quick-action {
    display: block;
  }
}
.product-single-info .btn-product-cart {
  background-color: #721b65;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 50px;
  height: 50px;
  margin-left: 10px;
  text-transform: uppercase;
  width: 170px;
}
@media only screen and (max-width: 479.98px) {
  .product-single-info .btn-product-cart {
    margin-left: 0;
    font-size: 13px;
    width: 130px;
  }
}
.product-single-info .btn-product-cart:hover {
  color: #721b65;
  background-color: var(--main-color);
}
.product-single-info .btn-product-wishlist,
.product-single-info .btn-product-quick-view {
  background-color: var(--main-color);
  border-radius: 5px;
  border: none;
  color: #721b65;
  display: inline-block;
  font-size: 23px;
  height: 50px;
  line-height: 54px;
  margin-left: 10px;
  width: 50px;
}
@media only screen and (max-width: 479.98px) {
  .product-single-info .btn-product-wishlist,
.product-single-info .btn-product-quick-view {
    position: relative;
    top: 5px;
    margin-left: 3px;
  }
}
.product-single-info .btn-product-wishlist:hover,
.product-single-info .btn-product-quick-view:hover {
  background-color: #721b65;
  color: var(--main-color);
}
.product-single-info .pro-qty {
  display: inline-block;
  position: relative;
}
.product-single-info .pro-qty input {
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
  color: #721b65;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  position: relative;
  padding: 0 24px;
  text-align: center;
  width: 80px;
}
.product-single-info .pro-qty .qty-btn {
  cursor: pointer;
  color: #721b65;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
.product-single-info .pro-qty .dec {
  left: 13px;
}
.product-single-info .pro-qty .inc {
  right: 13px;
}

.group-product-list {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .group-product-list {
    overflow-x: auto;
  }
}
.group-product-list .info-text {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 479.98px) {
  .group-product-list .info-text {
    font-size: 14px;
  }
}
.group-product-list .info-text .text-primary {
  color: #721b65 !important;
  font-weight: 700;
}
.group-product-list table {
  width: 100%;
  margin-bottom: 15px;
  border-top: 1px dotted #e5e5e5;
}
@media only screen and (max-width: 991px) {
  .group-product-list table {
    min-width: 400px;
  }
}
.group-product-list table tbody tr td {
  font-weight: 600;
  padding: 10px 10px 10px 0;
  border-width: 0 0 1px 0;
  border-style: dotted;
  border-color: #e5e5e5;
  background-color: transparent;
}
.group-product-list table tbody tr .thumb {
  width: 50px;
}
.group-product-list table tbody tr .title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.group-product-list table tbody tr .title a {
  color: #282828;
}
.group-product-list table tbody tr .title a:hover {
  color: #721b65;
}
.group-product-list table tbody tr input {
  cursor: pointer;
}
.group-product-list table tbody tr .price {
  padding-right: 0;
  text-align: right;
}
.group-product-list table tbody tr .price .pro-price span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.group-product-list table tbody tr .price .pro-price .old {
  font-size: 14px;
  margin-right: 5px;
  text-decoration: line-through;
  opacity: 0.5;
}
.group-product-list .info-text {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.product-review-tabs-content {
  margin-top: 51px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content {
    margin-top: 22px;
  }
}
.product-review-tabs-content .product-tab-nav {
  border-bottom: 2px solid #f4f4f4;
  padding-bottom: 8px;
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav {
    display: block;
  }
}
.product-review-tabs-content .product-tab-nav li a {
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  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;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-nav li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav li a {
    display: block;
  }
}
.product-review-tabs-content .product-tab-nav li a:before {
  background-color: transparent;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-review-tabs-content .product-tab-nav li a.active {
  color: #721b65;
}
.product-review-tabs-content .product-tab-nav li a.active:before {
  background-color: #721b65;
}
.product-review-tabs-content .product-tab-nav li + li {
  margin-left: 42px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-nav li + li {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-review-tabs-content .product-tab-nav li + li {
    margin-left: 0;
    margin-top: 20px;
  }
}
.product-review-tabs-content .product-information p {
  color: #181818;
}
.product-review-tabs-content .product-tab-content {
  margin-top: 32px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-tab-content {
    margin-top: 15px;
  }
}
.product-review-tabs-content .product-review-content {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .product-review-tabs-content .product-review-content {
    margin-top: 20px;
  }
}
.product-review-tabs-content .product-review-content .comment-author {
  position: relative;
}
.product-review-tabs-content .product-review-content .comment-author .comment-thumb {
  position: relative;
}
.product-review-tabs-content .product-review-content .comment-author .comment-thumb img {
  border-radius: 4px;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin-left: 80px;
  position: relative;
  padding: 24px 24px 20px;
  margin: 20px 0 0;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content:before {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  width: 10px;
  left: 15px;
  top: -6px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .rating-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .rating-box i {
  color: #f9ba48;
  font-size: 12px;
  letter-spacing: 2px;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .rating-box i:last-child {
  color: #e1e1e1;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .title {
  color: #797979;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .title span {
  font-weight: 600;
  text-transform: uppercase;
}
.product-review-tabs-content .product-review-content .comment-author .comment-content .desc {
  color: #999;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.product-review-tabs-content .product-review-content .comment-form-content {
  margin-top: 22px;
}
.product-review-tabs-content .product-review-content .comment-form-content .title {
  color: #666;
  cursor: pointer;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-review-tabs-content .review-comment-form {
  margin-top: 18px;
}
.product-review-tabs-content .review-comment-form .form-group {
  margin-bottom: 18px;
}
.product-review-tabs-content .review-comment-form .form-label {
  cursor: pointer;
  color: #888;
  font-weight: 400;
  margin: 0 0 5px;
}
.product-review-tabs-content .review-comment-form .form-control {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  color: #999;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
}
.product-review-tabs-content .review-comment-form textarea.form-control {
  padding-top: 10px;
  height: 100px;
  line-height: 1.8;
}
.product-review-tabs-content .review-comment-form [type=submit] {
  border: none;
  background-color: #721b65;
  width: 120px;
  height: 48px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 5px;
}
.product-review-tabs-content .review-comment-form [type=submit]:hover {
  color: #721b65;
  background-color: var(--main-color);
}

.shopping-cart-form {
  margin-bottom: 70px;
}
.shopping-cart-form table {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-width: 1px 0 1px 1px;
  color: #323232;
  margin: 0 0 70px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .shopping-cart-form table {
    width: 690px;
  }
}
.shopping-cart-form table th {
  border-bottom: none;
  border-top: none;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  border-right: 1px solid #e5e5e5;
}
.shopping-cart-form table th,
.shopping-cart-form table td {
  padding: 20px 10px;
  vertical-align: middle;
}
.shopping-cart-form table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
  border-bottom: none;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}
.shopping-cart-form table .tbody-item {
  background-color: transparent;
  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-form table .tbody-item:hover {
  background-color: #f6f6f6;
}
.shopping-cart-form table .tbody-item-actions td {
  text-align: right;
}
.shopping-cart-form table .product-remove .remove {
  color: #323232;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.shopping-cart-form table .product-remove .remove:hover {
  color: #721b65;
}
.shopping-cart-form table .product-thumbnail {
  min-width: 32px;
}
.shopping-cart-form table .product-thumbnail img {
  width: 75px;
}
.shopping-cart-form table .product-name .title {
  color: #323232;
  font-weight: 600;
}
.shopping-cart-form table .product-name .title:hover {
  color: #721b65;
}
.shopping-cart-form table .product-price .price {
  color: #323232;
  font-size: 15px;
  font-weight: 600;
}
.shopping-cart-form table .pro-qty {
  display: inline-block;
  position: relative;
}
.shopping-cart-form table .pro-qty input {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  color: #323232;
  font-weight: 400;
  width: 75px;
  height: 50px;
  font-size: 15px;
  padding: 5px 30px 5px 5px;
  text-align: center;
}
.shopping-cart-form table .pro-qty .qty-btn {
  background-color: transparent;
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: 600;
  top: 0;
  right: 0;
  border-left: 1px solid #e5e5e5;
  line-height: 25px;
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
  transition: all 0.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-form table .pro-qty .qty-btn:hover {
  background-color: #721b65;
  color-color: #721b65;
  color: #fff;
}
.shopping-cart-form table .pro-qty .dec {
  border-top: 1px solid #e5e5e5;
  top: auto;
  bottom: 0;
}
.shopping-cart-form .btn-update-cart {
  background: #fff;
  border: 2px solid #e5e5e5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #323232;
  display: inline-block;
  font-size: 1.077em;
  font-weight: 600;
  height: 50px;
  line-height: 46px;
  padding: 0px 35px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.shopping-cart-form .btn-update-cart:hover {
  background-color: #ebe9eb;
  border-color: #e5e5e5;
}

.coupon-wrap .title {
  border-bottom: 1px solid #e5e5e5;
  font-size: 18px;
  margin: 0 0 22px;
  padding: 0 0 10px;
  text-transform: uppercase;
  font-weight: 800;
}
.coupon-wrap .desc {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 12px;
}
.coupon-wrap .form-control {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 50px;
  line-height: 48px;
  padding: 0 16px;
  vertical-align: middle;
  margin: 0 0 25px;
  width: 100%;
  font-size: 14px;
}
.coupon-wrap .btn-coupon {
  background: #fff;
  border: 2px solid #e5e5e5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #323232;
  display: inline-block;
  height: 50px;
  padding: 0 35px;
  border-radius: 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;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 48px;
}
.coupon-wrap .btn-coupon:hover {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
}

.cart-totals-wrap {
  background: #f9f9f9;
  margin-bottom: 30px;
  padding: 33px 30px 35px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .cart-totals-wrap {
    margin-top: 40px;
  }
}
.cart-totals-wrap .title {
  border-bottom: 1px solid #e5e5e5;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  padding: 0 0 10px;
  text-transform: uppercase;
}
.cart-totals-wrap table {
  width: 100%;
}
.cart-totals-wrap table tbody tr:first-child th {
  border-top: none;
}
.cart-totals-wrap table tbody tr th {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 0 15px;
  text-align: left;
  text-transform: uppercase;
  vertical-align: top;
}
.cart-totals-wrap table tbody tr td {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  text-align: right;
  vertical-align: top;
}
.cart-totals-wrap table tbody .amount {
  color: #242424;
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}
.cart-totals-wrap table tbody .shipping-list {
  margin-top: 2px;
  margin-bottom: 20px;
}
.cart-totals-wrap table tbody .shipping-list li {
  margin: 0 0 4px;
  padding: 0;
  text-align: right;
  line-height: 1.5em;
}
.cart-totals-wrap table tbody .shipping-list li input {
  cursor: pointer;
  margin-right: 2px;
  position: relative;
  top: 1px;
  font-weight: 600;
}
.cart-totals-wrap table tbody .shipping-list li label {
  cursor: pointer;
  color: #323232;
  font-size: 14px;
  font-weight: 600;
}
.cart-totals-wrap table tbody .shipping-list li label span {
  color: #000;
  font-weight: 600;
  margin-left: 5px;
  text-align: left;
}
.cart-totals-wrap table tbody .destination {
  font-size: 14px;
  margin-bottom: 6px;
}
.cart-totals-wrap table tbody .destination strong {
  font-weight: 700;
}
.cart-totals-wrap table tbody .btn-shipping-address {
  font-size: 13px;
  color: #000;
  font-weight: 600;
  margin-bottom: 3px;
  display: inline-block;
}
.cart-totals-wrap table tbody .btn-shipping-address:hover {
  color: #721b65;
}
.cart-totals-wrap table .order-total th {
  padding-top: 18px;
}
.cart-totals-wrap .checkout-button {
  background: #721b65;
  border: 2px solid #721b65;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  height: 50px;
  letter-spacing: 0;
  line-height: 46px;
  outline: none;
  overflow: hidden;
  padding: 0 35px;
  text-shadow: none;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 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;
}
@media only screen and (max-width: 575px) {
  .cart-totals-wrap .checkout-button {
    font-size: 14px;
    padding: 0 15px;
  }
}
.cart-totals-wrap .checkout-button:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.disabled {
  color: inherit;
  cursor: not-allowed;
  opacity: 0.5;
}

.shopping-wishlist-form {
  margin-bottom: 30px;
}
.shopping-wishlist-form table {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-width: 1px 0 1px 1px;
  color: #323232;
  margin: 0 0 70px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .shopping-wishlist-form table {
    width: 1199px;
  }
}
.shopping-wishlist-form table th {
  border-bottom: none;
  border-top: none;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5em;
  border-right: 1px solid #e5e5e5;
}
.shopping-wishlist-form table th,
.shopping-wishlist-form table td {
  padding: 20px 10px;
  vertical-align: middle;
}
.shopping-wishlist-form table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
  border-bottom: none;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}
.shopping-wishlist-form table .tbody-item {
  background-color: transparent;
  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-wishlist-form table .tbody-item:hover {
  background-color: #f6f6f6;
}
.shopping-wishlist-form table .product-remove .remove {
  color: #323232;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.shopping-wishlist-form table .product-remove .remove:hover {
  color: #721b65;
}
.shopping-wishlist-form table .product-thumbnail img {
  width: 59px;
}
.shopping-wishlist-form table .product-name .title {
  color: #323232;
  font-weight: 600;
}
.shopping-wishlist-form table .product-name .title:hover {
  color: #721b65;
}
.shopping-wishlist-form table .product-price .price {
  color: #323232;
  font-size: 15px;
  font-weight: 600;
}
.shopping-wishlist-form table .product-stock-status .wishlist-in-stock {
  color: #721b65;
  font-size: 14px;
  font-weight: 600;
}
.shopping-wishlist-form table .product-add-to-cart .btn-shop-cart {
  background: #fff;
  border: 2px solid #e5e5e5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #323232;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  height: 55px;
  line-height: 52px;
  padding: 0 25px;
  border-radius: 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.shopping-wishlist-form table .product-add-to-cart .btn-shop-cart:hover {
  color: #fff;
  background-color: #721b65;
  border-color: #721b65;
}

.checkout-page-coupon-wrap {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .checkout-page-coupon-wrap {
    margin-bottom: 30px;
  }
}
.checkout-page-coupon-wrap .coupon-accordion .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.checkout-page-coupon-wrap .coupon-accordion .card h3 {
  background-color: #eeeff2;
  border-top: 2px solid #1e85be;
  color: #000;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  padding: 20px 21px 18px;
  margin-bottom: 30px;
}
.checkout-page-coupon-wrap .coupon-accordion .card h3 i {
  font-size: 14px;
  color: #1e85be;
  margin-right: 12px;
}
.checkout-page-coupon-wrap .coupon-accordion .card h3 a {
  color: #000;
}
.checkout-page-coupon-wrap .coupon-accordion .card h3 a:hover {
  color: #721b65;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body {
  padding: 0;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap {
  border: 1px solid #e8e8e8;
  padding: 20px;
  margin: 0;
  text-align: left;
  border-radius: 5px;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap p {
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 10px;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group {
  margin-bottom: 0;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #626262;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  color: #626262;
  width: 162px;
  height: 50px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 5px;
  line-height: 40px;
  margin-left: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 991px) {
  .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon {
    margin-top: 15px;
  }
}
.checkout-page-coupon-wrap .coupon-accordion .card .card-body .apply-coupon-wrap form .btn-coupon:hover {
  color: #fff;
  background-color: #721b65;
  border-color: #721b65;
}

.shopping-checkout-wrap .container {
  padding-bottom: 120px;
}
.shopping-checkout-wrap .title {
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 35px;
}
.shopping-checkout-wrap .title:before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group {
  margin-bottom: 20px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group label {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group label .required {
  color: #f00;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e8e8e8;
  color: #626262;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #626262;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:active, .shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group .form-control:focus {
  border-color: #000;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group textarea.form-control {
  min-height: 120px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  padding: 20px;
  line-height: 1.3;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap form .form-group select {
  background-image: url("../img/icons/bottom-arrow.webp.png");
  line-height: normal;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-size: 8px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox {
  position: relative;
  margin-bottom: 20px;
  margin-top: 6px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  border-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 18px;
  height: 18px;
  border-width: 2px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  display: inline-block;
  color: #666;
  content: "";
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  text-align: center;
  padding-left: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 1px;
  top: 5px;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-label {
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-top: 2px;
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-billing-details-wrap .billing-form-wrap .checkout-box .custom-checkbox .custom-control-label:before {
  content: "";
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e4e4e4;
  width: 18px;
  height: 18px;
  border-width: 2px;
  position: absolute;
  left: 0;
  border-style: solid;
  top: 5px;
}
.shopping-checkout-wrap .checkout-order-details-wrap {
  margin-left: 40px;
}
@media only screen and (max-width: 1199px) {
  .shopping-checkout-wrap .checkout-order-details-wrap {
    margin-left: 0;
  }
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap {
  border-color: rgba(52, 53, 56, 0.1);
  border-width: 2px;
  border-style: solid;
  margin-bottom: 50px;
  padding: 48px 50px 54px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap {
    padding: 20px 20px 20px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .product-total {
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item {
  line-height: 20px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item:first-child td {
  padding-top: 27px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .cart-item:last-child td {
  padding-bottom: 27px;
  border-bottom-width: 1px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .shipping td {
  min-width: 140px;
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table .product-quantity {
  color: #000;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot td {
  text-align: right;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot td,
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table-foot th {
  padding: 15px 0 !important;
  border-bottom-width: 1px !important;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table th {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #e8e8e8;
  padding: 8px 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table td {
  border-width: 0;
  border-color: #e8e8e8;
  border-style: solid;
  padding: 8px 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table th,
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .table td {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  vertical-align: middle;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method {
  margin-top: 34px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card {
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 10px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header {
  border: none;
  background-color: transparent;
  padding: 0;
  display: inline-block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  padding-bottom: 0;
  text-transform: uppercase;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title:before {
  position: absolute;
  content: "";
  background-color: #fff;
  border: 1px solid #666;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #0075ff;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  display: block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=false]:after {
  display: none;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=true]:before {
  border-color: #0075ff;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header .title[aria-expanded=true]:after {
  display: block;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-header:hover {
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-body {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .card .card-body p {
  color: #747474;
  font-size: 13px;
  line-height: 24px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text {
  color: #747474;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 18px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text a {
  color: #721b65;
  text-decoration: underline;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .p-text a:hover {
  color: #721b65;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .required {
  color: #f00;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox {
  position: relative;
  padding-left: 24px;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #fff;
  border-radius: 0;
  border-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 15px;
  height: 15px;
  border-width: 2px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  display: inline-block;
  color: #666;
  content: "";
  font-family: "FontAwesome";
  font-size: 8px;
  position: absolute;
  text-align: center;
  padding-left: 0px;
  line-height: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 4px;
  top: 7px;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-label {
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 0;
  cursor: pointer;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .agree-policy .custom-checkbox .custom-control-label:before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e4e4e4;
  width: 15px;
  height: 15px;
  border-width: 2px;
  border-style: solid;
  top: 7px;
  left: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .btn-place-order {
  display: block;
  text-align: center;
  border-radius: 0;
  padding: 18px 20px 16px;
  margin-top: 32px;
  font-size: 16px;
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.shopping-checkout-wrap .checkout-order-details-wrap .order-details-table-wrap .shop-payment-method .btn-place-order:hover {
  background-color: #000;
  border-color: #000;
}

.shopping-compare-area .container {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .shopping-compare-area .container {
    padding-bottom: 80px;
  }
}

.shopping-compare-form .table {
  color: #242424;
  font-size: 13px;
  display: block;
  margin: 0;
  border: none;
  width: 100%;
  overflow: auto;
  padding: 0;
}
.shopping-compare-form .table tbody tr .product-remove {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 19px;
}
.shopping-compare-form .table tbody tr .product-remove a {
  color: #242424;
  font-size: 13px;
  font-weight: 600;
}
.shopping-compare-form .table tbody tr .product-remove a:hover {
  color: #721b65;
}
.shopping-compare-form .table tbody tr .product-remove i {
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.shopping-compare-form .table tbody tr .product-thumb {
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.shopping-compare-form .table tbody tr .product-name .title {
  color: #333131;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  margin-top: 24px;
}
.shopping-compare-form .table tbody tr .product-name .title a {
  color: #242424;
}
.shopping-compare-form .table tbody tr .btn-cart {
  background-color: #343538;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  text-transform: capitalize;
}
.shopping-compare-form .table tbody tr .price {
  color: #343538;
  font-size: 14px;
}
.shopping-compare-form .table tbody tr .product-sku {
  color: #242424;
  font-size: 13px;
  text-transform: uppercase;
}
.shopping-compare-form .table tbody tr .product-desc {
  color: #242424;
  font-size: 13px;
  line-height: 1.714286;
}
.shopping-compare-form .table tbody tr .product-stock {
  background-color: #35d56a;
  font-size: 0.875em;
  display: inline-block;
  color: #fff;
  border-radius: 15px;
  padding: 2px 15px;
}
.shopping-compare-form .table tbody tr th {
  color: #242424;
  min-width: 200px;
  width: 200px;
  font-size: 14px;
  background-color: #f2f2f2;
  vertical-align: middle;
  border-color: #e7e7e7;
  font-weight: bold;
  border-left: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.shopping-compare-form .table tbody tr td {
  min-width: 250px;
  width: 322px;
  border-color: #e7e7e7;
  text-align: center;
  padding: 20px 0;
  vertical-align: middle;
}
.shopping-compare-form .table th,
.shopping-compare-form .table td {
  border-width: 1px;
  border-style: solid;
  padding: 10px;
}

.product-cart-view-modal .modal-dialog {
  max-width: 1180px;
}
@media only screen and (max-width: 1199px) {
  .product-cart-view-modal .modal-dialog {
    max-width: 942px;
  }
}
@media only screen and (max-width: 991px) {
  .product-cart-view-modal .modal-dialog {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .product-cart-view-modal .modal-dialog {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .product-cart-view-modal .modal-dialog {
    max-width: none;
  }
}
.product-cart-view-modal .modal-body {
  padding: 30px 15px 30px;
}
@media only screen and (max-width: 575px) {
  .product-cart-view-modal .modal-body {
    padding: 20px 5px 20px;
  }
}
.product-cart-view-modal .modal-content {
  border: none;
}
@media only screen and (max-width: 991px) {
  .product-cart-view-modal .product-single-thumb img {
    width: 100%;
  }
}
.product-cart-view-modal .product-single-info {
  padding-bottom: 0;
  padding-top: 20px;
  margin-left: 0;
  margin-bottom: 0;
}
.product-cart-view-modal .product-single-info .prices {
  margin: 20px 0 20px 0;
}
.product-cart-view-modal .product-single-info .desc {
  margin-bottom: 20px;
}
.product-cart-view-modal .btn-close {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #c8c8c8;
  background-image: none;
  font-size: 30px;
  line-height: 1;
  border-radius: 0 0 60px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 45px;
  height: 45px;
  text-align: left;
}
.product-cart-view-modal .btn-close span {
  position: relative;
  top: -4px;
  left: 2px;
}

.product-action-modal .modal-content {
  border-radius: 0 0 0.3rem 0.3rem;
}
.product-action-modal .product-action-view-content .btn-close {
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0.3rem 0.3rem 0 0;
  font-size: 20px;
  width: 100%;
  height: 24px;
  line-height: 18px;
  position: absolute;
  right: 0;
  bottom: 100%;
  background-color: #721b65;
  color: #fff;
  opacity: 1;
  text-align: center;
  padding: 0;
  margin: 0;
}
.product-action-modal .product-action-view-content .modal-action-messages {
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
  margin-bottom: 17px;
}
.product-action-modal .product-action-view-content .modal-action-messages i {
  position: relative;
  top: 1px;
}
.product-action-modal .product-action-view-content .modal-action-product .thumb img {
  border-radius: 8px;
  width: 100%;
}
.product-action-modal .product-action-view-content .modal-action-product .product-name {
  margin: 18px 0 0;
  font-size: 18px;
  text-align: center;
}

.aside-cart-wrapper .btn-aside-cart-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #721b65;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  opacity: 1;
  border-radius: 0;
  color: var(--main-color);
  background-image: none;
  padding: 0 49px;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-aside-cart-close {
    padding: 0 19px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
  }
}
.aside-cart-wrapper .btn-aside-cart-close i {
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-aside-cart-close i {
    font-size: 12px;
    right: 19px;
  }
}
.aside-cart-wrapper .btn-aside-cart-close:hover {
  color: #fff;
  background-color: #222;
}
.aside-cart-wrapper .aside-cart-product-list {
  margin-bottom: 35px;
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .aside-cart-product-list .aside-product-list-item {
    margin-bottom: 18px;
  }
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item .remove {
  color: #343538;
  display: block;
  font-weight: normal;
  font-size: 16px;
  height: 20px;
  line-height: 17px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 20px;
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item a {
  color: #242424;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 5px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .aside-cart-product-list .aside-product-list-item a {
    font-size: 14px;
  }
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item a img {
  float: left;
  max-width: 70px;
  margin-right: 20px;
  border: 1px solid #eee;
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item a:hover {
  color: #721b65;
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item .product-price {
  color: #343538;
  font-size: 14px;
}
.aside-cart-wrapper .aside-cart-product-list .aside-product-list-item:last-child {
  margin-bottom: 0;
}
.aside-cart-wrapper .cart-total {
  color: #242424;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
}
.aside-cart-wrapper .cart-total span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.aside-cart-wrapper .cart-total .amount {
  font-weight: 500;
  font-size: 18px;
  float: right;
}
.aside-cart-wrapper .btn-total {
  border-radius: 0;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 18px 19px 16px;
  background-color: #232324;
  border-color: #232324;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .btn-total {
    font-size: 12px;
    padding: 16px 19px 14px;
  }
}
.aside-cart-wrapper .btn-total:hover {
  background-color: #721b65;
  border-color: #721b65;
}
.aside-cart-wrapper .btn-total + .btn-total {
  margin-top: 10px;
}
.aside-cart-wrapper.offcanvas {
  -webkit-box-shadow: 0px 0px 87px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 0px 87px 0px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper.offcanvas {
    width: 310px;
  }
}
.aside-cart-wrapper .offcanvas-header {
  padding: 0;
}
.aside-cart-wrapper .offcanvas-body {
  padding: 50px 50px 102px;
}
@media only screen and (max-width: 767px) {
  .aside-cart-wrapper .offcanvas-body {
    padding: 19px 19px 70px;
  }
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*
-----------------------------------------------------------------------
  Divider CSS
-----------------------------------------------------------------------
*/
.divider-style1 .divider-thumb {
  display: inline-block;
  height: 100%;
  position: relative;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-thumb {
    display: none;
  }
}
.divider-style1 .divider-thumb img {
  pointer-events: none;
  position: absolute;
  width: auto;
}
@media only screen and (max-width: 1399.98px) {
  .divider-style1 .divider-thumb img {
    width: 240px;
  }
}
.divider-style1 .divider-thumb-left img {
    bottom: -70px;
    right: calc(50% - 163px);
}
@media only screen and (max-width: 1399.98px) {
  .divider-style1 .divider-thumb-left img {
    right: calc(50% - 92px);
  }
}
.divider-style1 .divider-thumb-right img {
  bottom: 32px;
  right: 36px;
}
.divider-style1 .divider-thumb .shape-circle {
  background-color: var(--main-color);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  height: 100%;
  position: absolute;
  width: calc(100% + 41px);
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .divider-style1 .divider-thumb .shape-circle {
    display: none;
  }
}
.divider-style1 .divider-content {
  max-width: 454px;
  margin: 0 auto;
  position: relative;
  padding: 120px 0 126px;
  z-index: 1;
}
@media only screen and (max-width: 1399.98px) {
  .divider-style1 .divider-content {
    padding: 80px 0 86px;
  }
}
.divider-style1 .divider-content .sub-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 13px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.divider-style1 .divider-content .title {
  color: #fff;
  font-size: 48px;
}
@media only screen and (max-width: 1399.98px) {
  .divider-style1 .divider-content .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .title {
    font-size: 38px;
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .title {
    font-size: 34px;
  }
}
.divider-style1 .divider-content .desc {
  color: #fff;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1399.98px) {
  .divider-style1 .divider-content .desc {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .desc {
    font-size: 15px;
  }
}
.divider-style1 .divider-content .shape-object {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 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%);
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .shape-object {
    width: 240px;
  }
}
@media only screen and (max-width: 1199px) {
  .divider-style2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style2 {
    padding: 50px 0 83px;
  }
}
.divider-style2 .divider-thumb {
  position: relative;
  height: 100%;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
.divider-style2 .divider-thumb img {
  max-width: none;
  float: right;
  position: absolute;
  left: -12px;
  bottom: -110px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-thumb img {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 100%;
    float: none;
  }
}
.divider-style2 .divider-content {
  max-width: 454px;
  margin: 0 0 0 70px;
  position: relative;
  padding: 121px 0 125px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-content {
    margin: 0 0 0 40px;
  }
}
@media only screen and (max-width: 991px) {
  .divider-style2 .divider-content {
    padding: 0;
    margin: 40px 0 0 28px;
  }
}
.divider-style2 .divider-content .sub-title {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 13px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-content .sub-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.divider-style2 .divider-content .title {
  color: #fff;
  font-size: 48px;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-content .title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style2 .divider-content .title {
    font-size: 33px;
  }
}
.divider-style2 .divider-content .desc {
  color: #fff;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .divider-style2 .divider-content .desc {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
.isotope-filter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
  z-index: 999;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .isotope-filter {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 479.98px) {
  .isotope-filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.isotope-filter button {
  border: 2px solid transparent;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  margin: 0 2px;
  padding: 8px 19px 7px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 991px) {
  .isotope-filter button {
    font-size: 13px;
    margin: 0;
    padding: 6px 18px 5px;
  }
}
@media only screen and (max-width: 575px) {
  .isotope-filter button {
    font-size: 12px;
  }
}
@media only screen and (max-width: 479.98px) {
  .isotope-filter button {
    border: 2px dashed #eee;
    display: block;
    margin: 0 3px 10px;
    width: 47.77%;
  }
}
.isotope-filter button.active {
  border-color: var(--main-color);
}
.isotope-filter button:hover {
  color: var(--main-color);
}
@media only screen and (max-width: 767px) {
  .isotope-filter-style2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .isotope-filter-style2 button {
    font-size: 12px;
    border: 2px dashed #eee;
    display: block;
    margin: 0 3px 10px;
    width: 47.77%;
  }
}

/*
-----------------------------------------------------------------------
  Testimonial CSS
-----------------------------------------------------------------------
*/
.testimonial-item {
  border-radius: 10px;
  background-color: #fff;
  
  margin-bottom: 30px;
  padding: 40px 15px 15px 30px;
}
.testimonial-item .testi-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-item .testi-author {
    margin-bottom: 18px;
  }
}
.testimonial-item .testi-author .testi-info {
  padding-top: 6px;
  padding-left: 20px;
}
.testimonial-item .testi-author .testi-info .title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .testimonial-item .testi-author .testi-info .title {
    font-size: 16px;
  }
}
.testimonial-item .testi-author .testi-info .sub-title {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-item .testi-author .testi-info .sub-title {
    font-size: 16px;
  }
}
.testimonial-item .rating-box {
  color: #ffde00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.testimonial-item .rating-box i + i {
  margin-left: 6px;
}
.testimonial-item .desc {
  color: #434343;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.73;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-item .desc {
    font-size: 15px;
  }
}
.testimonial-item .testi-quote {
  text-align: right;
}

/*
-----------------------------------------------------------------------
  Countdown CSS
-----------------------------------------------------------------------
*/
.ht-countdown-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--main-color);
  border-radius: 0 50px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 23px;
  padding: 7px 16px 6px 17px;
}
@media only screen and (max-width: 1199px) {
  .ht-countdown-wrap {
    margin-bottom: 13px;
  }
}
.ht-countdown-wrap .countdown-title {
  color: #721b65;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-right: 10px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .ht-countdown-wrap .countdown-title {
    font-size: 13px;
  }
}

.ht-countdown-style1 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ht-countdown-style1 .countdown-item {
  position: relative;
  line-height: 1;
  margin: 0 7.5px;
}
.ht-countdown-style1 .countdown-item:after {
  content: ":";
  color: #721b65;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  right: -9px;
  top: calc(50% - 1px);
  line-height: 1;
  vertical-align: middle;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}
.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-style1 .countdown-item__time {
  color: #721b65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .ht-countdown-style1 .countdown-item__time {
    font-size: 14px;
  }
}
.ht-countdown-style1 .countdown-item__label {
  display: none;
}

/*
-----------------------------------------------------------------------
  Form CSS
-----------------------------------------------------------------------
*/
.contact-form .form-group {
  margin-bottom: 30px;
}
.contact-form .form-control {
  border: 1px solid #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 15px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.2px;
  height: 49px;
  line-height: 49px;
  padding: 5px 19px;
}
.contact-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
.contact-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
.contact-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
.contact-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
.contact-form textarea.form-control {
  height: 250px;
  line-height: 1.3;
  padding-top: 16px;
}
@media only screen and (max-width: 1199px) {
  .contact-form textarea.form-control {
    height: 140px;
  }
}
.contact-form [type=submit] {
  margin-top: 60px;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .contact-form [type=submit] {
    margin-top: 35px;
  }
}

.form-message .alert-success {
  padding: 10px 20px;
  margin-top: 20px;
}
.form-message .btn-close {
  background: transparent;
  font-size: 19px;
  line-height: 22px;
  padding: 0 0 0 1px;
  margin: 0;
  background-color: #85bba2;
  border: 1px solid #79a591;
  text-align: center;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  margin-right: 11px;
}

.login-form-content {
  max-width: 570px;
  margin: 0 auto;
}
.login-form-content .form-group {
  margin-bottom: 25px;
}
.login-form-content .form-group label {
  color: #333;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 10px;
}
.login-form-content .form-group label .required {
  color: #f00;
}
.login-form-content .form-group .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  height: 60px;
  padding: 0 20px;
  font-size: 14px;
}
.login-form-content .form-group .form-control:active, .login-form-content .form-group .form-control:focus {
  border-color: #721b65;
}
.login-form-content .form-group .btn-login {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 64px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.login-form-content .form-group .btn-login:hover {
  color: #721b65;
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.login-form-content .account-info-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 479.98px) {
  .login-form-content .account-info-group {
    display: block;
  }
}
.login-form-content .rememberme-account {
  float: left;
}
@media only screen and (max-width: 479.98px) {
  .login-form-content .rememberme-account {
    float: none;
  }
}
.login-form-content .rememberme-account .form-check {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.login-form-content .rememberme-account .form-check .form-check-input {
  cursor: pointer;
  width: 15px;
  margin: 0;
  height: 15px;
  border-radius: 0;
  border: 2px solid #e6e6e6;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  position: relative;
  top: -2px;
}
.login-form-content .rememberme-account .form-check .form-check-input:checked ~ .form-check-label {
  border-color: #721b65;
  color: #721b65;
}
.login-form-content .rememberme-account .form-check .form-check-input:checked[type=checkbox] {
  background-color: #721b65;
}
.login-form-content .rememberme-account .form-check .form-check-label {
  color: #8c8c8c;
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  top: -1px;
  padding-left: 8px;
}
.login-form-content .rememberme-account .form-check .form-check-label:hover {
  color: #721b65;
}
.login-form-content .lost-password {
  color: #8c8c8c;
  font-size: 15px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.login-form-content .lost-password:hover {
  color: #721b65;
}

.register-form-content {
  max-width: 570px;
  margin: 0 auto 10px;
}
.register-form-content .form-group {
  margin-bottom: 25px;
}
.register-form-content .form-group label {
  cursor: pointer;
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.register-form-content .form-group label .required {
  color: #f00;
}
.register-form-content .form-group .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  height: 60px;
  padding: 0 20px;
  font-size: 14px;
}
.register-form-content .form-group .form-control:active, .register-form-content .form-group .form-control:focus {
  border-color: #721b65;
}
.register-form-content .form-group .btn-register {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 64px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.register-form-content .form-group .btn-register:hover {
  color: #721b65;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/*
-----------------------------------------------------------------------
  Page Header CSS
-----------------------------------------------------------------------
*/
.page-header-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 176px 0 60px;
}
@media only screen and (max-width: 1199px) {
     .page-header-area {
        background-position: top left;
        padding: 162px 0 18px;
    }
}

.page-header-content {
  text-align: left;
}
.page-header-content .title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 48px;
  letter-spacing: 0;
  margin: 0 0 22px 0;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .page-header-content .title {
    font-size: 36px;
    margin: 0 0 14px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 32px;
    margin: 0 0 12px 0;
  }
}

.breadcrumb-area {
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-area .breadcrumb li {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
@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: #721b65;
}
.breadcrumb-area .breadcrumb .breadcrumb-sep {
  margin: 0 7px 0 9px;
  vertical-align: 0;
}

/*
-----------------------------------------------------------------------
  Sidebar CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .blog-sidebar {
    margin-top: 40px;
  }
}
.blog-sidebar .blog-widget {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 44px 55px 40px 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar .blog-widget {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar .blog-widget {
    padding: 25px 25px 20px;
  }
}
.blog-sidebar .sidebar-title {
  color: #525252;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}
.blog-sidebar .sidebar-title:before {
  border: 2px solid #721b65;
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 11px;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
.blog-sidebar .sidebar-search-form {
  margin-bottom: 50px;
  position: relative;
}
.blog-sidebar .sidebar-search-form [type=search] {
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #747474;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  height: 60px;
  padding: 10px 48px 10px 18px;
  width: 100%;
}
.blog-sidebar .sidebar-search-form [type=search]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #747474;
}
.blog-sidebar .sidebar-search-form [type=search]::-moz-placeholder {
  /* Firefox 19+ */
  color: #747474;
}
.blog-sidebar .sidebar-search-form [type=search]:-ms-input-placeholder {
  /* IE 10+ */
  color: #747474;
}
.blog-sidebar .sidebar-search-form [type=search]:-moz-placeholder {
  /* Firefox 18- */
  color: #747474;
}
.blog-sidebar .sidebar-search-form [type=submit] {
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  font-size: 18px;
  padding: 0;
  height: 20px;
  width: 33px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  line-height: 20px;
  color: #383838;
  text-align: end;
  border-left: 1px solid #cfcfcf;
}
.blog-sidebar .sidebar-search-form [type=submit]:hover {
  color: #721b65;
}
.blog-sidebar .category-list {
  margin-bottom: 0;
}
.blog-sidebar .category-list li {
  display: block;
}
.blog-sidebar .category-list li a {
  color: #252525;
  border-top: 1px solid #d0d0d0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px;
}
.blog-sidebar .category-list li:first-child a {
  border-top: none;
  padding-top: 0;
}
.blog-sidebar .category-list li:last-child a {
  padding-bottom: 0;
}
.blog-sidebar .blog-sidebar-post {
  padding: 44px 55px 34px 50px;
}
@media only screen and (max-width: 479.98px) {
  .blog-sidebar .blog-sidebar-post {
    padding: 28px 25px 14px;
  }
}
.blog-sidebar .blog-sidebar-post .sidebar-title {
  margin-bottom: 37px;
}
.blog-sidebar .single-post {
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 30px;
  min-height: 70px;
  position: relative;
  padding-left: 87px;
  padding-bottom: 14px;
}
.blog-sidebar .single-post .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
}
.blog-sidebar .single-post .post-content .date {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.blog-sidebar .single-post .post-content .title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
  margin-right: -4px;
}
.blog-sidebar .single-post .post-content .title a {
  color: #000;
}
.blog-sidebar .single-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blog-sidebar .blog-sidebar-tags .sidebar-title {
  margin-bottom: 27px;
}
.blog-sidebar .tags-list li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 10px;
}
.blog-sidebar .tags-list li a {
  background-color: #f9f9f9;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #7e7e7e;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 2px 20px;
  text-transform: capitalize;
}
.blog-sidebar .tags-list li a:hover {
  background-color: #721b65;
  border-color: var(--main-color);
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .shop-sidebar {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.shop-sidebar .sidebar-search-form {
  position: relative;
}
.shop-sidebar .sidebar-search-form [type=search] {
  background-color: #721b65;
  border: 1px solid #cfcfcf;
  border-radius: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  height: 60px;
  padding: 10px 48px 10px 18px;
  width: 100%;
}
.shop-sidebar .sidebar-search-form [type=search]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.shop-sidebar .sidebar-search-form [type=search]::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.shop-sidebar .sidebar-search-form [type=search]:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.shop-sidebar .sidebar-search-form [type=search]:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.shop-sidebar .sidebar-search-form [type=submit] {
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  padding: 0;
  height: 20px;
  width: 33px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  line-height: 20px;
  color: #fff;
  text-align: end;
  border-left: 1px solid #fff;
}
.shop-sidebar .sidebar-search-form [type=submit]:hover {
  color: var(--main-color);
}
.shop-sidebar .sidebar-title {
  color: #525252;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 22px;
}
.shop-sidebar .sidebar-title:before {
  border: 2px solid #721b65;
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 11px;
  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 .shop-widget {
  background-color: #fafafa;
  border-radius: 10px;
}
.shop-sidebar .shop-sidebar-category {
  margin-top: 40px;
  padding: 34px 30px 41px;
}
.shop-sidebar .category-list li {
  line-height: 1.8125;
  display: block;
}
.shop-sidebar .category-list li a {
  color: #737070;
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8125;
  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 .category-list li a:hover {
  color: #721b65;
  text-decoration: underline;
}
.shop-sidebar .shop-sidebar-color {
  margin-top: 40px;
  padding: 34px 30px 41px;
}
.shop-sidebar .shop-sidebar-color .sidebar-title {
  margin-bottom: 28px;
}
.shop-sidebar .color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop-sidebar .color-list div {
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  position: relative;
  height: 41px;
  width: 41px;
}
.shop-sidebar .color-list div:before {
  border: 1px solid #d5d5d5;
  content: "";
  position: absolute;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  border-radius: 50%;
  top: -3px;
  left: -3px;
}
.shop-sidebar .color-list div.active:before {
  border: 1px solid #721b65;
}
.shop-sidebar .color-list div + div {
  margin-left: 12px;
}
.shop-sidebar .shop-sidebar-size {
  margin-top: 40px;
  padding: 34px 30px 41px;
}
.shop-sidebar .shop-sidebar-size .sidebar-title {
  margin-bottom: 28px;
}
.shop-sidebar .size-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop-sidebar .size-list div {
  background-color: #ededed;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  position: relative;
  height: 41px;
  width: 41px;
  text-align: center;
  line-height: 38px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #525252;
}
.shop-sidebar .size-list div:before {
  border: 1px solid #d5d5d5;
  content: "";
  position: absolute;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  border-radius: 50%;
  top: -3px;
  left: -3px;
}
.shop-sidebar .size-list div.active {
  background-color: #721b65;
  color: #fff;
}
.shop-sidebar .size-list div.active:before {
  border: 1px solid #721b65;
}
.shop-sidebar .size-list div + div {
  margin-left: 12px;
}
.shop-sidebar .shop-sidebar-tags {
  margin-top: 40px;
  padding: 34px 30px 30px;
}
.shop-sidebar .shop-sidebar-tags .sidebar-title {
  margin-bottom: 28px;
}
.shop-sidebar .tags-list li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 10px;
}
.shop-sidebar .tags-list li a {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #7e7e7e;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 2px 17px;
  text-transform: capitalize;
}
.shop-sidebar .tags-list li a:hover {
  background-color: #721b65;
  border-color: var(--main-color);
  color: #fff;
}
.shop-sidebar .shop-sidebar-price-range {
  margin-top: 40px;
  padding: 34px 30px 35px;
}
.shop-sidebar .shop-sidebar-price-range .sidebar-title {
  margin-bottom: 28px;
}
.shop-sidebar .irs--round .irs-line {
  background-color: #ebebeb;
  border-radius: 1px;
  height: 4px;
}
.shop-sidebar .irs--round .irs-bar {
  background-color: #721b65;
  border-radius: 1px;
  height: 4px;
}
.shop-sidebar .irs--round .irs-handle {
  top: 30px;
  width: 15px;
  height: 15px;
  border: 3px solid #721b65;
  background-color: #fff;
  border-radius: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.shop-sidebar .irs--round .irs-from,
.shop-sidebar .irs--round .irs-to,
.shop-sidebar .irs--round .irs-single {
  background-color: transparent;
  color: #656565;
  font-size: 16px;
  font-weight: 400;
  top: 2px;
}
.shop-sidebar .irs--round .irs-from:before,
.shop-sidebar .irs--round .irs-to:before,
.shop-sidebar .irs--round .irs-single:before {
  display: none;
}

/*
-----------------------------------------------------------------------
  Pagination CSS
-----------------------------------------------------------------------
*/
.pagination-items {
  margin-top: 32px;
  margin-bottom: 30px;
}
.pagination-items .pagination li {
  display: inline-block;
}
.pagination-items .pagination li + li {
  margin-left: 10px;
}
.pagination-items .pagination li a {
  background-color: transparent;
  border: 1px solid #721b65;
  border-radius: 5px;
  color: #d5d5d5;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  height: 40px;
  line-height: 39px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  text-align: center;
  width: 40px;
}
.pagination-items .pagination li a.active {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
}
.pagination-items .pagination li a:hover {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
}
.pagination-items .pagination li a.icon {
  color: #9e9e9e;
  font-size: 23px;
  line-height: 37px;
}
.pagination-items .pagination li a.icon:hover {
  color: #fff;
}
.pagination-items.pagination-items-style1 {
  margin-top: 47px;
}

/*
-----------------------------------------------------------------------
  Page Not Found CSS
-----------------------------------------------------------------------
*/
.page-not-found-area {
  border-bottom: 4px solid #721b65;
}
@media only screen and (max-width: 991px) {
  .page-not-found-area {
    border-top: 4px solid #721b65;
  }
}

.page-not-found-wrap {
  padding-bottom: 130px;
  padding-top: 110px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap {
    padding-bottom: 100px;
    padding-top: 82px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap {
    padding-top: 90px;
  }
}
.page-not-found-wrap .page-not-found-content {
  text-align: center;
}
.page-not-found-wrap .page-not-found-content .not-found-text {
  color: #721b65;
  font-size: 170px;
  letter-spacing: -3px;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .not-found-text {
    font-size: 90px;
  }
}
.page-not-found-wrap .page-not-found-content .title {
  text-transform: capitalize;
  font-weight: 800;
  font-size: 38px;
  margin-top: 12px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 34px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 31px;
    margin-top: 4px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .desc {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .desc {
    margin-bottom: 19px;
    font-size: 15px;
  }
}
.page-not-found-wrap .page-not-found-content .btn-theme-border {
  border: 2px solid #721b65;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  padding: 16px 44px 15px;
  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) {
  .page-not-found-wrap .page-not-found-content .btn-theme-border {
    padding: 14px 28px 14px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .page-not-found-wrap .page-not-found-content .btn-theme-border {
    padding: 12px 26px 13px;
    font-size: 15px;
  }
}
.page-not-found-wrap .page-not-found-content .btn-theme-border:hover {
  color: #721b65;
  border-color: var(--main-color);
  background-color: var(--main-color);
}

/*
-----------------------------------------------------------------------
  Preloader 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;
  top: 50%;
  left: 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%);
}
.preloader-wrap .dog-head {
  background-image: url("../img/preloader/dog-head-md.webp.png");
  height: 118px;
  left: 8px;
  position: absolute;
  width: 130px;
  animation: head-move 1s ease-in-out infinite;
  -webkit-animation: head-move 1s ease-in-out infinite;
  -moz-animation: head-move 1s ease-in-out infinite;
  -ms-animation: head-move 1s ease-in-out infinite;
  -o-animation: head-move 1s ease-in-out infinite;
  transform: translate(5px, 5px) rotate(1.5deg);
  -webkit-transform: translate(5px, 5px) rotate(1.5deg);
  -moz-transform: translate(5px, 5px) rotate(1.5deg);
  -ms-transform: translate(5px, 5px) rotate(1.5deg);
  -o-transform: translate(5px, 5px) rotate(1.5deg);
  top: -35px;
  z-index: 2;
}
.preloader-wrap .dog-body {
  background-repeat: no-repeat;
  background-image: url("../img/preloader/dog-body-md.webp");
  height: 150px;
  width: 160px;
}

@-webkit-keyframes head-move {
  50% {
    -webkit-transform: rotate(-1.5deg);
  }
}
/*
-----------------------------------------------------------------------
  Blog CSS
-----------------------------------------------------------------------
*/
.post-item {
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: 9px;
  height:100%;
}
.post-item .thumb {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.post-item .thumb img {
  border-radius: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  width: 100%;
}
.post-item .content {
  padding: 37px 0 34px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .post-item .content {
    padding: 27px 0 22px;
  }
}
.post-item .content .title {
  color: #2c2c2c;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24;
  margin-bottom: 21px;
}
@media only screen and (max-width: 1199px) {
  .post-item .content .title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.post-item .content .title a {
  color: #2c2c2c;
}
.post-item .content .btn-theme {
  color: #fff;
}
.post-item .meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-item .meta ul li {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .post-item .meta ul li {
    font-size: 14px;
  }
}
.post-item .meta ul li span {
  color: #721b65;
  font-weight: 700;
}
.post-item .meta ul li a {
  color: #000;
}
.post-item .meta ul li.post-date a {
  color: #721b65;
  font-weight: 700;
}
.post-item .meta ul li + li {
  margin-left: 14px;
}
.post-item:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.post-item:hover .content .title a {
  color: #721b65;
}
.post-item:hover .content .btn-theme {
  color: #fff;
}
.post-item:hover .content .btn-theme:before {
  background-color: #721b65;
  border: 2px solid #721b65;
}
.post-item:hover .content .btn-theme:after {
  background-color: #a45798;
}

.blog-details-item {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 34px;
}
@media only screen and (max-width: 575px) {
  .blog-details-item {
    padding: 20px;
  }
}
.blog-details-item .blog-details-thumb {
  margin-bottom: 48px;
}
.blog-details-item .blog-details-thumb img {
  border-radius: 10px;
  width: 100%;
}
.blog-details-item .meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 29px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .meta ul {
    margin-bottom: 10px;
  }
}
.blog-details-item .meta ul li {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .meta ul li {
    font-size: 15px;
  }
}
.blog-details-item .meta ul li span {
  color: #721b65;
  font-weight: 700;
}
.blog-details-item .meta ul li a {
  color: #000;
}
.blog-details-item .meta ul li.post-date a {
  color: #721b65;
  font-weight: 700;
}
.blog-details-item .meta ul li + li {
  margin-left: 14px;
}
.blog-details-item .main-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.209;
  margin-bottom: 37px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .main-title {
    font-size: 38px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-item .main-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-item .main-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
.blog-details-item .sub-title {
  margin-bottom: 19px;
}
.blog-details-item p {
  color: #4e4e4e;
  line-height: 1.875;
  margin-right: -9px;
}
.blog-details-item blockquote {
  background-color: #721b65;
  border-radius: 15px;
  overflow: hidden;
  margin: 32px 0 50px;
  position: relative;
  padding: 40px 48px 13px;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item blockquote {
    margin: 32px 0 32px;
    padding: 25px 38px 8px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-item blockquote {
    padding: 24px 38px 2px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-details-item blockquote {
    padding: 24px 10px 2px;
  }
}
.blog-details-item blockquote p {
  color: var(--main-color);
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.48;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item blockquote p {
    font-size: 26px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-item blockquote p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-item blockquote p {
    font-size: 20px;
  }
}
.blog-details-item blockquote .inner-shape {
  position: absolute;
  bottom: -12px;
  right: -2px;
  z-index: -1;
}
.blog-details-item .tage-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-details-item .tage-list span {
  color: #525252;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-right: 15px;
}
.blog-details-item .tage-list a {
  background-color: #f9f9f9;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #7e7e7e;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 2px 19px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .tage-list a {
    padding: 2px 9px;
    font-size: 14px;
  }
}
.blog-details-item .tage-list a:hover {
  background-color: #721b65;
  border-color: var(--main-color);
  color: #fff;
}
.blog-details-item .tage-list a + a {
  margin-left: 10px;
}
.blog-details-item .social-icons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .blog-details-item .social-icons {
    margin-top: 20px;
  }
}
.blog-details-item .social-icons span {
  color: #525252;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-right: 14px;
}
.blog-details-item .social-icons a {
  font-size: 16px;
}
.blog-details-item .social-icons a + a {
  margin-left: 29px;
}
.blog-details-item .blog-details-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 18px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-item .blog-details-footer {
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-item .blog-details-footer {
    padding: 32px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-item .blog-details-footer {
    display: block;
  }
}

.comment-view-area {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  margin-top: 100px;
  padding: 57px 29px 32px 34px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area {
    margin-top: 50px;
    padding: 28px 25px 14px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .comment-view-area {
    padding: 28px 25px 30px 25px;
  }
}
.comment-view-area .title-main {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area .title-main {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.single-comment {
  margin-bottom: 48px;
  position: relative;
  padding-left: 151px;
}
@media only screen and (max-width: 767px) {
  .single-comment {
    padding-left: 0;
  }
}
.single-comment .author-pic {
  left: 0;
  margin-bottom: 20px;
  position: absolute;
  top: 5px;
}
@media only screen and (max-width: 767px) {
  .single-comment .author-pic {
    position: relative;
    top: 0;
  }
}
.single-comment .author-pic img {
  border-radius: 20px;
}
.single-comment .author-info {
  position: relative;
}
.single-comment .author-info .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .single-comment .author-info .title {
    font-size: 20px;
  }
}
.single-comment .author-info .title a {
  color: #333;
}
.single-comment .author-info .comment-date {
  color: #666;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .single-comment .author-info .comment-date {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.single-comment .author-info .comment-date a {
  color: #666;
}
.single-comment .author-info p {
  font-size: 16px;
  color: #777;
  line-height: 1.875;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .single-comment .author-info p {
    font-size: 15px;
  }
}
.single-comment .author-info .comment-reply {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  height: 35px;
  position: relative;
  width: 100px;
  text-align: center;
  line-height: 37px;
  border-radius: 10px;
  position: absolute;
  top: 14px;
  right: 7px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .single-comment .author-info .comment-reply {
    position: relative;
    top: 0;
    right: 0;
  }
}
.single-comment .author-info .comment-reply i {
  font-size: 11px;
  margin-left: 6px;
}
.single-comment .author-info .comment-reply:before {
  background-color: var(--main-color);
  border-radius: 10px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.single-comment .author-info .comment-reply:after {
  background-color: #b79e55;
  border-radius: 10px;
  content: "";
  height: 100%;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 100%;
  z-index: -2;
  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;
}
.single-comment .author-info .comment-reply:hover {
  color: #fff;
}
.single-comment .author-info .comment-reply:hover:before {
  background-color: #721b65;
}
.single-comment .author-info .comment-reply:hover:after {
  background-color: #a45798;
}
.single-comment.reply-comment {
  margin-left: 99px;
}
@media only screen and (max-width: 767px) {
  .single-comment.reply-comment {
    margin-left: 20px;
  }
}

.comment-form-area {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  margin-top: 100px;
  margin-bottom: 30px;
  padding: 56px 34px 62px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-area {
    padding: 36px 34px 42px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form-area {
    padding: 32px 20px 35px;
  }
}
.comment-form-area .title-main {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-area .title-main {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.comment-form .form-group {
  margin-bottom: 30px;
}
.comment-form .form-control {
  border: 1px solid #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 15px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.2px;
  height: 49px;
  line-height: 49px;
  padding: 5px 19px;
}
.comment-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
.comment-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
.comment-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
.comment-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
.comment-form textarea.form-control {
  height: 250px;
  line-height: 1.3;
  padding-top: 16px;
}
@media only screen and (max-width: 1199px) {
  .comment-form textarea.form-control {
    height: 190px;
  }
}
@media only screen and (max-width: 991px) {
  .comment-form textarea.form-control {
    height: 140px;
  }
}
.comment-form [type=submit] {
  margin-top: 60px;
  border: none;
  width: 204px;
}
@media only screen and (max-width: 991px) {
  .comment-form [type=submit] {
    margin-top: 35px;
    width: 174px;
  }
}

/*
-----------------------------------------------------------------------
  Contact CSS
-----------------------------------------------------------------------
*/
.contact-inner-area .container {
  padding-top: 107px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .contact-inner-area .container {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}

.contact-page-title {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.292;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.contact-page-title.page-title-style2 {
  margin-bottom: 54px;
}
@media only screen and (max-width: 1199px) {
  .contact-page-title.page-title-style2 {
    margin-bottom: 24px;
  }
}

.contact-info {
  margin-right: 30px;
}

.contact-info .info-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding: 13px 29px;
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .contact-info .info-item {
    padding: 23px 29px;
  }
}
.contact-info .info-item .icon {
  background-color: var(--main-color);
  height: 73px;
  width: 73px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 32px;
  min-width: 73px;
  max-width: 73px;
  min-height: 73px;
  max-height: 73px;
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item .icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item .icon img {
    width: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item .info {
    margin-top: 20px;
  }
}
.contact-info .info-item .info .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item .info .title {
    font-size: 20px;
  }
}
.contact-info .info-item .info p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .contact-info .info-item .info p {
    font-size: 14px;
  }
}
.contact-info .info-item .info a {
  color: #000;
}

.account-area .container {
  padding-top: 95px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .account-area .container {
    padding-top: 70px;
    padding-bottom: 75px;
  }
}
.account-area .section-title {
  border-bottom: 1px solid #e8e8e8;
  max-width: 570px;
  margin: 0 auto 40px;
  padding-bottom: 14px;
}
.account-area .section-title .title {
  font-size: 44px;
  margin-bottom: 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .account-area .section-title .title {
    font-size: 30px;
  }
}

.my-account-area {
  padding: 110px 0 110px;
}
@media only screen and (max-width: 1199px) {
  .my-account-area {
    padding: 90px 0 90px;
  }
}

.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .myaccount-tab-menu {
    margin-bottom: 40px;
  }
}
.myaccount-tab-menu.nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  border-radius: 0;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: block;
  padding: 10px 15px;
  text-align: left;
  text-transform: capitalize;
}
.myaccount-tab-menu.nav-tabs .nav-link:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #721b65;
}
.myaccount-tab-menu.nav-tabs .nav-link:hover, .myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #721b65;
  border-color: #721b65;
  color: #fff;
}

.myaccount-content {
  border: 1px solid #eeeeee;
  padding: 30px 30px 15px;
}
@media only screen and (max-width: 1199px) {
  .myaccount-content {
    padding: 25px 25px 10px;
  }
}
.myaccount-content form {
  margin-top: -20px;
}
.myaccount-content h3 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .myaccount-content h3 {
    font-size: 18px;
  }
}
.myaccount-content .welcome a {
  font-family: "Nunito Sans", sans-serif;
}
.myaccount-content .welcome a:hover {
  color: #721b65;
}
.myaccount-content .welcome strong {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: #721b65;
}
.myaccount-content p {
  font-family: "Nunito Sans", sans-serif;
  line-height: 28px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .myaccount-content p {
    font-size: 15px;
  }
}
.myaccount-content fieldset {
  margin-top: 20px;
}
.myaccount-content fieldset legend {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
@media only screen and (max-width: 991px) {
  .myaccount-content fieldset legend {
    font-size: 15px;
  }
}
.myaccount-content .account-details-form {
  margin-top: 50px;
}
.myaccount-content .account-details-form .single-input-item {
  margin-bottom: 20px;
}
.myaccount-content .account-details-form .single-input-item label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  margin: 0 0 5px;
}
.myaccount-content .account-details-form .single-input-item input {
  border: 1px solid #e8e8e8;
  width: 100%;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #1f2226;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item input:focus {
  border: 1px solid #343538;
}
.myaccount-content .account-details-form .single-input-item button {
  border: none;
  background-color: #721b65;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  padding: 20px 40px;
  line-height: 1;
  color: #fff;
  font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item button:hover {
  background-color: #1f2226;
}

.myaccount-table {
  white-space: nowrap;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
}
.myaccount-table table th,
.myaccount-table .table th {
  padding: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  background-color: #f8f8f8;
  border-color: #ccc;
  border-bottom: 0;
  color: #1f2226;
}
.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ccc;
}
.myaccount-table table td a,
.myaccount-table .table td a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #000;
}

/*
-----------------------------------------------------------------------
  Footer CSS
-----------------------------------------------------------------------
*/
.footer-area .widget-item {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-item {
    margin-bottom: 30px;
  }
}
.footer-area .nav-menu-item1 {
  padding-left: 68px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu-item1 {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .nav-menu-item1 {
    padding-left: 0;
  }
}
.footer-area .nav-menu-item2 {
  padding-left: 68px;
}
@media only screen and (max-width: 991px) {
  .footer-area .nav-menu-item2 {
    padding-left: 0;
  }
}
.footer-area .desc {
  color: #e8e8e8;
  font-size: 16px;
  line-height: 1.75;
  margin-right: -4px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .desc {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .desc {
    margin-right: 0;
  }
}
.footer-area .widget-title {
  font-size: 30px;
  color: #e8e8e8;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-title {
    display: none;
  }
}
.footer-area .nav-menu {
  margin-bottom: 0;
}
.footer-area .nav-menu li {
  color: #e8e8e8;
  display: block;
  line-height: 34px;
}
.footer-area .nav-menu li a {
  color: #e8e8e8;
  font-size: 16px;
  line-height: 34px;
  padding: 0 0;
  display: block;
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu li a {
    font-size: 14px;
  }
}
.footer-area .nav-menu li a:hover {
  color: #fff;
}

.footer-main {
  background: #474654;
  position: relative;
  padding: 104px 0 30px;
}
@media only screen and (max-width: 1199px) {
  .footer-main {
    padding: 75px 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main {
    padding: 75px 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-about {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-about .widget-title {
    display: block;
    margin-bottom: 0;
  }
}
.footer-main .widget-about .desc {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-about .desc {
    margin-top: 15px;
  }
}
.footer-main .widget-logo {
  margin-bottom: 28px;
}
.footer-main .widget-contact-info .contact-info-desc {
  color: #e8e8e8;
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 34px;
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-contact-info .contact-info-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-contact-info .contact-info-desc {
    margin-top: 8px;
    margin-bottom: 22px;
  }
}
.footer-main .widget-contact-info .contact-info-desc a {
  color: var(--main-color);
}
.footer-main .widget-contact-info .contact-info-desc a:hover {
  text-decoration: underline;
}
.footer-main .widget-contact-info .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-contact-info .contact-item {
    margin-bottom: 22px;
  }
}
.footer-main .widget-contact-info .contact-item .icon {
  background-color: var(--main-color);
  border-radius: 10px;
  color: #fff;
  font-size: 30px;
  height: 50px;
  width: 50px;
  display: inline-block;
  text-align: center;
  line-height: 58px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-contact-info .contact-item .icon {
    font-size: 24px;
    height: 40px;
    width: 40px;
    line-height: 45px;
  }
}
.footer-main .widget-contact-info .contact-item .info {
  margin-left: 21px;
  margin-top: -2px;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-contact-info .contact-item .info {
    margin-left: 10px;
  }
}
.footer-main .widget-contact-info .contact-item .info p {
  color: #e8e8e8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
}
@media only screen and (max-width: 1199px) {
  .footer-main .widget-contact-info .contact-item .info p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-contact-info .contact-item.phone-info {
    margin-bottom: 10px;
  }
}
.footer-main .widget-contact-info .contact-item.phone-info .info span {
  color: var(--main-color);
  font-weight: 700;
}
.footer-main .widget-contact-info .contact-item.phone-info .info a {
  color: #e8e8e8;
}
.footer-main .widget-contact-info .contact-item.phone-info .info a:hover {
  text-decoration: underline;
}
.footer-main .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-main .social-icons {
    margin-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-main .social-icons a {
  border-radius: 7px;
  border: 0;
  color: var(--main-color);
  display: grid;
  place-items:center;
  height: 36px;
  line-height: 38px;
  font-size: 16px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 36px;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .footer-main .social-icons a {
    height: 32px;
    line-height: 33px;
    font-size: 14px;
    width: 32px;
  }
}
.footer-main .social-icons a + a {
  margin-left: 10px;
}
.footer-main .social-icons a:before {
  border-radius: 7px;
  background-color: #fff;
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.footer-main .social-icons a:after {
  border-radius: 7px;
  background-color: #b79e55;
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -2;
  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;
}
/*.footer-main .social-icons a:hover:before {*/
/*  background-color: var(--main-color);*/
/*}*/
.footer-main .social-icons a:hover:after {
  left: 2px;
  top: 2px;
}
.footer-main .widget-collapsed-title {
  display: block;
  position: relative;
  background-color: #474654;
  border: 1px solid #75757b;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
@media only screen and (min-width: 768px) {
  .footer-main .widget-collapsed-title {
    display: none;
  }
}
.footer-main .widget-collapsed-title:before {
  font-family: "FontAwesome";
  font-size: 14px;
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 60px;
  text-align: center;
}
.footer-main .widget-collapsed-title:not(.collapsed):before {
  content: "";
  font-family: "FontAwesome";
}
.footer-main .widget-collapse-body {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
  .footer-main .widget-collapse-body {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-collapse-body {
    background-color: #474654;
    border: 1px solid #75757b;
    border-top: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-collapse-body .collapse-body {
    padding: 19px 24px 17px;
  }
}

.footer-bottom {
  background: #474654;
  padding: 0 0;
  position: relative;
  color: #999;
}
.footer-bottom .footer-bottom-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #75757b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 21px 0;
}
@media only screen and (max-width: 767px) {
  .footer-bottom .footer-bottom-content {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer-bottom .copyright {
  color: #a1a1a1;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 28px;
  position: relative;
  top: 1px;
}
.footer-bottom .copyright a {
  color: #a1a1a1;
}
.footer-bottom .copyright a:hover {
  color: #fff;
}
.footer-bottom .copyright i {
  color: #ff0101;
  font-size: 15px;
  vertical-align: 0px;
  margin: 0 4px;
}

.product-info p{
    margin-bottom:0;
}

.footer-desc p{
    color:#fff;
}

.desc p{
    color:#fff;
}


.product-single-info ul li {
    list-style: disc;
}

.product-single-info ul {
    padding-left:15px;
}

.footer-main .social-icons a:hover{
    color:var(--main-color);
}

.list-btn {
    background-color: var(--main-color);
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 10px;
    margin-top: 4px;
}


.list-btn:hover {
    color: #fff;

}

.why-content p{
    margin-bottom:0;
}

.info {
    width: 80%;
}
.u-header[data-header-fix-effect] {
    transition: 0.3s ease;
    background: transparent;
}
.u-header {
    position: relative;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.u-header__shadow-on-show-hide {
    box-shadow: none;
}
.u-header__section {
    position: relative;
    z-index: 4;
    /* background-color: #fff; */
    /* box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1); */
}
.u-header__topbar {
    background: transparent;
    border: unset ! IMPORTANT;
    padding-top: 11px;
    z-index: 999;
    position: relative;
}

.icon-head {
    /* background: #fff; */
    border-radius: 50%;
    height: 35px;
    width: 35px;
    color: white;
    line-height: 40px;
    display: grid
;
    place-items: center;
    margin-right: 8px;
}
.u-header__topbar .list-inline-item:first-child .u-header__navbar-link {
    padding-left: 0;
}
.list-inline-dark .u-header__navbar-link {
    color: #fff;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}
.u-header__navbar-link {
    color: #77838f;
    font-size: 0.875rem;
    font-weight: 300;
    /* padding-left: 1.281rem; */
    padding-right: 1.281rem;
    display: inline-block;
    padding-top: 0.594rem;
    padding-bottom: 0.594rem;
}

.list-inline-item {
    display: inline-block;
}
[class*="btn-soft-"].btn-bg-transparent {
    background-color: transparent;
    color: #fff;
}
.padding {
    padding: 90px 0;
}
.about-thumb img {
    object-fit: cover;
}

div#header {
    position: relative;
}


.flex-slider {width:100%;position:relative;height: 100vh;}
.flex-slider .slides {list-style:none;overflow:hidden;margin:0;padding:0;height: 100vh}
.flex-slider .slides > li {float:left;margin-right:-100%;width:100%;overflow:hidden;height:50vw;height: 100vh !IMPORTANT;}
.flex-slider .flex-direction-nav {list-style:none;margin:0;padding:0}
.flex-slider .flex-direction-nav .flex-prev, .flex-slider .flex-direction-nav .flex-next {background-color:rgba(255,255,255,0.7);padding:10px;text-decoration:none;position:absolute;height:1em;top:45%;bottom:0;margin:0 auto;z-index:8;text-align:center;color:#333;max-width:20px}
.flex-slider .flex-direction-nav .flex-prev{left:0;display: none;}
.flex-slider .flex-direction-nav .flex-next{right:0;display: none;}
.slide-image{background-size:cover;background-position:center;position:absolute;width:100%;height: 100vh;left:0;top:0;}
.flex-active-slide .slide-image{animation: zoomout 5s;}
@keyframes zoomout{
  0%{
    transform: scale(1.3);
  }
  100%{
    transform: scale(1);
  }
}
@media (max-width:768px) {
  .flex-slider .slides > li {height: 400px;}
}

.flex-slider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, #0000007d 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 30%;
    z-index: 9;
}

.banner-content {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 50%; */
    text-align: center;
}

.banner-content p {
    color: #fff;
    font-size: 23px;
    text-shadow: 0 4px 5px #000;
}

.banner-content h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 6px 6px #000;
}


.why-choose-us{
	padding: 100px 0 0;
	background:#FEF4DB;
}

.why-choose-box{
	margin-bottom: 100px;
}

.why-choose-item{
	display: flex;
    flex-wrap: wrap;
	margin-bottom: 60px;
}

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

.why-choose-item .icon-box{
	position: relative;
	background-color:#FED525;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
	z-index: 1;
}

.why-choose-item .icon-box::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
	bottom: 0;
    border-radius: 50%;
    background-color: var(--main-color);
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
	height: 100%;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-content{
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.why-choose-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-content p{
	margin: 0;
}

.why-choose-image img{
	width: 100%;
	margin-bottom: -130px;
}




/*about section start */
 .hero-section {
            text-align: center;
            position: relative;
            z-index: 9999;
        }

        /* Background animated elements */
        .bg-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .bg-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .bg-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .bg-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 30%;
            left: 30%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Title styles */
        .main-title {
            font-size: 4rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 30px;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.3s forwards;
        }

        .main-title::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #384561, #80a9ff);
            animation: expandLine 1.5s ease-out 1.2s forwards;
        }

        /* Subtitle styles */
        .subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease-out 0.8s forwards;
        }

        /* Animated text effect */
        .animated-text {
            display: inline-block;
            opacity: 0;
            animation: fadeInChar 0.8s ease-out forwards;
        }

        /* Button styles */
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #9b9b9b, #1b2c50);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease-out 1.3s forwards;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                width: 100px;
            }
        }

        @keyframes fadeInChar {
            to {
                opacity: 1;
            }
        }

        /* Glitch effect for title */
        .glitch {
            position: relative;
            color: #fff;
            font-size: 4rem;
            font-weight: 900;
            animation: glitch 2s infinite;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitchTop 1s infinite;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
        }

        .glitch::after {
            animation: glitchBottom 1.5s infinite;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
        }

        @keyframes glitch {
            2%, 64% {
                transform: translate(2px, 0) skew(0deg);
            }
            4%, 60% {
                transform: translate(-2px, 0) skew(0deg);
            }
            62% {
                transform: translate(0, 0) skew(5deg);
            }
        }

        @keyframes glitchTop {
            2%, 64% {
                transform: translate(2px, -2px);
            }
            4%, 60% {
                transform: translate(-2px, 2px);
            }
            62% {
                transform: translate(13px, -1px) skew(-13deg);
            }
        }

        @keyframes glitchBottom {
            2%, 64% {
                transform: translate(-2px, 0);
            }
            4%, 60% {
                transform: translate(-2px, 0);
            }
            62% {
                transform: translate(-22px, 5px) skew(21deg);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .hero-section {
                padding: 40px 15px;
                padding-top: 0;
                padding-bottom: 15px;
            }
        }

        /* Particles effect */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
            animation: particles 15s linear infinite;
        }

        @keyframes particles {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        section.about-area .main-title {
    color: black;
}

section.about-area .subtitle {
    color: black;
}
/*about section end*/
section.product-area.product-default-area {
    background-size: cover;
    background-position: center;
    position: relative;
}

section.product-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #354567cf;
}

/*product start */

 .why-choose-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.3s forwards;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
        }



        .section-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.5s; }
        .feature-card:nth-child(2) { animation-delay: 0.7s; }
        .feature-card:nth-child(3) { animation-delay: 0.9s; }
        .feature-card:nth-child(4) { animation-delay: 1.1s; }
        .feature-card:nth-child(5) { animation-delay: 1.3s; }
        .feature-card:nth-child(6) { animation-delay: 1.5s; }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #1b2c50, #1b2c50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
            animation: pulse 2s infinite;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #0d1f42, #0a466c);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            animation: iconGlow 3s ease-in-out infinite;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-description {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Stats section */
        .stats-section {
            background: linear-gradient(135deg, #9c9999, #ffffff);
            border-radius: 20px;
            padding: 35px 30px;
            margin-top: 60px;
            position: relative;
            margin-bottom: 92px;
            overflow: hidden;
            margin-top: -191px;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgb(246 244 244) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease-out forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 1.8s; }
        .stat-item:nth-child(2) { animation-delay: 2s; }
        .stat-item:nth-child(3) { animation-delay: 2.2s; }
        .stat-item:nth-child(4) { animation-delay: 2.4s; }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
            color: black;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            color: black;
        }

        /* Background elements */
        .bg-milk-drop {
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .bg-milk-drop:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bg-milk-drop:nth-child(2) {
            top: 70%;
            right: 10%;
            animation-delay: 2s;
        }

        .bg-milk-drop:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        /* Animations */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                width: 80px;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes iconGlow {
            0%, 100% {
                opacity: 0;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(1.2);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .why-choose-section {
                padding: 60px 0;
            }
        }
        
        .bg-theme-color {
    background-image: url(https://t4.ftcdn.net/jpg/01/26/77/87/360_F_126778758_768Q83ukglMJYwWw0YqSzZ2J9jWdbFJY.jpg);
    background-size: cover;
    background-position: bottom;
}
.testi-thumb img {
    border-radius: 50px;
    width: 63px;
    height: 63px;
    object-fit: cover;
}


 .blog-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Background elements */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 8s ease-in-out infinite;
        }

        .bg-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 3s;
        }

        .bg-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 6s;
        }

        /* Section header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.3s forwards;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: unset;
            background-clip: text;
        }


        .section-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Blog grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out forwards;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .blog-card:nth-child(1) { animation-delay: 0.5s; }
        .blog-card:nth-child(2) { animation-delay: 0.7s; }
        .blog-card:nth-child(3) { animation-delay: 0.9s; }
        .blog-card:nth-child(4) { animation-delay: 1.1s; }
        .blog-card:nth-child(5) { animation-delay: 1.3s; }
        .blog-card:nth-child(6) { animation-delay: 1.5s; }

        .blog-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            cursor: pointer;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .blog-card:hover .blog-image::before {
            left: 100%;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-category {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .blog-title:hover {
            color: #667eea;
        }

        .blog-excerpt {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .read-more::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(5px);
        }

        .blog-stats {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
            color: #95a5a6;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Featured post */
        .featured-post {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 400px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .featured-image {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            width: fit-content;
        }

        .featured-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .featured-excerpt {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Load more button */
        .load-more-container {
            text-align: center;
            margin-top: 50px;
        }

        .load-more-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .load-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .load-more-btn:hover::before {
            left: 100%;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                width: 80px;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .featured-post {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                min-height: 250px;
            }
            
            .featured-content {
                padding: 30px 20px;
            }
            
            .featured-title {
                font-size: 1.8rem;
            }
            
            .blog-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .blog-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-content {
                padding: 20px;
            }
        }
        
        .titleBlack {
    color: black !important;
    z-index: 99;
    position: relative;
}
.titleBlack {
    color: black;
}
/*why choose end */

/*footer start */

.footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.04)"/></svg>');
            opacity: 0.3;
        }

        .footer-content {
            position: relative;
            z-index: 2;
            padding: 60px 0 30px;
        }


        .footer-logo i {
            margin-right: 15px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #ecf0f1;
            margin-bottom: 25px;
        }

        .footer-section h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #e74c3c, #f39c12);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 10px;
            text-decoration: none;
        }

        .footer-links a i {
            margin-right: 8px;
            width: 16px;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .contact-item i {
            margin-right: 12px;
            width: 20px;
            color: #f39c12;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: #fff;
            color: #2c3e50;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            margin: 0;
            color: #bdc3c7;
        }

        .footer-bottom a {
            color: #f39c12;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: #fff;
            text-decoration: none;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            background: rgba(255, 255, 255, 0.9);
            color: #2c3e50;
            font-size: 1rem;
        }

        .newsletter-form input::placeholder {
            color: #7f8c8d;
        }

        .newsletter-form button {
            padding: 12px 20px;
            border: none;
            border-radius: 0 25px 25px 0;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: linear-gradient(45deg, #c0392b, #e67e22);
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .footer-logo {
                font-size: 2rem;
                text-align: center;
            }
            
            .footer-section {
                text-align: center;
                margin-bottom: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 25px;
            }
        }
        
           footer {
          
            background-color: #f8f9fa;
            padding-top: 50px;
        }

        .footer {
            background: linear-gradient(135deg, #223242 0%, #172543 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        
img.img-fluid.footerLogo {
    width: 200px;
    margin-bottom: 25px;
}

.blog-image img {
    object-fit: cover;
    height: 100%;
}
/*footer end */


        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .teams-section {
            /* padding: 80px 0; */
        }

      

        .section-title h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--brand-color);
            margin-bottom: 15px;
            position: relative;
        }



        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            /* margin-bottom: 30px; */
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(27, 44, 80, 0.15);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-light) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-card:hover .team-overlay {
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .team-info {
            padding: 30px;
            text-align: center;
        }

        .team-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--brand-color);
            margin-bottom: 5px;
        }

        .team-position {
            color: #666;
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .team-description {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .stats-section {
            /* background: var(--brand-color); */
            color: white;
            /* padding: 60px 0; */
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 25px;
            }
            
            .team-image {
                height: 250px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
/*teams end */


.subMenu {
  display: none;
  background: #f9f9f9;
  border: 1px solid #ddd;
  position: absolute;
  width: 241px;
  border-radius: 8px;
}

.itemListWrap {
  position: relative;
  list-style: none;
}

.subItem {
  display: block;
  padding: 7px 10px;
  border-bottom: 1px solid #80808033;
}

.footer-links a i {
    display: none;
}
.form-control {
    padding: 14px;
}


.about-us{
	padding: 60px 0;
	background:#FFFAE9;
}

.about-us-images{
    position: relative;
    padding: 0 195px 150px 20px;
    margin-right: 50px;
}

.about-image-1 figure,
.about-image-2 figure,
.about-image-3 figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.about-image-1 figure img,
.about-image-2 figure img,
.about-image-3 figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}


.about-image-1 figure img{
	aspect-ratio: 1 / 1.265;
}

.about-image-2{
	position: absolute;
	top: 10px;
    right: 5px;
	width: 100%;
	max-width: 340px;
	transform: rotate(5deg);
}

.about-image-2 figure img{
	aspect-ratio: 1 / 0.521;
}

.about-image-3{
	position: absolute;
	bottom: 15px;
    right: 20px;
	width: 100%;
	max-width: 255px;
	transform: rotate(9deg);
}

.about-image-3 figure img{
	aspect-ratio: 1 / 1.199;
}

.about-image-circle{
    position: absolute;
    top: -90px;
    left: 50px;
}

.about-image-circle a,
.about-image-circle a img{
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.about-image-circle a img{
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}

.about-image-circle a:hover img{
	animation-play-state: paused;
}

.about-us-list,
.about-us-body{
	margin-bottom: 40px;
}

.about-us-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li{
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-list ul li::before {
    content: '\f058'; /* Unicode for fa-check-circle in FA4 */
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #E5C96C;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-body-image{
	width: calc(52% - 15px);
}

.about-body-content{
	width: calc(48% - 15px);
}

.about-body-image figure{
	display: block;
	border-radius: 20px;
}

.about-body-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.33;
	border-radius: 20px;
}

.about-body-content h3{
	font-size: 22px;
	line-height: 1.4em;
}

.about-body-content h3 span{
	color: var(--accent-color);
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}

.contact-now-box{
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.contact-now-box .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

.contact-now-box:hover .icon-box::before{
	transform: scale(1);
}

.contact-now-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.contact-now-box-content p{
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	font-size: 20px;
}

.contact-now-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover{
	color: var(--accent-color);
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

@media only screen and (max-width: 767px) {
  .footer-bottom .payment {
    margin-bottom: 16px;
    margin-top: 4px;
  }
  .header-action-area div{
      display:none;
  }
}
.why-content {
    display: flex;
    margin-bottom: 30px;
}

.header-action-area i{
    color:var(--main-color);
}
.page-header-area {

    margin-top: -78px;
}


.preloader img{
    height:60px;
}

.btn-menu img {
    filter: brightness(0) invert(1);
}

@media(min-width:767px){
  .why-choose .section-title {
    width: 50%;
    margin-inline: auto;
}
}
.header-area {
    padding: 0;
    z-index: 9;
    position: relative;
    background: #34466700;
}
@media(max-width:767px){
.flex-slider {
    width: 100%;
    position: relative;
    height: 400px;
}
.flex-slider .slides {

    height: 400px;
}
.slide-image {

    height: 400px;

}
.banner-content {
    position: absolute;
    color: #fff;
    top: 50%;
    width: 86%;
}
.banner-content h2 {
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    text-shadow: 0 6px 6px #363636;
    text-align: center;
}
.about-us-images {
    position: relative;
    padding: 0;
    margin-right: 0px;
}
.about-image-3 {
    position: unset;
    display: none;
}
  .banner-content p{
    display: none;
  }
  .about-image-1 img {
    height: 300px !important;
}
.about-us {
    padding: 60px 0;
    background: #FFFAE9;
    padding-bottom: 0;
}
.why-choose-us {
    padding: 70px 0 0;
    background: #FEF4DB;
}
.why-choose-item {
    display: flex
;
    flex-wrap: wrap;
    margin-bottom: 23px;
}
.why-choose-box {
    margin-bottom: 30px;
}
.section-title h3 {
    font-size: 19px;
}
.section-header {
    text-align: center;
    margin-bottom: 23px;
  
}
.footer-section h5 {

    text-align: left;
}
img.img-fluid.footerLogo {
    width: 180px;
}
.footer-content {
   
    padding: 0;
}
div#header {
    position: relative;
    margin-top: -10px;
}


/*mobile menu star t*/




}

