
/*
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;
  --light-red: #feedec;
  --green: #2ebb79;
  --crusoe-green: #d39121;
  --yellow: #ffea23;
  --dark-gray: #232323;
  --medium-gray: #717580;
  --extra-medium-gray: #e4e4e4;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --light-medium-gray: #eaeaeb;
  --charcoal-blue: #202329;
  --slate-blue: #262b35;
  --medium-slate-blue: #374162;
  --extra-medium-slate-blue: #23262d;
  --dark-slate-blue: #1f232c;
  --extra-dark-slate-blue: #121418;
  --extra-very-slate-blue: #161620;
  --tussock-yellow: #BC8947;
  --aluminium-grey:#80858F;
  --solitude-blue:#f0f4fd;
  --golden-yellow:#fd961e;
  --selago:#eaedff;
  --white-ice:#d8f5ef;
  --cornflower-blue:#445fed;
  --jade:#00AF6B;
  --orange: #ef991f;
  --majorelle-blue: #724ade;
  --light-majorelle-blue: #f2edfe;
  --spring-wood: #f9f6f3;
  --tropical-blue: #1ea3b1;
  --camarone: #20642b;
  --seal-brown: #0e0708;
  --Wasabi: #8ea63a;
}
/* ===================================
    03. Reset
====================================== */
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;
}
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;
  font-size: 1.2em;
}
.last-paragraph-no-margin p:last-of-type {
  margin-bottom: 0;
}
video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
 [class*=bi-], [class*=feather] {
  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, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  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: 2rem;
  line-height: 2.2rem;
}
h6 {
  font-size: 1.75rem;
  line-height: 1.95rem;
}
/* Font custom */
.hover-text {
  display: none;
}
b, strong {
  font-weight: 700;
}
.text-white-space-nowrap {
  white-space: nowrap;
}
.text-white-space-normal {
  white-space: normal;
}
.text-transform-none {
  text-transform: none !important;
}
.text-uppercase-inherit {
  text-transform: inherit !important;
}
.word-break-normal {
  word-break: normal;
}
.vertical-align-top {
  vertical-align: top;
}
/* Font size */
.fs-22 {
  font-size: 22px;
}
/* Line height */
.lh-0px {
  line-height: 0px;
}
.lh-10 {
  line-height: 10px;
}
.lh-11 {
  line-height: 11px;
}
.lh-12 {
  line-height: 12px;
}
.lh-13 {
  line-height: 13px;
}
.lh-14 {
  line-height: 14px;
}
.lh-15 {
  line-height: 15px;
}
.lh-16 {
  line-height: 16px;
}
.lh-18 {
  line-height: 18px;
}
.lh-19 {
  line-height: 19px;
}
.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-30 {
  line-height: 30px;
}
.lh-32 {
  line-height: 2rem;
}
.lh-34 {
  line-height: 2.125rem;
}
.lh-36 {
  line-height: 2.25rem;
}
.lh-38 {
  line-height: 2.375rem;
}
.lh-40 {
  line-height: 2.5rem;
}
.lh-42 {
  line-height: 2.625rem;
}
.lh-44 {
  line-height: 2.75rem;
}
.lh-46 {
  line-height: 2.875rem;
}
.lh-48 {
  line-height: 3rem;
}
.lh-50 {
  line-height: 3.125rem;
}
.lh-55 {
  line-height: 3.438rem;
}
.lh-60 {
  line-height: 3.75rem;
}
.lh-65 {
  line-height: 4.063rem;
}
.lh-70 {
  line-height: 4.375rem;
}
.lh-75 {
  line-height: 4.688rem;
}
.lh-80 {
  line-height: 5rem;
}
.lh-85 {
  line-height: 5.313rem;
}
.lh-90 {
  line-height: 5.625rem;
}
.lh-95 {
  line-height: 5.938rem;
}
.lh-100 {
  line-height: 6.25rem;
}
.lh-105 {
  line-height: 6.563rem;
}
.lh-110 {
  line-height: 6.875rem;
}
.lh-115 {
  line-height: 7.188rem;
}
.lh-120 {
  line-height: 7.5rem;
}
.lh-0 {
  line-height: 0;
}
.lh-normal {
  line-height: normal;
}
.lh-initial {
  line-height: initial;
}
.lh-inherit {
  line-height: inherit;
}
/* Text color */
.text-white, .btn-link.text-white, a.text-white-hover:hover {
  color: var(--white);
}
.text-base-color-hover:hover {
  color: var(--base-color) !important;
}
.text-base-color, .btn-link.text-base-color {
  color: var(--base-color);
}
.text-black, .btn-link.text-black, a.text-black-hover:hover {
  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, a.text-medium-gray-hover:hover {
  color: var(--medium-gray);
}
.text-extra-medium-gray, .btn-link.text-extra-medium-gray, a.text-extra-medium-gray-hover:hover {
  color: var(--extra-medium-gray);
}
.text-light-medium-gray, .btn-link.text-light-medium-gray, a.text-light-medium-gray:hover {
  color: var(--light-medium-gray);
}
.text-light-gray, .btn-link.text-light-gray, a.text-light-gray-hover:hover {
  color: var(--light-gray);
}
.text-very-light-gray, .btn-link.text-very-light-gray, a.text-very-light-gray-hover:hover {
  color: var(--very-light-gray);
}
.text-red, .btn-link.text-red, a.text-red-hover:hover {
  color: var(--red);
}
.text-green, .btn-link.text-green, a.text-green-hover:hover {
  color: var(--green);
}
.text-yellow, .btn-link.text-yellow, a.text-yellow-hover:hover {
  color: var(--yellow);
}
.text-golden-yellow, .btn-link.text-golden-yellow, a.text-golden-yellow-hover:hover {
  color: var(--golden-yellow);
}
.text-tussock-yellow, .btn-link.text-tussock-yellow, a.text-tussock-yellow-hover:hover {
  color: var(--tussock-yellow);
}
.text-cornflower-blue, .btn-link.text-cornflower-blue, a.text-cornflower-blue-hover:hover {
  color: var(--cornflower-blue);
}
.text-jade, .btn-link.text-jade, a.text-jade-hover:hover {
  color: var(--jade);
}
.text-majorelle-blue {
  color: var(--majorelle-blue);
}
.text-orange {
  color: var(--orange);
}
.text-crusoe-green {
  color: var(--crusoe-green);
}
.text-tropical-blue {
  color: var(--tropical-blue);
}
.text-camarone {
  color: var(--camarone);
}
.text-seal-brown {
  color: var(--seal-brown);
}
.text-Wasabi {
  color: var(--Wasabi);
}
/* Text gradient color */
.text-gradient-blue-magenta-orange, .text-gradient-light-gray-white, .text-gradient-light-purple-light-orange, .text-gradient-sky-blue-pink, .text-gradient-light-blue-light-turquoise, .text-gradient-fast-blue-purple-light-orange, .text-gradient-light-pink-light-purple, .text-gradient-fast-blue-purple, .text-gradient-pink-orange, .text-gradient-fast-pink-light-yellow, .text-gradient-purple-pink, .text-gradient-light-pink-light-orange {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-light-pink-light-orange {
  background-image: linear-gradient(to right, #ffafbd, #ffb3b4, #ffb7ac, #ffbda5, #ffc3a0);
}
.text-gradient-purple-pink {
  background-image: linear-gradient(to right, #8b14b1, #ab019e, #c00c8b, #cd267b, #d53d6e);
}
.text-gradient-fast-pink-light-yellow {
  background-image: linear-gradient(to right, #f7567f, #fe7177, #ff8a74, #ffa378, #ffba83);
}
.text-gradient-pink-orange {
  background-image: linear-gradient(to right, #de347f, #e73a70, #ed4461, #f05152, #ef5f43);
}
.text-gradient-fast-blue-purple {
  background-image: linear-gradient(to right, #2a46f4, #5f42f9, #833cfc, #a233fe, #bf25ff);
}
.text-gradient-light-pink-light-purple {
  background-image: linear-gradient(to right, #ed579b, #e855ad, #df57c0, #d15cd4, #bc63e8);
}
.text-gradient-fast-blue-purple-light-orange {
  background-image: linear-gradient(to right top, #183fb9, #4f41df, #ae2eb9, #ef3f59, #e9522d);
}
.text-gradient-light-blue-light-turquoise {
  background-image: linear-gradient(to right, #18cdbb, #22d2ae, #3cd69d, #57da89, #73dc73);
}
.text-gradient-sky-blue-pink {
  background-image: linear-gradient(to right, #556fff, #556fff, #e05fc4, #f767a6, #ff798e);
}
.text-gradient-light-purple-light-orange {
  background-image: linear-gradient(to right, #b783ff, #b783ff, #fa7cc1, #ff85a6, #ff9393);
}
.text-gradient-light-gray-white {
  background-image: linear-gradient(to bottom, #efefef, #efefef, #f7f7f7, #fdfdfc, #ffffff);
}
.text-gradient-blue-magenta-orange {
  background-image: linear-gradient(to right, #002fff, #ab00ff, #ff137d, #ff562f, #ee8502);
}
/* Text shadow */
.text-shadow-large {
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}
.text-shadow-extra-large {
  text-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}
.text-shadow-double-large {
  text-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
}
/* Text bottom line */
.text-decoration-line-bottom {
  border-bottom: 1px solid;
}
.text-decoration-line-bottom-medium {
  border-bottom: 2px solid;
}
.text-decoration-line-bottom-thick {
  border-bottom: 3px solid;
}
.text-decoration-line-through {
  text-decoration: line-through;
}
/* Text outline*/
.text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
}
/* Text stroke width */
.text-outline-width-1px {
  -webkit-text-stroke-width: 1px;
}
.text-outline-width-2px {
  -webkit-text-stroke-width: 2px;
}
.text-outline-width-3px {
  -webkit-text-stroke-width: 3px;
}
.text-outline-width-4px {
  -webkit-text-stroke-width: 4px;
}
.text-outline-width-5px {
  -webkit-text-stroke-width: 5px;
}
/* Text stroke color */
.text-outline-color-black {
  -webkit-text-stroke-color: var(--black);
}
.text-outline-color-base-color {
  -webkit-text-stroke-color: var(--base-color);
}
.text-outline-color-red {
  -webkit-text-stroke-color: var(--red);
}
.text-outline-color-dark-gray {
  -webkit-text-stroke-color: var(--dark-gray);
}
.text-outline-color-medium-gray {
  -webkit-text-stroke-color: var(--medium-gray);
}
.text-outline-color-extra-medium-gray {
  -webkit-text-stroke-color: var(--extra-medium-gray);
}
/* Letter spacing */
.ls-minus-1px {
  letter-spacing: -1px !important;
}
/* Icon size */
.icon-extra-double-large {
  font-size: 80px;
}
.icon-double-large {
  font-size: 60px;
}
.icon-extra-large {
  font-size: 50px;
}
.icon-large {
  font-size: 42px;
}
.icon-medium {
  font-size: 34px;
}
.icon-very-medium {
  font-size: 28px;
}
.icon-extra-medium {
  font-size: 24px;
}
.icon-small {
  font-size: 18px;
}
.icon-very-small {
  font-size: 14px;
}
/* ===================================
    05. General
====================================== */
/* Separator line */
/* Separator vertical line */
/* Separator line size */
/* Opacity */
.opacity-full-dark, .opacity-full, .opacity-medium, .opacity-extra-medium, .opacity-light, .opacity-very-light {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.opacity-very-light {
  opacity: 0.2;
}
.opacity-light {
  opacity: 0.3;
}
.opacity-extra-medium {
  opacity: 0.5;
}
.opacity-medium {
  opacity: 0.75;
}
.opacity-full {
  opacity: 0.8;
}
.opacity-full-dark {
  opacity: 0.9;
}
/* Position */
.absolute-top-center {
  left: 50%;
  top: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.absolute-bottom-center {
  left: 50%;
  bottom: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.absolute-bottom-left {
  left: 0;
  bottom: 0;
  position: absolute;
}
.absolute-bottom-right {
  right: 0;
  bottom: 0;
  position: absolute;
}
/* Vertical title center */
/* Skrollr */
/* Transform */
.transform-origin-right {
  transform-origin: right;
}
.transform-origin-left {
  transform-origin: left;
}
.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 */
/* 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 .separator-line-1px {
  background-color: var(--white) !important;
}
.sticky-wrap.sticky-highlight .social-icon-style-10 ul li a:hover {
  color: var(--white) !important;
}
.sticky-wrap-right {
  position: fixed;
  top: 50%;
  right: 110px;
  z-index: 1;
  -webkit-transform: rotate(-90deg) translate(50%, 100%);
  transform: rotate(-90deg) translate(50%, 100%);
  transform-origin: 100% 0%;
}
/* Overflow */
.overflow-visible {
  overflow: visible !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
/* Overlap section */
.overlap-section {
  position: relative;
}
.overlap-height {
  transition: 0.3s height;
}
/* Outside box */
.outside-box-top-15 {
  margin-top: -15vw;
}
.outside-box-top-18 {
  margin-top: -18vw;
}
/* CSS filter */
/* Box shadow */
 .box-shadow-hover:hover {
  -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-small, .box-shadow-small-hover:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 15px 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-medium, .box-shadow-medium-hover:hover {
  -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-medium-bottom, .box-shadow-medium-bottom-hover:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 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, .box-shadow-large-hover:hover {
  -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, .box-shadow-extra-large-hover:hover {
  -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, .box-shadow-double-large-hover:hover {
  -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-triple-large, .box-shadow-triple-large-hover:hover {
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  -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, .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-hover:hover, .box-shadow-large-hover:hover, .box-shadow-extra-large-hover:hover, .box-shadow-medium-hover:hover, .box-shadow-small-hover:hover, .box-shadow-double-large-hover:hover, .box-shadow-quadruple-large-hover:hover {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
.box-shadow-bottom {
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
}
/* 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;
}
:-ms-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
.placeholder-light::-webkit-input-placeholder {
  color: var(--white) !important;
  text-overflow: ellipsis;
}
.placeholder-light::-moz-placeholder {
  color: var(--white) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
.placeholder-light:-ms-input-placeholder {
  color: var(--white) !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 */
.time-icon {
  position: relative;
}
.time-icon input[type=time]::-webkit-inner-spin-button,
.time-icon input[type=time]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  opacity: 0;
  -moz-appearance: none;
  appearance: none;
}
.time-icon:after {
  content: "\e84d";
  font-family: feather !important;
  right: 28px;
  top: 50%;
  height: 34px;
  position: absolute;
  pointer-events: none;
  font-size: 22px;
  margin-top: -15px;
}
/* Input size */
.input-small {
  padding: 7px 15px;
  font-size: 12px;
}
.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 {
  display: flex;
  align-items: center;
  bottom: 0;
}
.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;
}
.slider-custom-image .slider-custom-image-pagination.slider-custom-image-pagination-top {
  top: 0;
  bottom: auto;
}
/* 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 .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 */
/* Swiper navigation style 02 */
/* Swiper navigation style 03 */
/* Swiper navigation style 04 */
/* Swiper navigation style 05 */
/* Swiper navigation style 06 */
/* Swiper navigation style 07 */
/* Swiper navigation style 08 */
/* Slider custom text */
.slider-custom-verticle-text > span {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.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-right {
  mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
}
.slider-shadow-left {
  mask-image: linear-gradient(to right, transparent 50%, #000000 80%, #000000 0%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, transparent 50%, #000000 80%, #000000 0%, transparent 0%);
}
.slider-shadow-left-right {
  mask-image: linear-gradient(to right, transparent 18%, #000000 22%, #000000 78%, transparent 82%);
  -webkit-mask-image: linear-gradient(to right, transparent 18%, #000000 22%, #000000 78%, transparent 82%);
}
.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 */
@-webkit-keyframes video-icon-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes video-icon-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.video-icon-box {
  z-index: 1;
}
.video-icon-box > span {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 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 */
@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 */
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* 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);
}
[data-parallax-liquid] .liquid-parallax {
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0px) scale(1.201);
  position: relative;
  top: 50px;
}
/* Masked image animation */
.masked-image {
  position: absolute;
  top: -100px;
  right: 0;
}
.masked-image svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.masked-image figure {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.masked-image img {
  width: 100%;
  height: auto;
  visibility: visible;
}
/* Shape image animation */
.shape-image-animation {
  position: absolute;
  bottom: 0;
  left: 0;
}
.shape-image-animation svg {
  height: 100%;
  width: 100%;
}
.shape-image-animation svg path {
  width: 100%;
}
/* 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 */
  .review-star-icon i {
    display: inline;
  }
}
@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 */
[data-top-bottom] {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
/* 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;
}
.stack-box .stack-item.stack-item-02 {
  z-index: 99;
}
.stack-box .stack-item.stack-item-03 {
  z-index: 9;
}
.stack-box .stack-item .stack-item-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  height: 100vh;
}
.transform-3d {
  transform: translate3d(0px, 0px, 100px);
}
/* 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 */
/* Father shadow */
.feather-shadow {
  mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
}
/* Text sliding line */
.text-sliding-line {
  display: inline-block;
  position: relative;
  padding: 0;
  z-index: 1;
  background-image: linear-gradient(135deg, transparent 45%, var(--white) 45%, var(--white) 55%, transparent 0);
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Sliding line */
.bg-sliding-line {
  background-image: linear-gradient(45deg, transparent 45%, var(--white) 45%, var(--white) 55%, transparent 0);
  background-size: 0.1em 0.1em;
}
/* Feature box slider */
/* 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-point {
  display: inline-block;
  width: 2px;
  position: absolute;
  background-color: var(--white);
  top: 0px;
  left: 0px;
}
/* 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 .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) */
@-moz-keyframes example1 {
  0% {
    -moz-transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
  }
}
@-webkit-keyframes example1 {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes example1 {
  0% {
    -moz-transform: translateX(100%); /* Firefox bug fix */
    -webkit-transform: translateX(100%); /* Firefox bug fix */
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%); /* Firefox bug fix */
    -webkit-transform: translateX(-100%); /* Firefox bug fix */
    transform: translateX(-100%);
  }
}
/* ===================================
    06. Background and border
====================================== */
/* Background color */
.bg-base-color {
  background-color: var(--base-color);
}
.bg-dark-gray,
.bg-dark-gray:focus {
  background-color: var(--dark-gray);
}
.bg-black {
  background-color: var(--black);
}
.bg-medium-gray {
  background-color: var(--medium-gray);
}
.bg-light-medium-gray {
  background-color: var(--light-medium-gray);
}
.bg-extra-medium-gray {
  background-color: var(--extra-medium-gray);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-very-light-gray {
  background-color: var(--very-light-gray);
}
.bg-red {
  background-color: var(--red);
}
.bg-light-red {
  background-color: var(--light-red);
}
.bg-green {
  background-color: var(--green);
}
.bg-crusoe-green {
  background-color: var(--crusoe-green);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-charcoal-blue {
  background-color: var(--charcoal-blue);
}
.bg-slate-blue {
  background-color: var(--slate-blue);
}
.bg-medium-slate-blue {
  background-color: var(--medium-slate-blue);
}
.bg-extra-medium-slate-blue {
  background-color: var(--extra-medium-slate-blue);
}
.bg-dark-slate-blue {
  background-color: var(--dark-slate-blue);
}
.bg-extra-dark-slate-blue {
  background-color: var(--extra-dark-slate-blue);
}
.bg-extra-very-slate-blue {
  background-color: var(--extra-very-slate-blue);
}
.bg-tussock-yellow {
  background-color: var(--tussock-yellow);
}
.bg-solitude-blue {
  background-color: var(--solitude-blue);
}
.bg-aluminium-grey {
  background-color: var(--aluminium-grey);
}
.bg-selago {
  background-color: var(--selago);
}
.bg-white-ice {
  background-color: var(--white-ice);
}
.bg-golden-yellow {
  background-color: var(--golden-yellow);
}
.bg-jade {
  background-color: var(--jade);
}
.bg-orange {
  background-color: var(--orange);
}
.bg-light-majorelle-blue {
  background-color: var(--light-majorelle-blue);
}
.bg-majorelle-blue {
  background-color: var(--majorelle-blue);
}
.bg-spring-wood {
  background-color: var(--spring-wood);
}
.bg-tropical-blue {
  background-color: var(--tropical-blue);
}
.bg-cornflower-blue {
  background-color: var(--cornflower-blue);
}
.bg-camarone {
  background-color: var(--camarone);
}
.bg-seal-brown {
  background-color: var(--seal-brown);
}
.bg-Wasabi {
  background-color: var(--Wasabi);
}
/* Gradient background color */
.bg-gradient-light-pink-light-orange {
  background-image: linear-gradient(to right top, #ffafbd, #ffb3b4, #ffb7ac, #ffbda5, #ffc3a0);
}
.bg-gradient-purple-pink {
  background-image: linear-gradient(to right top, #8b14b1, #ab019e, #c00c8b, #cd267b, #d53d6e);
}
.bg-gradient-fast-pink-light-yellow {
  background-image: linear-gradient(to right top, #f7567f, #fe7177, #ff8a74, #ffa378, #ffba83);
}
.bg-gradient-pink-orange {
  background-image: linear-gradient(to right top, #de347f, #e73a70, #ed4461, #f05152, #ef5f43);
}
.bg-gradient-fast-blue-purple {
  background-image: linear-gradient(to right top, #2a46f4, #5f42f9, #833cfc, #a233fe, #bf25ff);
}
.bg-gradient-light-pink-light-purple {
  background-image: linear-gradient(to right top, #ed579b, #e855ad, #df57c0, #d15cd4, #bc63e8);
}
.bg-gradient-purple-magento {
  background-image: linear-gradient(to right top, #5553e1, #a34dcc, #ce4fb5, #e75ca1, #f47291);
}
.bg-gradient-blue-green {
  background-image: linear-gradient(to right top, #18cdbb, #22d2ae, #3cd69d, #57da89, #73dc73);
}
.bg-gradient-light-purple-light-orange {
  background-image: linear-gradient(to right top, #b783ff, #e37be0, #fa7cc1, #ff85a6, #ff9393);
}
.bg-gradient-sky-blue-pink {
  background-image: linear-gradient(to right top, #5758df, #a553cb, #d055b5, #ea63a0, #f77991);
}
.bg-gradient-dark-gray-brown {
  background-image: linear-gradient(to right top, #0f130f, #1e1d15, #3d2f20, #4e3b27, #664a2f);
}
.bg-gradient-tan-geraldine {
  background-image: linear-gradient(to right top, #fb7f87, #fc8a82, #fb957f, #fa9f7f, #f7aa80);
}
.bg-gradient-very-light-gray {
  background-image: linear-gradient(to bottom, #f7f8f9, #f9fafb, #fbfbfc, #fdfdfd, #ffffff);
}
.bg-gradient-top-very-light-gray {
  background-image: linear-gradient(to top, #f7f7f7, #f7f7f7, #fcfafa, #fcfafa, #ffffff);
}
.bg-gradient-orange-transparent {
  background: linear-gradient(to right, rgb(233, 117, 34) 10%, rgba(255, 255, 255, 0) 95%);
}
.bg-gradient-blue-transparent {
  background: linear-gradient(to right, rgb(30, 163, 177) 10%, rgba(255, 255, 255, 0) 95%);
}
.bg-gradient-emerald-blue-emerald-green {
  background-image: linear-gradient(50deg, #09afea 0, #19e089 100%);
}
.bg-gradient-very-ghost-white {
  background-image: linear-gradient(to bottom, #f4f6ff, #f7f8ff, #fafaff, #fdfdff, #ffffff);
}
/* Transparent background color */
.bg-transparent {
  background-color: transparent;
}
.bg-gradient-fast-blue-purple-transparent {
  background-image: linear-gradient(to right top, rgb(42, 70, 244), rgba(95, 66, 249, 0.9), rgba(131, 60, 252, 0.9), rgba(162, 51, 254, 0.9), rgba(191, 37, 255, 0.9));
}
.bg-gradient-fast-pink-light-yellow-transparent {
  background-image: linear-gradient(to right top, rgba(247, 86, 127, 0.9), rgba(254, 113, 119, 0.9), rgba(255, 138, 116, 0.9), rgba(255, 163, 120, 0.9), rgba(255, 186, 131, 0.9));
}
.bg-gradient-sky-blue-pink-transparent {
  background-image: linear-gradient(to right top, rgba(87, 88, 223, 0.9), rgba(165, 83, 203, 0.9), rgba(208, 85, 181, 0.9), rgba(234, 99, 160, 0.9), rgba(247, 121, 145, 0.9));
}
.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%);
}
.bg-gradient-dark-transparent {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #141622), to(transparent));
  background: linear-gradient(to top, #141622 7%, transparent 100%);
}
.bg-gradient-dark-gray-left-transparent {
  background: -webkit-linear-gradient(right, rgba(24, 25, 28, 0.5), rgba(255, 255, 255, 0));
  background: linear-gradient(to right, rgba(24, 25, 28, 0.5), rgba(255, 255, 255, 0));
}
.bg-gradient-white-transparent {
  background: linear-gradient(to top, #ffffff 20%, rgba(255, 255, 255, 0) 80%);
}
.bg-gradient-white-dark-transparent {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #ffffff), to(transparent));
  background: linear-gradient(to top, #ffffff 30%, rgba(255, 255, 255, 0) 70%);
}
.bg-gradient-white-bottom-transparent {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 60%);
}
.bg-gradient-black-bottom-transparent {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.bg-gradient-solitude-blue-transparent {
  background: -webkit-linear-gradient(bottom, rgb(240, 244, 253), rgba(255, 255, 255, 0));
  background: linear-gradient(to top, rgb(240, 244, 253), rgba(255, 255, 255, 0));
}
.bg-gradient-extra-midium-gray-transparent {
  background: -webkit-gradient(left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(150%, rgba(20, 20, 20, 0.3)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(20, 20, 20, 0.3) 150%);
}
.bg-dark-gray-transparent {
  background-color: rgba(35, 35, 35, 0.8);
}
.bg-dark-gray-transparent-light {
  background-color: rgba(35, 35, 35, 0.2);
}
.bg-dark-gray-transparent-medium {
  background-color: rgba(35, 35, 35, 0.4);
}
.bg-medium-gray-transparent {
  background-color: rgba(111, 111, 111, 0.1);
}
.bg-light-gray-transparent {
  background-color: rgb(251, 251, 251);
}
.bg-medium-gray-transparent {
  background-color: rgba(136, 136, 136, 0.3);
}
.bg-black-transparent-light {
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-black-transparent-medium {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-white-transparent-extra-light,
.bg-white-transparent-extra-light:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-white-transparent-very-light {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white-transparent-light {
  background-color: rgba(255, 255, 255, 0.4);
}
.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.7);
}
/* Background image */
.background-size-inherit {
  background-size: inherit !important;
}
.background-attachment-inherit {
  background-attachment: inherit !important;
}
.background-position-left {
  background-position: left center !important;
}
.background-position-left-bottom {
  background-position: left bottom !important;
}
.background-position-left-center {
  background-position: left center !important;
}
.background-position-right {
  background-position: right center !important;
}
.background-position-right-top {
  background-position: right top !important;
}
.background-position-center-top {
  background-position: center top !important;
}
.background-position-left-top {
  background-position: left top !important;
}
.background-position-right-bottom {
  background-position: right bottom !important;
}
.background-position-center-bottom {
  background-position: center bottom 0px !important;
}
.background-repeat {
  background-repeat: repeat;
}
.background-no-repeat {
  background-repeat: no-repeat;
}
.background-no-repeat-y {
  background-repeat-y: no-repeat;
}
.background-position-center {
  background-position: center !important;
}
/* Background size */
.background-size-100 {
  background-size: 100% !important;
}
.background-size-auto-100 {
  background-size: auto 100% !important;
}
.background-size-contain {
  background-size: contain !important;
}
/* Border width */
.border-6 {
  border-width: 6px !important;
}
.border-7 {
  border-width: 7px !important;
}
.border-8 {
  border-width: 8px !important;
}
.border-9 {
  border-width: 9px !important;
}
.border-10 {
  border-width: 10px !important;
}
/* Border style */
.border-dotted {
  border-style: dotted !important;
}
.border-dashed {
  border-style: dashed !important;
}
.border-solid {
  border-style: solid !important;
}
.border-double {
  border-style: double !important;
}
.border-groove {
  border-style: groove !important;
}
.border-ridge {
  border-style: ridge !important;
}
.border-inset {
  border-style: inset !important;
}
.border-outset {
  border-style: outset !important;
}
.border-none {
  border-style: none !important;
}
.border-hidden {
  border-style: hidden !important;
}
/* Border color */
.border-color-base-color {
  border-color: var(--base-color) !important;
}
.border-color-white {
  border-color: var(--white) !important;
}
.border-color-dark-gray {
  border-color: var(--dark-gray) !important;
}
.border-color-medium-gray {
  border-color: var(--medium-gray) !important;
}
.border-color-light-gray {
  border-color: var(--light-gray) !important;
}
.border-color-very-light-gray {
  border-color: var(--very-light-gray) !important;
}
.border-color-light-medium-gray {
  border-color: var(--light-medium-gray) !important;
}
.border-color-extra-medium-gray {
  border-color: var(--extra-medium-gray) !important;
}
.border-color-yellow {
  border-color: var(--yellow) !important;
}
.border-color-orange {
  border-color: var(--orange) !important;
}
.border-color-red {
  border-color: var(--red) !important;
}
.border-color-transparent-dark-very-light {
  border-color: rgba(35, 35, 35, 0.1) !important;
}
.border-color-transparent-dark-light {
  border-color: rgba(35, 35, 35, 0.2) !important;
}
.border-color-transparent-white-very-light {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.border-color-transparent-white-light {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.border-color-transparent-white {
  border-color: rgba(255, 255, 255, 0.6) !important;
}
.border-color-transparent {
  border-color: transparent !important;
}
.border-color-transparent-on-hover:hover {
  border-color: transparent !important;
}
/* Gradient border color */
.border-gradient-light-pink-light-orange {
  border-image: linear-gradient(to right top, #ffafbd, #ffb3b4, #ffb7ac, #ffbda5, #ffc3a0);
  border-image-slice: 1;
}
.border-gradient-purple-pink {
  border-image: linear-gradient(to right, #8b14b1, #ab019e, #c00c8b, #cd267b, #d53d6e);
  border-image-slice: 1;
}
.border-gradient-fast-pink-light-yellow {
  border-image: linear-gradient(to right top, #f7567f, #fe7177, #ff8a74, #ffa378, #ffba83);
  border-image-slice: 1;
}
.border-gradient-pink-orange {
  border-image: linear-gradient(to right top, #de347f, #e73a70, #ed4461, #f05152, #ef5f43);
  border-image-slice: 1;
}
.border-gradient-fast-blue-purple {
  border-image: linear-gradient(to right top, #2a46f4, #5f42f9, #833cfc, #a233fe, #bf25ff);
  border-image-slice: 1;
}
.border-gradient-light-pink-light-purple {
  border-image: linear-gradient(to right top, #ed579b, #e855ad, #df57c0, #d15cd4, #bc63e8);
  border-image-slice: 1;
}
.border-gradient-light-green-light-perotgreen {
  border-image: linear-gradient(to right top, #5553e1, #a34dcc, #ce4fb5, #e75ca1, #f47291);
  border-image-slice: 1;
}
.border-gradient-sky-blue-pink {
  border-image: linear-gradient(to right top, #556fff, #556fff, #e05fc4, #f767a6, #ff798e);
  border-image-slice: 1;
}
/* Border radius */
.border-radius-0px {
  border-radius: 0 !important;
}
.border-radius-1px {
  border-radius: 1px !important;
}
.border-radius-2px {
  border-radius: 2px !important;
}
.border-radius-3px {
  border-radius: 3px !important;
}
.border-radius-4px {
  border-radius: 4px !important;
}
.border-radius-5px {
  border-radius: 5px !important;
}
.border-radius-6px {
  border-radius: 6px !important;
}
.border-radius-7px {
  border-radius: 7px !important;
}
.border-radius-8px {
  border-radius: 8px !important;
}
.border-radius-9px {
  border-radius: 9px !important;
}
.border-radius-10px {
  border-radius: 10px !important;
}
.border-radius-15px {
  border-radius: 15px !important;
}
.border-radius-18px {
  border-radius: 18px !important;
}
.border-radius-20px {
  border-radius: 20px !important;
}
.border-radius-22px {
  border-radius: 22px !important;
}
.border-radius-24px {
  border-radius: 24px !important;
}
.border-radius-26px {
  border-radius: 26px !important;
}
.border-radius-30px {
  border-radius: 30px !important;
}
.border-radius-40px {
  border-radius: 40px !important;
}
.border-radius-50px {
  border-radius: 50px !important;
}
.border-radius-100px {
  border-radius: 100px !important;
}
.border-radius-50 {
  border-radius: 50% !important;
}
.border-radius-100 {
  border-radius: 100% !important;
}
.no-border-radius {
  border-radius: 0 !important;
}
.border-radius-top-left {
  border-radius: 10px 0 0 10px !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-2px {
  width: 2px !important;
}
.w-3px {
  width: 3px !important;
}
.w-4px {
  width: 4px !important;
}
.w-5px {
  width: 5px !important;
}
.w-6px {
  width: 6px !important;
}
.w-7px {
  width: 7px !important;
}
.w-8px {
  width: 8px !important;
}
.w-9px {
  width: 9px !important;
}
.w-10px {
  width: 10px !important;
}
.w-15px {
  width: 15px !important;
}
.w-20px {
  width: 20px !important;
}
.w-25px {
  width: 25px !important;
}
.w-30px {
  width: 30px !important;
}
.w-35px {
  width: 35px !important;
}
.w-40px {
  width: 40px !important;
}
.w-45px {
  width: 45px !important;
}
.w-50px {
  width: 50px !important;
}
.w-55px {
  width: 55px !important;
}
.w-60px {
  width: 60px !important;
}
.w-65px {
  width: 65px !important;
}
.w-70px {
  width: 70px !important;
}
.w-75px {
  width: 75px !important;
}
.w-80px {
  width: 80px !important;
}
.w-85px {
  width: 85px !important;
}
.w-90px {
  width: 90px !important;
}
.w-95px {
  width: 95px !important;
}
.w-100px {
  width: 100px !important;
}
.w-110px {
  width: 110px !important;
}
.w-120px {
  width: 120px !important;
}
.w-130px {
  width: 130px !important;
}
.w-140px {
  width: 140px !important;
}
.w-150px {
  width: 150px !important;
}
.w-160px {
  width: 160px !important;
}
.w-170px {
  width: 170px !important;
}
.w-180px {
  width: 180px !important;
}
.w-190px {
  width: 190px !important;
}
.w-200px {
  width: 200px !important;
}
.w-210px {
  width: 210px !important;
}
.w-220px {
  width: 220px !important;
}
.w-230px {
  width: 230px !important;
}
.w-240px {
  width: 240px !important;
}
.w-250px {
  width: 250px !important;
}
.w-260px {
  width: 260px !important;
}
.w-270px {
  width: 270px !important;
}
.w-280px {
  width: 280px !important;
}
.w-290px {
  width: 290px !important;
}
.w-300px {
  width: 300px !important;
}
.w-310px {
  width: 310px !important;
}
.w-320px {
  width: 320px !important;
}
.w-330px {
  width: 330px !important;
}
.w-340px {
  width: 340px !important;
}
.w-350px {
  width: 350px !important;
}
.w-360px {
  width: 360px !important;
}
.w-370px {
  width: 370px !important;
}
.w-380px {
  width: 380px !important;
}
.w-390px {
  width: 390px !important;
}
.w-400px {
  width: 400px !important;
}
.w-450px {
  width: 450px !important;
}
.w-500px {
  width: 500px !important;
}
.w-550px {
  width: 550px !important;
}
.w-600px {
  width: 600px !important;
}
.w-650px {
  width: 650px !important;
}
.w-700px {
  width: 700px !important;
}
.w-750px {
  width: 750px !important;
}
.w-800px {
  width: 800px !important;
}
.w-850px {
  width: 850px !important;
}
.w-900px {
  width: 900px !important;
}
.w-950px {
  width: 950px !important;
}
.w-1000px {
  width: 1000px !important;
}
.w-10 {
  width: 10% !important;
}
.w-15 {
  width: 15% !important;
}
.w-20 {
  width: 20% !important;
}
.w-25 {
  width: 25% !important;
}
.w-30 {
  width: 30% !important;
}
.w-35 {
  width: 35% !important;
}
.w-40 {
  width: 40% !important;
}
.w-45 {
  width: 45% !important;
}
.w-50 {
  width: 50% !important;
}
.w-55 {
  width: 55% !important;
}
.w-60 {
  width: 60% !important;
}
.w-65 {
  width: 65% !important;
}
.w-70 {
  width: 70% !important;
}
.w-75 {
  width: 75% !important;
}
.w-80 {
  width: 80% !important;
}
.w-85 {
  width: 85% !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-2px {
  height: 2px !important;
}
.h-3px {
  height: 3px !important;
}
.h-4px {
  height: 4px !important;
}
.h-5px {
  height: 5px !important;
}
.h-6px {
  height: 6px !important;
}
.h-7px {
  height: 7px !important;
}
.h-8px {
  height: 8px !important;
}
.h-9px {
  height: 9px !important;
}
.h-10px {
  height: 10px !important;
}
.h-11px {
  height: 11px !important;
}
.h-12px {
  height: 12px !important;
}
.h-13px {
  height: 13px !important;
}
.h-14px {
  height: 14px !important;
}
.h-15px {
  height: 15px !important;
}
.h-20px {
  height: 20px !important;
}
.h-25px {
  height: 25px !important;
}
.h-30px {
  height: 30px !important;
}
.h-35px {
  height: 35px !important;
}
.h-40px {
  height: 40px !important;
}
.h-42px {
  height: 42px !important;
}
.h-45px {
  height: 45px !important;
}
.h-50px {
  height: 50px !important;
}
.h-55px {
  height: 55px !important;
}
.h-60px {
  height: 60px !important;
}
.h-65px {
  height: 65px !important;
}
.h-70px {
  height: 70px !important;
}
.h-75px {
  height: 75px !important;
}
.h-80px {
  height: 80px !important;
}
.h-85px {
  height: 85px !important;
}
.h-90px {
  height: 90px !important;
}
.h-95px {
  height: 95px !important;
}
.h-100px {
  height: 100px !important;
}
.h-110px {
  height: 110px !important;
}
.h-120px {
  height: 120px !important;
}
.h-130px {
  height: 130px !important;
}
.h-140px {
  height: 140px !important;
}
.h-150px {
  height: 150px !important;
}
.h-160px {
  height: 160px !important;
}
.h-170px {
  height: 170px !important;
}
.h-180px {
  height: 180px !important;
}
.h-190px {
  height: 190px !important;
}
.h-200px {
  height: 200px !important;
}
.h-210px {
  height: 210px !important;
}
.h-220px {
  height: 220px !important;
}
.h-230px {
  height: 230px !important;
}
.h-240px {
  height: 240px !important;
}
.h-250px {
  height: 250px !important;
}
.h-260px {
  height: 260px !important;
}
.h-270px {
  height: 270px !important;
}
.h-280px {
  height: 280px !important;
}
.h-290px {
  height: 290px !important;
}
.h-300px {
  height: 300px !important;
}
.h-350px {
  height: 350px !important;
}
.h-400px {
  height: 400px !important;
}
.h-450px {
  height: 450px !important;
}
.h-480px {
  height: 480px !important;
}
.h-500px {
  height: 500px !important;
}
.h-550px {
  height: 550px !important;
}
.h-580px {
  height: 580px !important;
}
.h-600px {
  height: 600px !important;
}
.h-650px {
  height: 650px !important;
}
.h-700px {
  height: 700px !important;
}
.h-750px {
  height: 750px !important;
}
.h-800px {
  height: 800px !important;
}
.h-850px {
  height: 850px !important;
}
.h-auto {
  height: auto !important;
}
/* Screen height */
.one-third-screen {
  height: 700px !important;
}
.one-fourth-screen {
  height: 800px !important;
}
.one-fifth-screen {
  height: 900px !important;
}
.one-sixth-screen {
  height: 1000px !important;
}
.one-seventh-screen {
  height: 1200px !important;
}
@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-5px {
  padding: 5px !important;
}
.p-10px {
  padding: 10px !important;
}
.p-15px {
  padding: 15px !important;
}
.p-20px {
  padding: 20px !important;
}
.p-25px {
  padding: 25px !important;
}
.p-30px {
  padding: 30px !important;
}
.p-35px {
  padding: 35px !important;
}
.p-40px {
  padding: 40px !important;
}
.p-45px {
  padding: 45px !important;
}
.p-50px {
  padding: 50px !important;
}
.p-55px {
  padding: 55px !important;
}
.p-60px {
  padding: 60px !important;
}
.p-65px {
  padding: 65px !important;
}
.p-70px {
  padding: 70px !important;
}
.p-1 {
  padding: 1% !important;
}
.p-2 {
  padding: 2% !important;
}
.p-3 {
  padding: 3% !important;
}
.p-4 {
  padding: 4% !important;
}
.p-5 {
  padding: 5% !important;
}
.p-6 {
  padding: 6% !important;
}
.p-7 {
  padding: 7% !important;
}
.p-8 {
  padding: 8% !important;
}
.p-9 {
  padding: 9% !important;
}
.p-10 {
  padding: 10% !important;
}
.p-11 {
  padding: 11% !important;
}
.p-12 {
  padding: 12% !important;
}
.p-13 {
  padding: 13% !important;
}
.p-14 {
  padding: 14% !important;
}
.p-15 {
  padding: 15% !important;
}
.p-16 {
  padding: 16% !important;
}
.p-17 {
  padding: 17% !important;
}
.p-18 {
  padding: 18% !important;
}
.p-19 {
  padding: 19% !important;
}
.p-20 {
  padding: 20% !important;
}
.p-21 {
  padding: 21% !important;
}
.p-22 {
  padding: 22% !important;
}
.p-23 {
  padding: 23% !important;
}
.p-24 {
  padding: 24% !important;
}
.p-25 {
  padding: 25% !important;
}
.p-26 {
  padding: 26% !important;
}
.p-27 {
  padding: 27% !important;
}
.p-28 {
  padding: 28% !important;
}
.p-29 {
  padding: 29% !important;
}
.p-30 {
  padding: 30% !important;
}
.pt-5px {
  padding-top: 5px !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-30px {
  padding-top: 30px !important;
}
.pt-35px {
  padding-top: 35px !important;
}
.pt-40px {
  padding-top: 40px !important;
}
.pt-45px {
  padding-top: 45px !important;
}
.pt-50px {
  padding-top: 50px !important;
}
.pt-55px {
  padding-top: 55px !important;
}
.pt-60px {
  padding-top: 60px !important;
}
.pt-65px {
  padding-top: 65px !important;
}
.pt-70px {
  padding-top: 70px !important;
}
.pt-1 {
  padding-top: 1% !important;
}
.pt-2 {
  padding-top: 2% !important;
}
.pt-3 {
  padding-top: 3% !important;
}
.pt-4 {
  padding-top: 4% !important;
}
.pt-5 {
  padding-top: 5% !important;
}
.pt-6 {
  padding-top: 6% !important;
}
.pt-7 {
  padding-top: 7% !important;
}
.pt-8 {
  padding-top: 8% !important;
}
.pt-9 {
  padding-top: 9% !important;
}
.pt-10 {
  padding-top: 10% !important;
}
.pt-11 {
  padding-top: 11% !important;
}
.pt-12 {
  padding-top: 12% !important;
}
.pt-13 {
  padding-top: 13% !important;
}
.pt-14 {
  padding-top: 14% !important;
}
.pt-15 {
  padding-top: 15% !important;
}
.pt-16 {
  padding-top: 16% !important;
}
.pt-17 {
  padding-top: 17% !important;
}
.pt-18 {
  padding-top: 18% !important;
}
.pt-19 {
  padding-top: 19% !important;
}
.pt-20 {
  padding-top: 20% !important;
}
.pt-21 {
  padding-top: 21% !important;
}
.pt-22 {
  padding-top: 22% !important;
}
.pt-23 {
  padding-top: 23% !important;
}
.pt-24 {
  padding-top: 24% !important;
}
.pt-25 {
  padding-top: 25% !important;
}
.pt-26 {
  padding-top: 26% !important;
}
.pt-27 {
  padding-top: 27% !important;
}
.pt-28 {
  padding-top: 28% !important;
}
.pt-29 {
  padding-top: 29% !important;
}
.pt-30 {
  padding-top: 30% !important;
}
.pe-5px {
  padding-right: 5px !important;
}
.pe-10px {
  padding-right: 10px !important;
}
.pe-15px {
  padding-right: 15px !important;
}
.pe-20px {
  padding-right: 20px !important;
}
.pe-25px {
  padding-right: 25px !important;
}
.pe-30px {
  padding-right: 30px !important;
}
.pe-35px {
  padding-right: 35px !important;
}
.pe-40px {
  padding-right: 40px !important;
}
.pe-45px {
  padding-right: 45px !important;
}
.pe-50px {
  padding-right: 50px !important;
}
.pe-55px {
  padding-right: 55px !important;
}
.pe-60px {
  padding-right: 60px !important;
}
.pe-65px {
  padding-right: 65px !important;
}
.pe-70px {
  padding-right: 70px !important;
}
.pe-1 {
  padding-right: 1% !important;
}
.pe-2 {
  padding-right: 2% !important;
}
.pe-3 {
  padding-right: 3% !important;
}
.pe-4 {
  padding-right: 4% !important;
}
.pe-5 {
  padding-right: 5% !important;
}
.pe-6 {
  padding-right: 6% !important;
}
.pe-7 {
  padding-right: 7% !important;
}
.pe-8 {
  padding-right: 8% !important;
}
.pe-9 {
  padding-right: 9% !important;
}
.pe-10 {
  padding-right: 10% !important;
}
.pe-11 {
  padding-right: 11% !important;
}
.pe-12 {
  padding-right: 12% !important;
}
.pe-13 {
  padding-right: 13% !important;
}
.pe-14 {
  padding-right: 14% !important;
}
.pe-15 {
  padding-right: 15% !important;
}
.pe-16 {
  padding-right: 16% !important;
}
.pe-17 {
  padding-right: 17% !important;
}
.pe-18 {
  padding-right: 18% !important;
}
.pe-19 {
  padding-right: 19% !important;
}
.pe-20 {
  padding-right: 20% !important;
}
.pe-21 {
  padding-right: 21% !important;
}
.pe-22 {
  padding-right: 22% !important;
}
.pe-23 {
  padding-right: 23% !important;
}
.pe-24 {
  padding-right: 24% !important;
}
.pe-25 {
  padding-right: 25% !important;
}
.pe-26 {
  padding-right: 26% !important;
}
.pe-27 {
  padding-right: 27% !important;
}
.pe-28 {
  padding-right: 28% !important;
}
.pe-29 {
  padding-right: 29% !important;
}
.pe-30 {
  padding-right: 30% !important;
}
.pb-5px {
  padding-bottom: 5px !important;
}
.pb-10px {
  padding-bottom: 10px !important;
}
.pb-15px {
  padding-bottom: 15px !important;
}
.pb-20px {
  padding-bottom: 20px !important;
}
.pb-25px {
  padding-bottom: 25px !important;
}
.pb-30px {
  padding-bottom: 30px !important;
}
.pb-35px {
  padding-bottom: 35px !important;
}
.pb-40px {
  padding-bottom: 40px !important;
}
.pb-45px {
  padding-bottom: 45px !important;
}
.pb-50px {
  padding-bottom: 50px !important;
}
.pb-55px {
  padding-bottom: 55px !important;
}
.pb-60px {
  padding-bottom: 60px !important;
}
.pb-65px {
  padding-bottom: 65px !important;
}
.pb-70px {
  padding-bottom: 70px !important;
}
.pb-1 {
  padding-bottom: 1% !important;
}
.pb-2 {
  padding-bottom: 2% !important;
}
.pb-3 {
  padding-bottom: 3% !important;
}
.pb-4 {
  padding-bottom: 4% !important;
}
.pb-5 {
  padding-bottom: 5% !important;
}
.pb-6 {
  padding-bottom: 6% !important;
}
.pb-7 {
  padding-bottom: 7% !important;
}
.pb-8 {
  padding-bottom: 8% !important;
}
.pb-9 {
  padding-bottom: 9% !important;
}
.pb-10 {
  padding-bottom: 10% !important;
}
.pb-11 {
  padding-bottom: 11% !important;
}
.pb-12 {
  padding-bottom: 12% !important;
}
.pb-13 {
  padding-bottom: 13% !important;
}
.pb-14 {
  padding-bottom: 14% !important;
}
.pb-15 {
  padding-bottom: 15% !important;
}
.pb-16 {
  padding-bottom: 16% !important;
}
.pb-17 {
  padding-bottom: 17% !important;
}
.pb-18 {
  padding-bottom: 18% !important;
}
.pb-19 {
  padding-bottom: 19% !important;
}
.pb-20 {
  padding-bottom: 20% !important;
}
.pb-21 {
  padding-bottom: 21% !important;
}
.pb-22 {
  padding-bottom: 22% !important;
}
.pb-23 {
  padding-bottom: 23% !important;
}
.pb-24 {
  padding-bottom: 24% !important;
}
.pb-25 {
  padding-bottom: 25% !important;
}
.pb-26 {
  padding-bottom: 26% !important;
}
.pb-27 {
  padding-bottom: 27% !important;
}
.pb-28 {
  padding-bottom: 28% !important;
}
.pb-29 {
  padding-bottom: 29% !important;
}
.pb-30 {
  padding-bottom: 30% !important;
}
.ps-5px {
  padding-left: 5px !important;
}
.ps-10px {
  padding-left: 10px !important;
}
.ps-15px {
  padding-left: 15px !important;
}
.ps-20px {
  padding-left: 20px !important;
}
.ps-25px {
  padding-left: 25px !important;
}
.ps-30px {
  padding-left: 30px !important;
}
.ps-35px {
  padding-left: 35px !important;
}
.ps-40px {
  padding-left: 40px !important;
}
.ps-45px {
  padding-left: 45px !important;
}
.ps-50px {
  padding-left: 50px !important;
}
.ps-55px {
  padding-left: 55px !important;
}
.ps-60px {
  padding-left: 60px !important;
}
.ps-65px {
  padding-left: 65px !important;
}
.ps-70px {
  padding-left: 70px !important;
}
.ps-1 {
  padding-left: 1% !important;
}
.ps-2 {
  padding-left: 2% !important;
}
.ps-3 {
  padding-left: 3% !important;
}
.ps-4 {
  padding-left: 4% !important;
}
.ps-5 {
  padding-left: 5% !important;
}
.ps-6 {
  padding-left: 6% !important;
}
.ps-7 {
  padding-left: 7% !important;
}
.ps-8 {
  padding-left: 8% !important;
}
.ps-9 {
  padding-left: 9% !important;
}
.ps-10 {
  padding-left: 10% !important;
}
.ps-11 {
  padding-left: 11% !important;
}
.ps-12 {
  padding-left: 12% !important;
}
.ps-13 {
  padding-left: 13% !important;
}
.ps-14 {
  padding-left: 14% !important;
}
.ps-15 {
  padding-left: 15% !important;
}
.ps-16 {
  padding-left: 16% !important;
}
.ps-17 {
  padding-left: 17% !important;
}
.ps-18 {
  padding-left: 18% !important;
}
.ps-19 {
  padding-left: 19% !important;
}
.ps-20 {
  padding-left: 20% !important;
}
.ps-21 {
  padding-left: 21% !important;
}
.ps-22 {
  padding-left: 22% !important;
}
.ps-23 {
  padding-left: 23% !important;
}
.ps-24 {
  padding-left: 24% !important;
}
.ps-25 {
  padding-left: 25% !important;
}
.ps-26 {
  padding-left: 26% !important;
}
.ps-27 {
  padding-left: 27% !important;
}
.ps-28 {
  padding-left: 28% !important;
}
.ps-29 {
  padding-left: 29% !important;
}
.ps-30 {
  padding-left: 30% !important;
}
.m-5px {
  margin: 5px !important;
}
.m-10px {
  margin: 10px !important;
}
.m-15px {
  margin: 15px !important;
}
.m-20px {
  margin: 20px !important;
}
.m-25px {
  margin: 25px !important;
}
.m-30px {
  margin: 30px !important;
}
.m-35px {
  margin: 35px !important;
}
.m-40px {
  margin: 40px !important;
}
.m-45px {
  margin: 45px !important;
}
.m-50px {
  margin: 50px !important;
}
.m-55px {
  margin: 55px !important;
}
.m-60px {
  margin: 60px !important;
}
.m-65px {
  margin: 65px !important;
}
.m-70px {
  margin: 70px !important;
}
.m-1 {
  margin: 1% !important;
}
.m-2 {
  margin: 2% !important;
}
.m-3 {
  margin: 3% !important;
}
.m-4 {
  margin: 4% !important;
}
.m-5 {
  margin: 5% !important;
}
.m-6 {
  margin: 6% !important;
}
.m-7 {
  margin: 7% !important;
}
.m-8 {
  margin: 8% !important;
}
.m-9 {
  margin: 9% !important;
}
.m-10 {
  margin: 10% !important;
}
.m-11 {
  margin: 11% !important;
}
.m-12 {
  margin: 12% !important;
}
.m-13 {
  margin: 13% !important;
}
.m-14 {
  margin: 14% !important;
}
.m-15 {
  margin: 15% !important;
}
.m-16 {
  margin: 16% !important;
}
.m-17 {
  margin: 17% !important;
}
.m-18 {
  margin: 18% !important;
}
.m-19 {
  margin: 19% !important;
}
.m-20 {
  margin: 20% !important;
}
.m-21 {
  margin: 21% !important;
}
.m-22 {
  margin: 22% !important;
}
.m-23 {
  margin: 23% !important;
}
.m-24 {
  margin: 24% !important;
}
.m-25 {
  margin: 25% !important;
}
.m-26 {
  margin: 26% !important;
}
.m-27 {
  margin: 27% !important;
}
.m-28 {
  margin: 28% !important;
}
.m-29 {
  margin: 29% !important;
}
.m-30 {
  margin: 30% !important;
}
.mt-5px {
  margin-top: 5px !important;
}
.mt-10px {
  margin-top: 10px !important;
}
.mt-15px {
  margin-top: 15px !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.mt-25px {
  margin-top: 25px !important;
}
.mt-30px {
  margin-top: 30px !important;
}
.mt-35px {
  margin-top: 35px !important;
}
.mt-40px {
  margin-top: 40px !important;
}
.mt-45px {
  margin-top: 45px !important;
}
.mt-50px {
  margin-top: 50px !important;
}
.mt-55px {
  margin-top: 55px !important;
}
.mt-60px {
  margin-top: 60px !important;
}
.mt-65px {
  margin-top: 65px !important;
}
.mt-70px {
  margin-top: 70px !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-6 {
  margin-top: 6% !important;
}
.mt-7 {
  margin-top: 7% !important;
}
.mt-8 {
  margin-top: 8% !important;
}
.mt-9 {
  margin-top: 9% !important;
}
.mt-10 {
  margin-top: 10% !important;
}
.mt-11 {
  margin-top: 11% !important;
}
.mt-12 {
  margin-top: 12% !important;
}
.mt-13 {
  margin-top: 13% !important;
}
.mt-14 {
  margin-top: 14% !important;
}
.mt-15 {
  margin-top: 15% !important;
}
.mt-16 {
  margin-top: 16% !important;
}
.mt-17 {
  margin-top: 17% !important;
}
.mt-18 {
  margin-top: 18% !important;
}
.mt-19 {
  margin-top: 19% !important;
}
.mt-20 {
  margin-top: 20% !important;
}
.mt-21 {
  margin-top: 21% !important;
}
.mt-22 {
  margin-top: 22% !important;
}
.mt-23 {
  margin-top: 23% !important;
}
.mt-24 {
  margin-top: 24% !important;
}
.mt-25 {
  margin-top: 25% !important;
}
.mt-26 {
  margin-top: 26% !important;
}
.mt-27 {
  margin-top: 27% !important;
}
.mt-28 {
  margin-top: 28% !important;
}
.mt-29 {
  margin-top: 29% !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-20px {
  margin-right: 20px !important;
}
.me-25px {
  margin-right: 25px !important;
}
.me-30px {
  margin-right: 30px !important;
}
.me-35px {
  margin-right: 35px !important;
}
.me-40px {
  margin-right: 40px !important;
}
.me-45px {
  margin-right: 45px !important;
}
.me-50px {
  margin-right: 50px !important;
}
.me-55px {
  margin-right: 55px !important;
}
.me-60px {
  margin-right: 60px !important;
}
.me-65px {
  margin-right: 65px !important;
}
.me-70px {
  margin-right: 70px !important;
}
.me-1 {
  margin-right: 1% !important;
}
.me-2 {
  margin-right: 2% !important;
}
.me-3 {
  margin-right: 3% !important;
}
.me-4 {
  margin-right: 4% !important;
}
.me-5 {
  margin-right: 5% !important;
}
.me-6 {
  margin-right: 6% !important;
}
.me-7 {
  margin-right: 7% !important;
}
.me-8 {
  margin-right: 8% !important;
}
.me-9 {
  margin-right: 9% !important;
}
.me-10 {
  margin-right: 10% !important;
}
.me-11 {
  margin-right: 11% !important;
}
.me-12 {
  margin-right: 12% !important;
}
.me-13 {
  margin-right: 13% !important;
}
.me-14 {
  margin-right: 14% !important;
}
.me-15 {
  margin-right: 15% !important;
}
.me-16 {
  margin-right: 16% !important;
}
.me-17 {
  margin-right: 17% !important;
}
.me-18 {
  margin-right: 18% !important;
}
.me-19 {
  margin-right: 19% !important;
}
.me-20 {
  margin-right: 20% !important;
}
.me-21 {
  margin-right: 21% !important;
}
.me-22 {
  margin-right: 22% !important;
}
.me-23 {
  margin-right: 23% !important;
}
.me-24 {
  margin-right: 24% !important;
}
.me-25 {
  margin-right: 25% !important;
}
.me-26 {
  margin-right: 26% !important;
}
.me-27 {
  margin-right: 27% !important;
}
.me-28 {
  margin-right: 28% !important;
}
.me-29 {
  margin-right: 29% !important;
}
.me-30 {
  margin-right: 30% !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-40px {
  margin-bottom: 40px !important;
}
.mb-45px {
  margin-bottom: 45px !important;
}
.mb-50px {
  margin-bottom: 50px !important;
}
.mb-55px {
  margin-bottom: 55px !important;
}
.mb-60px {
  margin-bottom: 60px !important;
}
.mb-65px {
  margin-bottom: 65px !important;
}
.mb-70px {
  margin-bottom: 70px !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-6 {
  margin-bottom: 6% !important;
}
.mb-7 {
  margin-bottom: 7% !important;
}
.mb-8 {
  margin-bottom: 8% !important;
}
.mb-9 {
  margin-bottom: 9% !important;
}
.mb-10 {
  margin-bottom: 10% !important;
}
.mb-11 {
  margin-bottom: 11% !important;
}
.mb-12 {
  margin-bottom: 12% !important;
}
.mb-13 {
  margin-bottom: 13% !important;
}
.mb-14 {
  margin-bottom: 14% !important;
}
.mb-15 {
  margin-bottom: 15% !important;
}
.mb-16 {
  margin-bottom: 16% !important;
}
.mb-17 {
  margin-bottom: 17% !important;
}
.mb-18 {
  margin-bottom: 18% !important;
}
.mb-19 {
  margin-bottom: 19% !important;
}
.mb-20 {
  margin-bottom: 20% !important;
}
.mb-21 {
  margin-bottom: 21% !important;
}
.mb-22 {
  margin-bottom: 22% !important;
}
.mb-23 {
  margin-bottom: 23% !important;
}
.mb-24 {
  margin-bottom: 24% !important;
}
.mb-25 {
  margin-bottom: 25% !important;
}
.mb-26 {
  margin-bottom: 26% !important;
}
.mb-27 {
  margin-bottom: 27% !important;
}
.mb-28 {
  margin-bottom: 28% !important;
}
.mb-29 {
  margin-bottom: 29% !important;
}
.mb-30 {
  margin-bottom: 30% !important;
}
.ms-5px {
  margin-left: 5px !important;
}
.ms-10px {
  margin-left: 10px !important;
}
.ms-15px {
  margin-left: 15px !important;
}
.ms-20px {
  margin-left: 20px !important;
}
.ms-25px {
  margin-left: 25px !important;
}
.ms-30px {
  margin-left: 30px !important;
}
.ms-35px {
  margin-left: 35px !important;
}
.ms-40px {
  margin-left: 40px !important;
}
.ms-45px {
  margin-left: 45px !important;
}
.ms-50px {
  margin-left: 50px !important;
}
.ms-55px {
  margin-left: 55px !important;
}
.ms-60px {
  margin-left: 60px !important;
}
.ms-65px {
  margin-left: 65px !important;
}
.ms-70px {
  margin-left: 70px !important;
}
.ms-1 {
  margin-left: 1% !important;
}
.ms-2 {
  margin-left: 2% !important;
}
.ms-3 {
  margin-left: 3% !important;
}
.ms-4 {
  margin-left: 4% !important;
}
.ms-5 {
  margin-left: 5% !important;
}
.ms-6 {
  margin-left: 6% !important;
}
.ms-7 {
  margin-left: 7% !important;
}
.ms-8 {
  margin-left: 8% !important;
}
.ms-9 {
  margin-left: 9% !important;
}
.ms-10 {
  margin-left: 10% !important;
}
.ms-11 {
  margin-left: 11% !important;
}
.ms-12 {
  margin-left: 12% !important;
}
.ms-13 {
  margin-left: 13% !important;
}
.ms-14 {
  margin-left: 14% !important;
}
.ms-15 {
  margin-left: 15% !important;
}
.ms-16 {
  margin-left: 16% !important;
}
.ms-17 {
  margin-left: 17% !important;
}
.ms-18 {
  margin-left: 18% !important;
}
.ms-19 {
  margin-left: 19% !important;
}
.ms-20 {
  margin-left: 20% !important;
}
.ms-21 {
  margin-left: 21% !important;
}
.ms-22 {
  margin-left: 22% !important;
}
.ms-23 {
  margin-left: 23% !important;
}
.ms-24 {
  margin-left: 24% !important;
}
.ms-25 {
  margin-left: 25% !important;
}
.ms-26 {
  margin-left: 26% !important;
}
.ms-27 {
  margin-left: 27% !important;
}
.ms-28 {
  margin-left: 28% !important;
}
.ms-29 {
  margin-left: 29% !important;
}
.ms-30 {
  margin-left: 30% !important;
}
/* Position */
.top-0px {
  top: 0px;
}
.top-1px {
  top: 1px;
}
.top-2px {
  top: 2px;
}
.top-3px {
  top: 3px;
}
.top-4px {
  top: 4px;
}
.top-5px {
  top: 5px;
}
.top-6px {
  top: 6px;
}
.top-7px {
  top: 7px;
}
.top-8px {
  top: 8px;
}
.top-9px {
  top: 9px;
}
.top-10px {
  top: 10px;
}
.top-11px {
  top: 11px;
}
.top-12px {
  top: 12px;
}
.top-13px {
  top: 13px;
}
.top-14px {
  top: 14px;
}
.top-15px {
  top: 15px;
}
.top-16px {
  top: 16px;
}
.top-17px {
  top: 17px;
}
.top-18px {
  top: 18px;
}
.top-19px {
  top: 19px;
}
.top-20px {
  top: 20px;
}
.top-21px {
  top: 21px;
}
.top-22px {
  top: 22px;
}
.top-23px {
  top: 23px;
}
.top-24px {
  top: 24px;
}
.top-25px {
  top: 25px;
}
.top-26px {
  top: 26px;
}
.top-27px {
  top: 27px;
}
.top-28px {
  top: 28px;
}
.top-29px {
  top: 29px;
}
.top-30px {
  top: 30px;
}
.top-40px {
  top: 40px;
}
.top-50px {
  top: 50px;
}
.top-60px {
  top: 60px;
}
.top-70px {
  top: 70px;
}
.top-80px {
  top: 80px;
}
.top-90px {
  top: 90px;
}
.top-100px {
  top: 100px;
}
.top-110px {
  top: 110px;
}
.top-120px {
  top: 120px;
}
.top-130px {
  top: 130px;
}
.top-140px {
  top: 140px;
}
.top-150px {
  top: 150px;
}
.bottom-0px {
  bottom: 0px;
}
.bottom-1px {
  bottom: 1px;
}
.bottom-2px {
  bottom: 2px;
}
.bottom-3px {
  bottom: 3px;
}
.bottom-4px {
  bottom: 4px;
}
.bottom-5px {
  bottom: 5px;
}
.bottom-6px {
  bottom: 6px;
}
.bottom-7px {
  bottom: 7px;
}
.bottom-8px {
  bottom: 8px;
}
.bottom-9px {
  bottom: 9px;
}
.bottom-10px {
  bottom: 10px;
}
.bottom-11px {
  bottom: 11px;
}
.bottom-12px {
  bottom: 12px;
}
.bottom-13px {
  bottom: 13px;
}
.bottom-14px {
  bottom: 14px;
}
.bottom-15px {
  bottom: 15px;
}
.bottom-16px {
  bottom: 16px;
}
.bottom-17px {
  bottom: 17px;
}
.bottom-18px {
  bottom: 18px;
}
.bottom-19px {
  bottom: 19px;
}
.bottom-20px {
  bottom: 20px;
}
.bottom-21px {
  bottom: 21px;
}
.bottom-22px {
  bottom: 22px;
}
.bottom-23px {
  bottom: 23px;
}
.bottom-24px {
  bottom: 24px;
}
.bottom-25px {
  bottom: 25px;
}
.bottom-26px {
  bottom: 26px;
}
.bottom-27px {
  bottom: 27px;
}
.bottom-28px {
  bottom: 28px;
}
.bottom-29px {
  bottom: 29px;
}
.bottom-30px {
  bottom: 30px;
}
.bottom-40px {
  bottom: 40px;
}
.bottom-50px {
  bottom: 50px;
}
.bottom-60px {
  bottom: 60px;
}
.bottom-70px {
  bottom: 70px;
}
.bottom-80px {
  bottom: 80px;
}
.bottom-90px {
  bottom: 90px;
}
.bottom-100px {
  bottom: 100px;
}
.bottom-110px {
  bottom: 110px;
}
.bottom-120px {
  bottom: 120px;
}
.bottom-130px {
  bottom: 130px;
}
.bottom-140px {
  bottom: 140px;
}
.bottom-150px {
  bottom: 150px;
}
.top-minus-0px {
  top: -0px;
}
.top-minus-1px {
  top: -1px;
}
.top-minus-2px {
  top: -2px;
}
.top-minus-3px {
  top: -3px;
}
.top-minus-4px {
  top: -4px;
}
.top-minus-5px {
  top: -5px;
}
.top-minus-6px {
  top: -6px;
}
.top-minus-7px {
  top: -7px;
}
.top-minus-8px {
  top: -8px;
}
.top-minus-9px {
  top: -9px;
}
.top-minus-10px {
  top: -10px;
}
.top-minus-11px {
  top: -11px;
}
.top-minus-12px {
  top: -12px;
}
.top-minus-13px {
  top: -13px;
}
.top-minus-14px {
  top: -14px;
}
.top-minus-15px {
  top: -15px;
}
.top-minus-16px {
  top: -16px;
}
.top-minus-17px {
  top: -17px;
}
.top-minus-18px {
  top: -18px;
}
.top-minus-19px {
  top: -19px;
}
.top-minus-20px {
  top: -20px;
}
.top-minus-21px {
  top: -21px;
}
.top-minus-22px {
  top: -22px;
}
.top-minus-23px {
  top: -23px;
}
.top-minus-24px {
  top: -24px;
}
.top-minus-25px {
  top: -25px;
}
.top-minus-26px {
  top: -26px;
}
.top-minus-27px {
  top: -27px;
}
.top-minus-28px {
  top: -28px;
}
.top-minus-29px {
  top: -29px;
}
.top-minus-30px {
  top: -30px;
}
.top-minus-40px {
  top: -40px;
}
.top-minus-50px {
  top: -50px;
}
.top-minus-60px {
  top: -60px;
}
.top-minus-70px {
  top: -70px;
}
.top-minus-80px {
  top: -80px;
}
.top-minus-90px {
  top: -90px;
}
.top-minus-100px {
  top: -100px;
}
.top-minus-110px {
  top: -110px;
}
.top-minus-120px {
  top: -120px;
}
.top-minus-130px {
  top: -130px;
}
.top-minus-140px {
  top: -140px;
}
.top-minus-150px {
  top: -150px;
}
.bottom-minus-0px {
  bottom: -0px;
}
.bottom-minus-1px {
  bottom: -1px;
}
.bottom-minus-2px {
  bottom: -2px;
}
.bottom-minus-3px {
  bottom: -3px;
}
.bottom-minus-4px {
  bottom: -4px;
}
.bottom-minus-5px {
  bottom: -5px;
}
.bottom-minus-6px {
  bottom: -6px;
}
.bottom-minus-7px {
  bottom: -7px;
}
.bottom-minus-8px {
  bottom: -8px;
}
.bottom-minus-9px {
  bottom: -9px;
}
.bottom-minus-10px {
  bottom: -10px;
}
.bottom-minus-11px {
  bottom: -11px;
}
.bottom-minus-12px {
  bottom: -12px;
}
.bottom-minus-13px {
  bottom: -13px;
}
.bottom-minus-14px {
  bottom: -14px;
}
.bottom-minus-15px {
  bottom: -15px;
}
.bottom-minus-16px {
  bottom: -16px;
}
.bottom-minus-17px {
  bottom: -17px;
}
.bottom-minus-18px {
  bottom: -18px;
}
.bottom-minus-19px {
  bottom: -19px;
}
.bottom-minus-20px {
  bottom: -20px;
}
.bottom-minus-21px {
  bottom: -21px;
}
.bottom-minus-22px {
  bottom: -22px;
}
.bottom-minus-23px {
  bottom: -23px;
}
.bottom-minus-24px {
  bottom: -24px;
}
.bottom-minus-25px {
  bottom: -25px;
}
.bottom-minus-26px {
  bottom: -26px;
}
.bottom-minus-27px {
  bottom: -27px;
}
.bottom-minus-28px {
  bottom: -28px;
}
.bottom-minus-29px {
  bottom: -29px;
}
.bottom-minus-30px {
  bottom: -30px;
}
.bottom-minus-40px {
  bottom: -40px;
}
.bottom-minus-50px {
  bottom: -50px;
}
.bottom-minus-60px {
  bottom: -60px;
}
.bottom-minus-70px {
  bottom: -70px;
}
.bottom-minus-80px {
  bottom: -80px;
}
.bottom-minus-90px {
  bottom: -90px;
}
.bottom-minus-100px {
  bottom: -100px;
}
.bottom-minus-110px {
  bottom: -110px;
}
.bottom-minus-120px {
  bottom: -120px;
}
.bottom-minus-130px {
  bottom: -130px;
}
.bottom-minus-140px {
  bottom: -140px;
}
.bottom-minus-150px {
  bottom: -150px;
}
/* Font weight */
.fw-100 {
  font-weight: 100 !important;
}
.fw-200 {
  font-weight: 200 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
/* Min height */
.min-h-100px {
  min-height: 100px !important;
}
.min-h-150px {
  min-height: 150px !important;
}
.min-h-200px {
  min-height: 200px !important;
}
.min-h-250px {
  min-height: 250px !important;
}
.min-h-300px {
  min-height: 300px !important;
}
.min-h-350px {
  min-height: 350px !important;
}
.min-h-400px {
  min-height: 400px !important;
}
.min-h-450px {
  min-height: 450px !important;
}
.min-h-500px {
  min-height: 500px !important;
}
.min-h-550px {
  min-height: 550px !important;
}
.min-h-600px {
  min-height: 600px !important;
}
.min-h-650px {
  min-height: 650px !important;
}
.min-h-700px {
  min-height: 700px !important;
}
.min-h-750px {
  min-height: 750px !important;
}
.min-h-800px {
  min-height: 800px !important;
}
.min-h-850px {
  min-height: 850px !important;
}
.min-h-900px {
  min-height: 900px !important;
}
.min-h-950px {
  min-height: 950px !important;
}
/* Opacity */
.opacity-0 {
  opacity: .0;
}
.opacity-1 {
  opacity: .1;
}
.opacity-2 {
  opacity: .2;
}
.opacity-3 {
  opacity: .3;
}
.opacity-4 {
  opacity: .4;
}
.opacity-5 {
  opacity: .5;
}
.opacity-6 {
  opacity: .6;
}
.opacity-7 {
  opacity: .7;
}
.opacity-8 {
  opacity: .8;
}
.opacity-9 {
  opacity: .9;
}
/* Z-index */
.z-index-2 {
  z-index: 2;
}
/* ===================================
   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 .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-appear .header-reverse-back-scroll.header-dark.glass-effect {
  background-color: rgba(35, 35, 35, 0.7) !important;
}
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 .top-logo .navbar-brand {
  padding: 15px 0;
}
header.sticky .top-logo.fixed-header .navbar-brand, header.sticky .top-logo.disable-fixed .navbar-brand {
  padding: 22px 0;
}
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;
  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 .navbar-brand img {
  max-height: 46px;
}
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 .left-nav .navbar-nav:before {
  height: 20px;
  width: 1px;
  background-color: var(--medium-gray);
  opacity: 0.5;
  content: "";
  -webkit-transform: translate(-7px, 0px);
  transform: translate(-7px, 0px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .disable-fixed {
  position: absolute;
}
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);
}
[data-header-hover=dark] .header-language-icon .header-language .language-dropdown {
  background-color: var(--dark-gray);
}
[data-header-hover=dark] .header-language-icon .header-language .language-dropdown a {
  color: var(--light-gray);
}
[data-header-hover=dark] .header-language-icon .header-language .language-dropdown a:hover {
  color: var(--white);
  opacity: 1;
}
.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 .submenu-content {
  border-color: #424242 !important;
}
.submenu-dark .navbar-nav .submenu-content ul .sub-title {
  color: var(--white);
}
.submenu-dark .navbar-nav .submenu-content ul:before {
  background-color: var(--medium-gray);
}
.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);
}
.submenu-dark .header-cart-icon .header-language .language-dropdown {
  background-color: var(--dark-gray);
}
.submenu-dark .header-cart-icon .header-language .language-dropdown a {
  color: var(--light-gray);
}
.submenu-dark .header-cart-icon .header-language .language-dropdown a:hover {
  color: var(--white);
  opacity: 1;
}
/* 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 {
  background-color: var(--dark-gray);
}
.header-dark .navbar-nav .dropdown .dropdown-menu a {
  color: var(--light-gray);
}
.header-dark .navbar-nav .dropdown .dropdown-menu a:hover {
  color: var(--white);
}
.header-dark .navbar-nav .dropdown .dropdown-menu li.active > a {
  color: var(--white);
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:last-child a {
  border-bottom: 0;
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a span {
  color: var(--white);
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a p {
  color: var(--light-gray);
}
.header-dark .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:before {
  color: var(--white);
}
.header-dark .navbar-nav .submenu-content {
  border-color: #424242 !important;
}
.header-dark .navbar-nav .submenu-content ul .sub-title {
  color: var(--white);
}
.header-dark .navbar-nav .submenu-content ul:before {
  background-color: var(--medium-gray);
}
.header-dark .navbar-nav .simple-dropdown .dropdown-menu {
  background-color: var(--dark-gray);
}
.header-dark .navbar-nav .simple-dropdown .dropdown-menu a {
  color: var(--light-gray);
}
.header-dark .navbar-nav .simple-dropdown .dropdown-menu a:hover {
  color: var(--white);
}
.header-dark .navbar-nav .simple-dropdown .dropdown-menu .dropdown.open > a {
  color: var(--white);
}
.header-dark .navbar-nav .simple-dropdown .dropdown-menu .dropdown:hover > a {
  color: var(--white);
}
.header-dark .header-cart-icon .header-cart .cart-item-list {
  background-color: var(--dark-gray);
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item {
  border-color: #3e3e3e;
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total {
  background-color: var(--black);
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item.cart-total span {
  color: var(--white);
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
  color: var(--medium-gray);
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a:hover {
  color: var(--white);
}
.header-dark .header-cart-icon .header-cart .cart-item-list .cart-item .close {
  color: var(--white);
}
.header-dark .header-language-icon .header-language .language-dropdown {
  background-color: var(--dark-gray);
}
.header-dark .header-language-icon .header-language .language-dropdown a {
  color: var(--light-gray);
}
.header-dark .header-language-icon .header-language .language-dropdown a:hover {
  color: var(--white);
  opacity: 1;
}
/* 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, .header-light .header-icon .icon .header-account > a {
  color: var(--dark-gray);
}
.header-light .header-icon .icon .header-language > a:hover, .header-light .header-icon .icon .header-cart > a:hover, .header-light .header-icon .icon .header-account > 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 .menu-item-list .menu-item .menu-toggle:before, .header-light .menu-item-list .menu-item .menu-toggle:after {
  background-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 account */
/* Header language */
/* Header widget */
/* 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.push-menu-left {
  right: auto;
  left: -100%;
}
.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);
}
.push-menu .push-menu-wrapper {
  height: 100%;
  overflow-y: hidden;
  padding: 20px 0;
}
.push-menu .push-menu-wrapper .mCustomScrollBox {
  display: flex;
}
.push-menu .push-menu-wrapper .mCustomScrollBox .mCSB_container.mCS_y_hidden.mCS_no_scrollbar_y {
  align-self: center;
}
.push-menu .push-menu-wrapper .mCustomScrollBox .mCSB_container {
  width: 100%;
  align-self: flex-start;
}
.push-menu .push-menu-wrapper .mCSB_inside > .mCSB_container {
  margin: 0 !important;
  padding: 0 15px !important;
}
.push-menu.push-menu-style-2 .push-menu-wrapper .mCustomScrollBox .mCSB_container.mCS_y_hidden.mCS_no_scrollbar_y {
  align-self: start;
}
.push-menu.push-menu-style-3 .push-menu-wrapper .mCustomScrollBox .mCSB_container.mCS_y_hidden.mCS_no_scrollbar_y {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
/* Header center logo */
/* Header top logo */
.top-logo .navbar-brand {
  padding: 22px 0;
}
.top-logo .navbar-nav .nav-link {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
/* 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 .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 .navbar-brand img {
  max-height: 45px;
}
.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 .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%;
}
.side-menu-hover-background-color {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
/* Header left menu modern dark */
.header-dark .social-text {
  color: var(--white);
}
.header-dark .connect-me .widget-text {
  color: var(--white);
}
.header-dark .connect-me a {
  color: var(--white);
}
.header-dark .connect-me a:hover {
  opacity: 0.6;
}
.header-dark.left-modern-sidebar .navbar-toggler-line {
  background-color: var(--white);
}
.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 */
/* Hamburger menu simple */
/* Right push menu */
.right-push-menu .menu-item-list .menu-item .toggle {
  top: 18px;
}
.right-push-menu .menu-item-list .sub-menu li .toggle {
  top: 4px;
}
.right-push-menu .menu-item-list .nav-link {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
/* 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-toggler-line {
  background: var(--dark-gray);
  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;
}
.navbar-toggler-line:nth-child(1) {
  top: 0px;
  width: 14px;
}
.navbar-toggler-line:nth-child(2) {
  top: 6px;
}
.navbar-toggler-line:nth-child(3) {
  top: 6px;
}
.navbar-toggler-line:nth-child(4) {
  top: 12px;
  width: 14px;
}
.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-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 */
/* Down section icon */
/* Down section line */
/* ===================================
   12. Layout
====================================== */
/* Sidebar */
/* 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: 15px;
}
.grid.grid-6col li {
  width: 16.67%;
}
.grid.grid-6col li.grid-item-double {
  width: 33.33%;
}
.grid.grid-6col li.grid-item-single {
  width: 100%;
}
.grid.grid-5col li {
  width: 20%;
}
.grid.grid-5col li.grid-item-double {
  width: 40%;
}
.grid.grid-5col li.grid-item-single {
  width: 100%;
}
.grid.grid-4col li {
  width: 25%;
}
.grid.grid-4col li.grid-item-double {
  width: 50%;
}
.grid.grid-4col li.grid-item-single {
  width: 100%;
}
.grid.grid-3col li {
  width: 33.33%;
}
.grid.grid-3col li.grid-item-double {
  width: 66.67%;
}
.grid.grid-3col li.grid-item-single {
  width: 100%;
}
.grid.grid-2col li {
  width: 50%;
}
.grid.grid-2col li.grid-item-double {
  width: 100%;
}
.grid.grid-2col li.grid-item-single {
  width: 100%;
}
/* ===================================
    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-header .accordion-title {
  cursor: pointer;
  padding-right: 25px;
}
.accordion .accordion-item .accordion-header .accordion-title i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion .accordion-item .accordion-collapse {
  border: 0;
}
/* Accordion style 01 */
.accordion-style-01 .accordion-item {
  margin-bottom: 20px;
  overflow: inherit;
  padding: 20px 35px;
  -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 20px 0px rgba(111, 111, 111, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(111, 111, 111, 0.15);
}
.accordion-style-01 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style-01 .accordion-item .collapse {
  overflow: hidden;
}
.accordion-style-01 .accordion-item .accordion-body {
  padding: 12px 45px 10px 0px;
}
.accordion-style-01 .accordion-item .accordion-header .accordion-title > i {
  position: static;
  -webkit-transform: none;
  transform: none;
}
/* Accordion style 02 */
.accordion-style-02 .accordion-item {
  background-color: transparent;
}
.accordion-style-02 .accordion-item .accordion-header {
  margin-bottom: 0;
  padding: 15px 0;
}
.accordion-style-02 .accordion-item .accordion-header .accordion-title i {
  right: 0;
}
.accordion-style-02 .accordion-item.active-accordion .accordion-header {
  border-bottom-color: transparent !important;
}
.accordion-style-02 .accordion-item .accordion-body {
  padding: 0 25px 30px 0;
}
/* Accordion style 03 */
.accordion-style-03 .accordion-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.accordion-style-03 .accordion-item .accordion-header {
  padding: 15px 30px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.accordion-style-03 .accordion-item .accordion-body {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}
/* Accordion style 04 */
.accordion-style-04 .accordion-item {
  -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-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.accordion-style-04 .accordion-item .accordion-header {
  padding: 18px 35px;
}
.accordion-style-04 .accordion-item .accordion-body {
  padding: 25px 40px 30px;
}
.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 .accordion-body {
  padding: 10px 45px 10px 0px;
}
.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 {
  margin-bottom: 0;
  overflow: hidden;
  padding: 15px 100px 15px 45px;
  position: relative;
  -webkit-border-radius: 4px !important;
  border-radius: 4px !important;
}
.accordion-style-06 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style-06 .accordion-item .collapse {
  overflow: hidden;
  border-radius: 0;
}
.accordion-style-06 .accordion-item .accordion-body {
  padding: 10px 0 10px 0px;
}
.accordion-style-06 .accordion-item i {
  position: absolute;
  right: -32px;
  top: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--dark-gray);
  -webkit-transform: rotate(-35deg) translateY(-50%);
  transform: rotate(-35deg) translateY(-50%);
}
.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-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 03 */
/* Alert box style 04 */
/* Alert box style 05 */
/* 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-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  border-color: initial;
  color: initial;
}
.btn {
  display: inline-block;
  border: 1px 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: 16px;
  padding: 13px 26px;
  font-weight: 600;
}
.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-round-edge-small {
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.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:hover {
  opacity: 0.7;
}
.btn.btn-link:focus-visible {
  box-shadow: none;
}
.btn.btn-link-gradient {
  padding: 0 0 3px !important;
  position: relative;
  border: 0;
  background-color: transparent;
}
.btn.btn-link-gradient > span {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
}
.btn.btn-link-gradient.expand span {
  width: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-link-gradient:hover {
  opacity: 0.7;
}
.btn.btn-link-gradient:hover.expand:hover span {
  width: 100%;
}
.btn.btn-expand {
  position: relative;
  z-index: 1;
}
.btn.btn-expand span {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.btn-expand:hover, .btn.btn-expand:active {
  border-color: transparent;
}
.btn.btn-expand:hover span, .btn.btn-expand:active span {
  width: 100%;
}
.btn.btn-expand-ltr {
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 0;
  color: initial;
}
.btn.btn-expand-ltr:active {
  background-color: transparent;
  border: 0;
  color: initial;
}
.btn.btn-expand-ltr span {
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn.btn-expand-ltr:hover span {
  width: 100% !important;
}
.btn.btn-expand-ltr.btn-extra-large {
  padding: 18px 28px;
}
.btn.btn-expand-ltr.btn-extra-large span {
  width: 60px;
  height: 60px;
}
.btn.btn-expand-ltr.btn-large {
  padding: 14px 26px;
}
.btn.btn-expand-ltr.btn-large span {
  width: 50px;
  height: 50px;
}
.btn.btn-expand-ltr.btn-medium {
  padding: 12px 24px;
}
.btn.btn-expand-ltr.btn-medium span {
  width: 44px;
  height: 44px;
}
.btn.btn-expand-ltr.btn-small {
  padding: 10px 22px;
}
.btn.btn-expand-ltr.btn-small span {
  width: 40px;
  height: 40px;
}
.btn.btn-expand-ltr.btn-very-small {
  padding: 8px 18px;
}
.btn.btn-expand-ltr.btn-very-small span {
  width: 38px;
  height: 38px;
}
.btn.btn-hover-animation-switch.btn-link {
  border-bottom: 0;
  padding-bottom: 0;
}
.btn.btn-hover-animation-switch.btn-link:hover {
  opacity: 1;
}
.btn.btn-hover-animation-switch > span {
  display: inline-flex;
  align-items: center;
}
.btn.btn-hover-animation-switch .btn-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.btn.btn-hover-animation-switch .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.btn.btn-hover-animation-switch .btn-icon i {
  margin: 0;
  line-height: 0;
}
.btn.btn-hover-animation-switch .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.btn.btn-hover-animation-switch:hover .btn-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}
.btn.btn-hover-animation-switch:hover .btn-icon {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}
.btn.btn-hover-animation-switch:hover .btn-icon + .btn-icon {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.225s;
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-text {
  margin-right: -15px;
  margin-left: 0px;
  position: relative;
  z-index: 3;
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-icon {
  opacity: 0;
  margin-left: 0;
  transition-delay: 0s;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-icon + .btn-icon {
  opacity: 1;
  margin-left: 0;
  margin-right: 6px;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-text {
  transition-delay: 0.1s;
  transform: translateX(-20px);
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-icon {
  transform: translateX(0px);
  opacity: 1;
  transition-delay: 0.225s;
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-icon + .btn-icon {
  opacity: 0;
  transition-delay: 0s;
  transform: translateX(-10px);
}
.btn.btn-hover-animation.btn-link {
  border-bottom: 0;
  padding-bottom: 0;
}
.btn.btn-hover-animation.btn-link:hover {
  opacity: 1;
}
.btn.btn-hover-animation > span {
  display: inline-flex;
  align-items: center;
}
.btn.btn-hover-animation .btn-text {
  margin-left: 0px;
  position: relative;
  z-index: 3;
  transition: transform 0.5s;
}
.btn.btn-hover-animation .btn-icon {
  display: inline-flex;
  align-items: center;
  margin-left: -24px;
}
.btn.btn-hover-animation .btn-icon i {
  display: inline-block;
  opacity: 0;
  top: 0;
  transform: translateX(0.24px);
  transition: opacity 0.25s, transform 0.5s;
}
.btn.btn-hover-animation:hover .btn-text {
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}
.btn.btn-hover-animation:hover .btn-icon i {
  opacity: 1;
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
}
.btn.btn-hover-animation:active {
  border-color: transparent !important;
}
.btn.btn-hover-animation.btn-icon-left .btn-icon {
  margin-right: -24px;
  margin-left: 0;
}
.btn.btn-hover-animation.btn-icon-left .btn-icon i {
  transform: translateX(0.24px);
}
.btn.btn-hover-animation.btn-icon-left .btn-text {
  margin-right: 0;
  margin-left: 0;
}
.btn.btn-hover-animation.btn-icon-left:hover .btn-text {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}
.btn.btn-hover-animation.btn-icon-left:hover .btn-icon i {
  opacity: 1;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}
.btn.btn-slide-up span {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.btn.btn-slide-down span {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.btn.btn-slide-left span {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.btn.btn-slide-right span {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn.btn-slide-up, .btn.btn-slide-down, .btn.btn-slide-left, .btn.btn-slide-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn.btn-slide-up span, .btn.btn-slide-down span, .btn.btn-slide-left span, .btn.btn-slide-right span {
  position: absolute;
  height: 100%;
  width: 102%;
  z-index: -1;
  left: -2px;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.btn-slide-up:hover span, .btn.btn-slide-down:hover span, .btn.btn-slide-left:hover span, .btn.btn-slide-right:hover span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn.btn-radius {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn.btn-radius:hover {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.btn.arrow-bounce-right {
  position: relative;
}
.btn.arrow-bounce-right:before {
  content: "\f108";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: inherit;
  left: 80%;
  transition: all 0.3s;
  opacity: 0;
  font-weight: 900;
  margin-top: 3px;
}
.btn.arrow-bounce-right:hover:before {
  left: 85%;
  opacity: 1;
}
.btn.underline-on-hover {
  position: relative;
  padding: 0 0 2px;
  border: none;
  opacity: 1 !important;
}
.btn.underline-on-hover:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 2px solid;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
}
.btn.underline-on-hover:hover:after {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn.underline-on-hover.btn-medium, .btn.underline-on-hover.btn-small, .btn.underline-on-hover.btn-very-small {
  padding: 0 0 3px;
}
.btn.hover-text-dark {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 0;
  padding: 0;
  position: relative;
  border-bottom: none;
  opacity: 0.4;
  display: inline-block;
}
.btn.hover-text-dark:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  content: attr(data-hover);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.btn.hover-text-dark:hover {
  opacity: 1;
}
.btn.hover-text-dark:hover:after {
  max-height: 100%;
}
.btn.hover-text-light {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 0;
  padding: 0;
  position: relative;
  border-bottom: none;
  opacity: 1;
  display: inline-block;
}
.btn.hover-text-light:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  content: attr(data-hover);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.btn.hover-text-light:hover {
  opacity: 0.6;
}
.btn.hover-text-light:hover:after {
  max-height: 100%;
}
.btn.btn-base-color {
  background-color: var(--base-color);
  color: var(--dark);
}
.btn.btn-base-color:hover, .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 {
  background-color: var(--black);
  color: var(--white);
}
.btn.btn-black:hover, .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 {
  background-color: var(--cornflower-blue);
  color: var(--white);
}
.btn.btn-cornflower-blue:hover, .btn.btn-cornflower-blue:active {
  background-color: transparent;
  border-color: var(--cornflower-blue);
  color: var(--cornflower-blue);
}
.btn.btn-jade {
  background-color: var(--jade);
  color: var(--white);
}
.btn.btn-jade:hover, .btn.btn-jade:active {
  background-color: transparent;
  border-color: var(--jade);
  color: var(--jade);
}
.btn.btn-transparent-black {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn.btn-transparent-black:hover, .btn.btn-transparent-black:active {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn.btn-transparent-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-transparent-white:hover, .btn.btn-transparent-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-gray);
}
.btn.btn-transparent-white-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn.btn-transparent-white-light:hover, .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 {
  background-color: transparent;
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-transparent-base-color:hover, .btn.btn-transparent-base-color:active {
  background-color: var(--base-color);
  border-color: var(--base-color);
  color: var(--white);
}
.btn.btn-transparent-dark-gray {
  background-color: transparent;
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}
.btn.btn-transparent-dark-gray:hover, .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-double-border.btn-extra-large {
  padding: 0;
}
.btn.btn-double-border.btn-extra-large > span {
  padding: 24px 50px;
}
.btn.btn-double-border.btn-large {
  padding: 0;
}
.btn.btn-double-border.btn-large > span {
  padding: 18px 42px;
}
.btn.btn-double-border.btn-medium {
  padding: 0;
}
.btn.btn-double-border.btn-medium > span {
  padding: 16px 34px;
}
.btn.btn-double-border.btn-small {
  padding: 0;
}
.btn.btn-double-border.btn-small > span {
  padding: 13px 32px;
}
.btn.btn-double-border.btn-very-small {
  padding: 0;
}
.btn.btn-double-border.btn-very-small > span {
  padding: 10px 22px;
}
.btn.btn-double-border > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.btn.btn-double-border .btn-double-text {
  transition: opacity 0.65s, transform 0.65s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn.btn-double-border .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-double-border:hover .btn-double-text {
  transform: translateY(-200%);
}
.btn.btn-double-border:hover .btn-double-text:before {
  transform: translate(-50%, 150%);
  opacity: 1;
}
.btn.btn-double-border:after {
  display: inline-block;
  content: "";
  position: absolute;
  border: 1px solid;
  width: calc(100% - 8px);
  height: calc(100% + 12px);
  top: -6px;
  left: 4px;
  transform: translateX(0) translateY(0);
  z-index: 0;
}
.btn.btn-double-border.btn-border-base-color {
  position: relative;
  border: 1px solid var(--base-color);
  color: var(--base-color);
}
.btn.btn-double-border.btn-border-base-color:hover {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}
.btn.btn-double-border.btn-border-base-color:hover:after {
  border-color: var(--dark-gray);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-double-border.btn-border-base-color.hover-border-color-white:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-double-border.btn-border-base-color.hover-border-color-white:hover:after {
  border-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-double-border.btn-border-color-dark-gray {
  position: relative;
  border: 1px solid var(--dark-gray);
  color: var(--dark-gray);
}
.btn.btn-double-border.btn-border-color-dark-gray:hover {
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-double-border.btn-border-color-dark-gray:hover:after {
  border-color: var(--base-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-double-border.btn-border-color-white {
  position: relative;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn.btn-double-border.btn-border-color-white:hover {
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-double-border.btn-border-color-white:hover:after {
  border-color: var(--base-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-double-border.btn-border-color-transparent-white {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn.btn-double-border.btn-border-color-transparent-white:after {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn.btn-double-border.btn-border-color-transparent-white:hover {
  border-color: rgb(255, 255, 255);
  color: var(--white);
}
.btn.btn-double-border.btn-border-color-transparent-white:hover:after {
  border-color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-double-border.btn-border-color-transparent-dark {
  position: relative;
  border: 1px solid rgba(35, 35, 35, 0.2);
  color: var(--dark-gray);
}
.btn.btn-double-border.btn-border-color-transparent-dark:after {
  border: 1px solid rgba(35, 35, 35, 0.2);
}
.btn.btn-double-border.btn-border-color-transparent-dark:hover {
  border-color: rgb(35, 35, 35);
  color: var(--dark-gray);
}
.btn.btn-double-border.btn-border-color-transparent-dark:hover:after {
  border-color: rgb(35, 35, 35);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.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:hover, .btn.base-color-hover:active {
  background-color: var(--base-color);
  color: var(--white);
}
.btn.white-hover:hover, .btn.white-hover:active {
  background-color: var(--white);
  color: var(--dark-gray);
}
.btn.black-hover:hover, .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:hover, .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:hover, .btn.btn-box-shadow.btn-base-color:active {
  background: var(--base-color);
  color: var(--white);
}
.btn.btn-box-shadow.btn-cornflower-blue:hover, .btn.btn-box-shadow.btn-cornflower-blue:active {
  background-color: var(--cornflower-blue);
  color: var(--white);
}
.btn.btn-box-shadow.btn-jade:hover, .btn.btn-box-shadow.btn-jade:active {
  background-color: var(--jade);
  color: var(--white);
}
.btn.with-rounded {
  position: relative;
}
.btn.with-rounded > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: absolute;
  border-radius: 100%;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
}
.btn.with-rounded > span i {
  margin: 0;
}
.btn.with-rounded.btn-extra-large {
  padding-right: 70px;
}
.btn.with-rounded.btn-large {
  padding-right: 55px;
}
.btn.with-rounded.btn-large > span {
  width: 34px;
  height: 34px;
  right: 8px;
}
.btn.with-rounded.btn-medium {
  padding-right: 50px;
}
.btn.with-rounded.btn-medium > span {
  width: 32px;
  height: 32px;
  right: 8px;
}
.btn.with-rounded.btn-small {
  padding-right: 45px;
}
.btn.with-rounded.btn-small > span {
  width: 28px;
  height: 28px;
  right: 6px;
}
.btn.with-rounded.btn-very-small {
  padding-right: 37px;
}
.btn.with-rounded.btn-very-small > span {
  width: 26px;
  height: 26px;
  right: 5px;
}
/* Button icon position */
[class*=btn-transparent], [class*=" btn-transparent"] {
  font-weight: 600;
}
/* Gradient button */
.btn-gradient-purple-pink {
  background-image: linear-gradient(to right, #8b14b1, #d53d6e, #8b14b1);
  background-size: 200% auto;
  color: var(--white);
}
.btn-gradient-fast-pink-light-yellow {
  background-image: linear-gradient(to right, #f7567f, #ffba83, #f7567f);
  background-size: 200% auto;
  color: var(--white);
}
.btn-gradient-pink-orange {
  background-image: linear-gradient(to right, #de347f, #ef5f43, #de347f);
  background-size: 200% auto;
  color: var(--white);
}
.btn-gradient-fast-blue-purple {
  background-image: linear-gradient(to right, #2a46f4, #bf25ff, #2a46f4);
  background-size: 200% auto;
  color: var(--white);
}
.btn-gradient-light-pink-light-purple {
  background-image: linear-gradient(to right, #ed579b, #bc63e8, #ed579b);
  background-size: 200% auto;
  color: var(--white);
}
.btn-gradient-sky-blue-pink {
  background-image: linear-gradient(to right, #5758df, #f77991, #5758df);
  background-size: 200% auto;
  color: var(--white);
}
.btn-dual .btn {
  margin-left: 10px;
  margin-right: 10px;
}
.btn-dual .btn.btn-link, .btn-dual .btn.btn-underline, .btn-dual .btn.btn-zoom, .btn-dual .btn.btn-link-gradient {
  margin-left: 30px;
  margin-right: 30px;
}
/* Blog button */
/* Clients style 01 */
/* Clients style 02 */
/* 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-01 input, .contact-form-style-01 textarea, .contact-form-style-01 select {
  padding-left: 55px;
}
.contact-form-style-01 .form-group .form-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 2px;
  left: 25px;
}
.contact-form-style-01 .form-group.form-textarea .form-icon {
  top: 12px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* 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-06 input, .contact-form-style-06 textarea {
  color: var(--white);
}
.contact-form-style-06 input:focus, .contact-form-style-06 textarea:focus {
  color: var(--white);
}
.contact-form-style-06 input::placeholder, .contact-form-style-06 textarea::placeholder {
  color: var(--light-medium-gray);
}
/* Contact form style 07 */
.contact-form-style-07 input, .contact-form-style-07 textarea {
  outline: none;
  border: none;
  border-bottom: 1px solid;
  background: transparent;
}
.contact-form-style-07 select {
  outline: none;
  border: none;
  border-bottom: 1px solid;
}
.contact-form-style-07 input:focus, .contact-form-style-07 select:focus, .contact-form-style-07 textarea:focus, .contact-form-style-07 .form-control:focus {
  border: 0;
  border-bottom: 1px solid #c2c2c2;
}
.contact-form-style-07 textarea {
  resize: none;
}
.contact-form-style-07 .form-group .form-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form-style-07 .form-group.form-textarea .form-icon {
  top: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contact-form-style-07 .form-control, .contact-form-style-07 .form-control.is-invalid {
  background-position: right 35px center !important;
}
.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.swiper-slide-next {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
/* Countdown style 01 */
/* Countdown style 02 */
/* Countdown style 03 */
/* Countdown style 04 */
/* Counter style 03 */
/* Counter style 04 */
.counter-style-04 .vertical-counter:after {
  content: attr(data-text);
  display: inline-block;
  margin-left: 3px;
  word-break: normal;
}
/* Counter style 06 */
/* Counter style 07 */
.counter-style-07 .vertical-counter-number {
  z-index: 1;
}
/* 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 */
/* First letter */
/* First letter block */
/* First letter round */
/* First letter big */
/* First letter small */
/* Event style 02 */
.time-table {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  flex: 1 0;
}
.time-table + .time-table .time-table-box {
  border-top-width: 0 !important;
}
.time-table-box {
  -webkit-box-align: stretch;
  align-items: stretch;
  text-align: center;
  flex-basis: 12.5%;
  padding: 30px 10px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  min-height: 100px;
}
.time-table-box + .time-table-box {
  border-left-width: 0 !important;
}
.time-table-box + .time-table-box.name-box:before {
  position: absolute;
  content: "";
  transition: opacity 0.3s;
  opacity: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--base-color);
}
.time-table-box + .time-table-box.name-box:hover .inner-box span, .time-table-box + .time-table-box.name-box:hover .inner-box div {
  color: var(--white);
}
.time-table-box + .time-table-box.name-box:hover:before {
  opacity: 1;
}
.time-table-box + .time-table-box.name-box:hover .hover-detail {
  visibility: visible;
  opacity: 1;
}
.name-box span {
  line-height: 26px;
  transition: 0.2s;
}
.name-box div {
  line-height: 26px;
  transition: 0.2s;
}
/* Event style 03 */
/* Text image mask */
/* Fancy text box style 01 */
.fancy-text-box-style-01 {
  border-bottom: 1px solid;
  border-right: 1px solid;
  overflow: hidden;
}
.fancy-text-box-style-01 .text-box-wrapper .text-box, .fancy-text-box-style-01 .text-box-wrapper .text-box-hover {
  display: block;
  width: 100%;
  -webkit-transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
}
.fancy-text-box-style-01 .text-box-wrapper .text-box-hover {
  opacity: 0;
  position: absolute;
}
.fancy-text-box-style-01 .text-box-wrapper:hover .text-box {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
}
.fancy-text-box-style-01 .text-box-wrapper:hover .text-box-hover {
  opacity: 1;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
}
.fancy-text-box-style-01:last-child {
  border-right: 0;
}
/* 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;
}
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 0;
  max-width: 230px !important;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.gm-style .gm-style-iw-d {
  overflow: auto !important;
}
.gm-style .gm-style-iw-t::after {
  background: var(--dark-gray);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.gm-ui-hover-effect {
  opacity: 0.8;
  top: -2px !important;
  right: 2px !important;
  width: 25px !important;
  display: none !important;
  height: 25px !important;
}
.gm-ui-hover-effect img {
  width: 17px !important;
  height: 17px !important;
  margin: 6px !important;
}
.google-maps-link {
  text-align: center;
}
.google-maps-link a {
  font-size: 12px;
  font-weight: 400;
  display: block;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 15px;
  letter-spacing: 0.5px;
}
.google-maps-link a:hover {
  text-decoration: none;
}
.gm-style a[title] {
  display: none !important;
}

.gm-style-cc {
  display: none !important;
}
.gm-style .gm-style-iw-tc::after {
  background: var(--dark-gray);
}
/* 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 */
/* Icon with text style 03 */
.icon-with-text-style-03 * {
  word-break: initial;
}
/* Icon with text style 05 */
/* Icon with text style 07 */
/* Icon with text style 10 */
.icon-with-text-style-10:hover .feature-box-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1.2);
  transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1.2);
}
.icon-with-text-style-10:hover .feature-box-icon i {
  color: var(--white);
}
.icon-with-text-style-10:hover .feature-box-icon:before {
  height: 100%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  opacity: 1;
}
/* Icon with text style 11 */
.icon-with-text-style-11 {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.icon-with-text-style-11 .text-box {
  opacity: 1;
}
.icon-with-text-style-11 .text-box-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.icon-with-text-style-11:hover {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.icon-with-text-style-11:hover .text-box-hover {
  opacity: 1;
}
.icon-with-text-style-11:hover .text-box {
  opacity: 0;
}
/* 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 */
.instafeed-grid {
  list-style: none;
  text-align: center;
}
.instafeed-grid figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 4px;
}
.instafeed-grid figure a video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.instafeed-grid figure a video[data-class=video] {
  display: block;
}
.instafeed-grid figure:hover a .insta-icon {
  opacity: 1;
}
.instafeed-grid figure:hover a .insta-icon i {
  -webkit-transform: translateY(-50%) scale(1, 1);
  transform: translateY(-50%) scale(1, 1);
}
.instagram-follow-api .instagram-button {
  z-index: 1;
  white-space: nowrap;
  padding: 12px 32px;
  box-shadow: 0 0 35px rgba(23, 23, 23, 0.4);
}
/* Interactive banner style 01 */
/* Interactive banner style 02 */
.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 04 */
/* Interactive banner style 05 */
/* Interactive banner style 06 */
/* Interactive banner style 07 */
/* Interactive banner style 08 */
/* Interactive banner style 09 */
/* List style 01 */
/* List style 02 */
/* List style 03 */
/* List style 04 */
/* List style 05 */
/* HTML video */
/* Background video */
.bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-video-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Modal popup */
#popup-form {
  cursor: default;
}
.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);
}
.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);
}
.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 */
/* 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  */
.video-icon-effect {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--white);
}
.video-icon-effect:before {
  position: absolute;
  content: "";
  animation: border-transform 7s linear infinite alternate forwards;
  background-color: var(--white);
  width: 100px;
  height: 100px;
  top: -15px;
  left: -15px;
  opacity: 0.2;
}
@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 36% 64% 59% 41%/40% 45% 55% 60%;
  }
  24% {
    border-radius: 37% 63% 60% 40%/46% 52% 48% 54%;
  }
  32% {
    border-radius: 40% 60% 54% 46%/52% 56% 44% 48%;
  }
  42% {
    border-radius: 52% 48% 62% 38%/54% 54% 46% 46%;
  }
  56% {
    border-radius: 60% 40% 65% 35%/54% 50% 50% 46%;
  }
  70% {
    border-radius: 44% 56% 43% 57%/42% 50% 50% 58%;
  }
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 36% 64% 59% 41%/40% 45% 55% 60%;
  }
  24% {
    border-radius: 37% 63% 60% 40%/46% 52% 48% 54%;
  }
  32% {
    border-radius: 40% 60% 54% 46%/52% 56% 44% 48%;
  }
  42% {
    border-radius: 52% 48% 62% 38%/54% 54% 46% 46%;
  }
  56% {
    border-radius: 60% 40% 65% 35%/54% 50% 50% 46%;
  }
  70% {
    border-radius: 44% 56% 43% 57%/42% 50% 50% 58%;
  }
}
/* 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 07 */
/* Pricing table style 08 */
/* 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-01 .progress-step-separator {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.process-step-style-01 .process-step-icon {
  position: relative;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.process-step-style-01:hover .box-overlay {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.process-step-style-01:hover .number, .process-step-style-01:hover .icon {
  color: var(--white);
}
.process-step-style-01:hover .border-color-transparent-on-hover {
  border-color: transparent !important;
}
/* Process step style 02 */
.process-step-style-02 .process-step-icon {
  overflow: hidden;
  position: relative;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  will-change: transform;
}
.process-step-style-02 .progress-step-separator {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.process-step-style-02:hover .process-step-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  will-change: transform;
}
/* Process step style 03 */
.process-step-style-03 .process-step-icon-box .progress-step-separator {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.process-step-style-03 .process-step-icon-box .number {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: 55%;
}
.process-step-style-03:hover .process-step-icon-box .box-overlay {
  opacity: 0.9;
}
.process-step-style-03:hover .process-step-icon-box .number {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.process-step-style-03:hover .process-step-icon-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.process-step-style-03:hover .process-step-icon-box .progress-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Process step style 04 */
.process-step-style-04 .process-step-icon-box {
  will-change: transform;
}
.process-step-style-04 .process-step-icon-box .progress-step-separator {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.process-step-style-04:hover .process-step-icon-box .number, .process-step-style-04:hover .process-step-icon-box .icon {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* Process step style 05 */
.process-step-style-05 .process-step-item {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}
.process-step-style-05 .progress-step-separator {
  position: absolute;
  bottom: 15px;
  width: 1px;
  left: 50%;
  height: calc(100% - 100px);
}
.process-step-style-05 .process-step-icon {
  will-change: transform;
  -webkit-transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1.7);
  transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1.7);
}
.process-step-style-05:hover .process-step-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.process-step-style-05:hover .number, .process-step-style-05:hover .icon {
  color: var(--white);
}
/* Process step style 07 */
.process-step-style-06 .process-step-icon-box .progress-step-separator {
  position: absolute;
  top: 50%;
  left: 0;
}
.process-step-style-06:hover .process-step-icon-box .step-box {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* Process step style 08 */
.process-step-style-08 .process-step-item {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 350ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.process-step-style-08 .process-step-item:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Process step style 09 */
.process-step-style-09 .process-step-icon {
  position: relative;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.process-step-style-09:hover .box-overlay {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.process-step-style-09:hover .border-color-transparent-on-hover {
  border-color: transparent !important;
}
/* Process step style 10 */
.process-step-style-10 .process-step-icon-box {
  -webkit-transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
}
.process-step-style-10:hover .process-step-icon-box {
  -webkit-transform: translateX(20px) scale(1.1);
  transform: translateX(20px) scale(1.1);
}
/* Process step style 11 */
.process-step-style-11 .process-step-icon-wrap {
  z-index: 1;
  background-color: var(--base-color);
  background-size: 4px 4px;
  -webkit-transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
}
.process-step-style-11:hover .process-step-icon-wrap {
  background-color: var(--dark-gray);
  background-image: none;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 650ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* 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-star-icon i {
  color: #fd961e;
  letter-spacing: 1px;
}
.review-star-icon.review-star-icon-white i {
  color: var(--white);
}
/* Review style 03 */
.review-style-03 .slider-review-image-thumbs {
  padding: 10px;
  height: auto;
}
.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 img {
  border: 6px solid transparent;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.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 */
@keyframes scale-effect {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-effect {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* 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 */
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* 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 02 */
/* Sliding box style 03 */
/* Social media icon */
.elements-social .email:hover {
  color: #7d7d7d;
}
.elements-social .github:hover {
  color: #4078c0;
}
.elements-social .google:hover {
  color: #dc4a38;
}
.elements-social .instagram:hover {
  color: #FE1F49;
}
.elements-social .linkedin:hover {
  color: #0077b5;
}
.elements-social .medium:hover {
  color: #00ab6c;
}
.elements-social .vimeo:hover {
  color: #1ab7ea;
}
.elements-social .wordpress:hover {
  color: #21759b;
}
.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);
}
.small-icon li {
  margin: 0 5px;
}
.small-icon a {
  font-size: 18px;
  width: 40px;
  height: 40px;
}
.medium-icon li {
  margin: 0 8px;
}
.medium-icon a {
  font-size: 20px;
  width: 50px;
  height: 50px;
}
/*  Social icon dark and light */
.elements-social .light li a {
  color: var(--white);
}
.elements-social .dark li a {
  color: var(--dark-gray);
}
.elements-social .icon-with-animation a:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Social icon style 01 */
.social-icon-style-01 ul li a:hover {
  color: var(--base-color) !important;
}
/* Social icon style 03 */
.social-icon-style-03 ul li a {
  color: var(--white);
  border-radius: 100%;
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.social-icon-style-03 ul li a:hover {
  background-color: var(--white) !important;
  box-shadow: 0 0 30px rgba(23, 23, 23, 0.25);
  transform: translate3d(0, -3px, 0);
}
.social-icon-style-03 ul li a.email {
  background-color: #7d7d7d;
}
.social-icon-style-03 ul li a.github {
  background-color: #4078c0;
}
.social-icon-style-03 ul li a.google {
  background-color: #dc4a38;
}
.social-icon-style-03 ul li a.instagram {
  background-color: #FE1F49;
}
.social-icon-style-03 ul li a.linkedin {
  background-color: #0077b5;
}
.social-icon-style-03 ul li a.medium {
  background-color: #00ab6c;
}
.social-icon-style-03 ul li a.vimeo {
  background-color: #1ab7ea;
}
.social-icon-style-03 ul li a.wordpress {
  background-color: #21759b;
}
.social-icon-style-03 ul li a.youtube {
  background-color: #ff0000;
}
/* Social icon style 04 */
.social-icon-style-04 ul li a {
  z-index: 9;
  position: relative;
}
.social-icon-style-04 ul li a:hover {
  color: var(--white) !important;
}
.social-icon-style-04 ul li a:hover span {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  top: 0;
  left: 0;
}
.social-icon-style-04 ul li a span {
  border-radius: 0;
  display: block;
  height: 0;
  width: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  z-index: -1;
  background-color: var(--dark-gray);
}
.social-icon-style-04 ul li a.email span {
  background-color: #7d7d7d;
}
.social-icon-style-04 ul li a.github span {
  background-color: #4078c0;
}
.social-icon-style-04 ul li a.google span {
  background-color: #dc4a38;
}
.social-icon-style-04 ul li a.instagram span {
  background-color: #FE1F49;
}
.social-icon-style-04 ul li a.linkedin span {
  background-color: #0077b5;
}
.social-icon-style-04 ul li a.medium span {
  background-color: #00ab6c;
}
.social-icon-style-04 ul li a.vimeo span {
  background-color: #1ab7ea;
}
.social-icon-style-04 ul li a.wordpress span {
  background-color: #21759b;
}
.social-icon-style-04 ul li a.youtube span {
  background-color: #ff0000;
}
/* Social icon style 05 */
.social-icon-style-05 ul li a:hover {
  color: var(--white) !important;
}
.social-icon-style-05 ul li a.email {
  color: #7d7d7d;
}
.social-icon-style-05 ul li a.github {
  color: #4078c0;
}
.social-icon-style-05 ul li a.google {
  color: #dc4a38;
}
.social-icon-style-05 ul li a.instagram {
  color: #FE1F49;
}
.social-icon-style-05 ul li a.linkedin {
  color: #0077b5;
}
.social-icon-style-05 ul li a.medium {
  color: #00ab6c;
}
.social-icon-style-05 ul li a.vimeo {
  color: #1ab7ea;
}
.social-icon-style-05 ul li a.wordpress {
  color: #21759b;
}
.social-icon-style-05 ul li a.youtube {
  color: #ff0000;
}
.social-icon-style-05 ul.dark li a:hover {
  color: var(--dark-gray) !important;
}
/* Social icon style 06 */
.social-icon-style-06 ul li a {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 0 24px;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
}
.social-icon-style-06 ul li a .brand-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 100%;
  transition-duration: 0.3s;
}
.social-icon-style-06 ul li a > span {
  line-height: inherit;
  top: 0px;
  position: relative;
  transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}
.social-icon-style-06 ul li a:hover .brand-label {
  top: -50px;
  transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}
.social-icon-style-06 ul li a:hover .brand-icon {
  top: 0;
  transition-duration: 0.3s;
}
.social-icon-style-06 ul li a.email {
  color: #7d7d7d;
}
.social-icon-style-06 ul li a.github {
  color: #4078c0;
}
.social-icon-style-06 ul li a.google {
  color: #dc4a38;
}
.social-icon-style-06 ul li a.instagram {
  color: #FE1F49;
}
.social-icon-style-06 ul li a.linkedin {
  color: #0077b5;
}
.social-icon-style-06 ul li a.medium {
  color: #00ab6c;
}
.social-icon-style-06 ul li a.vimeo {
  color: #1ab7ea;
}
.social-icon-style-06 ul li a.wordpress {
  color: #21759b;
}
.social-icon-style-06 ul li a.youtube {
  color: #ff0000;
}
/* Social icon style 07 */
.social-icon-style-07 ul li a {
  position: relative;
  z-index: 3;
  overflow: hidden;
  vertical-align: middle;
}
.social-icon-style-07 ul li a:hover {
  color: var(--white) !important;
}
.social-icon-style-07 ul li a:hover > span {
  top: 0;
}
.social-icon-style-07 ul li a > span {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.social-icon-style-07 ul li a.email {
  color: #7d7d7d;
}
.social-icon-style-07 ul li a.email span {
  background-color: #7d7d7d;
}
.social-icon-style-07 ul li a.github {
  color: #4078c0;
}
.social-icon-style-07 ul li a.github span {
  background-color: #4078c0;
}
.social-icon-style-07 ul li a.google {
  color: #dc4a38;
}
.social-icon-style-07 ul li a.google span {
  background-color: #dc4a38;
}
.social-icon-style-07 ul li a.instagram {
  color: #FE1F49;
}
.social-icon-style-07 ul li a.instagram span {
  background-color: #FE1F49;
}
.social-icon-style-07 ul li a.linkedin {
  color: #0077b5;
}
.social-icon-style-07 ul li a.linkedin span {
  background-color: #0077b5;
}
.social-icon-style-07 ul li a.medium {
  color: #00ab6c;
}
.social-icon-style-07 ul li a.medium span {
  background-color: #00ab6c;
}
.social-icon-style-07 ul li a.vimeo {
  color: #1ab7ea;
}
.social-icon-style-07 ul li a.vimeo span {
  background-color: #1ab7ea;
}
.social-icon-style-07 ul li a.wordpress {
  color: #21759b;
}
.social-icon-style-07 ul li a.wordpress span {
  background-color: #21759b;
}
.social-icon-style-07 ul li a.youtube {
  color: #ff0000;
}
.social-icon-style-07 ul li a.youtube span {
  background-color: #ff0000;
}
/* Social icon style 08 */
.social-icon-style-08 ul li a:hover {
  opacity: 0.5;
  color: var(--dark-gray) !important;
}
.social-icon-style-08 ul.light li a:hover {
  opacity: 0.5;
  color: var(--white) !important;
}
/* Social icon style 09 */
.social-icon-style-09 ul li a {
  z-index: 9;
  border: 1px solid rgba(35, 35, 35, 0.15);
  border-radius: 100%;
  position: relative;
}
.social-icon-style-09 ul li a:hover {
  color: var(--white) !important;
}
.social-icon-style-09 ul li a:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.social-icon-style-09 ul li a span {
  display: block;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  top: -1px;
  left: -1px;
  padding: 1px;
  box-sizing: content-box;
  margin: 0;
  position: absolute;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  pointer-events: none;
  z-index: -1;
  background-color: var(--dark-gray);
}
.social-icon-style-09 ul.light li a {
  border-color: rgba(255, 255, 255, 0.3);
}
.social-icon-style-09 ul.light li a:hover {
  color: var(--dark-gray) !important;
}
.social-icon-style-09 ul.light li a span {
  background-color: var(--white);
}
/* 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 */
.social-text-style-01 ul li a {
  width: auto;
  height: auto;
  line-height: normal;
}
/* Subcribe style 01 */
/* Subcribe style 02 */
.newsletter-style-02 input {
  border-radius: 4px;
  padding-right: 60px !important;
}
.newsletter-style-02 .btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 0 4px 4px 0;
  padding: 10px 25px 9px 25px;
  display: inline-block;
}
.newsletter-style-02 .btn i {
  margin-left: 0;
  top: inherit;
}
.newsletter-style-02 .btn:active {
  border-color: transparent;
}
/* Subcribe style 03 */
/* Subcribe style 04 */
 .newsletter-style-02 .form-control, .newsletter-style-02 .form-control.is-invalid {
  background-image: inherit;
}
/* Tab */
.nav-tabs > li.nav-item {
  display: flex;
  float: none;
  margin: 0;
  flex: auto;
}
/* Tab style 03 */
/* Tab style 02 */
/* Tab style 03 */
/* Tab style 04 */
/* Tab style 05 */
/* Tab style 06 */
/* Tab style 07 */
/* Tab style 08 */
/* Team style 01 */
.team-style-01 figure figcaption {
  position: absolute;
  bottom: -1px;
}
.team-style-01 figure .text-light-opacity:hover {
  opacity: 1 !important;
}
.team-style-01 figure:hover figcaption .social-icon {
  margin-bottom: 0px !important;
}
/* Team style 02 */
.team-style-02 figure figcaption {
  position: absolute;
  opacity: 0;
  bottom: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.5s cubic-bezier(0.12, 0, 0.39, 0);
}
.team-style-02 figure figcaption .team-member-name {
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -webkit-transition: all 1s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption {
  opacity: 1;
}
.team-style-02 figure:hover figcaption .team-member-name {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption .member-designation {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.7s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.7s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.team-style-02 figure:hover figcaption a:nth-child(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);
}
.team-style-02 figure:hover figcaption a:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption a:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.6s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption a:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-02 figure:hover figcaption a:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.2, 0, 0.3, 1);
}
/* Team style 04 */
.team-style-04 .team-content {
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.team-style-04 figure figcaption {
  position: absolute;
  bottom: -20px;
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.team-style-04 figure:hover figcaption {
  bottom: 0px;
}
/* Team style 05 */
.team-style-05 .team-content {
  position: absolute;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.team-style-05 .team-content p {
  top: 55%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-style-05:hover .team-content {
  opacity: 1;
}
.team-style-05:hover .team-content p {
  top: 50%;
}
.team-style-05:hover .social-icon a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.team-style-05:hover .social-icon a:nth-child(1) {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.team-style-05:hover .social-icon a:nth-child(2) {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.team-style-05:hover .social-icon a:nth-child(3) {
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.team-style-05:hover .social-icon a:nth-child(4) {
  -webkit-transition: all 1.1s ease;
  transition: all 1.1s ease;
}
.team-style-05:hover .social-icon a:nth-child(5) {
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
}
/* Team style 08 */
.team-style-08 figure {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -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);
}
.team-style-08 figure figcaption {
  position: absolute;
  opacity: 0;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-style-08 figure figcaption .team-member-name {
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -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);
}
.team-style-08:hover figure {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}
.team-style-08:hover figure figcaption {
  opacity: 1;
}
.team-style-08:hover figure figcaption .social-icon a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.team-style-08:hover figure figcaption .team-member-name {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-08:hover figure figcaption .member-designation {
  opacity: 0.6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-08:hover figure figcaption a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* Team style 09 */
.team-style-09 .nav-tabs > li.nav-item {
  padding: 0;
}
.team-style-09 .nav-tabs > li.nav-item .number {
  color: var(--dark-gray);
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.team-style-09 .nav-tabs > li.nav-item:last-child .nav-link {
  border-bottom: 0;
}
.team-style-09 .nav-tabs .nav-link {
  border: 0;
  display: flex;
  border-bottom: 1px solid var(--extra-medium-gray);
  padding: 20px 0;
  margin-bottom: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.team-style-09 .nav-tabs .nav-link:hover {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.team-style-09 .nav-tabs .nav-link.active, .team-style-09 .nav-tabs .nav-link:hover {
  border-bottom: 1px solid var(--dark-gray);
}
/* Team style 10 */
.team-style-10 figure {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -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);
}
.team-style-10 figure .hover-switch-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.2s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-10 figure figcaption {
  position: absolute;
  opacity: 0;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-style-10 figure figcaption .team-member-strip {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.8, 1);
  transition: all 0.3s cubic-bezier(0.2, 0, 0.8, 1);
}
.team-style-10 figure figcaption .team-member-strip .team-member-name {
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -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);
}
.team-style-10:hover figure .hover-switch-image {
  left: 0;
  opacity: 1;
}
.team-style-10:hover figure figcaption {
  opacity: 1;
}
.team-style-10:hover figure figcaption .social-icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.team-style-10:hover figure figcaption .social-icon a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.team-style-10:hover figure figcaption .team-member-strip {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-10:hover figure figcaption .team-member-strip .team-member-name {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-10:hover figure figcaption .team-member-strip .member-designation {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-10:hover figure figcaption a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* Testimonial style 01 */
/* Testimonial style 04 */
/* Testimonial style 05 */
/* Testimonial style 12 */
/* Testimonial style 13  */
/* ===================================
   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 */
/* 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 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-switch-image .portfolio-box .portfolio-image .hover-switch-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.portfolio-switch-image .portfolio-box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.portfolio-switch-image .portfolio-box:hover .portfolio-image .hover-switch-image {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/* Portfolio and gallery translate animation */
.portfolio-box, .gallery-box {
  overflow: hidden;
  will-change: transform;
}
.portfolio-box .move-top-bottom, .gallery-box .move-top-bottom {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 0;
}
.portfolio-box .move-bottom-top, .gallery-box .move-bottom-top {
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
}
.portfolio-box .move-bottom-top-self, .gallery-box .move-bottom-top-self {
  overflow: hidden;
}
.portfolio-box .move-bottom-top-self span, .gallery-box .move-bottom-top-self span {
  opacity: 0;
  display: block;
  will-change: transform;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.portfolio-box .move-top-bottom-self, .gallery-box .move-top-bottom-self {
  overflow: hidden;
}
.portfolio-box .move-top-bottom-self span, .gallery-box .move-top-bottom-self span {
  opacity: 0;
  display: block;
  will-change: transform;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.portfolio-box .portfolio-hover, .gallery-box .portfolio-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.portfolio-box .portfolio-image, .gallery-box .portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-box:hover .move-top-bottom, .gallery-box:hover .move-top-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.portfolio-box:hover .move-bottom-top, .gallery-box:hover .move-bottom-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.portfolio-box:hover .move-left-right, .gallery-box:hover .move-left-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.portfolio-box:hover .move-right-left, .gallery-box:hover .move-right-left {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.portfolio-box:hover .move-bottom-top-self span, .gallery-box:hover .move-bottom-top-self span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.portfolio-box:hover .move-top-bottom-self span, .gallery-box:hover .move-top-bottom-self span {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.portfolio-box:hover .move-left-right-self span, .gallery-box:hover .move-left-right-self span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.portfolio-box:hover .move-right-left-self span, .gallery-box:hover .move-right-left-self span {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.portfolio-box:hover .portfolio-hover, .gallery-box:hover .portfolio-hover {
  opacity: 1;
}
/* 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-loading-white::after {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.7);
}
.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;
}
.sticky-image-distortion-wrapper .menu:hover .menu__link .sticky-image-title a {
  opacity: 0.3;
}
/* 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 .text-white-linear:hover span {
  color: var(--white);
  -webkit-text-fill-color: #fff;
}
.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 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 .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: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: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 .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;
}
/* Toolbar wrapper */
/* Shop lable */
.shop-image {
  position: relative;
}
/* Product detail */
/* Single product thumb vertical */
/* 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: 32px;
  width: 32px;
  border-radius: 100%;
  margin-right: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
.shop-color li input[type=radio]:checked + label span:after {
  position: absolute;
  top: 2px;
  left: 2px;
  color: var(--white);
  height: 28px;
  width: 28px;
  border: 2px 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: 37px;
  width: 37px;
  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: 12px;
  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: 37px;
  width: 37px;
  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 48px;
}
/* Cart */
/* Checkout */
/* Minicart */
/* Shop category style 02 */
/* ===================================
   17. Footer
====================================== */
footer {
  padding-top: 110px;
  padding-bottom: 110px;
}
footer .footer-logo img {
  max-height: 30px;
}
footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
footer ul li {
  margin-bottom: 5px;
}
footer .elements-social.social-icon-style-01 li, footer .elements-social.social-icon-style-02 li, footer .elements-social.social-icon-style-05 li, footer .elements-social.social-icon-style-08 li {
  margin: 0 15px 0 0;
}
footer .elements-social.social-icon-style-01 li a, footer .elements-social.social-icon-style-02 li a, footer .elements-social.social-icon-style-05 li a, footer .elements-social.social-icon-style-08 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-light a:hover {
  color: var(--base-color);
}
/* Footer navbar */
/* Footer sticky */
/* Landing page footer */