/* -------------------------------------------------------
    Theme Name: YUGASA Software Labs
    Theme URL: https://yugasa.com/
    Description: 
    Author: 
------------------------------------------------------- */
/*
Table of contents
    01. Google font
    02. CSS color variable
    03. Reset
    04. Typography
    05. General
    06. Background and border
    07. Width
    08. Height
    09. Loop
    10. Header
    11. Page title
    12. Layout
    13. Elements
    14. Blog
    15. Portfolio
    16. Shop
    17. Footer
*/
/* ===================================
    01. Google font
====================================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --alt-font: "Plus Jakarta Sans", sans-serif;
  --primary-font: "Inter", sans-serif;
}
/* ===================================
    02. CSS color variable
====================================== */
:root {
  --base-color: #2946f3;
  --white: #ffffff;
  --black: #000000;
  --red: #dc3131;
  --green: #2ebb79;
  --dark-gray: #232323;
  --medium-gray: #717580;
  --extra-medium-gray: #e4e4e4;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --light-medium-gray: #eaeaeb;
  --aluminium-grey:#80858F;
  --cornflower-blue:#445fed;
  --jade:#00AF6B;
}
/* ===================================
    03. Reset
====================================== */
.alt-font {
  font-family: var(--alt-font);
}
.primary-font {
  font-family: var(--primary-font) !important;
}
html {
  font-size: 16px;
}
body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--medium-gray);
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
section {
  padding-top: 110px;
  padding-bottom: 110px;
}
section.half-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
img {
  max-width: 100%;
  height: auto;
}
ul li {
  list-style: none;
}
a {
  color: var(--medium-gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  color: var(--base-color);
  text-decoration: none;
}
p {
  margin-bottom: 25px;
}
.last-paragraph-no-margin p:last-of-type {
  margin-bottom: 0;
}
video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
[class*=line-icon], [class*=" line-icon"], [class*=bi-], [class*=feather], [class*=ti-] {
  display: inline-block;
}
.form-control, .form-control.is-invalid {
  background-position: right 20px center !important;
}
.form-control.is-invalid {
  border-color: #dc3545 !important;
}
.g-recaptcha.is-invalid iframe {
  border: 1px solid #dc3545 !important;
}
.container, .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}
/* ===================================
    04. Typography
====================================== */
/* Heading */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  font-weight: inherit;
}
h1, .h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
}
h2, .h2 {
  font-size: 3.438rem;
  line-height: 3.438rem;
}
h3, .h3 {
  font-size: 2.813rem;
  line-height: 3.125rem;
}
h4 {
  font-size: 2.375rem;
  line-height: 2.7rem;
}
h5 {
  font-size: 1.3rem;
  line-height: 1.3rem;
}
h6 {
  font-size: 1.75rem;
  line-height: 1.95rem;
}
/* Font custom */
.hover-text {
  display: none;
}
b, strong {
  font-weight: 700;
}
.text-transform-none {
  text-transform: none !important;
}
.text-uppercase-inherit {
  text-transform: inherit !important;
}
/* Font size */
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
  line-height: 32px;
}
.fs-26 {
  font-size: 26px;
  line-height: 38px;
}
.fs-28 {
  font-size: 1.75rem;
  line-height: 2.6rem;
}
/* Line height */
.lh-18 {
  line-height: 18px;
}
.lh-20 {
  line-height: 20px;
}
.lh-22 {
  line-height: 22px;
}
.lh-24 {
  line-height: 24px;
}
.lh-26 {
  line-height: 26px;
}
.lh-28 {
  line-height: 28px;
}
.lh-initial {
  line-height: initial;
}
/* Text color */
.text-white, .btn-link.text-white {
  color: var(--white);
}
.text-black, .btn-link.text-black {
  color: var(--black);
}
.text-dark-gray, .btn-link.text-dark-gray, a.text-dark-gray-hover:hover {
  color: var(--dark-gray);
}
.text-medium-gray, .btn-link.text-medium-gray {
  color: var(--medium-gray);
}
.text-red, .btn-link.text-red {
  color: var(--red);
}
.text-green, .btn-link.text-green {
  color: var(--green);
}
/* Text gradient color */
/* Text shadow */
/* Text bottom line */
.text-decoration-line-bottom {
  border-bottom: 1px solid;
}
/* Text outline*/
/* Text stroke width */
/* Text stroke color */
/* Letter spacing */
.ls-0px {
  letter-spacing: 0px !important;
}
.ls-minus-1px {
  letter-spacing: -1px !important;
}
.ls-minus-2px {
  letter-spacing: -2px !important;
}
/* Icon size */
.icon-large {
  font-size: 42px;
}
.icon-small {
  font-size: 18px;
}
/* ===================================
    05. General
====================================== */
/* Separator line */
/* Separator vertical line */
/* Separator line size */
/* Opacity */
/* Position */
.absolute-bottom-center {
  left: 50%;
  bottom: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* Vertical title center */
/* Skrollr */
/* Transform */
.btn.btn-none-transform, .btn.btn-none-transform:hover {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* Transition */
.transition {
  -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}
/* Pointer events */
.pointer-events-none {
  pointer-events: none;
}
/* Sticky column */
.sticky-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transform: rotate(-90deg) translate(-50%, 50%);
  transform: rotate(-90deg) translate(-50%, 50%);
  transform-origin: 0 50%;
  transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
}
.sticky-wrap.shadow-in {
  left: 50px;
  opacity: 1;
  box-shadow: none !important;
}
.sticky-wrap.sticky-hidden {
  left: 0;
  opacity: 0;
}
.sticky-wrap a {
  color: var(--dark-gray) !important;
}
.sticky-wrap a:hover {
  color: var(--dark-gray) !important;
}
.sticky-wrap div, .sticky-wrap span, .sticky-wrap p {
  color: var(--dark-gray) !important;
}
.sticky-wrap .social-icon-style-10 ul li a:hover {
  color: var(--dark-gray) !important;
}
.sticky-wrap.sticky-highlight a {
  color: var(--white) !important;
}
.sticky-wrap.sticky-highlight a:hover {
  color: var(--white) !important;
}
.sticky-wrap.sticky-highlight div, .sticky-wrap.sticky-highlight span, .sticky-wrap.sticky-highlight p {
  color: var(--white) !important;
}
.sticky-wrap.sticky-highlight .social-icon-style-10 ul li a:hover {
  color: var(--white) !important;
}
/* Overflow */
/* Overlap section */
.overlap-section {
  position: relative;
}
.overlap-height {
  transition: 0.3s height;
}
/* Outside box */
/* CSS filter */
/* Box shadow */
.box-shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  -webkit-transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
}
.box-shadow-medium {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-large {
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-extra-large {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-double-large {
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
 .box-shadow-quadruple-large-hover:hover {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
 .box-shadow-quadruple-large-hover:hover {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
/* Input */
input, select, textarea, .form-control, .form-select {
  padding: 12px 25px;
  width: 100%;
  max-width: 100%;
  resize: none;
  outline: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-select {
  color: var(--medium-gray);
}
.form-select:focus {
  border-color: #dfdfdf;
}
input:focus, select:focus, textarea:focus, .form-control:focus {
  border: 1px solid #c2c2c2;
  box-shadow: none !important;
  color: var(--medium-gray);
}
::-webkit-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
.search-error {
  border-color: var(--red) !important;
}
/* Select */
.select {
  position: relative;
}
.select:after {
  content: "\e842";
  font-family: feather !important;
  right: 20px;
  top: 50%;
  height: 34px;
  position: absolute;
  pointer-events: none;
  font-size: 22px;
  margin-top: -15px;
}
/* Date icon */
/* Mozilla firefox */
/* Time icon */
/* Input size */
.form-control.is-invalid:focus {
  box-shadow: none;
}
/* Box overlay */
/* Swiper slider pagination */
.swiper-horizontal > .swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  bottom: 45px;
  left: 50%;
  width: auto;
  cursor: default;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.swiper-horizontal > .swiper-pagination-bullets-right, .swiper-vertical > .swiper-pagination-bullets-right {
  bottom: auto;
  top: 50%;
  right: 60px;
  left: auto;
  width: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right;
}
.swiper-horizontal > .swiper-pagination-bullets-right .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets-right .swiper-pagination-bullet {
  display: block;
  margin: 25px 0 !important;
}
.swiper-dark-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 15px !important;
  opacity: 1;
  background-color: var(--light-gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
}
.swiper-dark-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid var(--dark-gray);
  background: transparent;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.swiper-dark-pagination .swiper-pagination-bullet:hover {
  background-color: var(--dark-gray);
}
.swiper-dark-pagination .swiper-pagination-bullet:hover:before {
  opacity: 1;
}
.swiper-dark-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--dark-gray);
}
.swiper-dark-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.swiper-light-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 15px !important;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  opacity: 0.5;
}
.swiper-light-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.swiper-light-pagination .swiper-pagination-bullet:hover {
  background-color: var(--white);
  opacity: 1;
}
.swiper-light-pagination .swiper-pagination-bullet:hover:before {
  opacity: 1;
}
.swiper-light-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  opacity: 1;
}
.swiper-light-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
/* Swiper pagination style 02 */
.swiper-pagination-style-2 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
}
.swiper-pagination-style-2 .swiper-pagination-bullet:before {
  display: none;
}
/* Swiper pagination style 03 */
.swiper-pagination-style-3 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  opacity: 0.4;
  margin: 0 7px !important;
  border: 2px solid var(--white);
}
.swiper-pagination-style-3 .swiper-pagination-bullet:hover, .swiper-pagination-style-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  opacity: 1;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.swiper-pagination-style-3 .swiper-pagination-bullet:before {
  display: none;
}
.swiper-pagination-style-3.dark .swiper-pagination-bullet {
  border: 2px solid var(--dark-gray);
}
.swiper-pagination-style-3.dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--dark-gray);
}
/* Swiper pagination style 04 */
.swiper-pagination-style-4 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--white);
  opacity: 1;
  position: relative;
  margin: 0 25px !important;
  border: 0;
}
.swiper-pagination-style-4 .swiper-pagination-bullet:hover, .swiper-pagination-style-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--base-color);
  opacity: 1;
  border: 0;
}
.swiper-pagination-style-4.dark .swiper-pagination-bullet {
  background: var(--dark-gray);
}
.swiper-pagination-style-4.dark .swiper-pagination-bullet:hover, .swiper-pagination-style-4.dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--base-color);
}
/* Custom image pagination */
.slider-custom-image .slider-custom-image-pagination .swiper-pagination-bullet {
  margin: 0 15px !important;
  outline: none;
  opacity: 0.8;
  width: 100px;
  height: 100px;
  margin: 0 15px !important;
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.slider-custom-image .slider-custom-image-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 1;
}
/* Swiper number pagination style 01 */
.swiper-number-pagination-style-01 .swiper-number {
  text-align: left;
  bottom: 70px;
}
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet {
  position: relative;
  padding-right: 10px;
  padding-left: 8px;
  margin: 0;
  color: var(--white);
  opacity: 0.7;
  width: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: auto;
  background: transparent;
  border-radius: 0;
  outline: none;
}
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 70px;
}
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet:after {
  width: 0;
  height: 1px;
  content: "";
  margin-left: 15px;
  display: inline-block;
  background: var(--white);
  vertical-align: middle;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* Swiper number pagination style 02 */
.swiper-number-pagination-style-02 .swiper-number {
  width: auto;
  left: inherit;
  right: 60px;
  padding: 0;
}
.swiper-number-pagination-style-02 .swiper-number .swiper-pagination-bullet {
  position: relative;
  font-family: var(--alt-font);
  font-size: 15px;
  display: block;
  color: var(--white);
  margin: 10px 0 !important;
  opacity: 0.7;
  width: 56px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 56px;
  background: transparent;
  border-radius: 100%;
  text-align: center;
  line-height: 56px;
  outline: none;
}
.swiper-number-pagination-style-02 .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-number-pagination-style-02 .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.swiper-number-pagination-style-02 .swiper-number .swiper-pagination-bullet:before {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
/* Swiper line pagination style 01 */
.swiper-line-pagination-style-01 .swiper-line-pagination {
  text-align: center;
  bottom: 0;
  width: 100%;
  left: 0;
}
.swiper-line-pagination-style-01 .swiper-line-pagination .swiper-pagination-bullet {
  width: 100px;
  height: 2px;
  margin: 0 !important;
  border-radius: 0;
}
.swiper-line-pagination-style-01 .swiper-line-pagination .swiper-pagination-bullet:before {
  display: none;
}
.swiper-line-pagination-style-01 .swiper-line-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--base-color);
}
.swiper-h-pagination:after {
  display: none;
}
/* Swiper number line pagination style */
.swiper-number-pagination-progress .swiper-pagination-wrapper .number-prev, .swiper-number-pagination-progress .swiper-pagination-wrapper .number-next {
  width: 50px;
  text-align: center;
}
.swiper-number-pagination-progress .swiper-pagination-wrapper .swiper-pagination {
  position: inherit;
  width: auto;
}
.swiper-number-pagination-progress .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 1px;
  vertical-align: middle;
  margin: 0;
  background-color: var(--medium-gray);
}
/* Swiper number navigation style */
.swiper-number-navigation-style .swiper-button-prev, .swiper-number-navigation-style .swiper-button-next {
  top: inherit;
  bottom: 0;
  position: inherit;
  display: inline-block;
  vertical-align: middle;
  transform: none;
  width: auto;
  height: auto;
}
.swiper-number-navigation-style .swiper-button-prev i, .swiper-number-navigation-style .swiper-button-prev .number-prev, .swiper-number-navigation-style .swiper-button-prev .number-next, .swiper-number-navigation-style .swiper-button-next i, .swiper-number-navigation-style .swiper-button-next .number-prev, .swiper-number-navigation-style .swiper-button-next .number-next {
  display: inline-block;
  vertical-align: middle;
}
.swiper-number-navigation-style .swiper-button-prev .number-prev, .swiper-number-navigation-style .swiper-button-prev .number-next, .swiper-number-navigation-style .swiper-button-next .number-prev, .swiper-number-navigation-style .swiper-button-next .number-next {
  width: 50px;
  text-align: center;
}
/* Swiper pagination progress style */
.swiper-pagination-progress {
  width: 220px;
  height: 1px;
  position: relative;
}
.swiper-pagination-progress .swiper-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--swiper-progress, 0);
  background-color: var(--base-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
/* Swiper pagination progress style */
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
}
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper .swiper-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: var(--swiper-progress, 0);
  background-color: var(--dark-gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper .pagination-progress-vertical {
  transform: rotate(180deg);
  writing-mode: vertical-lr;
}
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper .swiper-pagination-progress {
  width: 2px;
  height: 100px;
  background-color: var(--extra-medium-gray);
}
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper .number-next {
  margin-top: 15px;
  width: auto;
}
.swiper-number-pagination-progress-vertical .swiper-pagination-wrapper .number-prev {
  margin-bottom: 15px;
  width: auto;
}
/* Swiper pagination bottom */
.swiper-pagination-bottom .swiper-button-prev, .swiper-pagination-bottom .swiper-button-next {
  top: inherit;
  bottom: 0;
}
/* Swiper navigation */
.swiper-button-prev, .swiper-button-next {
  outline: none;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin-top: 0;
  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;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.8;
}
.swiper-button-next {
  left: inherit;
}
/* Swiper navigation style 01 */
.slider-navigation-style-01.swiper-button-next {
  right: 65px;
  left: inherit;
}
/* Swiper navigation style 02 */
.slider-navigation-style-02.swiper-button-next {
  right: 0;
  left: auto;
}
/* Swiper navigation style 03 */
.slider-navigation-style-03.swiper-button-next {
  right: -60px;
  left: inherit;
}
/* Swiper navigation style 04 */
.slider-navigation-style-04.swiper-button-prev {
  margin-right: 5px;
}
.slider-navigation-style-04.swiper-button-next {
  margin-left: 5px;
}
/* Swiper navigation style 05 */
.slider-navigation-style-05.swiper-button-next {
  right: -30%;
  left: inherit;
}
/* Swiper navigation style 06 */
.slider-navigation-style-06.swiper-button-next {
  right: 60px;
  left: inherit;
}
/* Swiper navigation style 07 */
.slider-navigation-style-07.swiper-button-next {
  bottom: 1px;
  -webkit-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
}
/* Swiper navigation style 08 */
.slider-navigation-style-08.swiper-button-next {
  right: 0;
  left: inherit;
}
/* Slider custom text */
.swiper-button-prev.slider-custom-text-prev, .swiper-button-prev.slider-custom-text-next, .swiper-button-next.slider-custom-text-prev, .swiper-button-next.slider-custom-text-next {
  width: auto;
  height: auto;
  min-height: 125px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swiper-button-prev.slider-custom-text-prev:hover, .swiper-button-prev.slider-custom-text-next:hover, .swiper-button-next.slider-custom-text-prev:hover, .swiper-button-next.slider-custom-text-next:hover {
  opacity: 0.5;
}
.swiper-button-prev.slider-custom-text-prev {
  border-right: 1px solid var(--extra-medium-gray);
  padding-right: 50px;
}
.swiper-button-next.slider-custom-text-next {
  border-left: 1px solid var(--extra-medium-gray);
  padding-left: 50px;
}
/* Swiper width auto */
.swiper-width-auto .swiper-slide {
  width: auto;
}
/* Slider shadow */
.slider-shadow-none .swiper {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
/* Highlight separator */
/* Full screen */
.full-screen {
  height: 100vh;
}
.full-screen.top-space-margin {
  height: calc(100vh - 96px);
}
/* Video icons */
/* HTML video play */
.video-play-icon {
  z-index: 1 !important;
}
.video-play-icon.remove-play-icon + .html-video-play {
  opacity: 0 !important;
}
.video-play-icon.remove-play-icon + .html-video-play:hover {
  opacity: 1 !important;
}
.video-play-icon.remove-play-icon:hover + .html-video-play {
  opacity: 1 !important;
}
/* Will change */
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
/* Float animation */
.animation-float {
  animation: float 2000ms linear 500ms infinite alternate both;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(30px);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(10px);
  }
}
/* Zoom animation */
/* Box shadow animation  */
[data-shadow-animation] {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
[data-shadow-animation].shadow-in {
  box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
}
[data-shadow-animation].shadow-in img {
  opacity: 1;
  transition-delay: 0.35s;
}
[data-shadow-animation] img {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.5, 1, 0.5, 1);
}
/* Parallax liquid  */
[data-parallax-liquid] {
  overflow: hidden;
  will-change: transform;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Masked image animation */
/* Shape image animation */
.page-divider-wrapper {
  margin-bottom: -1px;
}
.page-divider-wrapper svg {
  width: 100%;
  margin-bottom: -3px;
}
/* Magic cursor */
.magic-cursor {
  cursor: none;
}
#ball-cursor {
  position: fixed;
  width: 70px;
  height: 70px;
  border: 0 !important;
  background-color: var(--dark-gray);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  opacity: 0 !important;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out 0.1s;
  text-align: center;
}
#ball-cursor:before, #ball-cursor:after {
  content: "\e843";
  font-family: feather !important;
  color: var(--white);
  font-size: 20px;
  line-height: 70px;
  position: absolute;
  left: 12px;
  top: 0px;
}
#ball-cursor:after {
  content: "\e844";
  right: 12px;
  left: auto;
}
.magic-cursor-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.2s ease-in-out 0.2s;
}
.magic-cursor-wrapper.sliderhover #ball-cursor {
  opacity: 1 !important;
}
.magic-cursor-wrapper.vertical #ball-cursor:before, .magic-cursor-wrapper.vertical #ball-cursor:after {
  content: "\e845";
  left: 50%;
  top: 10px;
  line-height: normal;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.magic-cursor-wrapper.vertical #ball-cursor:after {
  content: "\e842";
  right: auto;
  bottom: 10px;
  top: auto;
}
@media (hover: none) {
  .magic-cursor-wrapper {
    display: none;
  }
}
.magic-cursor-light #ball-cursor {
  background-color: var(--white);
}
.magic-cursor-light #ball-cursor:before {
  color: var(--dark-gray);
}
.magic-cursor-light #ball-cursor:after {
  color: var(--dark-gray);
}
.magic-cursor-base-color #ball-cursor {
  background-color: var(--base-color);
}
.magic-cursor-base-color #ball-cursor:before {
  color: var(--white);
}
.magic-cursor-base-color #ball-cursor:after {
  color: var(--white);
}
.magic-view-cursor #ball-cursor {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  width: 180px;
  height: 180px;
  box-shadow: none;
}
.magic-view-cursor #ball-cursor:after {
  display: none;
}
.magic-view-cursor #ball-cursor:before {
  content: "Explore";
  font-size: 16px;
  color: var(--white) !important;
  font-weight: 400;
  font-family: var(--alt-font) !important;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.magic-drag-cursor #ball-cursor {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  width: 140px;
  height: 140px;
  box-shadow: none;
}
.magic-drag-cursor #ball-cursor:after {
  display: none;
}
.magic-drag-cursor #ball-cursor:before {
  content: "< DRAG >";
  font-size: 14px;
  color: var(--white) !important;
  font-weight: 600;
  font-family: var(--alt-font) !important;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  word-spacing: 4px;
  width: inherit;
}
.magic-drag-cursor.magic-cursor-light #ball-cursor {
  background-color: rgba(255, 255, 255, 0.2);
}
.magic-drag-cursor.magic-cursor-light #ball-cursor:before {
  color: var(--dark-gray);
}
.magic-drag-cursor.magic-cursor-light #ball-cursor:after {
  color: var(--dark-gray);
}
.magic-round-cursor #ball-cursor {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
  width: 220px;
  height: 220px;
  box-shadow: none;
}
.magic-round-cursor #ball-cursor:before {
  display: none;
}
.magic-round-cursor #ball-cursor:after {
  display: none;
}
/* Anime animation */
[data-anime] {
  opacity: 0;
  transition: none;
}
[data-anime].appear {
  opacity: 1;
}
[data-anime].btn {
  transition: none;
}
[data-anime].btn.anime-complete {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
/* Atropos box */
.atropos-shadow {
  background-color: transparent !important;
  filter: inherit;
}
.atropos-highlight {
  background-image: inherit !important;
}
/* Only for safari browser */
@media not all and (min-resolution: 0.001dpcm) {
  /* font awesome icon gradient color */
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* color issue */
  .text-white a[href^=tel] {
    color: var(--white);
  }
  .text-dark-gray a[href^=tel] {
    color: var(--text-dark-gray);
  }
}
.swiper-slide [data-fancy-text] {
  opacity: 0;
}
.swiper-slide [data-fancy-text].appear {
  opacity: 1;
}
.swiper-slide.swiper-slide-active [data-fancy-text] {
  opacity: 1;
}
.swiper-slide.swiper-slide-active [data-anime] {
  opacity: 1;
}
.swiper-slide [data-anime] {
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.no-animation .anime-text .whitespace {
  display: inline-block;
}
.no-animation .anime-text .whitespace::after {
  content: "r";
  opacity: 0;
  font-size: 70%;
}
.no-animation [data-anime], .no-animation [data-fancy-text] {
  opacity: 1;
  transition: none;
}
/* Data top bottom transition animation */
/* Custom cursor */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor .circle-cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--base-color);
  }
  .custom-cursor .circle-cursor-inner.cursor-link-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--base-color);
    opacity: 0.8;
  }
  .custom-cursor .circle-cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--base-color);
    z-index: 10000000;
    opacity: 0.8;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
}
.is-touchable .cursor-page-inner {
  display: none !important;
}
/* Stack box */
.stack-box {
  position: relative;
  z-index: 1;
  height: 300vh;
}
.stack-box .stack-item {
  height: 100vh;
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
}
/* Scrolling text */
.looping-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 1px;
  height: 100vh;
  left: 50%;
  top: 0;
}
.looping-wrapper .el {
  position: absolute;
  opacity: 1;
  width: 2px;
  height: 24vh;
  margin-top: -18vh;
  transform-origin: 50% 100%;
  background: var(--base-color);
}
/* Marquee slide */
.marquee-slide {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
/* Father shadow */
/* Text sliding line */
/* Sliding line */
/* Feature box slider */
.feature-box-slider .swiper-slide {
  width: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
/* Page loader */
.page-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--white) !important;
  opacity: 1 !important;
  z-index: 99999;
}
.page-loader::after {
  background: 0 0;
  content: "" !important;
  position: absolute;
  left: calc(50% - 25px) !important;
  top: calc(50% - 25px) !important;
  width: 50px !important;
  height: 50px !important;
  opacity: 1 !important;
  right: inherit !important;
  z-index: 9;
  text-align: center;
  border: 2px solid rgba(23, 23, 23, 0.2);
  border-top-color: rgba(23, 23, 23, 0.7);
  border-radius: 50%;
  -webkit-animation: rotation 8s infinite linear;
  animation: rotation 1.5s infinite linear;
}
/* Cookie message */
/* Scroll progress */
.scroll-progress {
  position: fixed;
  right: 20px;
  z-index: 111;
  top: 50%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mix-blend-mode: difference;
}
.scroll-progress.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-progress .scroll-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scroll-progress .scroll-line {
  width: 2px;
  height: 60px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  color: inherit;
  display: block;
}
.scroll-progress .scroll-point {
  display: inline-block;
  width: 2px;
  position: absolute;
  background-color: var(--white);
  top: 0px;
  left: 0px;
}
.scroll-progress .scroll-text {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
}
/* for buy and demo button */
.theme-demos {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  background-color: var(--white);
  right: -100%;
  top: 0;
  z-index: 1050;
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.theme-demos section {
  height: 100%;
  min-height: 100%;
  position: relative;
  z-index: 11;
  padding: 0;
  width: 100%;
  overflow-y: scroll;
  background-color: var(--very-light-gray);
}
.theme-demos .demos-wrapper {
  width: 100%;
}
.theme-demos .demos-wrapper .demos-wrapper-inner {
  padding: 60px 50px;
}
.theme-demos.active {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.25);
}
.theme-demos .grid {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.theme-demos .demo-button-wrapper {
  width: auto;
  white-space: nowrap;
  position: absolute;
  right: 100%;
  display: block;
  bottom: 250px;
  cursor: pointer;
  z-index: 10;
  -webkit-transform: rotate(-90deg) translateY(-100%);
  -ms-transform: rotate(-90deg) translateY(-100%);
  transform: rotate(-90deg) translateY(-100%);
  -webkit-transform-origin: 100% 0% 0;
  -ms-transform-origin: 100% 0% 0;
  transform-origin: 100% 0% 0;
  margin-right: -1px;
  display: flex;
}
.theme-demos .buy-theme a, .theme-demos .all-demo a {
  color: var(--dark-gray);
  font-size: 11px;
  padding: 15px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}
.theme-demos .buy-theme a > i, .theme-demos .all-demo a > i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 59px;
  line-height: 55px;
  text-align: center;
  opacity: 0;
  font-size: 24px;
  transition-delay: 0.3s;
}
.theme-demos .all-demo {
  background-color: #1f242e;
}
.theme-demos .all-demo .theme-wrapper {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 1;
  transition-delay: 0.3s;
  line-height: 0;
}
.theme-demos .all-demo .theme-wrapper > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: 15px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  line-height: 21px;
}
.theme-demos .buy-theme {
  text-align: center;
  background-color: #48a133;
  position: relative;
  z-index: 1;
}
.theme-demos .buy-theme .theme-wrapper {
  padding: 0;
  position: relative;
  top: 0;
  opacity: 1;
  transition-delay: 0.3s;
  line-height: 0;
}
.theme-demos .buy-theme .theme-wrapper span {
  font-size: 15px;
  font-weight: 600;
  margin-right: 0;
}
.theme-demos .buy-theme .theme-wrapper i {
  margin-right: 10px;
  font-size: 21px;
}
.theme-demos .buy-theme .theme-wrapper > div svg {
  margin: 0;
}
.theme-demos .mCustomScrollBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.theme-demos .mCustomScrollBox .mCSB_container {
  width: 100%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0;
  padding-right: 15px !important;
}
.theme-demos .mCustomScrollBox .mCSB_container.mCS_y_hidden.mCS_no_scrollbar_y {
  -ms-flex-item-align: center;
  align-self: center;
}
.theme-demos .mCustomScrollBox .mCSB_draggerRail {
  display: none;
}
.theme-demos .clearfix {
  clear: both;
}
.theme-demos .portfolio-wrapper .grid-item {
  flex: 0 0 auto;
}
.theme-demos .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.theme-demos .close-popup:hover {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.show-search-popup .theme-demos .theme-demos, .show-search-popup .show-menu .theme-demos {
  z-index: 1;
}
/* Move it (define the animation) */
/* ===================================
    06. Background and border
====================================== */
/* Background color */
/*.bg-base-color {
  background-color: #ef1037;
}*/
.bg-dark-gray,
.bg-dark-gray:focus {
  background-color: var(--dark-gray);
}
.bg-extra-medium-gray {
  background-color: var(--extra-medium-gray);
}
.bg-very-light-gray {
  background-color: var(--very-light-gray);
}
.bg-red {
  background-color: var(--red);
}
/* Gradient background color */
.bg-gradient-very-light-gray {
  background-image: linear-gradient(to bottom, #f7f8f9, #f9fafb, #fbfbfc, #fdfdfd, #ffffff);
}
/* Transparent background color */
.bg-transparent {
  background-color: transparent;
}
.bg-gradient-gray-light-dark-transparent {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(32, 35, 41, 0.8)), to(transparent));
  background-image: linear-gradient(to top, rgba(32, 35, 41, 0.8) 0%, transparent 100%);
}
/* Background image */
.cover-background {
  background-repeat: no-repeat !important;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-position: center center !important;
}
.background-repeat {
  background-repeat: repeat;
}
/* Background size */
/* Border width */
/* Border style */
.border-solid {
  border-style: solid !important;
}
/* Border color */
.border-color-extra-medium-gray {
  border-color: var(--extra-medium-gray) !important;
}
.border-color-transparent-dark-very-light {
  border-color: rgba(35, 35, 35, 0.1) !important;
}
.border-color-transparent-white-light {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
/* Gradient border color */
/* Border radius */
.border-radius-0px {
  border-radius: 0 !important;
}
.border-radius-4px {
  border-radius: 4px !important;
}
.border-radius-5px {
  border-radius: 5px !important;
}
.border-radius-6px {
  border-radius: 6px !important;
}
.border-radius-10px {
  border-radius: 10px !important;
}
.border-radius-100px {
  border-radius: 100px !important;
}
/* Parallax background */
.parallax {
  position: relative !important;
  background-size: cover !important;
  overflow: hidden;
  background-attachment: fixed !important;
  transition-timing-function: none;
  -webkit-transition-timing-function: none;
  transition-duration: 0s;
  -webkit-transition-duration: 0s;
}
/* ===================================
    07. Width
====================================== */
.w-1px {
  width: 1px !important;
}
.w-40px {
  width: 40px !important;
}
.w-80px {
  width: 80px !important;
}
.w-120px {
  width: 120px !important;
}
.w-45 {
  width: 45% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-90 {
  width: 90% !important;
}
.w-95 {
  width: 95% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
/* ===================================
    08. Height
====================================== */
.h-1px {
  height: 1px !important;
}
.h-20px {
  height: 20px !important;
}
.h-40px {
  height: 40px !important;
}
/* Screen height */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
/* ===================================
    09. Loop - Padding, margin, position, font weight, min height, opacity and z-index
====================================== */
/* Padding and margin */
.p-10px {
  padding: 10px !important;
}
.p-20px {
  padding: 20px !important;
}
.p-25px {
  padding: 25px !important;
}
.p-40px {
  padding: 40px !important;
}
.p-50px {
  padding: 50px !important;
}
.p-1 {
  padding: 1% !important;
}
.p-2 {
  padding: 2% !important;
}
.p-3 {
  padding: 3% !important;
}
.p-6 {
  padding: 6% !important;
}
.pt-10px {
  padding-top: 10px !important;
}
.pt-15px {
  padding-top: 15px !important;
}
.pt-20px {
  padding-top: 20px !important;
}
.pt-25px {
  padding-top: 25px !important;
}
.pt-1 {
  padding-top: 1% !important;
}
.pt-2 {
  padding-top: 2% !important;
}
.pt-3 {
  padding-top: 3% !important;
}
.pt-8 {
  padding-top: 8% !important;
}
.pe-15px {
  padding-right: 15px !important;
}
.pe-30px {
  padding-right: 30px !important;
}
.pe-40px {
  padding-right: 40px !important;
}
.pe-45px {
  padding-right: 45px !important;
}
.pe-50px {
  padding-right: 50px !important;
}
.pe-10 {
  padding-right: 10% !important;
}
.pe-20 {
  padding-right: 20% !important;
}
.pb-10px {
  padding-bottom: 10px !important;
}
.pb-20px {
  padding-bottom: 20px !important;
}
.pb-25px {
  padding-bottom: 25px !important;
}
.pb-1 {
  padding-bottom: 1% !important;
}
.pb-2 {
  padding-bottom: 2% !important;
}
.pb-8 {
  padding-bottom: 8% !important;
}
.ps-15px {
  padding-left: 15px !important;
}
.ps-20px {
  padding-left: 20px !important;
}
.ps-30px {
  padding-left: 30px !important;
}
.ps-40px {
  padding-left: 40px !important;
}
.ps-45px {
  padding-left: 45px !important;
}
.ps-2 {
  padding-left: 2% !important;
}
.ps-5 {
  padding-left: 5% !important;
}
.ps-10 {
  padding-left: 10% !important;
}
.ps-20 {
  padding-left: 20% !important;
}
.m-1 {
  margin: 1% !important;
}
.m-3 {
  margin: 3% !important;
}
.m-8 {
  margin: 8% !important;
}
.mt-10px {
  margin-top: 10px !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.mt-25px {
  margin-top: 25px !important;
}
.mt-30px {
  margin-top: 30px !important;
}
.mt-50px {
  margin-top: 50px !important;
}
.mt-1 {
  margin-top: 1% !important;
}
.mt-2 {
  margin-top: 2% !important;
}
.mt-3 {
  margin-top: 3% !important;
}
.mt-4 {
  margin-top: 4% !important;
}
.mt-5 {
  margin-top: 5% !important;
}
.mt-8 {
  margin-top: 8% !important;
}
.mt-30 {
  margin-top: 30% !important;
}
.me-5px {
  margin-right: 5px !important;
}
.me-10px {
  margin-right: 10px !important;
}
.me-15px {
  margin-right: 15px !important;
}
.me-30px {
  margin-right: 30px !important;
}
.me-1 {
  margin-right: 1% !important;
}
.me-2 {
  margin-right: 2% !important;
}
.mb-5px {
  margin-bottom: 5px !important;
}
.mb-10px {
  margin-bottom: 10px !important;
}
.mb-15px {
  margin-bottom: 15px !important;
}
.mb-20px {
  margin-bottom: 20px !important;
}
.mb-25px {
  margin-bottom: 25px !important;
}
.mb-30px {
  margin-bottom: 30px !important;
}
.mb-35px {
  margin-bottom: 35px !important;
}
.mb-1 {
  margin-bottom: 1% !important;
}
.mb-2 {
  margin-bottom: 2% !important;
}
.mb-3 {
  margin-bottom: 3% !important;
}
.mb-4 {
  margin-bottom: 4% !important;
}
.mb-5 {
  margin-bottom: 5% !important;
}
.mb-8 {
  margin-bottom: 8% !important;
}
.ms-5px {
  margin-left: 5px !important;
}
.ms-10px {
  margin-left: 10px !important;
}
/* Position */
.top-8px {
  top: 8px;
}
.top-9px {
  top: 9px;
}
.top-20px {
  top: 20px;
}
.right-20px {
  right: 20px;
}
/* Font weight */
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
/* Min height */
/* Opacity */
.opacity-0 {
  opacity: .0;
}
/* Z-index */
.z-index-1 {
  z-index: 1;
}
/* ===================================
   10. Header
====================================== */
header .header-top-bar [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header-top-bar [class*=col-].text-end {
  justify-content: flex-end !important;
}
header .header-top-bar [class*=col-] .header-icon {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
header .navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
header .navbar [class*=col-] {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
header .navbar [class*=col-].text-end {
  justify-content: flex-end !important;
}
header .navbar [class*=col-] .navbar-nav {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .navbar [class*=col-] .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .navbar [class*=col-] .navbar-nav .nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .container-fluid {
  padding-left: 45px;
  padding-right: 45px;
}
/*header.sticky .navbar-brand {
  padding: 20px 0;
}*/
header.sticky .navbar {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
header.sticky .header-light:not(.disable-fixed) {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}
header.sticky.sticky-appear .header-reverse-back-scroll {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
header.sticky.sticky-active .header-reverse {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-color: transparent !important;
}
header.sticky.sticky-active .header-reverse.glass-effect {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.85) !important;
}
header.sticky.sticky-active .header-reverse.header-dark.glass-effect {
  background-color: rgba(35, 35, 35, 0.7) !important;
}
header.sticky.sticky-active .navbar-brand .alt-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
header.sticky.sticky-active .navbar-brand .default-logo {
  visibility: hidden;
  opacity: 0;
  width: 0;
}
header.sticky.sticky-active [data-header-hover=dark] {
  background-color: var(--dark-gray) !important;
}
header.sticky.sticky-active [data-header-hover=dark] .navbar-nav .nav-item:hover .nav-link {
  color: var(--white);
  opacity: 0.6;
}
header.sticky.sticky-active [data-header-hover=dark] .navbar-nav .nav-link {
  color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .icon > a {
  color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .icon > a:hover {
  color: var(--white);
  opacity: 0.6;
}
header.sticky.sticky-active [data-header-hover=dark] .icon .push-button span {
  background-color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .icon .header-language > a, header.sticky.sticky-active [data-header-hover=dark] .icon .header-cart > a {
  color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .icon .header-language > a:hover, header.sticky.sticky-active [data-header-hover=dark] .icon .header-cart > a:hover {
  color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .header-search-style i {
  color: var(--white);
}
header.sticky.sticky-active [data-header-hover=dark] .header-language-icon .header-language .language-dropdown {
  background-color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=dark] .header-language-icon .header-language .language-dropdown a {
  color: var(--light-gray);
}
header.sticky.sticky-active [data-header-hover=dark] .header-language-icon .header-language .language-dropdown a:hover {
  color: var(--white);
  opacity: 1;
}
header.sticky.sticky-active [data-header-hover=light] {
  background-color: var(--white) !important;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
header.sticky.sticky-active [data-header-hover=light] .navbar-nav .nav-link {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .icon > a {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .icon > a:hover {
  color: var(--medium-gray);
  opacity: 1;
}
header.sticky.sticky-active [data-header-hover=light] .icon .push-button span {
  background-color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .icon .header-language > a, header.sticky.sticky-active [data-header-hover=light] .icon .header-cart > a {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .icon .header-language > a:hover, header.sticky.sticky-active [data-header-hover=light] .icon .header-cart > a:hover {
  color: var(--medium-gray);
  opacity: 1;
}
header.sticky.sticky-active [data-header-hover=light] .header-search-style i {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .header-language-icon .language-dropdown li a {
  color: var(--medium-gray);
}
header.sticky.sticky-active [data-header-hover=light] .header-language-icon .language-dropdown li a:hover {
  color: var(--dark-gray);
  opacity: 1;
}
header.sticky.sticky-active [data-header-hover=light] .widget-text {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light] .widget-text a {
  color: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover=light].disable-fixed.header-demo {
  background-color: transparent !important;
}
header.sticky .header-icon .push-button {
  padding: 0;
}
header.sticky .center-logo .navbar-nav .nav-link {
  padding: 26px 20px;
}
/*header.sticky .fixed-header .navbar-brand, header.sticky .disable-fixed .navbar-brand {
  padding: 30px 0;
}*/
header .navbar {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .navbar-brand {
  margin-right: 0;
  vertical-align: middle;
  padding: 0 0;
  display: inline-block;
  font-size: 0;
}
header .navbar-brand .default-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
header .navbar-brand .alt-logo, header .navbar-brand .mobile-logo {
  visibility: hidden;
  opacity: 0;
  width: 0;
}

header .header-top-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-top-bar + .navbar {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 40px;
}
header .header-top-bar + .navbar.disable-fixed {
  top: 0;
}
header .header-top-bar .widget {
  display: inline-block;
}
header .header-top-bar .widget i {
  padding-right: 5px;
}
header .disable-fixed {
  position: relative;
}
header.sticky .navbar.disable-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
}
/* Navbar */
.navbar {
  padding: 0;
}
.navbar .navbar-nav .nav-item > i {
  display: none;
}
.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
  opacity: 0.6;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  opacity: 0.6;
}
.navbar .navbar-nav .nav-link {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 20px;
  position: relative;
  font-weight: 500;
  opacity: 1;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--white);
}
.navbar .navbar-nav .nav-link .label {
  display: inline-block;
  padding: 1px 11px;
  font-size: 12px;
  margin-left: 8px;
  margin-top: 0px;
  vertical-align: middle;
}
.navbar .navbar-nav .dropdown.submenu {
  position: inherit;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
  margin: 0;
  padding: 60px 0 65px;
  border: 0;
  top: 100%;
  background-color: var(--white);
  box-shadow: 0 45px 45px 0 rgba(0, 0, 0, 0.05);
  -webkit-animation: hide-animation 0.5s;
  animation: hide-animation 0.5s;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.navbar .navbar-nav .dropdown .dropdown-menu li:last-child > a {
  padding-bottom: 0;
}
.navbar .navbar-nav .dropdown .dropdown-menu li.active > a {
  color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown .dropdown-menu li a:hover {
  padding-left: 3px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a {
  color: var(--medium-gray);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 10px;
  display: block;
}
.navbar .navbar-nav .dropdown .dropdown-menu a:hover {
  color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  text-align: center;
}
.navbar .navbar-nav .dropdown .dropdown-menu a .label {
  display: inline-block;
  padding: 5px 10px;
  font-size: 10px;
  line-height: initial;
  margin-left: 8px;
  margin-top: 0px;
  vertical-align: middle;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
  display: block;
  -webkit-animation: show-animation 0.5s;
  animation: show-animation 0.5s;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu {
  display: none;
  width: 245px;
  padding: 35px 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li {
  padding: 0 45px 0 40px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
  padding-bottom: 12px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown {
  position: relative;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown i {
  position: absolute;
  right: 35px;
  top: 6px;
  width: auto;
  font-size: 13px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown.open > a {
  color: var(--dark-gray);
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown.open > .dropdown-menu {
  display: block;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown.menu-left .dropdown-menu {
  left: calc(-100% - 1px);
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown .dropdown-menu {
  -webkit-animation: none;
  animation: none;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown-menu {
  display: none;
  position: absolute;
  left: calc(100% + 1px);
  top: -35px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  width: 260px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li {
  padding: 0;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  font-size: 15px;
  line-height: 26px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  padding: 17px 20px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
  font-size: 19px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a img {
  width: 35px;
  margin-right: 15px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:last-child a {
  border-bottom: 0;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu {
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 310px;
  padding: 20px 35px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li {
  justify-content: center;
  display: flex;
  border-bottom: 0;
  padding: 0;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li:first-child a {
  border-top: 0;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a {
  margin: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  padding: 15px 30px 15px 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a i {
  width: 40px;
  font-size: 36px;
  margin-right: 15px;
  color: var(--base-color);
  flex-shrink: 0;
  text-align: left;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a span {
  color: var(--dark-gray);
  font-weight: 600;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a p {
  margin: 0;
  font-size: 13px;
  color: var(--medium-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a img {
  border-radius: 100%;
  width: 45px;
  margin-right: 15px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:before {
  content: "\f135";
  color: var(--black);
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 23px;
  position: absolute;
  right: 6px;
  opacity: 0;
  -webkit-transition: all 300ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 300ms cubic-bezier(0.61, 1, 0.88, 1);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:hover:before {
  right: 0px;
  opacity: 1;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a.btn {
  padding: 15px 20px;
  justify-content: center;
  margin-top: 10px;
  line-height: normal;
  border-top: 0;
  font-size: 14px;
  margin-bottom: 5px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a.btn:before {
  display: none;
}
/* Header hover submenu dark */
[data-header-hover=dark] .navbar-nav .dropdown .dropdown-menu li.active > a {
  color: var(--white);
}
[data-header-hover=dark] .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-header-hover=dark] .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-header-hover=dark] .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a span {
  color: var(--white) !important;
}
[data-header-hover=dark] .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:before {
  color: var(--white);
}
[data-header-hover=dark] .navbar-nav .simple-dropdown .dropdown-menu, [data-header-hover=dark] .navbar-nav .dropdown-with-icon-style02 .dropdown-menu, [data-header-hover=dark] .navbar-nav .dropdown-with-icon .dropdown-menu {
  background-color: var(--dark-gray);
}
[data-header-hover=dark] .navbar-nav .simple-dropdown .dropdown-menu a, [data-header-hover=dark] .navbar-nav .dropdown-with-icon-style02 .dropdown-menu a, [data-header-hover=dark] .navbar-nav .dropdown-with-icon .dropdown-menu a {
  color: var(--light-gray);
}
[data-header-hover=dark] .navbar-nav .simple-dropdown .dropdown-menu a:hover, [data-header-hover=dark] .navbar-nav .dropdown-with-icon-style02 .dropdown-menu a:hover, [data-header-hover=dark] .navbar-nav .dropdown-with-icon .dropdown-menu a:hover {
  color: var(--white);
}
[data-header-hover=dark] .navbar-nav .simple-dropdown .dropdown-menu .dropdown:hover > a, [data-header-hover=dark] .navbar-nav .dropdown-with-icon-style02 .dropdown-menu .dropdown:hover > a, [data-header-hover=dark] .navbar-nav .dropdown-with-icon .dropdown-menu .dropdown:hover > a {
  color: var(--white);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list {
  background-color: var(--dark-gray);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item {
  border-color: #3e3e3e;
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total {
  background-color: var(--black);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total span {
  color: var(--white);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
  color: var(--medium-gray);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a:hover {
  color: var(--white);
}
[data-header-hover=dark] .header-cart-icon .header-cart .cart-item-list .cart-item .close {
  color: var(--white);
}
.submenu-dark {
  background-color: var(--dark-gray) !important;
}
.submenu-dark .navbar-brand .alt-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
.submenu-dark .navbar-brand .default-logo {
  visibility: hidden;
  opacity: 0;
  width: 0;
}
.submenu-dark .navbar-nav .dropdown .dropdown-menu {
  background-color: var(--dark-gray);
}
.submenu-dark .navbar-nav .dropdown .dropdown-menu a {
  color: var(--light-gray);
}
.submenu-dark .navbar-nav .dropdown .dropdown-menu a:hover {
  color: var(--white);
}
.submenu-dark .navbar-nav .dropdown .dropdown-menu li.active > a {
  color: var(--white);
}
.submenu-dark .navbar-nav .simple-dropdown .dropdown-menu {
  background-color: var(--dark-gray);
}
.submenu-dark .navbar-nav .simple-dropdown .dropdown-menu a {
  color: var(--light-gray);
}
.submenu-dark .navbar-nav .simple-dropdown .dropdown-menu a:hover {
  color: var(--white);
}
.submenu-dark .navbar-nav .simple-dropdown .dropdown-menu .dropdown:hover > a {
  color: var(--white);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list {
  background-color: var(--dark-gray);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item {
  border-color: #3e3e3e;
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total {
  background-color: var(--black);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total span {
  color: var(--white);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
  color: var(--medium-gray);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a:hover {
  color: var(--white);
}
.submenu-dark .header-cart-icon .header-cart .cart-item-list .cart-item .close {
  color: var(--white);
}
/* Header hover submenu light */
.submenu-light {
  background-color: var(--white) !important;
}
.submenu-light .navbar-brand .alt-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
.submenu-light .navbar-brand .default-logo {
  visibility: hidden;
  opacity: 0;
  width: 0;
}
.submenu-light .navbar-nav .nav-link {
  color: var(--dark-gray);
}
.submenu-light .header-icon .icon > a {
  color: var(--dark-gray);
}
.submenu-light .header-icon .icon > a:hover {
  color: var(--medium-gray);
}
.submenu-light .header-icon .icon .push-button span {
  background-color: var(--dark-gray);
}
.submenu-light .header-icon .icon .header-language > a, .submenu-light .header-icon .icon .header-cart > a {
  color: var(--dark-gray);
}
.submenu-light .header-icon .icon .header-language > a:hover, .submenu-light .header-icon .icon .header-cart > a:hover {
  color: var(--medium-gray);
}
.submenu-light .menu-item-list .nav-link {
  color: var(--dark-gray);
}
.submenu-light .menu-item-list .nav-link:hover {
  color: var(--dark-gray);
  opacity: 0.6;
}
.submenu-light .menu-item-list .sub-menu a {
  color: var(--dark-gray);
  opacity: 0.6;
}
.submenu-light .menu-item-list .menu-item .toggle {
  color: var(--dark-gray);
}
.submenu-light .widget-text {
  color: var(--dark-gray);
}
.submenu-light .widget-text a {
  color: var(--dark-gray);
}
/* Header dark */
.header-dark .navbar-nav .dropdown .dropdown-menu li.active > a {
  color: var(--white);
}
/* Header light */
.header-light .navbar-nav .nav-link {
  color: var(--dark-gray);
}
.header-light .header-icon .icon > a {
  color: var(--dark-gray);
}
.header-light .header-icon .icon > a:hover {
  color: var(--dark-gray);
  opacity: 0.6;
}
.header-light .header-icon .icon .push-button span {
  background-color: var(--dark-gray);
}
.header-light .header-icon .icon .header-language > a, .header-light .header-icon .icon .header-cart > a {
  color: var(--dark-gray);
}
.header-light .header-icon .icon .header-language > a:hover, .header-light .header-icon .icon .header-cart > a:hover {
  color: var(--dark-gray);
  opacity: 0.6;
}
.header-light .menu-item-list .nav-link {
  color: var(--dark-gray);
}
.header-light .menu-item-list .nav-link:hover {
  color: var(--dark-gray);
  opacity: 0.6;
}
.header-light .menu-item-list .sub-menu a {
  color: var(--medium-gray);
  opacity: 1;
}
.header-light .menu-item-list .sub-menu a:hover {
  color: var(--dark-gray);
}
.header-light .menu-item-list .sub-menu .active > a {
  color: var(--dark-gray);
}
.header-light .widget-text {
  color: var(--dark-gray);
}
.header-light .widget-text a {
  color: var(--dark-gray);
}
/* Header icon */
.header-icon {
  display: flex;
  align-items: center;
}
.header-icon .icon {
  position: relative;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-icon .icon > a {
  padding-left: 16px;
  font-size: 17px;
  color: var(--white);
}
.header-icon .icon > a:hover {
  color: var(--white);
  opacity: 0.6;
}
.header-icon .icon:first-child a:first-child {
  padding-left: 0;
}
.header-icon .icon .header-language, .header-icon .icon .header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-icon .icon .header-language > a, .header-icon .icon .header-cart > a {
  padding-left: 14px;
  color: var(--white);
  font-size: 17px;
}
.header-icon .icon .header-language > a:hover, .header-icon .icon .header-cart > a:hover {
  color: var(--white);
  opacity: 0.6;
}
/* Header cart */
.header-cart-icon .header-cart {
  display: inline-block;
}
.header-cart-icon .header-cart .cart-item-list {
  display: none;
  left: auto;
  right: -30px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: var(--white);
  border: 0;
  padding: 0;
  min-width: 250px;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  height:350px;
  overflow-y: scroll;
}
.header-cart-icon .header-cart .cart-item-list .cart-item {
  display: flex;
  padding: 17px;
  border-top: 1px solid #ededed;
  position: relative;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .close {
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 15px;
  font-weight: 400;
  color: var(--dark-gray);
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-image {
  max-width: 50px;
  width: 30%;
  display: inline-block;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail {
  padding-left: 15px;
  width: 70%;
  text-align: left;
  display: inline-block;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
  color: var(--dark-gray);
  font-size: 12px;
  display: inline-block;
  line-height: 16px;
  padding: 0;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail .item-ammount {
  display: block;
  font-size: 11px;
  color: var(--medium-gray);
  line-height: normal;
}
.header-cart-icon .header-cart .cart-item-list .cart-item:first-child {
  border-top: 0;
}
.header-cart-icon .header-cart .cart-item-list .cart-total {
  background-color: var(--very-light-gray);
  flex-direction: column !important;
  color: var(--dark-gray);
}
.header-cart-icon .header-cart .cart-item-list .cart-total span {
  line-height: 20px;
  display: inline-block;
}
.header-cart-icon .header-cart .cart-item-list .cart-total .btn {
  width: 100%;
  display: block;
  margin: 8px 0;
}
.header-cart-icon .header-cart.open .cart-item-list {
  display: block;
  -webkit-animation: show-animation 0.5s;
  animation: show-animation 0.5s;
}
.header-cart-icon a {
  position: relative;
}
.header-cart-icon .cart-count {
  position: absolute;
  top: -7px;
  right: -11px;
  width: 17px;
  height: 17px;
  font-weight: 600;
  text-align: center;
  font-size: 10px;
  line-height: 18px;
  background-color: var(--base-color);
  color: var(--white);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* Header account */
/* Header language */
/* Header widget */
.widget-text {
  color: var(--white);
}
header a.widget-text:hover {
  opacity: 0.6;
}
/* Header push button */
.header-push-button {
  padding-left: 16px;
}
.header-push-button .push-button {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-push-button .push-button span {
  background: var(--white);
  height: 2px;
  width: 22px;
  content: "";
  display: block;
  border-radius: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header-push-button .push-button span:nth-child(2) {
  top: 6px;
}
.header-push-button .push-button span:nth-child(3) {
  top: 6px;
}
.header-push-button .push-button span:nth-child(4) {
  top: 12px;
  width: 14px;
  left: -8px;
}
.header-push-button .push-button:hover {
  opacity: 0.6;
}
.show-menu .header-push-button .push-button span:nth-child(1) {
  top: 7px;
  width: 0%;
}
.show-menu .header-push-button .push-button span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.show-menu .header-push-button .push-button span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.show-menu .header-push-button .push-button span:nth-child(4) {
  top: 7px;
  width: 0%;
}
.navbar-modern-inner {
  display: none;
}
.navbar-modern-inner .navbar-toggler {
  display: none;
}
/* Header push menu */
.show-menu {
  overflow: hidden;
}
.show-menu .push-menu {
  right: 0;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}
.show-menu .push-menu .close-menu {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  cursor: pointer;
}
.show-menu .push-menu.push-menu-left {
  right: auto;
  left: 0;
}
.push-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100%;
  z-index: 1031;
  overflow-y: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.push-menu .close-menu {
  height: 40px;
  width: 40px;
  text-align: center;
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 9;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
/* Header center logo */
.center-logo .navbar-nav .nav-link {
  padding: 38px 20px;
}
.center-logo .menu-logo .d-none {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
/*.center-logo .navbar-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: none;
}*/
/* Header top logo */
/* Header left menu simple */
.left-sidebar-wrapper {
  padding-left: 300px;
  position: relative;
  min-height: 300px;
  width: 100%;
}
.left-sidebar-wrapper .collapse:not(.show) {
  display: block !important;
}
header.sticky .left-sidebar-nav .navbar-nav .nav-link {
  padding: 0;
}
.left-sidebar-header {
  position: absolute;
  left: 0;
  width: 301px;
  top: -100%;
  bottom: 0;
  z-index: 999;
  display: block;
}
.left-sidebar-header .menu-item-list .menu-item .nav-link {
  font-size: 16px;
  line-height: 20px;
}
.left-sidebar-nav {
  width: 300px;
  padding: 80px 50px;
  left: 0;
  position: fixed;
  overflow: hidden;
  display: block;
  height: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.left-sidebar-nav .navbar-brand {
  padding: 0 !important;
}
.left-sidebar-nav .navbar-toggler {
  display: none;
}
/* Menu list */
.menu-item-list {
  display: block;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.menu-item-list .menu-item {
  position: relative;
  margin: 0;
}
.menu-item-list .menu-item ul {
  list-style: none;
  padding: 0;
}
.menu-item-list .menu-item .menu-toggle.show:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.menu-item-list .menu-item .sub-menu .active > a {
  opacity: 1;
}
.menu-item-list .active .nav-link {
  opacity: 0.6;
}
.menu-item-list .nav-link {
  padding: 5px 20px 5px 0;
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
  width: 100%;
  margin: 9px 0;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-item-list .nav-link:hover {
  color: var(--white);
  opacity: 0.6;
}
.menu-item-list .sub-menu {
  padding: 0;
  display: block;
  height: 0;
  overflow: hidden;
  list-style: none;
  margin: 0;
  position: relative !important;
  transform: none !important;
  background-color: transparent;
  border: 0;
}
.menu-item-list .sub-menu li {
  position: relative;
  margin: 0;
  padding: 5px 0;
}
.menu-item-list .sub-menu li .sub-menu {
  margin: 0;
  padding-left: 15px;
}
.menu-item-list .sub-menu li .sub-menu li {
  padding: 10px 0 0;
}
.menu-item-list .sub-menu li .sub-menu li a {
  padding: 0;
}
.menu-item-list .sub-menu li .sub-menu li a i {
  margin-right: 10px;
}
.menu-item-list .sub-menu li .sub-menu li:first-child {
  margin-top: 10px;
}
.menu-item-list .sub-menu li .sub-menu li:last-child {
  margin-bottom: 10px;
}
.menu-item-list .sub-menu li:last-child {
  margin-bottom: 0;
}
.menu-item-list .sub-menu li:last-child .sub-menu li:last-child {
  margin-bottom: 0;
}
.menu-item-list .sub-menu a {
  font-size: 15px;
  line-height: 22px;
  display: block;
  color: var(--light-gray);
  margin: 0;
  padding-right: 20px;
}
.menu-item-list .sub-menu a:hover {
  color: var(--white);
}
.menu-item-list .sub-menu a .label {
  display: inline-block;
  padding: 5px 10px;
  font-size: 10px;
  line-height: initial;
  margin-left: 8px;
  margin-top: 0px;
  vertical-align: middle;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-item-list .sub-menu.show {
  height: auto;
  overflow: visible;
}
/* Header left menu modern */
.left-modern-menu {
  padding-left: 75px;
}
.left-modern-menu .collapse:not(.show) {
  display: block !important;
}
.left-modern-menu .left-modern-header .navbar-brand {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0 !important;
  text-align: center;
}
.left-modern-menu .left-modern-header .modern-side-menu {
  padding: 75px 40px;
  height: 100%;
  overflow-y: hidden;
}
.left-modern-menu .left-modern-header .modern-side-menu .mCustomScrollBox {
  display: flex;
  width: 100%;
}
.left-modern-menu .left-modern-header .modern-side-menu .mCustomScrollBox .mCSB_container {
  align-self: flex-start;
  width: 100%;
  margin: 0;
  padding: 0 30px;
}
.left-modern-menu .left-modern-header .modern-side-menu .mCustomScrollBox .mCSB_container.mCS_no_scrollbar_y {
  align-self: center;
}
.left-modern-menu .left-modern-header.show .modern-sidebar-nav {
  left: 75px;
  box-shadow: 0 0 150px rgba(0, 0, 0, 0.2);
}
.left-modern-menu .left-modern-header.show .navbar-toggler-line:nth-child(1) {
  top: 7px;
  width: 0%;
}
.left-modern-menu .left-modern-header.show .navbar-toggler-line:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.left-modern-menu .left-modern-header.show .navbar-toggler-line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.left-modern-menu .left-modern-header.show .navbar-toggler-line:nth-child(4) {
  top: 7px;
  width: 0%;
}
/* Header left menu modern dark */
.left-modern-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 75px;
  padding: 35px 0;
}
/* Hamburger menu */
.hamburger-menu .header-icon {
  position: absolute;
  left: 0;
  bottom: -50px;
}
/* Hamburger menu half */
.show-menu .hamburger-menu-half .hamburger-logo {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.2s;
}
.show-menu .hamburger-menu-half .menu-address {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.4s;
}
.show-menu .hamburger-menu-half .menu-text {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.8s;
}
.show-menu .hamburger-menu-half .elements-social {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.8s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  opacity: 1;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(7) {
  transition-delay: 0.69s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(8) {
  transition-delay: 0.76s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(9) {
  transition-delay: 0.83s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(10) {
  transition-delay: 0.9s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(11) {
  transition-delay: 0.97s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(12) {
  transition-delay: 1.04s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(13) {
  transition-delay: 1.11s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(14) {
  transition-delay: 1.18s;
}
.show-menu .hamburger-menu-half .menu-item-list .menu-item:nth-child(15) {
  transition-delay: 1.25s;
}
/* Hamburger menu simple */
.show-menu .hamburger-menu-simple {
  opacity: 1;
  visibility: visible;
  top: 0px;
}
.show-menu .hamburger-menu-simple .hamburger-menu {
  opacity: 1;
}
.show-menu .hamburger-menu-simple .hamburger-logo {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.2s;
}
.show-menu .hamburger-menu-simple .menu-address {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.4s;
}
.show-menu .hamburger-menu-simple .menu-text {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.8s;
}
.show-menu .hamburger-menu-simple .elements-social {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.8s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item {
  transform: scale(1) translateY(0px);
  -webkit-transform: scale(1) translateY(0px);
  opacity: 1;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(7) {
  transition-delay: 0.69s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(8) {
  transition-delay: 0.76s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(9) {
  transition-delay: 0.83s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(10) {
  transition-delay: 0.9s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(11) {
  transition-delay: 0.97s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(12) {
  transition-delay: 1.04s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(13) {
  transition-delay: 1.11s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(14) {
  transition-delay: 1.18s;
}
.show-menu .hamburger-menu-simple .menu-item-list .menu-item:nth-child(15) {
  transition-delay: 1.25s;
}
/* Right push menu */
/* Header search popup */
.show-search-popup {
  overflow: hidden;
}
.show-search-popup header .navbar {
  z-index: 110;
}
.show-search-popup .search-form-wrapper {
  opacity: 1;
  visibility: visible;
  cursor: url(../images/mfg-close.png), auto;
}
.show-search-popup .search-form-wrapper .search-form {
  height: 50%;
  cursor: default;
  visibility: visible;
  opacity: 1;
}
.search-form-wrapper {
  background: rgba(35, 35, 35, 0.9);
  width: 100%;
  left: 0;
  top: 0;
  overflow: hidden !important;
  display: block !important;
  height: 100vh;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.search-form-wrapper .search-form {
  height: 0;
  background-color: var(--white);
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.search-form-wrapper .search-form .search-input {
  outline: none;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  color: var(--dark-gray);
  font-size: 18px;
  padding: 20px 0;
  background: transparent;
  line-height: 2.5rem;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  height: 80px;
  width: 100%;
}
.search-form-wrapper .search-form .search-input::-moz-placeholder {
  color: var(--light-gray);
  opacity: 1;
}
.search-form-wrapper .search-form .search-input::-webkit-input-placeholder {
  color: var(--light-gray);
}
.search-form-wrapper .search-form .search-button {
  color: var(--dark-gray);
  bottom: 24px;
  position: absolute;
  font-size: 25px;
  right: 0;
  line-height: normal;
  outline: none;
  cursor: pointer;
  z-index: 0;
  margin-right: 0;
  border: none;
  background: none;
}
.search-form-wrapper .search-form:hover {
  color: var(--light-gray);
}
.search-form-wrapper .search-close {
  color: var(--black);
  position: fixed;
  top: 30px;
  right: 35px;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  font-size: 40px;
  font-weight: 300;
  width: 44px;
  height: 44px;
  line-height: 44px;
}
.search-form-wrapper .search-form-box {
  position: relative;
  width: 45%;
}
/* Custom hide animation */
@-webkit-keyframes hide-animation {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Custom slide animation */
@-webkit-keyframes show-animation {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
button:focus {
  outline: none;
}
/* Header toggle button  */
.navbar-toggler {
  font-size: 24px;
  width: 22px;
  height: 14px;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: middle;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-collapse-show .navbar-toggler-line:nth-child(1) {
  top: 7px;
  width: 0%;
}
.navbar-collapse-show .navbar-toggler-line:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-collapse-show .navbar-toggler-line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar-collapse-show .navbar-toggler-line:nth-child(4) {
  top: 7px;
  width: 0%;
}
.navbar-modern-inner {
  display: none;
}
.navbar-modern-inner .navbar-toggler {
  display: none;
}
.header-with-topbar + .top-space-margin {
  margin-top: 136px;
}
.header-with-topbar + .top-space-padding {
  padding-top: 136px;
}
.navbar-modern-inner, .navbar-full-screen-menu-inner {
  display: none;
}
.top-space-margin {
  margin-top: 96px;
}
.top-space-padding {
  padding-top: 96px;
}
/* Landing page header */
/* ===================================
   11. Page title
====================================== */
/* Breadcrumb */
.breadcrumb {
  margin: 0;
}
.breadcrumb ul {
  margin: 0;
  padding: 0;
}
.breadcrumb-style-01 ul li {
  display: inline-block;
}
.breadcrumb-style-01 ul li:after {
  content: "\e844";
  font-family: "feather";
  font-size: 13px;
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px 0 10px;
}
.breadcrumb-style-01 ul li:last-child:after {
  content: "";
  padding: 0;
}
/* Page title style */
.page-title-double-large h1 {
  font-size: 3.6rem;
  line-height: 3.3rem;
}
.page-title-double-large h2 {
  font-size: 17px;
  line-height: 26px;
}
.page-title-extra-large h1 {
  font-size: 3.3rem;
  line-height: 3.3rem;
}
.page-title-extra-large h2 {
  font-size: 18px;
  line-height: 26px;
}
.page-title-large h1 {
  font-size: 2.8rem;
  line-height: 3rem;
}
.page-title-large h2 {
  font-size: 16px;
  line-height: 22px;
}
.page-title-medium h1 {
  font-size: 2rem;
  line-height: 2.2rem;
}
.page-title-medium h2 {
  font-size: 16px;
  line-height: 22px;
}
.page-title-small h1 {
  font-size: 1.625rem;
  line-height: 1.875rem;
}
.page-title-small h2 {
  font-size: 16px;
  line-height: 22px;
}
.page-title-extra-small h1 {
  font-size: 17px;
  line-height: 20px;
}
.page-title-extra-small h2 {
  font-size: 3.8rem;
  line-height: 3.8rem;
}
.page-title-button-style.page-title-button-style {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-title-button-style h1 {
  padding: 13px 30px;
  display: inline-block;
}
.page-title-mini-version h1 {
  font-size: 20px;
  line-height: 30px;
}
/* Down section icon */
/* Down section line */
/* ===================================
   12. Layout
====================================== */
/* Sidebar */
 .tag-cloud a.active {
  box-shadow: 0 0 10px rgba(23, 23, 23, 0.1);
  color: var(--dark-gray);
  background-color: var(--white);
}
/* Grid */
.grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Grid column and gutter spacing */
.grid li img {
  width: 100%;
}
.grid .grid-sizer {
  padding: 0 !important;
  margin: 0 !important;
}
.grid.gutter-extra-large li {
  padding: 10px;
}
.grid.grid-4col li {
  width: 25%;
}
/* ===================================
    13. Elements
====================================== */
/* Accordion */
.accordion .accordion-item {
  color: inherit;
  border: none;
}
.accordion .accordion-item .accordion-header {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.accordion .accordion-item .accordion-collapse {
  border: 0;
}
/* Accordion style 01 */
.accordion-style-01 .accordion-item .collapse {
  overflow: hidden;
}
/* Accordion style 02 */
.accordion-style-02 .accordion-item.active-accordion .accordion-header {
  border-bottom-color: transparent !important;
}
/* Accordion style 03 */
/* Accordion style 04 */
.accordion-style-04 .accordion-item.active-accordion {
  -webkit-box-shadow: 0px 5px 25px 0px rgba(111, 111, 111, 0.15);
  box-shadow: 0px 5px 25px 0px rgba(111, 111, 111, 0.15);
  background: var(--white);
}
/* Accordion style 05 */
.accordion-style-05 .accordion-item {
  margin-bottom: 20px;
  overflow: hidden;
  padding: 22px 35px 22px 65px;
  position: relative;
  -webkit-border-radius: 4px !important;
  border-radius: 4px !important;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-box-shadow: 0px 0px 45px 0px rgba(111, 111, 111, 0.15);
  box-shadow: 0px 0px 45px 0px rgba(111, 111, 111, 0.15);
}
.accordion-style-05 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style-05 .accordion-item .collapse {
  overflow: hidden;
}
.accordion-style-05 .accordion-item .number {
  position: absolute;
  left: -13px;
  top: 15px;
}
.accordion-style-05 .accordion-item.active-accordion {
  -webkit-box-shadow: 0px 15px 40px 5px rgba(111, 111, 111, 0.15);
  box-shadow: 0px 15px 40px 5px rgba(111, 111, 111, 0.15);
}
.accordion-style-05 .accordion-item.active-accordion .number {
  -webkit-text-fill-color: var(--base-color);
  -webkit-text-stroke-color: var(--base-color);
}
/* Accordion style 06 */
.accordion-style-06 .accordion-item .collapse {
  overflow: hidden;
  border-radius: 0;
}
.accordion-style-06 .accordion-item .collapsing i {
  opacity: 0;
}
.accordion-style-06 .accordion-item.active-accordion {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: linear-gradient(to bottom, #f2f8f7, #f5fafa, #f9fbfd, #fcfdfe, #ffffff);
}
.accordion-style-06 .accordion-item.active-accordion i {
  opacity: 0.15;
}
/* Alert box */
.alert-success {
  background-color: #f1fbec;
  color: #54b783;
  border-color: #cce8b3;
  padding: 10px 20px 10px 20px;
}
.alert {
  padding: 20px 25px 20px 30px;
  margin-bottom: 30px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.alert.alert-success {
  background-color: #f1fbec;
  color: #54b783;
  border-color: #cce8b3;
}
.alert.alert-info {
  background-color: #ebf5f9;
  color: #4278bb;
  border-color: #bce8f1;
}
.alert.alert-warning {
  background-color: #fcf8e3;
  color: #e2ad4b;
  border-color: #faebcc;
}
.alert.alert-danger {
  background-color: #fbf1f1;
  color: #e65656;
  border-color: #efe1e3;
}
.alert strong {
  font-weight: 500;
}
@keyframes hvr-icon-push {
  50% {
    -webkit-trasfrom: scale(0.5);
    trasfrom: scale(0.5);
  }
}
.alert .close {
  opacity: 1;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.34);
  text-shadow: none;
  float: right;
}
.alert .close i {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.alert .close:hover i {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.alert .close:not(:disabled), .alert .close:not(.disabled):focus, .alert .close:not(.disabled):hover {
  opacity: 1;
}
/* Alert box style 02 */
.alert-box-style-02 .alert {
  padding: 22px 60px 22px 30px;
  border: none;
  line-height: 22px;
  -webkit-box-shadow: 0px 0 10px 0 rgba(111, 111, 111, 0.1);
  box-shadow: 0px 0 10px 0 rgba(111, 111, 111, 0.1);
}
.alert-box-style-02 .alert.alert-success {
  color: #54b783;
}
.alert-box-style-02 .alert.alert-info {
  color: #4278bb;
}
.alert-box-style-02 .alert.alert-warning {
  color: #e2ad4b;
}
.alert-box-style-02 .alert.alert-danger {
  color: #e65656;
}
.alert-box-style-02 .alert .close {
  height: 100%;
  position: absolute;
  right: 0;
  width: 60px;
  text-align: center;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--light-medium-gray);
  font-size: 18px;
}
/* Alert box style 03 */
.alert-box-style-03 .alert {
  padding: 20px 30px 20px 55px;
  border: 0;
}
.alert-box-style-03 .alert:before {
  font-family: bootstrap-icons;
  display: inline-block;
  position: absolute;
  left: 25px;
  font-size: 18px;
}
.alert-box-style-03 .alert.alert-success {
  background-color: #54b783;
}
.alert-box-style-03 .alert.alert-success:before {
  content: "\f26b";
}
.alert-box-style-03 .alert.alert-info {
  background-color: #4278bb;
}
.alert-box-style-03 .alert.alert-info:before {
  content: "\f431";
}
.alert-box-style-03 .alert.alert-warning {
  background-color: #e2ad4b;
}
.alert-box-style-03 .alert.alert-warning:before {
  content: "\f567";
}
.alert-box-style-03 .alert.alert-danger {
  background-color: #e65656;
}
.alert-box-style-03 .alert.alert-danger:before {
  content: "\f623";
}
.alert-box-style-03 .alert .close {
  right: -10px;
  position: relative;
}
/* Alert box style 04 */
.alert-box-style-04 .alert {
  padding: 20px 25px 20px 30px;
  border-radius: 0;
  border: none;
  border-left: 3px solid;
}
.alert-box-style-04 .alert:hover {
  -webkit-box-shadow: 0px 0 10px 0 rgba(111, 111, 111, 0.1);
  box-shadow: 0px 0 10px 0 rgba(111, 111, 111, 0.1);
}
.alert-box-style-04 .alert.alert-success {
  color: #54b783;
  border-color: #54b783;
}
.alert-box-style-04 .alert.alert-info {
  color: #4278bb;
  border-color: #4278bb;
}
.alert-box-style-04 .alert.alert-warning {
  color: #e2ad4b;
  border-color: #e2ad4b;
}
.alert-box-style-04 .alert.alert-danger {
  color: #e65656;
  border-color: #e65656;
}
/* Alert box style 05 */
.alert-box-style-05 .alert {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border: none;
  border-bottom: 2px solid;
  color: var(--dark-gray);
  padding: 10px 0;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
.alert-box-style-05 .alert.alert-success {
  border-color: #54b783;
}
.alert-box-style-05 .alert.alert-info {
  border-color: #4278bb;
}
.alert-box-style-05 .alert.alert-warning {
  border-color: #e2ad4b;
}
.alert-box-style-05 .alert.alert-danger {
  border-color: #e65656;
}
/* Blockquote */
/* Blockquote style 05 */
/* Use for mac desktop pc */
/* Button */
.btn-box-shadow {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
}
.btn-box-shadow:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
 .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  border-color: initial;
  color: initial;
}
.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: auto;
  font-family: var(--alt-font);
  font-weight: 500;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn:hover {
  background-color: inherit;
}
.btn i {
  position: relative;
  margin-left: 6px;
}
.btn.btn-extra-large {
  font-size: 16px;
  padding: 24px 46px;
}
.btn.btn-large {
  font-size: 14px;
  padding: 18px 34px;
}
.btn.btn-medium {
  font-size: 13px;
  padding: 16px 30px;
}
.btn.btn-small {
  font-size: 12px;
  padding: 13px 26px;
}
.btn.btn-very-small {
  font-size: 11px;
  padding: 10px 20px;
}
.btn.btn-rounded.btn-extra-large {
  padding: 18px 46px;
}
.btn.btn-rounded.btn-large {
  padding: 14px 36px;
}
.btn.btn-rounded.btn-medium {
  padding: 12px 32px;
}
.btn.btn-rounded.btn-small {
  padding: 10px 26px;
}
.btn.btn-rounded.btn-very-small {
  padding: 8px 20px;
}
.btn.btn-rounded.btn-rounded {
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.btn.btn-round-edge {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.btn.btn-link {
  padding: 0 0 2px;
  position: relative;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid;
  letter-spacing: 0;
  background-color: transparent;
}
.btn.btn-link.thin {
  border-bottom: 1px solid;
}
.btn.btn-link:hover {
  opacity: 0.7;
}
.btn.btn-link:focus-visible {
  box-shadow: none;
}
 .btn.btn-expand:active {
  border-color: transparent;
}
 .btn.btn-expand:active span {
  width: 100%;
}
.btn.btn-expand-ltr:active {
  background-color: transparent;
  border: 0;
  color: initial;
}
.btn.btn-hover-animation:active {
  border-color: transparent !important;
}
 .btn.btn-base-color:active {
  background-color: transparent;
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-dark-gray {
  background-color: var(--dark-gray);
  color: var(--white);
}
.btn.btn-dark-gray:hover, .btn.btn-dark-gray:active {
  background-color: transparent;
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}
 .btn.btn-black:active {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn.btn-white {
  background-color: var(--white);
  color: var(--dark-gray);
}
.btn.btn-white:hover, .btn.btn-white:active {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
 .btn.btn-cornflower-blue:active {
  background-color: transparent;
  border-color: var(--cornflower-blue);
  color: var(--cornflower-blue);
}
 .btn.btn-jade:active {
  background-color: transparent;
  border-color: var(--jade);
  color: var(--jade);
}
 .btn.btn-transparent-black:active {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
 .btn.btn-transparent-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-gray);
}
 .btn.btn-transparent-white-light:active {
  background-color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--dark-gray);
}
 .btn.btn-transparent-base-color:active {
  background-color: var(--base-color);
  border-color: var(--base-color);
  color: var(--white);
}
 .btn.btn-transparent-dark-gray:active {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}
.btn.btn-transparent-light-gray {
  background-color: transparent;
  border-color: var(--extra-medium-gray);
  color: var(--dark-gray);
}
.btn.btn-transparent-light-gray:hover, .btn.btn-transparent-light-gray:active {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}
.btn.btn-switch-text.btn-extra-large {
  padding: 0;
}
.btn.btn-switch-text.btn-extra-large > span {
  padding: 22px 40px;
}
.btn.btn-switch-text.btn-large {
  padding: 0;
}
.btn.btn-switch-text.btn-large > span {
  padding: 18px 34px;
}
.btn.btn-switch-text.btn-medium {
  padding: 0;
}
.btn.btn-switch-text.btn-medium > span {
  padding: 16px 30px;
}
.btn.btn-switch-text.btn-small {
  padding: 0;
}
.btn.btn-switch-text.btn-small > span {
  padding: 13px 24px;
}
.btn.btn-switch-text.btn-very-small {
  padding: 0;
}
.btn.btn-switch-text.btn-very-small > span {
  padding: 10px 20px;
}
.btn.btn-switch-text > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.btn.btn-switch-text .btn-double-text {
  transition: opacity 0.65s, transform 0.85s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn.btn-switch-text .btn-double-text:before {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: opacity 0.5s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn.btn-switch-text:hover .btn-double-text, .btn.btn-switch-text:active .btn-double-text {
  transform: translateY(-200%);
}
.btn.btn-switch-text:hover .btn-double-text:before, .btn.btn-switch-text:active .btn-double-text:before {
  transform: translate(-50%, 150%);
  opacity: 1;
}
 .btn.base-color-hover:active {
  background-color: var(--base-color);
  color: var(--white);
}
 .btn.white-hover:active {
  background-color: var(--white);
  color: var(--dark-gray);
}
 .btn.black-hover:active {
  background-color: var(--dark-gray);
  color: var(--white);
}
.btn.btn-box-shadow.btn-white:hover, .btn.btn-box-shadow.btn-white:active {
  background: var(--white);
  color: var(--dark-gray);
}
 .btn.btn-box-shadow.btn-black:active {
  background: var(--black);
  color: var(--white);
}
.btn.btn-box-shadow.btn-dark-gray:hover, .btn.btn-box-shadow.btn-dark-gray:active {
  background: var(--dark-gray);
  color: var(--white);
}
 .btn.btn-box-shadow.btn-base-color:active {
  background: var(--base-color);
  color: var(--white);
}
 .btn.btn-box-shadow.btn-cornflower-blue:active {
  background-color: var(--cornflower-blue);
  color: var(--white);
}
 .btn.btn-box-shadow.btn-jade:active {
  background-color: var(--jade);
  color: var(--white);
}
/* Button icon position */
.left-icon i {
  margin-right: 6px;
  margin-left: 0;
}
[class*=btn-transparent], [class*=" btn-transparent"] {
  font-weight: 600;
}
/* Gradient button */
[class*=btn-gradient-]:active {
  background-color: transparent;
  border-color: transparent !important;
  color: var(--white) !important;
}
/* Blog button */
/* Clients style 01 */
/* Clients style 02 */
.clients-style-02 .swiper-slide {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.clients-style-02 .swiper-slide:hover {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.clients-style-02 .swiper-button-prev {
  left: -110px;
}
.clients-style-02 .swiper-button-next {
  right: -110px;
}
/* Clients style 03 */
/* Clients style 04 */
/* Clients style 05 */
/* Clients style 06 */
/* Clients style 07 */
/* Clients style 08 */
/* Columns */
.show-grid [class^=col-] {
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
/* Contact form */
.terms-condition-box label {
  display: block;
}
.terms-condition-box input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 4px;
  left: 0;
}
.terms-condition-box input[type=checkbox]:checked + .box:after {
  display: block;
}
.terms-condition-box input[type=checkbox].is-invalid + .box:before {
  border-color: #dc3545;
}
.terms-condition-box .box {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}
.terms-condition-box .box:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--extra-medium-gray);
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.terms-condition-box .box:after {
  position: absolute;
  left: 7px;
  top: 9px;
  content: "";
  width: 6px;
  height: 10px;
  display: none;
  border: solid var(--dark-gray);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Contact form style 01 */
/* Contact form style 03 */
.contact-form-style-03 input, .contact-form-style-03 textarea {
  outline: none;
  border: none;
  border-bottom: 1px solid;
  background: transparent;
}
.contact-form-style-03 select {
  outline: none;
  border: none;
  border-bottom: 1px solid;
}
.contact-form-style-03 input:focus, .contact-form-style-03 select:focus, .contact-form-style-03 textarea:focus, .contact-form-style-03 .form-control:focus {
  border: 0;
  border-bottom: 1px solid #c2c2c2;
}
.contact-form-style-03 textarea {
  resize: none;
}
.contact-form-style-03 .form-group .form-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form-style-03 .form-group.form-textarea .form-icon {
  top: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contact-form-style-03 .form-control, .contact-form-style-03 .form-control.is-invalid {
  background-position: right 35px center !important;
}
/* Contact form style 06 */
/* Contact form style 07 */
.swiper-button-next, .swiper-button-prev {
  color: var(--dark-gray);
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
  content: "";
}
/* Text slider 02 */
.text-slider-style-02 .swiper-slide {
  opacity: 0.2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.text-slider-style-02 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
/* Text slider 03 */
.text-slider-style-03 .swiper-slide > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
/* Text slider 05 */
.text-slider-style-05 .swiper-slide {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.text-slider-style-05 .swiper-slide .services-box-style-01:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.text-slider-style-05 .swiper-slide .services-box-style-01:hover .icon-box {
  opacity: 0;
}
.text-slider-style-05 .swiper-slide.swiper-slide-next {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
.text-slider-style-05 .swiper-slide.swiper-slide-next .services-box-style-01 .icon-box {
  opacity: 1;
}
/* Countdown style 01 */
/* Countdown style 02 */
/* Countdown style 03 */
/* Countdown style 04 */
/* Counter style 03 */
/* Counter style 04 */
/* Counter style 06 */
/* Counter style 07 */
/* Vertical counter */
.vertical-counter-number {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.vertical-counter-number ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Divider style 01 */
/* Divider style 02 */
/* Divider style 03 */
.divider-style-03.divider-style-03-01 {
  border-top: 1px solid;
  width: 100%;
}
/* First letter */
/* First letter block */
/* First letter round */
/* First letter big */
/* First letter small */
/* Event style 02 */
/* Event style 03 */
.event-style-03 .nav-tabs .nav-link.active, .event-style-03 .nav-tabs .nav-link.show {
  color: var(--dark-gray);
  background-color: var(--white);
}
/* Text image mask */
/* Fancy text box style 01 */
/* Google map */
#map {
  height: 550px;
}
.arrow_box {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-top-left-radius: 100%;
  -webkit-border-top-right-radius: 100%;
  -webkit-border-bottom-right-radius: 100%;
  -webkit-border-bottom-left-radius: 100%;
  position: relative;
  opacity: 0.8;
  cursor: pointer;
}
.arrow_box span {
  width: 100%;
  height: 100%;
  border: 1px solid;
  opacity: 0.2;
  display: inline-block;
  border-radius: 100%;
  -webkit-border-top-left-radius: 100%;
  -webkit-border-top-right-radius: 100%;
  -webkit-border-bottom-right-radius: 100%;
  -webkit-border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow_box span:first-child {
  animation: markerWave 1.5s 0.45s cubic-bezier(0.4, 0, 0.2, 1) infinite forwards;
  -webkit-animation: markerWave 1.5s 0.45s cubic-bezier(0.4, 0, 0.2, 1) infinite forwards;
}
.arrow_box span:first-child + span {
  animation: markerWave 1.5s 0.45s cubic-bezier(0, 0, 0.2, 1) infinite forwards;
  -webkit-animation: markerWave 1.5s 0.45s cubic-bezier(0, 0, 0.2, 1) infinite forwards;
}
.arrow_box span:last-child {
  opacity: 0.1;
}
@keyframes markerWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: scale(5.5);
    opacity: 0;
  }
}
@-webkit-keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    opacity: 0;
  }
}
.infowindow {
  color: var(--dark-gray);
  font-weight: 400;
  line-height: 26px;
  font-size: 15px;
  letter-spacing: -0.5px;
  padding: 25px 25px 25px 25px !important;
  text-align: center;
}
.infowindow .mb-3 {
  margin-bottom: 5px !important;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.25px;
}
.infowindow p {
  color: var(--medium-gray);
  font-size: 15px;
  margin-bottom: 5px;
  letter-spacing: -0.25px;
  line-height: 24px;
}
.infowindow :last-child {
  margin-bottom: 0;
}
/* Text highlight */
.text-highlight {
  position: relative;
  z-index: 1;
}
.text-highlight span {
  display: inline-block;
  left: -3px;
  position: absolute;
  z-index: -1;
  width: calc(100% + 6px);
}
/* Separator animation */
/* Feature box style */
.feature-box {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}
.feature-box .feature-box-icon i:not([class*=text-gradient-]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature-box.feature-box-left-icon, .feature-box.feature-box-left-icon-middle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
.feature-box.feature-box-left-icon .feature-box-icon, .feature-box.feature-box-left-icon-middle .feature-box-icon {
  margin-right: 30px;
}
.feature-box.feature-box-left-icon .feature-box-content, .feature-box.feature-box-left-icon-middle .feature-box-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.feature-box.feature-box-left-icon-middle {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-align: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  text-align: left;
}
.feature-box.text-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.feature-box.text-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
/* Icon with text style 03 */
/* Icon with text style 05 */
/* Icon with text style 07 */
/* Icon with text style 10 */
/* Icon with text style 11 */
/* Image gallery style 01 */
/* Image gallery style 02 */
/* Image gallery style 03 */
/* Image gallery style 04 */
/* Image gallery style 05 */
/* Image gallery style 06 */
/* Instagram */
/* Interactive banner style 01 */
.interactive-banner-style-01 figure {
  -webkit-transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
}
.interactive-banner-style-01 figure .icon-box {
  opacity: 0;
  position: relative;
  top: 15px;
}
.interactive-banner-style-01 figure figcaption {
  position: absolute;
  bottom: 0;
}
.interactive-banner-style-01 figure:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.interactive-banner-style-01 figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
}
.interactive-banner-style-01 figure:hover .icon-box {
  opacity: 1;
  top: 0;
}
.interactive-banner-style-01 figure:hover .box-overlay {
  opacity: 0.5;
}
/* Interactive banner style 02 */
.interactive-banner-style-02.hover-box * {
  will-change: auto !important;
}
.interactive-banner-style-02 figure figcaption .features-icon {
  margin-bottom: -45px;
  opacity: 0;
  visibility: hidden;
}
.interactive-banner-style-02:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.interactive-banner-style-02:hover figure figcaption .features-icon {
  margin-bottom: 20px;
  opacity: 1;
  visibility: visible;
}
/* Interactive banner style 03 */
.interactive-banner-style-03 figure {
  position: relative;
}
.interactive-banner-style-03 figure img {
  -webkit-transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
}
.interactive-banner-style-03 figure figcaption {
  position: absolute;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.interactive-banner-style-03 figure:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
/* Interactive banner style 04 */
.interactive-banner-style-04 figure {
  -webkit-transition: all 700ms cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 700ms cubic-bezier(0.5, 1, 0.89, 1);
}
.interactive-banner-style-04 figure * {
  -webkit-transition: all 700ms cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 700ms cubic-bezier(0.5, 1, 0.89, 1);
}
.interactive-banner-style-04 figure figcaption {
  position: absolute;
  bottom: 0;
}
.interactive-banner-style-04 figure figcaption .features-content {
  position: absolute;
  left: 25px;
  top: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 500ms cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 500ms cubic-bezier(0.5, 1, 0.89, 1);
}
.interactive-banner-style-04 figure figcaption .features-content .box-overlay {
  height: 0%;
  -webkit-transition: all 400ms cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 400ms cubic-bezier(0.5, 1, 0.89, 1);
}
.interactive-banner-style-04 figure figcaption .box-button {
  opacity: 1;
  visibility: visible;
  position: relative;
  bottom: 0;
  -webkit-transition: all 500ms cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 500ms cubic-bezier(0.5, 1, 0.89, 1);
}
.interactive-banner-style-04 figure:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.interactive-banner-style-04 figure:hover figcaption .features-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.interactive-banner-style-04 figure:hover figcaption .box-overlay {
  height: 100%;
}
.interactive-banner-style-04 figure:hover figcaption .box-button {
  opacity: 0;
  visibility: hidden;
  position: relative;
  bottom: -70px;
}
/* Interactive banner style 05 */
.interactive-banner-style-05 figure img {
  -webkit-transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
}
.interactive-banner-style-05 figure figcaption .btn {
  margin-bottom: -50px;
  visibility: hidden;
  opacity: 0;
  transition-timing-function: linear;
  -webkit-transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 700ms cubic-bezier(0.61, 1, 0.88, 1);
}
.interactive-banner-style-05 figure figcaption .content-arrow {
  position: absolute;
  right: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.interactive-banner-style-05 figure:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.interactive-banner-style-05 figure:hover figcaption img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.interactive-banner-style-05 figure:hover figcaption .content-arrow {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.interactive-banner-style-05 figure:hover figcaption .btn {
  margin-bottom: 0;
  visibility: visible;
  opacity: 1;
}
.interactive-banner-style-05 .atropos:hover .box-overlay {
  opacity: 1;
  visibility: visible;
}
.interactive-banner-style-05 .atropos:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
/* Interactive banner style 06 */
.interactive-banner-style-06 {
  position: relative;
  overflow: hidden;
}
.interactive-banner-style-06 .banners-icon {
  z-index: 9;
  -webkit-transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
  transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-06 img {
  -webkit-transition: 1s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 1s cubic-bezier(0.12, 0, 0.39, 0);
  width: 100%;
}
.interactive-banner-style-06 .interactive-banners-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(calc(100% - 155px));
  -webkit-transition: 550ms cubic-bezier(0.12, 0, 0.1, 0);
  transition: 550ms cubic-bezier(0.12, 0, 0.1, 0);
}
.interactive-banner-style-06 .interactive-banners-content .interactive-banners-content-text {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
  transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-06 .box-overlay {
  height: 25%;
  bottom: 0;
  top: auto;
  visibility: visible;
  opacity: 0;
  -webkit-transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
  transition: 350ms cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-06:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: 3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 3s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-06:hover .icon-hover-base-color {
  color: var(--base-color) !important;
}
.interactive-banner-style-06:hover .interactive-banners-content {
  transform: translateY(0);
}
.interactive-banner-style-06:hover .interactive-banners-content .interactive-banners-content-text {
  opacity: 1;
  visibility: visible;
}
.interactive-banner-style-06:hover .box-overlay {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
/* Interactive banner style 07 */
.interactive-banner-style-07 figure {
  position: relative;
  overflow: hidden;
}
.interactive-banner-style-07 figure > img {
  -webkit-transition: 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.interactive-banner-style-07 figure .overlay-bg {
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-07 figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.interactive-banner-style-07 figure .hover-hide-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}
.interactive-banner-style-07 figure .hover-show-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 50px;
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.interactive-banner-style-07 figure:hover > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.interactive-banner-style-07 figure:hover .overlay-bg {
  opacity: 0.7;
}
.interactive-banner-style-07 figure:hover .hover-hide-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.interactive-banner-style-07 figure:hover .hover-show-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* Interactive banner style 08 */
.interactive-banner-style-08 figure:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
.interactive-banner-style-08 figure:hover .box-overlay {
  opacity: 1;
  visibility: visible;
}
.interactive-banner-style-08 figure:hover figcaption .circle-box {
  background-color: var(--white) !important;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 500ms cubic-bezier(0.61, 1, 0.88, 1.5);
  transition: all 500ms cubic-bezier(0.61, 1, 0.88, 1.5);
}
/* Interactive banner style 09 */
.interactive-banner-style-09 img {
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.interactive-banner-style-09 .image-content {
  position: absolute;
  top: 0;
}
.interactive-banner-style-09 .image-content .content-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  opacity: 0.6;
  visibility: visible;
  will-change: transform;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-09 .image-content .content-title-hover {
  position: absolute;
  width: auto;
  left: 0;
  bottom: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-09 .image-content .content-arrow {
  will-change: transform;
  position: absolute;
  right: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-banner-style-09 .image-content .label {
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-09 .image-content .hover-label-icon i {
  opacity: 0;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.interactive-banner-style-09 .image-content:hover .content-arrow {
  opacity: 1;
  -webkit-transform: translateY(-42%);
  transform: translateY(-42%);
}
.interactive-banner-style-09 .image-content:hover .content-title {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.interactive-banner-style-09 .image-content:hover .content-title-hover {
  visibility: visible;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.interactive-banner-style-09 .image-content:hover .box-overlay {
  opacity: 1;
  visibility: visible;
}
.interactive-banner-style-09 .image-content:hover .hover-label-icon .label {
  opacity: 0;
  margin-top: -20px;
}
.interactive-banner-style-09 .image-content:hover .hover-label-icon i {
  opacity: 1;
  top: 0;
}
.interactive-banner-style-09:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* List style 01 */
/* List style 02 */
/* List style 03 */
/* List style 04 */
.list-style-04 {
  padding-left: 16px;
}
.list-style-04 li {
  margin: 0 0 10px;
  list-style: disc;
}
/* List style 05 */
/* HTML video */
/* Background video */
/* Modal popup */
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: var(--white);
  background: transparent;
}
.mfp-iframe-holder .mfp-content {
  max-width: 1050px;
}
.mfp-close, .mfp-close:active {
  opacity: 1;
  background-color: transparent;
  right: 20px;
  top: 20px;
  height: 30px;
  width: 30px;
  font-size: 13px;
  line-height: 31px;
  position: absolute;
  color: var(--dark-gray);
}
.lightbox-gallery a {
  position: relative;
  display: block;
}
.show-search-popup > section {
  filter: grayscale(100%);
}
.show-search-popup .mfp-search.mfp-bg.mfp-ready {
  opacity: 0.5;
}
.mfp-arrow {
  opacity: 1;
}
.mfp-wrap {
  cursor: url("../images/mfg-close.png"), auto;
}
.mfp-wrap .mfp-container {
  cursor: auto;
}
.show-search-popup .mfp-close, .show-search-popup .mfp-close:active {
  color: var(--dark-gray);
}
.show-search-popup .search-form .search-input {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.show-search-popup .search-form .search-button {
  color: var(--dark-gray);
}
.show-search-popup .mfp-container {
  position: fixed;
  height: 300px;
  background-color: var(--white);
  -webkit-animation-name: "ani-mfp";
  animation-name: "ani-mfp";
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.show-search-popup .mfp-removing .mfp-container {
  -webkit-animation-name: "ani-mfp-close";
  animation-name: "ani-mfp-close";
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.show-search-popup .search-form .search-input {
  color: var(--dark-gray);
}
.lightbox-gallery a {
  position: relative;
  display: block;
}
.mfp-arrow-right:after,
.mfp-arrow-left:after {
  display: none;
}
.mfp-arrow-left {
  left: 30px;
}
.mfp-arrow-right {
  right: 30px;
}
.mfp-arrow-left:before {
  border-right: none;
  content: "\e629";
  font-size: 20px;
  font-family: "themify";
  color: var(--white);
  line-height: 60px;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  opacity: 1;
}
.mfp-arrow-right:before {
  border-left: none;
  content: "\e628";
  font-size: 20px;
  font-family: "themify";
  color: var(--white);
  line-height: 60px;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  opacity: 1;
}
.mfp-bottom-bar {
  margin-top: -24px;
  font-size: 12px;
}
.mfp-close {
  font-size: 28px;
  font-family: var(--alt-font);
}
.mfp-figure {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -ms-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
/* Zoom animation */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: scale3d(0.9, 0.9, 1);
  -o-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -o-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
/* Fade animation */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}
/* Slide up animation */
.my-mfp-slide-up .slide-up-popup {
  -webkit-transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}
.my-mfp-slide-up.mfp-ready .slide-up-popup {
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -o-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.my-mfp-slide-up.mfp-removing .slide-up-popup {
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}
.my-mfp-slide-up.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.my-mfp-slide-up.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.my-mfp-slide-up.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-bg {
  background: var(--dark-gray);
  opacity: 0.9;
}
.mfp-bg, .mfp-wrap {
  z-index: 10007;
}
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.93;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.mfp-ajax-holder {
  width: 70%;
  height: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
button.mfp-close,
button.mfp-close:active {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
button.mfp-close:before,
button.mfp-close:active:before {
  content: "\f00d";
  color: var(--black);
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
}
/* Images gallery */
.mfp-gallery button.mfp-close,
.mfp-iframe-holder ~ button.mfp-close {
  right: 40px;
  top: 40px;
  background-color: var(--white);
}
.mfp-gallery button.mfp-close:before,
.mfp-iframe-holder ~ button.mfp-close:before {
  color: var(--dark-gray);
}
/* Modal popup */
.modal-popup-main {
  position: relative;
}
/* Auto newsletter popup */
.subscribe-popup .mfp-close,
.subscribe-popup .mfp-close:active {
  background-color: transparent;
  font-size: 13px;
  line-height: 30px;
  top: 20px;
  right: 20px;
}
.subscribe-popup .mfp-close.mfp-close-btn {
  bottom: 0;
  top: inherit;
  position: relative;
  width: auto;
  right: 0;
  height: auto;
  font-size: 14px;
}
.subscribe-popup .mfp-close.mfp-close-btn:before {
  display: none;
}
.subscribe-popup .mfp-close:before {
  color: var(--dark-gray);
}
/* Parallax background */
[data-parallax-background-ratio] {
  position: relative !important;
  background-size: cover !important;
  overflow: hidden;
  background-attachment: fixed !important;
  transition-duration: 0s;
  -webkit-transition-duration: 0s;
}
/* Video icon effect  */
/* Particles */
canvas {
  display: block;
  vertical-align: bottom;
}
/* Pie chart style 01 */
.pie-chart-style-01 {
  position: relative;
  display: inline-block;
}
.pie-chart-style-01 .percent {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* Pricing table style 01 */
/* Pricing table style 02 */
/* Pricing table style 04 */
.pricing-table-style-04 .accordion-item.active-accordion {
  padding: 30px 40px;
  background-color: var(--base-color) !important;
  color: var(--white) !important;
}
.pricing-table-style-04 .accordion-item.active-accordion .accordion-header .accordion-title {
  color: var(--white) !important;
}
.pricing-table-style-04 .accordion-item.active-accordion .icon-round {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white) !important;
}
/* Pricing table style 07 */
 .pricing-table-style-07 .nav-tabs .nav-item .nav-link.active {
  box-shadow: none;
  background-color: var(--base-color);
  color: var(--white) !important;
}
 .pricing-table-style-07 .nav-tabs .nav-item .nav-link.active .text-dark-gray {
  color: var(--white) !important;
}
 .pricing-table-style-07 .nav-tabs .nav-item .nav-link.active .icon i {
  opacity: 1;
}
 .pricing-table-style-07 .nav-tabs .nav-item .nav-link.active .offer {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray) !important;
}
.pricing-table-style-07 .nav-tabs .nav-item .nav-link.active .icon {
  border-color: rgb(255, 255, 255) !important;
}
.pricing-table-style-07 .nav-tabs .nav-item .nav-link.active .offer {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray) !important;
}
/* Pricing table style 08 */
.pricing-table-style-08 .nav-tabs > li.nav-item > a.active {
  color: var(--dark-gray);
  background-color: transparent;
}
.pricing-table-style-08 .nav-tabs > li.nav-item > a.active:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Pricing table style 09 */
/* Pricing table style 10 */
/* Pricing table style 11 */
/* Pricing table style 12 */
/* Pricing table style 13 */
/* Process step style 01 */
/* Process step style 02 */
/* Process step style 03 */
/* Process step style 04 */
/* Process step style 05 */
/* Process step style 07 */
/* Process step style 08 */
/* Process step style 09 */
/* Process step style 10 */
/* Process step style 11 */
/* Progress bar */
.progress {
  position: relative;
  overflow: visible;
}
.progress .progress-bar {
  width: 0px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
}
/* Progress bar style 01 */
/* Progress bar style 02 */
/* Progress bar style 03 */
/* Progress bar style 04 */
/* Review style 03 */
.review-style-03 .slider-review-image-thumbs .swiper-slide:not(.swiper-slide-thumb-active) img {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.review-style-03 .slider-review-image-thumbs .swiper-slide-thumb-active img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border: 6px solid #ffffff;
}
.review-style-03 .slider-review-image-thumbs .swiper-slide {
  cursor: pointer;
}
/* Review style 08 */
.swiper-fade .review-style-08.swiper-slide {
  opacity: 0 !important;
}
.swiper-fade .review-style-08.swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
/* Rotate box */
/* Rotate box style 01 */
/* Rotate box style 02 */
/* Services box style 01 */
/* Services box style 02 */
/* Services box style 05 */
/* Services box style 06 */
/* Services box style 07 */
/* Sliding box zoom effect */
/* Sliding box fade effect */
@keyframes fade {
  0% {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
/* Sliding box right effect */
/* Sliding box */
.sliding-box * {
  will-change: transform;
}
.sliding-box .sliding-box-item {
  margin-left: 15px;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  position: relative;
  -webkit-transition: width 0.7s;
  transition: width 0.7s;
}
.sliding-box .sliding-box-item .sliding-box-content {
  top: 0;
  height: 100%;
  position: absolute;
}
/* Sliding box style 01 */
.sliding-box-style-01 .sliding-box-item.active .sliding-box-content:after {
  opacity: 1;
}
/* Sliding box style 02 */
.sliding-box-style-02 .sliding-box-item.active .sliding-box-img {
  border-radius: 4px 0 0 4px;
}
.sliding-box-style-02 .sliding-box-item.active .sliding-box-content {
  border-radius: 0 4px 4px 0;
}
.sliding-box-style-02 .sliding-box-item.active .content-hover {
  animation: fade 1s;
}
/* Sliding box style 03 */
.sliding-box-style-03.active .overlay {
  opacity: 0;
  visibility: hidden;
}
.sliding-box-style-03.active .overlay-contnet {
  opacity: 0;
  visibility: hidden;
}
/* Social media icon */
.elements-social .email:hover {
  color: #7d7d7d;
}
.elements-social .facebook:hover {
  color: #3b5998;
}
.elements-social .github:hover {
  color: #4078c0;
}
.elements-social .google:hover {
  color: #dc4a38;
}
.elements-social .instagram:hover {
  color: #FE1F49;
}
.elements-social .paypal:hover {
  color: #003087;
}
.elements-social .pinterest:hover {
  color: #CB2027;
}
.elements-social .print:hover {
  color: #222222;
}
.elements-social .sms:hover {
  color: #ffbd00;
}
.elements-social .twitter:hover {
  color: #00aced;
}
.elements-social .vimeo:hover {
  color: #1ab7ea;
}
.elements-social .whatsapp:hover {
  color: #25d366;
}
.elements-social .youtube:hover {
  color: #ff0000;
}
.elements-social ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.elements-social ul li {
  display: inline-block;
}
.elements-social ul li:first-child {
  margin-left: 0 !important;
}
.elements-social ul li:last-child {
  margin-right: 0 !important;
}
.elements-social ul li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
[class^=social-icon-] ul, [class*=" social-icon-"] ul {
  list-style: none;
}
/*  Social icon dark and light */
.elements-social .light li a {
  color: var(--white);
}
.elements-social .dark li a {
  color: var(--dark-gray);
}
/* Social icon style 01 */
/* Social icon style 03 */
/* Social icon style 04 */
/* Social icon style 05 */
/* Social icon style 06 */
/* Social icon style 07 */
/* Social icon style 08 */
/* Social icon style 09 */
/* Social icon style 10 */
.social-icon-style-10 ul li a {
  color: var(--dark-gray);
}
.social-icon-style-10 ul li a:hover {
  color: var(--base-color) !important;
}
/* Social text style 01 */
/* Subcribe style 01 */
/* Subcribe style 02 */
.newsletter-style-02 .btn:active {
  border-color: transparent;
}
/* Subcribe style 03 */
.newsletter-style-03 .btn:active {
  border-color: transparent;
}
/* Subcribe style 04 */
/* Tab */
.nav-tabs > li.nav-item {
  display: inline-block;
  float: none;
  margin: 0;
  padding: 0 17px;
}
/* Tab style 03 */
.tab-style-03 .nav-tabs .nav-link.active, .tab-style-03 .nav-tabs .nav-link.show {
  color: var(--dark-gray);
  background-color: var(--white);
}
/* Tab style 02 */
.tab-style-02 .nav-tabs > li.nav-item > a.nav-link.active {
  color: var(--dark-gray);
  border-bottom: 2px solid;
  background: transparent;
}
.tab-style-02 .nav-tabs > li.nav-item > a.nav-link.active i {
  color: var(--base-color);
}
/* Tab style 03 */
.tab-style-01 .nav-tabs .nav-link.show, .tab-style-01 .nav-tabs .nav-link.active {
  color: var(--dark-gray);
  background-color: var(--white);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
/* Tab style 04 */
.tab-style-04 .nav-tabs .nav-item {
  padding: 0 35px;
}
.tab-style-04 .nav-tabs .nav-item .nav-link {
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  color: var(--medium-gray);
}
.tab-style-04 .nav-tabs .nav-item .nav-link .tab-border {
  width: 100%;
  height: 2px;
  display: block;
  -wekit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.tab-style-04 .nav-tabs .nav-item .nav-link.active, .tab-style-04 .nav-tabs .nav-item .nav-link.show, .tab-style-04 .nav-tabs .nav-item .nav-link:hover {
  color: var(--dark-gray);
}
.tab-style-04 .nav-tabs .nav-item .nav-link.active .tab-border, .tab-style-04 .nav-tabs .nav-item .nav-link.show .tab-border, .tab-style-04 .nav-tabs .nav-item .nav-link:hover .tab-border {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Tab style 05 */
 .tab-style-05 .nav-tabs .nav-item .nav-link.show, .tab-style-05 .nav-tabs .nav-item .nav-link.active {
  background: var(--white);
  color: var(--base-color);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
 .tab-style-05 .nav-tabs .nav-item .nav-link.show i, .tab-style-05 .nav-tabs .nav-item .nav-link.active i {
  color: var(--base-color);
}
 .tab-style-05 .nav-tabs .nav-item .nav-link.show span, .tab-style-05 .nav-tabs .nav-item .nav-link.active span {
  color: var(--base-color);
}
/* Tab style 06 */
.tab-style-06 .nav-tabs > li.nav-item > a.nav-link.active {
  color: #fff !important;
}
.tab-style-06 .nav-tabs > li.nav-item > a.nav-link.active + .tab-bg-active {
  opacity: 1;
}
.tab-style-06 .tab-bg-active {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  opacity: 0;
}
/* Tab style 07 */
 .tab-style-07 .nav-tabs .nav-item .nav-link.show, .tab-style-07 .nav-tabs .nav-item .nav-link.active {
  color: var(--white);
  isolation: inherit;
}
 .tab-style-07 .nav-tabs .nav-item .nav-link.show span, .tab-style-07 .nav-tabs .nav-item .nav-link.active span {
  color: var(--white);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
 .tab-style-07 .nav-tabs .nav-item .nav-link.show .number-box, .tab-style-07 .nav-tabs .nav-item .nav-link.active .number-box {
  opacity: 1;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  transition: opacity 0.4s, transform 0.4s;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
 .tab-style-07 .nav-tabs .nav-item .nav-link.show .bg-hover, .tab-style-07 .nav-tabs .nav-item .nav-link.active .bg-hover {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Tab style 08 */
.tab-style-08 ul .nav-item .nav-link.active, .tab-style-08 ul .nav-item .nav-link.show {
  border: 0;
  color: var(--base-color);
}
.tab-style-08 ul .nav-item .nav-link.active .tab-border, .tab-style-08 ul .nav-item .nav-link.show .tab-border {
  -wekit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.tab-style-08 ul.active-tab-border-bottom .nav-item .tab-border {
  bottom: 0;
  top: auto;
}
/* Team style 01 */
.team-style-01 figure figcaption {
  position: absolute;
  bottom: -1px;
}
/* Team style 02 */
/* Team style 04 */
/* Team style 05 */
/* Team style 08 */
/* Team style 09 */
.team-style-09 .nav-tabs .nav-link.active {
  border-bottom: 1px solid var(--dark-gray);
}
/* Team style 10 */
/* Testimonial style 01 */
/* Testimonial style 04 */
.testimonials-style-04.swiper-horizontal-3d.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}
.testimonials-style-04.swiper-horizontal-3d.swiper-pagination-bottom .swiper-wrapper {
  margin-bottom: 0;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide {
  filter: grayscale(100%);
  opacity: 0;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide.swiper-slide-prev, .testimonials-style-04.swiper-horizontal-3d .swiper-slide.swiper-slide-next {
  opacity: 0.7;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide.swiper-slide-active {
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.17);
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide img {
  opacity: 0;
}
.testimonials-style-04.swiper-horizontal-3d.swiper {
  width: 100%;
  padding-bottom: 60px;
}
.testimonials-style-04.swiper-horizontal-3d.swiper-3d .swiper-slide-shadow-left, .testimonials-style-04.swiper-horizontal-3d.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.testimonials-style-04.swiper-horizontal-3d .swiper-slide-active img {
  opacity: 1;
}
/* Testimonial style 05 */
/* Testimonial style 12 */
.testimonials-style-12 .swiper-button-next-nav {
  right: -8px;
}
.testimonials-style-12 .swiper-button-next-nav:hover {
  opacity: 1;
}
.testimonials-style-12 .swiper-button-previous-nav {
  left: -8px;
}
.testimonials-style-12 .swiper-button-previous-nav:hover {
  opacity: 1;
}
/* Testimonial style 13  */
.testimonials-style-13 .swiper-slide {
  opacity: 0.1;
}
.testimonials-style-13 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.testimonials-style-13 .swiper-slide.swiper-slide-next {
  opacity: 0.4;
}
/* ===================================
   14. Blog
====================================== */
/* Blog grid */
/* Blog classic */
/* Blog only text */
/* Blog metro */
/* Blog masonry */
/* Blog simple */
/* Blog date */
/* Blog side image */
/* Blog modern */
/* Blog standard */
/* Blog comment */
/* Pagination style 01 */
.pagination-style-01 .page-item .page-link {
  border: 0;
  padding: 0 2px;
  margin: 0 7px;
  background: 0 0;
  color: var(--medium-gray);
  min-width: 45px;
  font-size: inherit;
  text-align: center;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  line-height: 45px;
  min-height: 45px;
}
.pagination-style-01 .page-item .page-link i {
  line-height: 40px;
}
.pagination-style-01 .page-item .page-link:hover {
  background: var(--white);
  color: var(--dark-gray);
  box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
.pagination-style-01 .page-item .page-link:focus {
  box-shadow: none;
}
.pagination-style-01 .page-item.active .page-link {
  background: var(--dark-gray);
  color: var(--white);
  box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
.pagination-style-01 .page-item:first-child .page-link, .pagination-style-01 .page-item:last-child .page-link {
  background: transparent;
  box-shadow: none !important;
}
.pagination-style-01.light .page-item:first-child .page-link, .pagination-style-01.light .page-item:last-child .page-link {
  background: transparent;
  box-shadow: none !important;
}
.pagination-style-01.light .page-item:first-child .page-link:hover, .pagination-style-01.light .page-item:last-child .page-link:hover {
  color: var(--white);
}
/* Blog clean */
/* ===================================
   15. Portfolio
====================================== */
/* Portfolio grid */
.grid-item .portfolio-image img {
  width: 100%;
}
/* Portfolio filter */
.portfolio-filter li {
  padding: 0 25px;
}
.portfolio-filter li:first-child {
  padding-left: 0;
}
.portfolio-filter li:last-child {
  padding-right: 0;
}
.portfolio-filter li a {
  color: var(--medium-gray);
  border-bottom: 2px solid transparent;
}
.portfolio-filter li:hover a, .portfolio-filter li:focus a, .portfolio-filter li.active a {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
}
 .portfolio-filter.filter-btn li a.active {
  background-color: var(--white);
  color: var(--dark-gray);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.portfolio-filter.filter-btn li.active a {
  background-color: var(--white);
  color: var(--dark-gray);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
/* Portfolio classic */
/* Portfolio boxed */
/* Mousetip */
.mousetip-wrapper .caption {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}
.mousetip-wrapper:hover .caption {
  opacity: 1;
  visibility: visible;
  display: block;
}
/* Portfolio transform */
/* Portfolio creative */
/* Portfolio simple */
/* Portfolio modern */
/* Portfolio attractive */
.portfolio-attractive .portfolio-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 9999;
  cursor: pointer;
}
.portfolio-attractive .portfolio-box {
  position: relative;
}
.portfolio-attractive .portfolio-box .portfolio-image img {
  -webkit-transition: all 500ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 500ms cubic-bezier(0.37, 0, 0.63, 1);
}
.portfolio-attractive .portfolio-box .portfolio-hover .icon-box {
  margin-top: 0px;
  transform-style: inherit;
}
.portfolio-attractive .grid-item:hover .portfolio-hover {
  opacity: 1;
}
.portfolio-attractive .grid-item:hover .portfolio-hover .icon-box {
  margin-top: -10px;
}
.portfolio-attractive .grid-item:hover .portfolio-image img {
  opacity: 0.3;
}
.portfolio-attractive .grid-item:hover .move-bottom-top-self span,
.portfolio-attractive .grid-item:hover .move-top-bottom-self span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* Portfolio simple */
/* Portfolio clean */
/* Portfolio clean */
/* Portfolio and gallery translate animation */
.portfolio-box, .gallery-box {
  overflow: hidden;
  will-change: transform;
}
.portfolio-box .portfolio-image, .gallery-box .portfolio-image {
  position: relative;
  overflow: hidden;
}
/* Portfolio pagination */
/* Grid loading */
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.grid-loading {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
  transition: all 0s ease-in-out !important;
  -webkit-transition: all 0s ease-in-out !important;
  z-index: 99;
}
.grid-loading::after {
  background: none;
  content: "" !important;
  position: absolute;
  top: 100px !important;
  left: calc(50% - 25px) !important;
  width: 50px !important;
  height: 50px !important;
  opacity: 1 !important;
  right: inherit !important;
  z-index: 9;
  text-align: center;
  border: 3px solid rgba(23, 23, 23, 0.2);
  border-top-color: rgba(23, 23, 23, 0.7);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}
.grid-loading:before {
  content: "";
  position: absolute;
  right: 2px;
  top: 1px;
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  border-radius: inherit;
  z-index: 1;
}
.grid-loading .grid-item {
  visibility: hidden;
}
.grid-loading li .grid-item {
  overflow: hidden;
  opacity: 0;
}
/* Portfolio minimal */
.sticky-image-distortion-wrapper {
  position: static;
  display: flex;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.sticky-image-distortion-wrapper .svg-wrapper {
  position: fixed;
  right: 55px;
  height: 100%;
  top: 0;
  width: 50%;
  z-index: -1;
}
.sticky-image-distortion-wrapper .menu {
  width: 50%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 100px 0 100px 100px;
}
.sticky-image-distortion-wrapper .menu::-webkit-scrollbar {
  display: none;
}
.sticky-image-distortion-wrapper .menu .menu__link {
  display: flex;
  align-items: center;
  width: 100%;
}
.sticky-image-distortion-wrapper .menu .menu__link svg {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.sticky-image-distortion-wrapper .menu .menu__link.active svg {
  opacity: 1;
  visibility: visible;
}
.sticky-image-distortion-wrapper .menu .menu__link.active .sticky-image-title a {
  padding-left: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.sticky-image-distortion-wrapper .menu .menu__link.active .sticky-image-title .title {
  opacity: 0.25;
  left: 95px;
}
.sticky-image-distortion-wrapper .menu .menu__link.active .sticky-category {
  opacity: 1;
  color: var(--dark-gray);
  left: 25px;
}
/* Horizontal portfolio */
.threeD-letter-menu {
  position: relative;
  min-height: 100vh;
}
.threeD-letter-menu .menu-item .hover-reveal {
  position: fixed;
  z-index: 1;
  width: 420px;
  height: 420px;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform-origin: 100% 0%;
  will-change: transform, filter;
  border-radius: 100%;
}
.threeD-letter-menu .menu-item .hover-reveal .hover-reveal__inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
}
.threeD-letter-menu .menu-item .hover-reveal .hover-reveal__img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  will-change: transform;
  border-radius: 100%;
}
.threeD-letter-menu .menu-item .menu-item-text {
  position: relative;
  display: inline-block;
}
.threeD-letter-menu .menu-item .menu-item-text .word {
  overflow: hidden;
  line-height: 120%;
}
.threeD-letter-menu .menu-item .menu-item-text .words .char {
  transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.threeD-letter-menu .menu-item .menu-item-text .clone {
  position: absolute;
  top: 0;
  left: 0;
}
.threeD-letter-menu .menu-item .menu-item-text .clone .char {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  opacity: 0;
}
.threeD-letter-menu .menu-item .menu-item-text:hover .clone .char {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.threeD-letter-menu .menu-item .menu-item-text:hover .words:not(.clone) .char {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}
/* ===================================
   16. Shop
====================================== */
/* Categories style 01 */
/* Categories style 02 */
.categories-style-02 {
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.categories-style-02 .categories-box {
  position: relative;
}
.categories-style-02:hover {
  transform: translate3d(0, -8px, 0);
}
/* Categories style 03 */
/* Shop boxed */
.shop-boxed {
  margin-left: -10px;
  margin-right: -10px;
}
.shop-boxed .shop-box {
  border: 6px solid #fff;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.shop-boxed .shop-box .shop-image {
  overflow: hidden;
}
.shop-boxed .shop-box .shop-image a {
  display: block;
  overflow: hidden;
}
.shop-boxed .shop-box .shop-image .product-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-boxed .shop-box .shop-image .shop-hover {
  position: absolute;
  bottom: 0px;
  width: 100%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.shop-boxed .shop-box .shop-image .shop-hover a {
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
}
.shop-boxed .shop-box .shop-footer del {
  margin-right: 8px;
}
.shop-boxed .shop-box:hover {
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  border: 6px solid #fff;
}
.shop-boxed .shop-box:hover .shop-image .product-overlay {
  opacity: 1;
}
.shop-boxed .shop-box:hover .shop-image .shop-hover {
  bottom: 25px;
}
.shop-boxed .shop-box:hover .shop-image .shop-hover a {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}
.shop-boxed .shop-box:hover .shop-image .shop-hover a:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.shop-boxed .shop-box:hover .shop-image .shop-hover a:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.shop-boxed .shop-box:hover .shop-image .shop-hover a:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
/* Shop modern */
.shop-modern {
  margin-left: -15px;
  margin-right: -15px;
}
.shop-modern .grid-item .shop-box .shop-image {
  overflow: hidden;
}
.shop-modern .grid-item .shop-box .shop-image img {
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-modern .grid-item .shop-box .shop-image .shop-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover {
  position: absolute;
  top: 20px;
  width: auto;
  right: 12px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul {
  padding: 0;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li {
  display: block;
  width: auto;
  margin: 0 0 8px;
  padding: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li:nth-child(1) {
  -webkit-transition-delay: 25ms;
  transition-delay: 25ms;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li:nth-child(2) {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li:nth-child(3) {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li :nth-child(4) {
  -webkit-transition-delay: 1ms;
  transition-delay: 1ms;
}
.shop-modern .grid-item .shop-box .shop-image .shop-hover ul li a:hover {
  background-color: var(--base-color);
}
.shop-modern .grid-item .shop-box .shop-image .shop-buttons-wrap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  text-align: center;
}
.shop-modern .grid-item .shop-box .shop-image .shop-buttons-wrap .btn {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.shop-modern .grid-item .shop-box .shop-image .shop-buttons-wrap .btn.btn-large {
  padding: 8px 20px;
}
.shop-modern .grid-item .shop-box .shop-footer del {
  margin-right: 8px;
}
.shop-modern .grid-item .shop-box:hover .shop-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.shop-modern .grid-item .shop-box:hover .shop-image .shop-buttons-wrap .btn {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.shop-modern .grid-item .shop-box:hover .shop-image .shop-overlay {
  opacity: 1;
}
.shop-modern .grid-item .shop-box:hover .shop-image .shop-hover {
  opacity: 1;
  top: 20px;
}
.shop-modern .grid-item .shop-box:hover .shop-image .shop-hover ul li {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
/* Shop sidebar */
.shop-sidebar .shop-filter {
  padding: 0;
  margin: 0;
  list-style: none;
}
.shop-sidebar .shop-filter li {
  position: relative;
  margin-bottom: 2px;
  padding: 0 25px;
}
.shop-sidebar .shop-filter li a {
  display: block;
}
.shop-sidebar .shop-filter li a:hover .product-cb {
  border-color: var(--dark-gray);
}
.shop-sidebar .shop-filter li a:hover .product-cb:after {
  opacity: 1;
}
.shop-sidebar .shop-filter li .product-cb {
  width: 16px;
  height: 16px;
  border: 1px solid var(--medium-gray);
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 8px;
}
.shop-sidebar .shop-filter li .product-cb:after {
  width: 8px;
  height: 8px;
  background-color: var(--dark-gray);
  border-radius: 100%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.shop-sidebar .shop-filter li .item-qty {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--very-light-gray);
  border-radius: 100%;
  height: 30px;
  width: 30px;
  font-size: 11px;
  text-align: center;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 30px;
}
.shop-sidebar .shop-filter li:last-child {
  margin-bottom: 0;
}
/*.shop-sidebar .shop-filter.color-filter li .product-cb {
  border: 0;
}*/
.shop-sidebar .shop-filter.color-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .shop-filter.fabric-filter li .product-cb {
  line-height: 0;
  overflow: hidden;
  border: 0;
}
.shop-sidebar .shop-filter.fabric-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .shop-filter.rating-filter li {
  padding-left: 0;
}
.shop-sidebar .shop-filter.tag-cloud a {
  padding: 5px 10px;
}
/* Toolbar wrapper */
/* Shop lable */
.shop-image {
  position: relative;
}
.shop-image .lable {
  padding: 0 8px;
  position: absolute;
  left: 17px;
  top: 17px;
  color: var(--white);
  font-size: 9px;
  line-height: 21px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.shop-image .lable.new {
  background-color: var(--green);
}
.shop-image .lable.hot {
  background-color: var(--red);
}
/* Product detail */
.product-image-thumb .swiper-slide {
  cursor: pointer;
  border: 1px solid transparent;
}
.product-image-thumb .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--light-gray);
}
/* Single product thumb vertical */
.single-product-thumb .slider-vertical {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

/*.single-product-thumb .slider-vertical .swiper-slide {
  height: auto !important;
  cursor: pointer;
}*/
.product-image-slider img {
  cursor: crosshair;
}
/* Shop color */
.shop-color {
  list-style: none;
  padding: 0;
  display: flex;
}
.shop-color li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.shop-color li > input[type=radio] + label {
  display: flex;
}
.shop-color li > input[type=radio] + label span {
    height: 30px;
    width: 30px;
    border-radius: 100%;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}
.shop-color li input[type=radio]:checked + label span:after {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--white);
    height: 30px;
    width: 30px;
    border: 1px solid var(--white);
    border-radius: 100%;
    text-align: center;
    content: "";
    font-weight: 900;
}
/* Shop size */
.shop-size {
  list-style: none;
  padding: 0;
  display: flex;
}
.shop-size li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.shop-size li > input[type=radio] + label {
  display: flex;
}
.shop-size li > input[type=radio] + label span {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--extra-medium-gray);
  text-align: center;
  font-size: 14px;
  line-height: normal;
  color: var(--dark-gray);
  font-weight: 500;
}
.shop-size li input[type=radio]:checked + label span:after {
    position: absolute;
    /* top: -1px; */
    /* left: -1px; */
    height: 30px;
    width: 30px;
    /* border: 1px solid var(--dark-gray); */
    border-radius: 100%;
    text-align: center;
    content: "";
}
/* Shop quantity  */
.quantity {
  display: inline-block;
  position: relative;
}
.quantity button {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: -9px 0 0 0;
  font-size: 22px;
  line-height: 18px;
  position: absolute;
  left: 15px;
  top: 50%;
  color: var(--dark-gray);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.quantity button.qty-plus {
  right: 15px;
  left: auto;
}
.quantity .qty-text {
  width: 115px;
  height: 54px;
  border: 1px solid var(--extra-medium-gray);
  border-radius: 5px;
  text-align: center;
  color: var(--dark-gray);
}
.btn-cart.btn.btn-switch-text.btn-extra-large > span {
  padding: 13px 15px;
}
.wishlist {
  height: 54px;
  width: 54px;
}
/* Cart */
.cart-products th {
  border-top: 0;
  border-bottom: 1px solid var(--extra-medium-gray) !important;
  padding: 15px 9px;
  font-weight: normal;
  text-transform: capitalize;
  color: var(--dark-gray);
}
.cart-products td {
  vertical-align: middle;
  border-bottom: 1px solid var(--extra-medium-gray);
  border-top: 0;
  padding: 25px 10px;
  color: var(--medium-gray);
}
.cart-products .product-remove {
  width: 25px;
}
.cart-products .product-thumbnail {
  width: 100px;
}
.cart-products .quantity button {
  color: var(--medium-gray);
}
.cart-products .quantity .qty-text {
  color: var(--medium-gray);
  height: 42px;
  width: 100px;
}
.coupon-code-panel {
  position: relative;
}
.coupon-code-panel:before {
  content: "\e8bf";
  font-family: feather;
  position: absolute;
  left: 20px;
  z-index: 2;
  line-height: 50px;
}
.coupon-code-panel input {
  margin: 0;
  border: none;
  border: 1px dashed var(--extra-medium-gray);
  padding: 8px 70px 9px 45px;
  width: 100%;
  position: relative;
  font-size: 14px;
}
.coupon-code-panel .apply-coupon-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--dark-gray);
  line-height: 30px;
  letter-spacing: 0;
}
.coupon-code-panel .apply-coupon-btn:active {
  border-color: transparent;
}
.total-price-table th, .total-price-table td {
  border-bottom: 1px solid #e4e4e4;
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: top;
}
.total-price-table .total-amount th, .total-price-table .total-amount td {
  border-bottom: 0;
}
/* Checkout */
.your-order-table .product td {
  padding-top: 15px;
  padding-bottom: 15px;
  vertical-align: middle;
}
.your-order-box .terms-condition .box:before {
  background-color: var(--white);
}
/* Minicart */
.header-cart-icon .header-cart .cart-item-list {
    border-radius: 6px;
    padding: 10px 15px 15px;
    min-width: 300px;
}
.header-cart-icon .header-cart .cart-item-list .cart-item {
  padding: 15px 0;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .close {
  right: 0;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
  font-size: 15px;
  line-height: 22px;
}
.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail .item-ammount {
  font-size: 14px;
}
.header-cart-icon .header-cart .cart-item-list .cart-item:last-of-type {
  border-bottom: 0;
}
.header-cart-icon .header-cart .cart-item-list .cart-total {
  background-color: transparent;
  border: 0;
  padding-bottom: 0;
  padding-top: 10px;
}
.header-cart-icon .header-cart .cart-item-list .cart-total .btn.btn-large {
  font-size: 14px;
  padding: 11px 20px;
  border-width: 1px;
}
/* Shop category style 02 */
.shop-category-02 .category-box {
  overflow: hidden;
  position: relative;
}
.shop-category-02 .category-box .category-title {
  padding: 0 15px;
  width: 100%;
}
.shop-category-02 .category-box img {
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-category-02 .category-box .category-hover-content {
  position: absolute;
  left: 20px;
  top: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.shop-category-02 .category-box .category-hover-content a {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.shop-category-02 .category-box .category-hover-content a:hover {
  color: var(--dark-gray);
}
.shop-category-02 .category-box .category-hover-content .title {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.shop-category-02 .category-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.6;
}
.shop-category-02 .category-box:hover .category-hover-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.shop-category-02 .category-box:hover .category-hover-content .title {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.shop-category-02 .category-box:hover .category-hover-content a {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
/* ===================================
   17. Footer
====================================== */
footer {
  padding-top: 110px;
  padding-bottom: 110px;
}
footer .footer-logo img {
  max-height: 45px;
}
footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
footer ul li {
  margin-bottom: 5px;
}
 footer .elements-social.social-icon-style-02 li {
  margin: 0 15px 0 0;
}
 footer .elements-social.social-icon-style-02 li a {
  width: auto;
  height: auto;
}
footer .nav-link {
  color: var(--medium-gray);
  padding: 0.5rem 1rem;
}
/* Footer dark  */
.footer-dark {
  color: var(--aluminium-grey);
}
.footer-dark p, .footer-dark a {
  color: var(--aluminium-grey);
}
.footer-dark a:hover {
  color: var(--base-color);
}
/* Footer light */
/* Footer navbar */
/* Footer sticky */
/* Landing page footer */
button.btn.login_otp {
    text-align: right;
    display: block;
    margin-left: auto;
    margin-top: 20px;
}
.fixed_cart_height{
    height: 435px;
    overflow-y: scroll;
}
.categories-style-02 .categories-box {
    position: relative;
    height: 295px;
}
section.half-section {
    padding-top: 20px;
    padding-bottom: 20px;
}
.shop-page-products li.grid-item {
    width: 23%;
    display: inline-block;
    position: relative !important;
    margin-right: 10px;
    margin-bottom: 20px;
}
ul.shop-modern.shop-wrapper.shop-page-products {
    height: auto !important;
}
img.cat-img-f {
    width: 100%;
    height: auto;
}
#tab-address h3.card-title {
    font-size: 20px;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}
#tab-address .card-body p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#tab-address button.custom-btn-Address:hover {
    color: #000;
}
#tab-address button.custom-btn-Address {
    margin-bottom: 10px;
}
.shop-sidebar .shop-filter li {
    cursor: pointer;
}
.add-to-wishlist {
    cursor: pointer;
}
.liked i {
    color: #ef1037;
    cursor: pointer;
}
span.whishlist-count {
    position: absolute;
    top: -7px;
    right: -11px;
    width: 17px;
    height: 17px;
    font-weight: 600;
    text-align: center;
    font-size: 10px;
    line-height: 18px;
    background-color: var(--dark-gray);
    color: var(--white);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5;
}

.whishlist {
    margin-right: 11px;
}

.ssimple-dropdown i {
    font-size: 14px;
    margin-left: 3px;
    margin-top: 3px;
}

.ssimple-dropdown a {
    font-size: 15px;
    margin-left: 10px;
    line-height: 30px;
}
/*.ssimple-full {
    margin-left: 14px;
}*/
  .product_details_para  {
    margin-bottom: 25px;
    margin-top: 10px;
    font-size: 10px;
}

.showAddressForm {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
}

a.btn.btn-outline-primary.btn-rounded {
    cursor: pointer;
}
/*.showAddressForm {
    background: #f1f1f1 !important;
    width: 100%;
    padding: 20px 5px;
    border: 1px dotted;
    border-radius: 5px !important;
    color: #333 !important;
}*/
.ssimple-dropdown ul li {
    display: block;
    line-height: 20px;
    border-bottom: 1px solid #ccc;
    padding: 5px 5px 5px 5px;
}

.ssimple-dropdown ul.dropdown-menu {
    padding: 0;
}

.ssimple-dropdown ul.dropdown-menu {
    padding: 0;
    margin: 0;
}

a.nav-link.active {
    background: #333 !important;
}

.nav-dashboard a.nav-link {
    background: #ef1037;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 5px;
}
div#tab-address h2 {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
}


.btn-outline-primary-2 {
    background: var(--dark-gray);
    color: #fff;
    border-radius: 4px;
    padding: 15px 40px;
    margin-top: 20px;
}

h5.text-end.total_price {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.address-dt-all p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 24px;
}
ul.action-btns {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.address-dt-all h4 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 24px;
}
.address-item.address_page {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.address-item.address_page input {
    width: 30px;
}
ul.action-btns li a {
    color: #ef1037;
    cursor: pointer;
}
.Address-type {
    position: relative;
}
.Address-type i{
    position: absolute;
    right: 42px;
    top: 60%;
}
.mr-b {
    margin-bottom: 15px;
}
input.coupon-input {
    padding: 0;
    border: none;
}
input.coupon-input {
    padding: 10px 10px;
    height: auto;
    line-height: 1;
    margin: 0;
    border: 1px dashed #333;
    color: #000;
    font-size: 16px;
    width: 100%;
}
.btn.apply-coupon-btn {
    background: #ef1037;
    color: #fff;
    padding: 7px 35px;
    font-size: 16px;
}
.modal-content-area-in {
    margin-bottom: 25px;
}
.CouponList-text-po {
    display: flex;
}
/*.mfp-close-btn-in .mfp-close {
    color: #333;
    position: absolute;
    top: 0;
    right: 0;
}*/
p.coupon-text {
    font-size: 16px;
    text-align: left;
    margin-bottom: 5px;
    display: block;
}
#tab a.nav-link.active {
    background: transparent !important;
}
        
        .order-card {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: box-shadow 0.2s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .order-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .order-id {
            font-weight: 600;
            color: #007bff;
            font-size: 14px;
        }
        
        .product-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .product-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .product-name {
            font-weight: 600;
            color: #333;
            font-size: 14px;
            margin-bottom: 4px;
        }
        
        .variation-attributes {
            color: #666;
            font-size: 11px;
            margin-bottom: 4px;
        }
        
        .quantity {
            color: #888;
            font-size: 12px;
        }
        
        .status {
            font-weight: 500;
            font-size: 13px;
        }
        
        .status.delivered {
            color: #28a745;
        }
        
        .status.pending {
            color: #ffc107;
        }
        
        .status.completed {
            color: #28a745;
        }
        
        .total_price {
            color: #333;
            font-size: 14px;
            font-weight: 600;
            text-align: right;
            margin-top: 8px;
        }
.filter_selected{
      background-color: #232323;
    border-color: #232323;
        border: 3px solid #ff0000 !important;
}
#tab-address button.custom-btn-Address:hover {
    color: #000;
}
#tab-address button.custom-btn-Address {
    margin-bottom: 10px;
    border: 1px solid #ef1037;
    color: #000;
}
.shop-sidebar .shop-filter li {
    cursor: pointer;
}
#address-store-form .form-check-input:checked {
    background-color: #ef1037;
    border-color: #ef1037;
}
#address-store-form label.form-check-label {
    font-size: 15px;
    margin: 0;
    line-height: 1;
}
#address-store-form .form-check-input {
    padding: 0;
    margin-top: 9px;
}
#address-store-form button.btn.btn-primary.btn-block{
  background-color: #ef1037;
}


/* Main Navigation Container */

/* Showing Results Text */
nav p.text-sm {
    font-size: 14px;
    color: #374151;
    line-height: 1.25rem;
}

nav p.text-sm .font-medium {
    font-weight: 600;
    color: #111827;
}

/* Pagination Button Group */
.relative.z-0.inline-flex {
    display: inline-flex;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

/* All Pagination Buttons */
nav a.relative.inline-flex,
nav span.relative.inline-flex {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    margin-left: -1px;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}
button.close.close-modal-edit-address {
    background: transparent;
    border: none;
    font-size: 36px;
    color: #ef1037;
}
/* Icon Buttons (Prev/Next) */
nav a.px-2.py-2,
nav span.px-2.py-2 {
    padding: 8px;
}

/* First Button - Rounded Left */
nav .rounded-l-md {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-left: 0;
}

/* Last Button - Rounded Right */
nav .rounded-r-md {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Hover Effect */
nav a.relative.inline-flex:hover {
    color: #6b7280;
    background-color: #f9fafb;
    border-color: #9ca3af;
    z-index: 10;
}

/* Active/Current Page */
nav span[aria-current="page"] span {
    color: #6b7280;
    background-color: #f3f4f6;
    cursor: default;
    font-weight: 600;
    border-color: #d1d5db;
}

/* Disabled State */
nav span[aria-disabled="true"] span {
    color: #9ca3af;
    background-color: #ffffff;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Focus State */
nav a:focus {
    outline: none;
    z-index: 10;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: #93c5fd;
}

/* SVG Icons */
nav svg {
    width: 20px;
    height: 20px;
}

/* Mobile View */

/* Desktop View */
a.sidebar-filter-clear {
    float: right;
    color: #ef1037;
    font-size: 15px;
}
.common-class-page ul li {
    list-style: outside;
}
.common-class-page ul {
    margin: 0 !important;
    padding-left: 16px !important;
    list-style: outside !important;
}
.header-icon {
    gap: 20px;
}
.cat-l-n{
  display: none!important;
}
a.navbar-brand img.default-logo {
    height: 50px;
}
a.navbar-brand .alt-logo{
height: 50px;
}
i.fa-brands.fa-pinterest {
    background: #E60023;
    padding: 5px 10px;
}
a.facebook i {
    background: #3B5998;
    padding: 5px 10px;
    border-radius: 2px;
}
i.fa-brands.fa-instagram {
    background: #e56969;
    padding: 5px 10px;
    border-radius: 2px;
}
i.fa-brands.fa-pinterest {
    background: #E60023;
    padding: 5px 10px;
    border-radius: 2px;
}


/* Hamburger Menu Button */
.menu-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 10px;
    margin-right: 20px; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line-top,
.hamburger-line-middle,
.hamburger-line-bottom {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle-button.active-state .hamburger-line-top {
    transform: rotate(45deg) translate(8px, 8px);
    background: #fff;
}

.menu-toggle-button.active-state .hamburger-line-middle {
    opacity: 0;
}

.menu-toggle-button.active-state .hamburger-line-bottom {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #fff;
}

/* Navigation Panel */
.primary-navigation-panel {
    position: fixed;
    left: -320px;
    top: 0;
    width: 210px;
    height: 100vh;
    background: #000;
    transition: left 0.4s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.3);
    z-index: 1002;
}

.primary-navigation-panel.visible-state {
    left: 0;
}

/* Navigation List */
.navigation-list-container {
    list-style: none;
    padding: 80px 0 30px 0;
    margin: 0;
}

.navigation-item-wrapper {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navigation-link-element {
    display: block;
    padding: 20px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.navigation-link-element:hover {
    background: #4a5f6d;
    padding-left: 40px;
    color: #fff;
}

.navigation-link-element::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navigation-link-element:hover::before {
    transform: scaleY(1);
}

/* Overlay Backdrop */
.overlay-backdrop-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.overlay-backdrop-layer.active-overlay {
    opacity: 1;
    visibility: visible;
}

/* Close Button in Sidebar */

/* Prevent body scroll when menu is open */
body.menu-active {
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .menu-toggle-button {
        display: flex;
    }


/* OWL crasould temp css for fix height */
}



@media (min-width: 992px) {
    .menu-toggle-button {
        display: flex; /* Show in desktop as per requirement */
    }
}
/*.menu-logo {
    align-items: center;
    gap: 20px;
}*/
nav.navbar {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}
.header-with-b {
    background: #f1f1f1;
}
section.Recently-view h2 {
    margin-bottom: 30px !important;
}
.Related_pro  h2 {
    margin-bottom: 30px !important;
}
i.fa-brands.fa-youtube {
    background: #E60023;
    padding: 5px 10px;
    border-radius: 2px;
}

 .best-seller-swiper {
    padding: 0 50px;
}

.best-seller-swiper .swiper-button-next,
.best-seller-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.best-seller-swiper .swiper-button-next:after,
.best-seller-swiper .swiper-button-prev:after {
    font-size: 20px;
    color: #333;
}

.best-seller-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333;
    opacity: 0.3;
}

.best-seller-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--base-color, #333);
}

span.discount {
    color: red;
}
.header-with-topbar .icon-large {
    font-size: 30px;
}
.owl-theme .owl-dots .owl-dot span {
    background: #ef1037 !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: transparent !important;
    border: 1px solid #869791 !important;
}
.owl-theme .owl-nav [class*='owl-'] span {
    display: block;
    line-height: 1;
}
.owl-theme .owl-nav [class*='owl-'] {
    width: 35px;
    height: 35px;
    line-height: 35px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 20px !important;
    border: 0.1rem solid #ebebeb !important;
    background: #000 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
}
.owl-theme .owl-nav .owl-prev {
    left: -50px;
}
.owl-theme .owl-nav .owl-next {
    right: -50px;
}





/* Reset list styles for Owl Carousel */

.best-seller-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.best-seller-carousel .owl-nav button {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.best-seller-carousel .owl-nav button:hover {
    background: #f5f5f5 !important;
    transform: scale(1.1);
}

.best-seller-carousel .owl-nav .owl-prev {
    margin-left: -20px;
}

.best-seller-carousel .owl-nav .owl-next {
    margin-right: -20px;
}

.best-seller-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.best-seller-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.best-seller-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.best-seller-carousel .owl-dots .owl-dot.active span,
.best-seller-carousel .owl-dots .owl-dot:hover span {
    background: #333;
    transform: scale(1.2);
}

.owl-item.cloned {
    height: 300px;
}

ul.owl-carousel.best-seller-carousel.owl-theme.shop-modern.shop-wrapper.text-center.list-unstyled.owl-loaded.owl-drag.appear.anime-child.anime-complete {
    height: 100% !important;
}
header.header-with-topbar.sticky.sticky-active {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
    top:0;
}
section.half-section {
    margin-top: 0 !important;
}
.your-order-table td.product-price {
    text-align: right;
}
.dashboard {
    margin-top: 50px;
    margin-bottom: 50px;
}
ul#suggestions p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
}
.shop-footer a {
    font-size: 15px;
    font-weight: normal;
    line-height: 23px;
    display: -webkit-box !important;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}


.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #000;
    border-color: #000;
}

.page-link {
    color: #000;
}

   /* Product card image */
        .shop-image {
            position: relative;
            overflow: hidden;
        }

        .shop-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 3/4;
            display: block;
        }
/*.shop-image img {
    height: 300px;
    object-fit: cover;
}*/
section.Philosophy-sec {
    padding-bottom: 30px;
    background: #f1f1f1;
    padding-top: 50px !important;
    margin-bottom: 50px;
}
section.brand-v .row{
background: #f7f9fb;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #E60023;
}
section.brand-v {
    padding-top: 20px;
    padding-bottom: 60px;
}
section.prod-single-page {
    padding-top: 20px;
    padding-bottom: 0;
}
section#tab {
    padding-top: 30px;
    padding-bottom: 30px;
}
section.Recently-view {
    padding-top: 0;
    padding-bottom: 30px;
}
section.Related_pro {
    padding-top: 0;
    padding-bottom: 30px;
}
.header-with-b .container {
    width: 100%;
    max-width: 84%;
}
section.New-arrival-p {
    padding-top: 50px;
    padding-bottom: 0;
}
section.Best-seller {
     padding-top: 40px;
    padding-bottom: 60px;
}
section.p-categories {
    padding-top: 0;
    padding-bottom: 0;
}
.menu-logo {
    align-items: center;
}


/*.owl-nav.disabled,
.owl-dots.disabled {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}*/

.owl-nav button.disabled,
.owl-dot.disabled {
    opacity: 0.5 !important;
    pointer-events: auto !important;
}
.elements-social a:hover {
    color: #fff !important;
}


        .fbt-container {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .fbt-heading {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-gray);
    line-height: 1;
    text-decoration: underline;
}
        .fbt-product-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .fbt-product-item:last-of-type {
            border-bottom: none;
        }

        .fbt-checkbox-wrapper {
            display: flex;
            align-items: center;
            padding-top: 30px;
        }

        .fbt-checkbox {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #333;
        }

        .fbt-product-image {
            width: 70px;
            height: 90px;
            object-fit: cover;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background-color: #f9f9f9;
        }

        .fbt-product-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .fbt-product-name {
            font-size: 13px;
            color: #333;
            line-height: 1.4;
            font-weight: 400;
        }

        .fbt-product-price {
            font-size: 14px;
            font-weight: 600;
            color: #000;
            margin: 2px 0;
        }

        .fbt-total-section {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 2px solid #e0e0e0;
        }

        .fbt-total-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
        }

        .fbt-total-label {
            color: #333;
        }

        .fbt-total-amount {
            color: #000;
            font-size: 18px;
        }

        .fbt-add-to-cart-btn {
            width: 100%;
            padding: 14px;
            background-color: #000;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .fbt-add-to-cart-btn:hover {
            background-color: #333;
        }

        .fbt-add-to-cart-btn:active {
            background-color: #555;
        }
        .payment-img img {
    width: 90px;
    border: 1px solid #f1f1f1;
    padding: 2px;
    background: #fff;
}

.New-arrival-p li.grid-item {
    position: relative !important;
}

.New-arrival-p ul.owl-carousel {
    height: 100% !important;
}

/* Unique class names start with my-accordion-... */
.my-accordion-item + .my-accordion-item { margin-top: 0.5rem; }

/* Header (the clickable button) */
.my-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#232323; /* dark navy */
  color: #fff;
  border: 0;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.my-accordion-header:focus { outline: 3px solid rgba(59,130,246,0.35); outline-offset: 2px; }

/* Title and icon */

/* Panel (collapsible area) */
.my-accordion-panel {
  overflow: hidden;
  max-height: 0; /* collapsed */
  transition: max-height 0.35s ease;
  background: #f8fafc;
  border-radius: 0 0 8px 8px;
  margin-top: 0.25rem;
}

/* Inner padding for content */
.my-accordion-panel-inner {
  padding: 1rem;
  color: #0f172a;
  line-height: 1.5;
}

/* When expanded (JS toggles classes and aria-expanded) */
.my-accordion-item[aria-expanded="true"] .my-accordion-panel { 
  /* max-height will be set dynamically in JS for smooth animation */
}

/* Optional small responsive tweak */
@media (max-width: 480px) {
  .my-accordion-header { padding: 0.65rem 0.75rem; font-size: 0.95rem; }
  .my-accordion-panel-inner { padding: 0.85rem; }
}
.sub-menu-l{
    position: absolute;
    left: 100%;
    top: 50%;
    display:none;
    width: 200px;
    max-height: 300px;
    overflow-y: scroll;
}
.sub-menu-l::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 8px;
  background-color: #F5F5F5;
}

.sub-menu-l::-webkit-scrollbar
{
  width: 8px;
  background-color: #fff;
}

.sub-menu-l::-webkit-scrollbar-thumb
{
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #D62929;
}
.navigation-list-container .navigation-item-wrapper:hover .sub-menu-l {
    display: block;
    position: absolute;
    width: 660px;
    background: #000;
    color: #fff;
    padding: 0;
    top: 0;
}

.sub-menu-l li a {
    display: block;
    padding: 20px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s 
ease;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}




  /* Override the absolute positioning and use CSS Grid instead */
                            /* .shop-modern.shop-wrapper {
                                display: grid !important;
                                height: auto !important;
                                position: relative !important;
                            }

                        
                            .shop-modern.grid-4col {
                                grid-template-columns: repeat(4, 1fr);
                                gap: 0px;
                            }

                           
                            .shop-modern .grid-sizer {
                                display: none;
                            }

                           
                            .shop-modern .grid-item {
                                position: relative !important;
                                left: auto !important;
                                top: auto !important;
                                width: 100% !important;
                                height: auto !important;
                            }

                          
                            @media (max-width: 1199px) {
                                .shop-modern.xl-grid-3col {
                                    grid-template-columns: repeat(3, 1fr) !important;
                                }

                                .shop-modern .grid-item {
                                    left: auto !important;
                                    top: auto !important;
                                }
                            }

                           
                            @media (max-width: 767px) {
                                .shop-modern.sm-grid-2col {
                                    grid-template-columns: repeat(2, 1fr) !important;
                                    gap: 20px;
                                }

                               
                                .shop-modern .shop-buttons-wrap {
                                    opacity: 1 !important;
                                    visibility: visible !important;
                                }

                                .shop-modern .shop-buttons-wrap .btn {
                                    padding: 8px 15px;
                                    font-size: 13px;
                                }

                                .shop-modern .shop-buttons-wrap .button-text {
                                    display: none;
                                }

                                .shop-modern .shop-buttons-wrap .icon-feather-shopping-bag::after {
                                    content: "Add";
                                    margin-left: 5px;
                                    font-size: 12px;
                                }
                            }

                           
                            @media (max-width: 575px) {
                                .shop-modern.xs-grid-1col {
                                    grid-template-columns: 1fr !important;
                                    gap: 20px;
                                }

                               /
                                .shop-modern .shop-hover a {
                                    width: 45px !important;
                                    height: 45px !important;
                                }
                            }

                            
                            .shop-modern .shop-image img {
                                width: 100%;
                                height: 300px;
                                aspect-ratio: 1/1;
                                object-fit: cover;
                            }

                           
                            .shop-modern .shop-box {
                                width: 100%;
                                margin-bottom: 10px;
                            }

                           
                            @media (max-width: 991px) {

                              
                                .shop-modern .shop-hover {
                                    opacity: 1 !important;
                                    visibility: visible !important;
                                }

                                
                                .shop-modern .shop-footer .fs-19 {
                                    font-size: 16px !important;
                                }

                                .shop-modern .shop-footer .fs-16 {
                                    font-size: 14px !important;
                                }

                                
                                .col-lg-9.ps-5 {
                                    padding-left: 15px !important;
                                    padding-right: 15px !important;
                                }
                            }

                           
                            .shop-modern+.w-100.d-flex {
                                margin-top: 40px;
                            }

                            @media (max-width: 767px) {
                                .shop-modern+.w-100.d-flex {
                                    margin-top: 30px;
                                }
                            } */


                                    /* Video wrapper styles */
        .video-wrapper {
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .main-slider-video {
            max-height: 600px;
            object-fit: contain;
        }

        /* Thumbnail styles */
        .thumb-slide {
            cursor: pointer;
            position: relative;
            background: #f5f5f5;
        }

        .video-thumb-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .video-thumb-placeholder {
            width: 100%;
            height: 100%;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-thumb-placeholder img {
            object-fit: cover;
        }

        .video-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            pointer-events: none;
        }

        /* Fix for Swiper with videos */
        .swiper-slide video {
            display: block !important;
            visibility: visible !important;
        }

        .product-image-thumb .swiper-slide {
            height: auto !important;
        }

        /* Ensure vertical thumbnails display correctly */
        .slider-vertical .swiper-wrapper {
            flex-direction: column;
        }

        .slider-vertical .swiper-slide {
            height: 80px !important;
            width: 100% !important;
        }

        @media (max-width: 767px) {
            .slider-vertical .swiper-wrapper {
                flex-direction: row;
            }

            .slider-vertical .swiper-slide {
                width: 80px !important;
                height: 80px !important;
            }
        }

        .coupon_code {
    border: 1px solid #ef1037;
    padding: 5px 5px;
    border-radius: 5px;
}
.cart-products td.product-name {
    width: 200px;
}

span.text-red-500.text-sm {
    color: red;
}
.baneer-img-r{
  width: 100%;
}
a.navbar-brand {
    outline: none;
    border: none;
}
a.navbar-brand:focus {
    outline: none !important;
    border: none;
    box-shadow:none;
}
.navigation-item-wrapper {
    position: relative;
}
img:hover,
img:focus {
  outline: none;
}
.header-with-b {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

a.sidebar-filter-clear {
    float: right;
    color: #ef1037;
    font-size: 15px;
    cursor: pointer;
}


    /* Shipment progress component */
    .shipment-progress-wrapper {
        margin-top: 12px;
    }

    /* container */

    /* track (background bar) */

    /* fill (the colored portion) */

    /* steps container - horizontally arrange */

    /* each step */

    /* marker (dot or check) */

    /* small dot shown when pending */

    /* check when completed */

    /* completed state */

    /* active state (current step) */
    .shipment-progress .progress-step.active .step-marker {
        border-color: #4facfe;
        box-shadow: 0 4px 12px rgba(79, 172, 254, 0.16);
        transform: translateY(-6px) scale(1.05);
    }

    /* step label */

    .shipment-progress-wrapper.mt-3 {
        padding: 25px;
    }

    /* responsive: smaller markers on narrow screens */


a.ml-2.badge.badge-success {
    color: #333;
    display: block;
    padding: 0;
    white-space: inherit;
    text-align: left;
}

a.btn:hover {
    color: #333;
}
.badge-warning {
    color: red;
}

span.badge.badge-info {
    color: #333;
    padding-left: 0;
}


    /* Unique / namespaced classes start with qun- to avoid collisions */
    .qun-container {
        --card-bg: #ffffff;
        --muted: #6c757d;
        --accent: #2b8cff;
        --success: #28a745;
        --danger: #dc3545;
        --track-bg: #eef3fb;
        --fill: linear-gradient(90deg, rgba(43, 140, 255, 1) 0%, rgba(40, 167, 69, 1) 100%);
        font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    /* Card tweaks */
    .qun-card {
        background: var(--card-bg);
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(33, 37, 41, 0.06);
        border: 1px solid rgba(33, 37, 41, 0.04);
    }

    .qun-card .card-body {
        padding: 1.1rem 1.25rem;
    }

    .qun-title {
        font-weight: 600;
        color: #111827;
        margin-bottom: .6rem;
        letter-spacing: -.2px;
    }

    /* Badges */
    .qun-badge {
        display: inline-block;
        padding: .28rem .55rem;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 600;
    }

    .qun-badge--info {
        background: #eef7ff;
        color: #0b63d6;
        border: 1px solid rgba(11, 99, 214, 0.06);
    }

    .qun-badge--primary {
        background: #e7f1ff;
        color: #2066d3;
    }

    .qun-badge--warning {
        background: #fff7e6;
        color: #8a5a00;
    }

    .qun-badge--success {
        background: #eafaf0;
        color: var(--success);
    }

    .qun-badge--danger {
        background: #fff1f0;
        color: var(--danger);
    }

    /* Shipment summary small text */
    .qun-small-muted {
        color: var(--muted);
        font-size: .86rem;
    }

    /* Delivery card */
    .qun-delivery-name {
        font-size: 1rem;
        font-weight: 700;
        color: #0f1724;
    }

    .qun-delivery-address {
        color: #4b5563;
        font-size: .92rem;
    }

    /* Scan list item */
    .qun-scan-item {
        border-radius: 8px;
        padding: .75rem;
        transition: background .12s ease;
    }

    .qun-scan-item+.qun-scan-item {
        margin-top: .5rem;
    }

    .qun-scan-item:hover {
        background: #fbfdff;
    }

    /* Progress bar */
    .qun-progress {
        padding: 0.6rem 0;
    }

    .qun-progress .qun-track {
        height: 8px;
        background: var(--track-bg);
        border-radius: 999px;
        position: relative;
        overflow: hidden;
    }

    .qun-progress .qun-fill {
        height: 100%;
        background: var(--fill);
        background-size: 200% 100%;
        transition: width .6s cubic-bezier(.2, .9, .2, 1);
    }

    .qun-progress .qun-steps {
        margin-top: .6rem;
        display: flex;
        gap: .25rem;
        justify-content: space-between;
        align-items: center;
    }

    .qun-step-marker {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 14px;
    }

    .qun-step--completed .qun-step-marker {
        background: var(--success);
        color: #fff;
    }

    .qun-step--active .qun-step-marker {
        background: #fff;
        border: 2px solid var(--accent);
        color: var(--accent);
        box-shadow: 0 4px 10px rgba(43, 140, 255, .12);
    }

    .qun-step--pending .qun-step-marker {
        background: #fff;
        border: 1px solid rgba(33, 37, 41, 0.06);
        color: #9ca3af;
    }

    .qun-step-label {
        font-size: .78rem;
        color: var(--muted);
        margin-top: .4rem;
    }

    /* Responsive tweaks */
    @media (max-width: 767px) {
        .qun-container .d-flex.align-items-center {
            flex-direction: column;
            gap: .6rem;
            align-items: flex-start;
        }

        .qun-progress .qun-steps {
            gap: .5rem;
        }
    }

    /* Small utilities */
    .qun-muted {
        color: var(--muted);
    }

    .qun-link {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
    }

    .qun-link:hover {
        text-decoration: underline;
    }

    /* Raw JSON pre block */
    .qun-rawpre {
        background: #0f1724;
        color: #e6eef8;
        font-size: .82rem;
        border-radius: 8px;
        padding: .75rem;
        overflow: auto;
    }

    /* Keep button styles subtle */
    .qun-btn {
        border-radius: 8px;
        padding: .35rem .6rem;
    }

    a.ml-2.badge.badge-success.qun-link {
        color: #333;
        display: block;
        padding: 0;
        white-space: inherit;
        text-align: left;
    }

    /* Subcategory strip (minimal, non-intrusive) */
  .subcat-strip {
    display: block;
    gap: inherit;
    flex-wrap: wrap;
    padding: 5px 2px;
    margin-bottom: 10px;
    background: transparent;
    
}


/*.subcat-strip-2{
  height: 80px;
}*/
  .subcat-box {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid #ececec;
    background: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
    transition: all .12s ease-in-out;
}

  .subcat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .subcat-box .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111827;
    display:inline-block;
  }

  .subcat-box.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
  }

  .subcat-strip .clear-subcats {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #e11d48;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
  }

  /* Responsive adjustments so it fits above your grid nicely */
  @media (max-width: 992px) {
    .subcat-strip { padding-left: 4px; padding-right: 4px; gap:8px }
    .subcat-box { padding: 7px 10px; font-size: 13px; }
  }

  @media (max-width: 576px) {
    .subcat-strip { gap: 6px; }
    .subcat-box { padding: 6px 8px; font-size: 12px; }
  }


  ul.sub-menu-l li {
    display: inline-block;
}
/* Highlight Coupon Container */
.coupon-highlight-box {
    padding: 12px 20px;
    border: 2px dashed #c0262e;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    background: #fff5f5;
    transition: 0.3s;
    cursor: pointer;
}

/* Hover Glow Effect */
.coupon-highlight-box:hover {
    background: #ffe9e9;
    box-shadow: 0 0 10px rgba(192, 38, 46, 0.4);
    transform: translateY(-2px);
}

/* Icon Style */
.coupon-highlight-box i {
    font-size: 20px;
    color: #c0262e !important;
    margin-right: 10px;
}

/* Text Styling */

/* Small wiggle animation on hover */

/* Wiggle animation */


 
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider,"");
}

footer.footer-dark {
    background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%) !important;
}

.footer-logo {
    background: rgb(255 255 255);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}

.bg-nero-grey, .bg-nero-grey:focus {
    background-color: #000000 !important;
}

              /* product-share styles (add to your site css) */
    .product-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    }

    .share-label {
    font-size: 0.95rem;
    color: #333;
    }

    .share-buttons {
    display: flex;
    gap: 0.375rem;
    }

    .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 36px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    }

    .share-btn:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
    }

    .share-toast {
    margin-left: 0.75rem;
    padding: 6px 10px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 0.9rem;
    }

    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    }


    /* Container + layout */
.product-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  position: relative;            /* for positioning the toast absolutely inside */
  flex-wrap: wrap;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* left area */
.ps-left {
  display:flex;
  align-items:center;
  gap:0.5rem;
  min-width: 100px;
  flex: 0 0 auto;
}

/* label */
.share-label { font-weight:600; font-size:0.95rem; color:#333; }

/* buttons container */
.share-buttons {
  display:flex;
  gap:0.5rem;
  align-items:center;
  flex-wrap:wrap;
  margin-left: 4px;
}

/* each button */
.share-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.45rem 0.6rem;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(34,34,34,0.08);
  background:linear-gradient(180deg,#ffffff,#fbfbfb);
  box-shadow:0 1px 2px rgba(16,24,40,0.03);
  cursor:pointer;
  text-decoration:none;
  color:#1f2937;
  transition: transform .12s ease, box-shadow .12s ease;
  font-size:0.92rem;

  white-space: nowrap;          /* KEEP icon+text on same line */
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 40px;
  box-sizing: border-box;
}

/* icon sizing */
.share-btn i { font-size:16px; width:16px; text-align:center; line-height:1; }

/* primary share button */
.share-primary {
  background: linear-gradient(90deg,#111827 0%,#0f172a 100%);
  color:#fff;
  border: none;
  padding: 0.5rem 0.7rem;
  box-shadow: 0 6px 18px rgba(15,23,42,0.12);
}

/* hover */
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(16,24,40,0.08); }

/* .btn-text: show on larger screens, hide on small devices to avoid overflow */
.btn-text { display: inline-block; font-weight:600; font-size:0.9rem; margin-left: 0.25rem; }

/* Toast: absolutely positioned so it doesn't push layout */
.share-toast {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.45rem 0.7rem;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(17,24,39,0.12);
  display: none;
  z-index: 30;
  white-space: nowrap;
  transition: opacity 160ms ease;
  opacity: 0;
}

/* small-screen adjustments */
@media (max-width: 640px) {
  .product-share { gap: 0.5rem; padding: 0.4rem 0; }
  .btn-text { display: none; }            /* show only icons on small screens */
  .share-btn { padding: 0.35rem; height:36px; border-radius:8px; font-size:0.86rem; }
  .ps-left { min-width: auto; }
  .share-toast {
    right: 0.25rem;
    top: calc(100% + 6px);       /* show toast under the share block on small screens */
    transform: none;
    display: none;
  }
  .share-buttons { gap: 0.35rem; }
}

/* larger screens: show button text for copy */
@media (min-width: 900px) {
  .btn-text { display:inline-block; }
  .share-toast { top: 50%; right: 0.5rem; transform: translateY(-50%); }
}


del {
    font-weight: 100;
    color: grey;
}

.price.lh-22.fs-16 {
    font-weight: bold;
    color: black;
}



/* OWL slider navigator */

.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
}

.owl-nav .owl-prev {
    left: -10px; /* adjust as you like */
}

.owl-nav .owl-next {
    right: -10px; /* adjust as you like */
}


.shop-color li input[type=radio]:checked + label span {
    position: relative;
    display: inline-block;
}

/* Outer border (always visible) */
.shop-color li input[type=radio]:checked + label span:before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 1px solid #dc2626;
    border-radius: 50%;
    pointer-events: none;
}
/* Inner white ring */


.shop-color li input[type=radio] + label span:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border: 1px solid #000;
    border-radius: 100%;
    content: "";
}



#toast-container>div {
    /* color: #000000 !important; */
}


      .toast-success {
    background-color: #ef0c36 !important;
}
.btn:hover {
    background-color: #000 !important;
    color: #fff !important;
}
.badge::before {
    right: 100%;
}
.badge-overlay {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease;
}
.badge-overlay .badge {
    background: #fa7901;
}
.badge-overlay .top-left {
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: top right;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}
.badge-overlay .badge::before {
    right: 100%;
}
.badge::after {
    left: 100%;
}
.badge-overlay .badge::before, .badge::after {
    content: "";
    position: absolute;
    top: 0;
    margin: 0 -1px;
    width: 100%;
    height: 100%;
    background: inherit;
    min-width: 55px;
}
.badge-overlay .badge::before, .badge::after {
    content: "";
    position: absolute;
    top: 0;
    margin: 0 -1px;
    width: 100%;
    height: 100%;
    background: inherit;
    min-width: 55px;
}
.badge-overlay .badge {
    margin: 0;
    padding: 0;
    color: white;
    padding: 8px 8px;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #ed1b24;
    border-radius: 0;
}
footer.footer-dark {
    padding-top: 30px;
    padding-bottom: 0;
}
.footer-dark, .footer-dark p, .footer-dark a {
    font-size: 14px;
    line-height: 30px;
}
.f-b-r-new {
    margin-top: 30px;
    border: none !important;
    margin-bottom: 30px;
}
.copy-r-sec p {
    margin: 0;
    padding: 5px 0;
}
.banner-subtitle {
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.p-categories .banner-title {
    margin-bottom: 2rem;
}
h2.banner-title.text-white a {
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6rem;
}
.banner-link {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    min-width: 140px;
    color: #ed1b24;
    border: 0.2rem solid #ed1b24;
    padding-top: 10px;
    padding-bottom: 10px;
}
.banner {
    display: block;
    position: relative;
}

.banner-overlay > a:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(51, 51, 51, 0.25);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.banner-content {
    display: inline-block;
    position: absolute;
    padding-top: .4rem;
    left: 2rem;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.p-categories .banner-content {
    padding-top: 0;
}
span.badge-n {
    padding: 0 10px;
}
.bg-danger {
    color: #fff;
}
.shop-page-f {
  padding-bottom: 40px;
}
#modal-popup2 {
  border: 2px dashed #c0262e;
}
 #privacy-policy {
  font-family: inherit!important;
}
ul.shop-modern.shop-wrapper.shop-page-products {
    height: auto !important;
    padding: 0;
}

.tab-content>.tab-pane p {
    margin-bottom: 10px !important;
    font-family: inherit !important;
    font-size: 15px;
    line-height: 23px !important;
    color: var(--dark-gray) !important;
}
.tab-content>.tab-pane p b span {
    font-family: inherit !important;
    font-weight: normal;
    line-height: 22px;
    font-size: 15px !important;
    color: var(--dark-gray) !important;
}
.tab-content {
    margin-top: 20px;
}

.category-banner {
    position: relative;
    width: 100%;
    min-height: 390px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.category-banner--women {
    background-image: url('/assets/category-banner/women.jpg');
}

.category-banner--men {
    background-image: url('/assets/category-banner/men.jpg');
}

.category-banner__circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.category-banner__circle--top-right {
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
}

.category-banner__circle--bottom-left {
    bottom: -80px;
    left: -40px;
    width: 320px;
    height: 320px;
}

.category-banner__accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e8b86d, transparent);
}