@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/**
 * Locally Load the typekit/google fonts instead of having to load them from the CDN.
 * Make sure to adjust the preload in header.php if needed
 **/
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*
 * Form section
 */
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAYklEQVR4nO2QQQqAMAwE+04RRT/h0Sd09rfeFEE9iSS1IEgGcillhiSlIAi+AWiBRdJqmf0v0HgCvVWuY3LOnWsLSZNjg7ngULYIpXJLhLfyp0g1+V2kuvxE0ggM10MQ/IMNpUGzjCL9dGAAAAAASUVORK5CYII=") no-repeat right center/1.5em;
  border-radius: 0;
  padding-right: 0.2em;
  background-position: 95% 50%;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

/**
 * Reduce Motion section
 */
/*
 * 1. Remove animations when motion is reduced (opinionated).
 * 2. Remove fixed background attachments when motion is reduced (opinionated).
 * 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
 * 4. Remove transitions when motion is reduced (opinionated).
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important; /* 1 */
    animation-duration: 1ms !important; /* 1 */
    animation-iteration-count: 1 !important; /* 1 */
    background-attachment: initial !important; /* 2 */
    scroll-behavior: auto !important; /* 3 */
    transition-delay: 0s !important; /* 4 */
    transition-duration: 0s !important; /* 4 */
  }
}
/**
 * Simplified Breakpoint mixin
 * Is mobile-first but includes the modifier key to go up/down
 *
 **/
/** Fluid typography mixin
 * ONLY ACCEPTS PIXEL UNITS
 *
 * @param {number} $min-px: The minimum size in pixels of this fluid variable
 * @param {number} $max-px: The maximum size in pixels of this fluid variable
 * @param {number} $min-bp: The minimum viewport size in pixels of this fluid variable
 * @param {number} $max-bp: The maximum viewport size in pixels of this fluid variable
 * @return {property} The fluid typography clamp property
 **/
:root {
  --fluid-jumbo: calc(var(--fluid-h1) * 1.3);
  --fluid-h1: clamp(2.25rem, 1.5vw + 1.88rem, 3rem);
  --fluid-h2: clamp(2rem, 0.75vw + 1.81rem, 2.38rem);
  --fluid-h3: clamp(1.75rem, 0.75vw + 1.56rem, 2.13rem);
  --fluid-h4: clamp(1.5rem, 0.75vw + 1.31rem, 1.88rem);
  --fluid-h5: clamp(1.38rem, 0.5vw + 1.25rem, 1.63rem);
  --fluid-h6: clamp(1.13rem, 0.5vw + 1rem, 1.38rem);
  --fluid-body: clamp(1rem, 0.25vw + 0.94rem, 1.13rem);
  --fluid-body-sm: clamp(0.88rem, 0.25vw + 0.81rem, 1rem);
  --fluid-body-xs: clamp(0.5rem, 0.25vw + 0.44rem, 0.63rem);
}

/**
 * Basic Sizing variables!
 * @important: rem has been modified to 10px
 *
 **/
/**
 * For any sass variables that may be used in multiple places,
 * in the settings folder.
 * List them here.
 *
 * With sass @use rules there is no longer a "global" scope.
 * For example trying to @use "sizing" in fluid-typography will result in an error.
 * Because it is already @forwarded in the settings.scss file. This will cause a looping error in the compiler.
 * When a global value is needed in multiple places list it here or prefer to use a css custom attribute
 **/
.container {
  max-width: 1370px !important;
  padding: 0 25px !important;
  width: 100%;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 15px !important;
  }
}

.g-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  padding: 9px 12px;
  border-radius: 6px;
  text-transform: capitalize;
  line-height: 21px;
  border: 1px solid var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.g-btn:hover {
  border: 1px solid var(--color-secondary);
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 575px) {
  .g-btn {
    font-size: 12px;
    padding: 2px 12px;
  }
}

.gx-0 {
  margin-left: -10px;
  margin-right: -10px;
}

:root {
  --global-width: 1100px;
  --global-width-wide: 1400px;
  --global-content-width: 800px;
  --global-gutter: 1.3rem;
  --global-block-gap: 1.5rem;
  --global-section-padding: 4rem;
  --global-fluid-section-padding: clamp(2.5rem, 1.25vw + 2.19rem, 3.13rem);
  --sizing-base: 1rem;
  --size-xs: calc(var(--sizing-base) * 0.5);
  --size-sm: calc(var(--sizing-base) * 1);
  --size-md: calc(var(--sizing-base) * 1.5);
  --size-lg: calc(var(--sizing-base) * 2);
  --size-xl: calc(var(--sizing-base) * 3);
  --fluid-sizing-min-view: var(--breakpoint-sm, 40rem);
  --fluid-sizing-max-view: var(--global-width, 120rem);
  --fluid-sizer: clamp(0rem, 1.25vw + -0.31rem, 0.63rem);
  --size-fluid-xs: calc(var(--size-xs) + var(--fluid-sizer));
  --fluid-size-xs: calc(var(--size-xs) + var(--fluid-sizer));
  --fluid-size-sm: calc(var(--size-sm) + var(--fluid-sizer));
  --fluid-size-md: calc(var(--size-md) + var(--fluid-sizer));
  --fluid-size-lg: calc(var(--size-lg) + var(--fluid-sizer));
  --fluid-size-xl: calc(var(--size-xl) + var(--fluid-sizer));
}

:root {
  --color-primary: #000;
  --color-secondary: #FFA500;
  --color-dark-grey: #CFCBCB;
  --color-medium-grey: #EAE4E4;
  --color-light-grey: #c9c3c3;
  --color-gold: #F8D38E;
  --color-head-CTA: #E6B252;
  --color-dark-grey-grey-light: white;
  --color-medium-grey-light: white;
  --color-light-grey-light: #f9f9f9;
  --color-gold-light: #fef8ee;
  --color-quinary-light: #e60000;
  --color-dark-grey-grey-dark: #b7b0b0;
  --color-medium-gery-dark: #d4c7c7;
  --color-light-grey-dark: #b1a8a8;
  --color-gold-dark: #f5c05e;
  --color-quinary-dark: #4d0000;
  --color-quinary: #800000;
  --color-black: #000;
  --color-warning: maroon;
  --color-success: green;
}

:root {
  --body-font-family: Roboto, sans-serif;
  --header-font-family: Roboto, sans-serif;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --color-body-font: var(--color-black);
  --header-font-weight: 400;
  --header-line-height: 1.3;
  --color-header: var(--color-black);
  --color-sub-header: var(--color-medium-grey);
  --default-typography-gap: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: var(--default-typography-gap, 1rem) 0;
}

body {
  color: var(--color-black);
  font-size: 14px;
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

body.over {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.is-header {
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
  color: var(--color-header);
  margin-bottom: calc(var(--default-typography-gap, 1rem) * 2);
}

ul,
li {
  list-style-type: none;
}

ul {
  padding-left: 0 !important;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  margin-bottom: 4px;
  line-height: normal;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-weight: 600;
  }
}
body h1 {
  font-size: 48px;
  line-height: 54px;
}
@media (max-width: 767.98px) {
  body h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
body h2 {
  font-size: 40px;
  line-height: 46px;
}
body h3 {
  font-size: 30px;
}
body h4 {
  font-size: 20px;
}
body h5 {
  font-size: 18px;
}
body h6 {
  font-size: 12px;
}
body a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--body-font-family);
  text-decoration: none !important;
  color: var(--color-black);
}
body a:hover {
  color: var(--color-secondary);
}
@media (max-width: 575px) {
  body a {
    font-size: 14px;
    line-height: 22px;
  }
}
body p {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--body-font-family);
  color: #4B5563;
}
@media (max-width: 575px) {
  body p {
    font-size: 14px;
    line-height: 22px;
  }
}

.body-controller {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  overflow: hidden;
}
.body-controller footer {
  margin-top: auto;
}

html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-flow: column nowrap;
}

.course-button {
  cursor: help;
}

button:not([disabled]):not([aria-disabled=true]) {
  cursor: pointer;
}

form input,
form textarea {
  font-size: 14px;
  font-family: var(--body-font-family);
  border-radius: 0;
}

/**
 * CSS grid
 *
 * Ideal for layouts that do not require centering
 * A bonus compared to the `f-grid` is items will never mangle themselves sizing wise
 * CSS grid is very strong about making sure elements do not cause unseen side effects
 * When possible CSS grid > flexbox
 **/
.c-grid {
  --grid-col-sm: 1fr;
  --grid-col-md: 1fr 1fr;
  --grid-col-lg: 1fr 1fr 1fr;
  --grid-gap: var(--global-gutter, 10px);
  display: grid;
  grid-template-columns: var(--grid-col-sm);
  grid-gap: var(--grid-gap);
}
.c-grid .cell {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
}

/**
 * Basic Flex Grid
 *
 * Ideal for layouts that need to center anything
 * Purposely basic as most layouts are never the same.
 * This just gives a sane default to get started
 * With some responsiveness builtin.
 **/
.f-grid {
  display: flex;
  flex-flow: row wrap;
  --cell-size-sm: 100%;
  --cell-size-md: 50%;
  --cell-size-lg: 33.33%;
  --grid-gap: var(--global-gutter, 10px);
  gap: var(--grid-gap);
}
.f-grid .cell {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
  flex-basis: calc(var(--cell-size-sm) - var(--grid-gap));
}

.has-text-color {
  color: var(--custom-color, var(--color-dark-grey-grey));
}

.has-border-color {
  border-color: var(--custom-color, var(--color-dark-grey-grey));
}

.has-background-color {
  background-color: var(--custom-color, var(--color-dark-grey-grey));
}

.has-inline-color {
  color: var(--custom-color, var(--color-dark-grey-grey));
}

.has-color-primary-color {
  --custom-color: var(--color-dark-grey-grey);
}
.has-color-secondary-color {
  --custom-color: var(--color-medium-grey);
}
.has-color-tertiary-color {
  --custom-color: var(--color-tertiary);
}
.has-color-quaternary-color {
  --custom-color: var(--color-quaternary);
}
.has-color-quinary-color {
  --custom-color: var(--color-quinary);
}
.has-color-white-color {
  --custom-color: var(--color-light-grey);
}
.has-color-black-color {
  --custom-color: var(--color-black);
}
.has-color-gray-color {
  --custom-color: var(--color-gray);
}
.has-color-light-gray-color {
  --custom-color: var(--color-light-gray);
}

:where(a) {
  --link-color: var(--color-dark-grey-grey);
  --link-hover-color: var(--color-dark-grey-grey-dark);
  --link-active-color: var(--color-dark-grey-grey-light);
  --link-font-weight: 500;
  color: var(--color-dark-grey-grey);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: --link-font-weight;
}
:where(a):hover, :where(a):active, :where(a):focus {
  color: var(--color-dark-grey-grey-dark);
}
:where(a):active {
  color: var(--color-dark-grey-grey-light);
}
:where(a).ghost-link {
  color: var(--color-light-grey);
}
:where(a).ghost-link:hover, :where(a).ghost-link:active, :where(a).ghost-link:focus {
  color: var(--color-light-gray);
}
:where(a).ghost-link:active {
  color: var(--color-gray);
}

.footer-default {
  padding-top: 30px;
}
@media (max-width: 575px) {
  .footer-default {
    padding-top: 15px;
  }
}
.footer-default .wrapper {
  text-align: center;
}
.footer-default .wrapper h3 {
  margin-bottom: 20px;
}
.footer-default .row .sr {
  text-align: center;
}
@media (max-width: 575px) {
  .footer-default .row .sr img {
    width: 32px;
    height: 30px;
  }
}
.footer-default .row .sr h4 {
  margin-top: 5px;
}
@media (max-width: 575px) {
  .footer-default .row .sr h4 {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .footer-default .row .sr p {
    font-size: 8px;
    line-height: 10px;
    margin: 5px 0 16px;
  }
}

.signup {
  background-color: var(--color-primary);
  border-top: 1px solid #fff;
}
.signup h2 {
  font-size: 38px;
  line-height: 46px;
  margin-top: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 575px) {
  .signup h2 {
    font-size: 18px;
    line-height: 22px;
    margin-top: 10px;
    font-weight: 600;
  }
}
.signup p {
  margin-top: 0;
  color: #fff;
}
@media (max-width: 575px) {
  .signup p {
    margin-bottom: 0;
    font-size: 10px;
    line-height: 12px;
  }
}
.signup .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .signup .row .left-col {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .signup .row .right-col {
    width: 100%;
  }
}
.signup .row .subscription {
  margin: 0;
  max-width: 100%;
  padding-top: 10px;
}
@media (max-width: 575px) {
  .signup .row .subscription {
    padding-top: 8px;
    margin-bottom: 10px;
  }
}
.signup .row .subscription form {
  display: flex;
  justify-content: end;
}
@media (max-width: 575px) {
  .signup .row .subscription form {
    flex-direction: row;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.signup .row .subscription .tnp-field-email {
  max-width: 67%;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .signup .row .subscription .tnp-field-email {
    max-width: 70%;
  }
}
.signup .row .subscription .tnp-field-email .tnp-email {
  border-radius: 5px;
  background-color: #fff;
  width: 100%;
  height: 48px;
  outline: 0;
}
@media (max-width: 575px) {
  .signup .row .subscription .tnp-field-email .tnp-email {
    height: 35px;
  }
}
.signup .row .subscription .tnp-field-email label {
  display: none;
}
.signup .row .subscription .tnp-field-button {
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-left: 50px;
}
@media (max-width: 575px) {
  .signup .row .subscription .tnp-field-button {
    margin: 0;
  }
}
.signup .row .subscription .tnp-field-button .tnp-submit {
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  padding: 0.5em 2.6em;
  height: 48px;
  font-weight: 600;
}
.signup .row .subscription .tnp-field-button .tnp-submit:hover {
  background-color: var(--color-secondary);
}
@media (max-width: 575px) {
  .signup .row .subscription .tnp-field-button .tnp-submit {
    padding: 0.5em 2em;
    font-size: 10px;
    height: 35px;
  }
}

.customer-reviews {
  background-color: #000;
  padding: 5px 0 30px;
}
.customer-reviews h2 {
  color: #fff;
  text-align: center;
  margin: 20px 0px 30px;
}
@media (max-width: 575px) {
  .customer-reviews h2 {
    margin: 10px 0px 12px;
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .customer-reviews .reviews-slider .slick-slide .row-wrap {
    margin: 0;
  }
}
.customer-reviews .rw-bg {
  min-height: 400px;
}
.customer-reviews .rw-bg .thumb {
  width: 100%;
  height: 256px;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-reviews .rw-bg .detail {
  padding: 16.5px 20px 15px 30px;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 575px) {
  .customer-reviews .rw-bg .detail {
    padding: 15px;
  }
}
.customer-reviews .rw-bg .detail .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-reviews .rw-bg .detail .wrap .nm-p-dsgn h4 {
  margin: 0;
  font-size: 14px;
  color: #453232;
  font-weight: 600;
}
.customer-reviews .rw-bg .detail .wrap .nm-p-dsgn span {
  color: #797979;
  font-size: 12px;
  font-weight: 400;
}
.customer-reviews .rw-bg .detail .review-cont {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

#footer {
  display: flex;
  flex-flow: column nowrap;
  background-image: url("../../assets/images/mask-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 30px 0 0px;
  position: relative;
}
#footer .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.48);
}
@media (max-width: 575px) {
  #footer .overlay {
    background-color: rgba(0, 0, 0, 0.61);
  }
}
#footer .container .row {
  z-index: 2;
  position: relative;
}
#footer .container .left-colm p {
  color: #fff;
  max-width: 75%;
  font-family: var(--sec-font-family);
  font-weight: 400;
}
@media (max-width: 575px) {
  #footer .container .left-colm p {
    max-width: 100%;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
  }
}
#footer .container .left-colm .contact {
  display: none;
}
@media (max-width: 575px) {
  #footer .container .left-colm .contact {
    display: flex;
  }
  #footer .container .left-colm .contact a {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  #footer .container .left-colm .logo-outer {
    display: flex;
    -moz-column-gap: 15px;
         column-gap: 15px;
    justify-content: center;
  }
}
#footer .container .right-colm .social.dsk ul {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 575px) {
  #footer .container .right-colm .social.dsk {
    display: none;
  }
}
#footer .container .right-colm .social.mob {
  display: none;
}
@media (max-width: 575px) {
  #footer .container .right-colm .social.mob {
    display: flex;
    justify-content: start;
    align-items: center;
    -moz-column-gap: 100px;
         column-gap: 100px;
    margin-bottom: 10px;
  }
  #footer .container .right-colm .social.mob ul {
    display: flex;
    -moz-column-gap: 35px;
         column-gap: 35px;
    margin: 0;
  }
  #footer .container .right-colm .social.mob ul li a svg {
    font-size: 15px;
  }
  #footer .container .right-colm .social.mob h5 {
    margin: 0;
  }
}
#footer .container .wrap {
  padding: 0 0 0 10px;
}
#footer .container .wrap h5 {
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0;
}
@media (max-width: 575px) {
  #footer .container .wrap h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}
#footer .container .wrap ul li {
  margin-bottom: 8px;
  line-height: normal;
}
@media (max-width: 575px) {
  #footer .container .wrap ul li {
    margin-bottom: 0;
  }
}
#footer .container .wrap ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 575px) {
  #footer .container .wrap ul li a {
    font-weight: 400;
    line-height: 18px;
    font-size: 10px;
  }
  #footer .container .wrap ul li a img {
    width: 12px;
  }
}
#footer .container .footer-logo {
  max-width: 227px;
}
@media (max-width: 575px) {
  #footer .container .footer-logo {
    max-width: 180px;
  }
}
@media (max-width: 767.98px) {
  #footer .container .footer-menu {
    margin-top: 58px;
  }
}
#footer .container #menu-footer-menu {
  display: flex;
  width: 100%;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
@media (max-width: 767.98px) {
  #footer .container #menu-footer-menu {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
#footer .container #menu-footer-menu ul {
  display: flex;
  gap: 50px;
  padding: 0;
  min-width: 245px;
  padding-top: 55px;
}
@media (max-width: 767.98px) {
  #footer .container #menu-footer-menu ul {
    gap: 10px;
    flex-direction: column;
    padding-top: 10px;
    min-width: auto;
  }
}
@media (max-width: 767.98px) {
  #footer .container #menu-footer-menu .footer-logo {
    display: none;
  }
}
#footer .container .mobile-footerLogo {
  min-width: 140px;
  margin-top: 22px;
}
#footer .container .mobile-footerLogo img {
  max-width: 94px;
}
@media (max-width: 767.98px) {
  #footer .container .mobile-footerLogo .footer-address, #footer .container .mobile-footerLogo .footer-socials {
    display: block !important;
  }
}
#footer .copyright {
  z-index: 2;
  position: relative;
}
#footer .copyright .left {
  border-top: 1px solid #F2F2F2;
  padding: 20px 0 30px;
}
#footer .copyright .left p {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  text-align: center;
}
@media (max-width: 575px) {
  #footer .copyright .left p {
    font-size: 12px;
    text-align: center;
  }
}
#footer .copyright #menu-privacy-policy {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: center;
  margin: 0;
}
@media (max-width: 575px) {
  #footer .copyright #menu-privacy-policy {
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: start;
  }
}
#footer .copyright #menu-privacy-policy li a {
  color: #fff;
  font-weight: 500;
  font-family: var(--sec-font-family);
  font-size: 14px;
}
@media (max-width: 575px) {
  #footer .copyright #menu-privacy-policy li a {
    font-size: 12px;
  }
}

body.mm_active {
  overflow: hidden !important;
}
body.mm_active .header-nav::after {
  width: 100%;
}

.header-nav {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}
.header-nav .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(9, 9, 9, 0.48);
}
.header-nav .main-header-row {
  position: relative;
  background-image: url("../../assets/images/mask-bg.png");
  background-size: cover;
  background-position: center center;
}
.header-nav .main-header-row .s-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap {
    -moz-column-gap: 25px;
         column-gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.header-nav .main-header-row .s-wrap .logo-cell {
  max-width: 227px;
  height: 100%;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .logo-cell {
    max-width: 140px;
  }
}
.header-nav .main-header-row .s-wrap .logo-cell .logo img,
.header-nav .main-header-row .s-wrap .logo-cell .logo svg {
  height: auto;
  width: 100%;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .logo-cell .logo img,
  .header-nav .main-header-row .s-wrap .logo-cell .logo svg {
    height: auto;
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .header-search.desktop {
    display: none;
  }
}
.header-nav .main-header-row .s-wrap .header-search.desktop {
  max-width: 500px;
  width: 100%;
}
.header-nav .main-header-row .s-wrap .header-search.desktop form {
  position: relative;
}
.header-nav .main-header-row .s-wrap .header-search.desktop form input {
  width: 100%;
  background: #fff;
  border-radius: 9px;
  border: 1.5px solid #CFCBCB;
  padding: 8px;
  outline: 0;
}
.header-nav .main-header-row .s-wrap .header-search.desktop form button {
  position: absolute;
  right: 10px;
  top: 3px;
  border: 0;
  height: 100%;
}
.header-nav .main-header-row .s-wrap .header-search.desktop form button svg {
  width: 21.5px;
  height: 21.5px;
  color: #919191;
}
.header-nav .main-header-row .s-wrap .contact-cell ul {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 5px;
}
.header-nav .main-header-row .s-wrap .contact-cell ul li a {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .contact-cell.dsk {
    display: none;
  }
}
.header-nav .main-header-row .s-wrap .log-nav-cell .f-mob {
  display: none;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .log-nav-cell .f-mob {
    display: flex;
  }
}
.header-nav .main-header-row .s-wrap .log-nav-cell .f-mob img {
  width: 16.5px;
}
.header-nav .main-header-row .s-wrap .log-nav-cell ul {
  display: flex;
  gap: 35px;
  margin: 0;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .s-wrap .log-nav-cell ul {
    gap: 6px;
  }
  .header-nav .main-header-row .s-wrap .log-nav-cell ul li img {
    width: 22px;
  }
}
.header-nav .main-header-row .s-wrap .log-nav-cell #canvasFilter {
  width: 22px;
  margin-top: -3px;
}
.header-nav .main-header-row .s-wrap .primary-nav.mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .header-nav .main-header-row .s-wrap .primary-nav.mobile {
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .header-nav .main-header-row .s-wrap .primary-nav.mobile ul.mob {
    margin: 0;
  }
  .header-nav .main-header-row .s-wrap .primary-nav.mobile ul.mob li a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
}
@media (max-width: 991.98px) {
  .header-nav .main-header-row .container {
    display: flex;
    justify-content: space-between;
    margin: 0;
    flex-direction: column;
  }
}
.header-nav .main-header-row .container .s-wrapper {
  display: none;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .container .s-wrapper {
    display: flex;
  }
}
.header-nav .main-header-row .container .s-wrapper .header-search.mob {
  max-width: 500px;
  width: 100%;
  margin-bottom: 8px;
}
.header-nav .main-header-row .container .s-wrapper .header-search.mob form {
  position: relative;
}
.header-nav .main-header-row .container .s-wrapper .header-search.mob form input {
  width: 100%;
  background: #fff;
  border-radius: 9px;
  border: 1.5px solid #CFCBCB;
  padding: 5px;
  outline: 0;
  font-size: 12px;
}
.header-nav .main-header-row .container .s-wrapper .header-search.mob form button {
  position: absolute;
  right: 10px;
  top: 3px;
  border: 0;
  height: 100%;
}
.header-nav .main-header-row .container .s-wrapper .header-search.mob form button svg {
  width: 21.5px;
  height: 21.5px;
  color: #919191;
}
@media (max-width: 575px) {
  .header-nav .main-header-row .container .s-wrapper .header-search.mob form button svg {
    width: 17.5px;
    height: 17.5px;
  }
}
.header-nav .main-header-row .primary-nav.desktop {
  background-color: #000;
}
@media (max-width: 767.98px) {
  .header-nav .main-header-row .primary-nav.desktop {
    display: none;
  }
}
.header-nav .main-header-row .primary-nav.desktop.inner-head {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.header-nav .header-cell {
  display: flex;
  /*flex-flow: column nowrap;*/
  align-items: center;
}
.header-nav .header-cell .login-cell {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header-nav .header-cell .login-cell .loggedIn {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
@media (max-width: 575px) {
  .header-nav .header-cell .login-cell .loggedIn {
    display: none;
  }
}
.header-nav .header-cell .login-cell .loggedIn a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
}
.header-nav .header-cell .cart-cell a {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.header-nav .header-cell .cart-cell a .carrtItems {
  position: relative;
}
.header-nav .header-cell .cart-cell a .carrtItems .items-count {
  position: absolute;
  bottom: 3px;
  background: var(--color-secondary);
  color: #fff;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  right: 0;
}
@media (max-width: 575px) {
  .header-nav .header-cell .cart-cell a .carrtItems .items-count {
    width: 14px;
    height: 14px;
    bottom: 0;
  }
}
.header-nav .header-cell .cart-cell a .carrtItems .items-count span {
  font-size: 12px;
}
@media (max-width: 575px) {
  .header-nav .header-cell .cart-cell a .carrtItems .items-count span {
    font-size: 10px;
    line-height: 14px;
  }
}
@media (max-width: 575px) {
  .header-nav .header-cell .cart-cell a .cart-total {
    display: none;
  }
}
.header-nav .header-cell .cart-cell a .cart-total span {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
}
.header-nav #mega-menu-wrap-main-mobile-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
  margin: 0 !important;
}

.header-nav-is-sticky {
  position: sticky;
  top: 0;
  background: var(--color-light-grey);
  z-index: 100;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.top-row {
  background: var(--color-dark-grey-grey);
  color: var(--color-light-grey);
  --header-padding-top: 5px;
  --header-padding-bottom: 5px;
  display: none !important;
}
.top-row a {
  color: var(--color-light-grey);
}
.top-row a:hover, .top-row a:active, .top-row a:focus {
  color: var(--color-light-gray);
}
.top-row a:active {
  color: var(--color-tertiary-light);
}

.main-row {
  --header-padding-top: 0.8em;
  --header-padding-bottom: 0.8em;
}

.row-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#primary-navigation {
  display: flex;
  justify-content: flex-end;
}
#primary-navigation ul a {
  color: var(--color-black);
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 24px;
  transition: all 0.3s ease;
}
#primary-navigation ul a:hover {
  color: var(--color-secondary);
}
#primary-navigation ul .menu-item-has-children {
  position: relative;
  border: 2px solid transparent;
  border-bottom: none;
}
#primary-navigation ul .menu-item-has-children > a {
  position: relative;
  border-bottom: none;
  display: flex;
  align-items: center;
}
#primary-navigation ul .menu-item-has-children > a::after {
  content: "";
  border: solid var(--color-dark-grey);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: flex;
  transition: all 0.1s ease;
  width: 8px;
  height: 8px;
  margin-left: 11px;
}
#primary-navigation ul .menu-item-has-children > a:hover::after {
  border-width: 0px 0px 2px 0;
  border-color: var(--color-medium-grey);
  position: relative;
  width: 13px;
  transform: none;
}
#primary-navigation ul .menu-item-has-children:hover {
  border: 2px solid var(--color-gold);
  border-bottom: none;
}
#primary-navigation ul .sub-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  left: -2px;
  right: 0;
  z-index: 3;
  border: 2px solid var(--color-gold);
  top: 45px;
  width: calc(100% + 4px);
  flex-direction: column;
  gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 0;
  overflow-x: hidden;
}
#primary-navigation ul .sub-menu li {
  width: 100%;
  padding: 5px 10px;
}
#primary-navigation ul .sub-menu li:hover {
  background-color: var(--color-head-CTA);
}
#primary-navigation ul .sub-menu li a {
  font-weight: 500;
}
#primary-navigation ul .sub-menu li a:hover {
  font-weight: 700;
}

.bm-card-inner {
  max-width: 100%;
  margin: 0 auto;
  width: 375px;
}

#mobile-nav-button {
  display: flex;
}

body.mm_active .menu_icon, body.mm_active .main-banner .logo {
  opacity: 0;
  z-index: -1;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu li:first-child a.mega-menu-link {
  padding-left: 0;
}
@media (max-width: 575px) {
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li:first-child a.mega-menu-link {
    padding-left: 10px;
  }
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu li a .mega-indicator {
  vertical-align: middle;
}

@media (max-width: 575px) {
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    padding: 0 10px 0 0 !important;
  }
}

#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
  margin-left: 0;
}

#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
  margin-right: 5px;
}

.hero-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 140px 0;
  position: relative;
}
@media (max-width: 575px) {
  .hero-section {
    padding: 20px 0;
  }
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.48);
}
@media (max-width: 575px) {
  .hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.59);
  }
}
.hero-section .wrapper {
  text-align: center;
  z-index: 1;
  position: relative;
}
.hero-section .wrapper h1 {
  color: var(--color-secondary);
  margin-bottom: 45px;
  margin-top: 0;
}
@media (max-width: 575px) {
  .hero-section .wrapper h1 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 5px;
  }
}
.hero-section .wrapper p {
  color: #fff;
}
@media (max-width: 575px) {
  .hero-section .wrapper p {
    margin-top: 0;
    font-size: 12px;
    line-height: 14px;
    padding: 0 20px;
  }
}
.hero-section .wrapper .actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .hero-section .wrapper .actions {
    flex-direction: column;
  }
}
.hero-section .wrapper .actions .order-bt {
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
  padding: 14px 45px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  height: 52px;
  display: flex;
  align-items: center;
}
.hero-section .wrapper .actions .order-bt:hover {
  background-color: transparent;
  color: #fff;
}
.hero-section .wrapper .actions .contact-bt {
  background-color: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 14px 45px;
  border: 2px solid #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  height: 52px;
  display: flex;
  align-items: center;
}
.hero-section .wrapper .actions .contact-bt:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 575px) {
  .hero-section .wrapper .actions a {
    text-align: center;
    justify-content: center;
    height: 35px !important;
    width: 190px;
    margin: 0 auto;
    padding: 5px 25px !important;
  }
}

.home-content {
  padding-top: 20px;
}
@media (max-width: 575px) {
  .home-content {
    padding-top: 2px;
    margin-bottom: 2px;
  }
}
@media (max-width: 575px) {
  .home-content .leftCol h2 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}
.home-content p {
  color: #919191;
  margin-top: 0;
}
@media (max-width: 575px) {
  .home-content p {
    font-size: 12px;
    line-height: 16px;
    text-align: justify;
  }
}
.home-content .hm-readmore {
  padding: 15px 48px;
  font-size: 18px;
}
@media (max-width: 575px) {
  .home-content .hm-readmore {
    padding: 5px 45px;
    font-size: 12px;
    margin: 0 auto;
  }
}

.trendingTerms, .ourProducts {
  padding: 20px 0;
  border-bottom: 1px solid #E5E7EB;
}
.trendingTerms h2.ptitle, .ourProducts h2.ptitle {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
@media (max-width: 575px) {
  .trendingTerms h2.ptitle, .ourProducts h2.ptitle {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
  }
}
.trendingTerms p, .ourProducts p {
  color: #919191;
  text-align: center;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .trendingTerms p, .ourProducts p {
    margin-top: 0;
  }
}
.trendingTerms .terms-wrapper, .trendingTerms .row, .ourProducts .terms-wrapper, .ourProducts .row {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: start;
  width: 100%;
  gap: 60px;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper, .trendingTerms .row, .ourProducts .terms-wrapper, .ourProducts .row {
    width: auto;
    -moz-column-gap: normal;
         column-gap: normal;
    row-gap: 12px;
    margin-bottom: 10px;
  }
}
@media (min-width: 767px) {
  .trendingTerms .terms-wrapper .wrap, .trendingTerms .row .wrap, .ourProducts .terms-wrapper .wrap, .ourProducts .row .wrap {
    max-width: 400px;
    width: 100%;
  }
}
.trendingTerms .terms-wrapper .wrap .outer-wrap, .trendingTerms .row .wrap .outer-wrap, .ourProducts .terms-wrapper .wrap .outer-wrap, .ourProducts .row .wrap .outer-wrap {
  height: 100%;
  width: 400px;
  display: block;
  padding-bottom: 15px;
  background: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.trendingTerms .terms-wrapper .wrap .outer-wrap:hover, .trendingTerms .row .wrap .outer-wrap:hover, .ourProducts .terms-wrapper .wrap .outer-wrap:hover, .ourProducts .row .wrap .outer-wrap:hover {
  box-shadow: 0px 7px 6px 2px #e4e4e4;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .wrap .outer-wrap, .trendingTerms .row .wrap .outer-wrap, .ourProducts .terms-wrapper .wrap .outer-wrap, .ourProducts .row .wrap .outer-wrap {
    width: 100%;
  }
}
.trendingTerms .terms-wrapper .wrap .outer-wrap a, .trendingTerms .row .wrap .outer-wrap a, .ourProducts .terms-wrapper .wrap .outer-wrap a, .ourProducts .row .wrap .outer-wrap a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.trendingTerms .terms-wrapper .img-wrap, .trendingTerms .row .img-wrap, .ourProducts .terms-wrapper .img-wrap, .ourProducts .row .img-wrap {
  height: 256px;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .img-wrap, .trendingTerms .row .img-wrap, .ourProducts .terms-wrapper .img-wrap, .ourProducts .row .img-wrap {
    height: 120px;
  }
}
.trendingTerms .terms-wrapper .img-wrap img, .trendingTerms .row .img-wrap img, .ourProducts .terms-wrapper .img-wrap img, .ourProducts .row .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trendingTerms .terms-wrapper .td-wrap, .trendingTerms .row .td-wrap, .ourProducts .terms-wrapper .td-wrap, .ourProducts .row .td-wrap {
  padding: 0 25px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .td-wrap, .trendingTerms .row .td-wrap, .ourProducts .terms-wrapper .td-wrap, .ourProducts .row .td-wrap {
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .td-wrap h2, .trendingTerms .row .td-wrap h2, .ourProducts .terms-wrapper .td-wrap h2, .ourProducts .row .td-wrap h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }
}
.trendingTerms .terms-wrapper h4, .trendingTerms .row h4, .ourProducts .terms-wrapper h4, .ourProducts .row h4 {
  color: var(--color-primary);
  line-height: 26px;
  text-align: left;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper h4, .trendingTerms .row h4, .ourProducts .terms-wrapper h4, .ourProducts .row h4 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
  }
}
.trendingTerms .terms-wrapper p, .trendingTerms .row p, .ourProducts .terms-wrapper p, .ourProducts .row p {
  margin-top: 0;
  text-align: left;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper p, .trendingTerms .row p, .ourProducts .terms-wrapper p, .ourProducts .row p {
    font-size: 10px;
    line-height: 12px;
    font-weight: 500;
    text-align: center;
  }
}
.trendingTerms .terms-wrapper .pr-wrap, .trendingTerms .row .pr-wrap, .ourProducts .terms-wrapper .pr-wrap, .ourProducts .row .pr-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .pr-wrap, .trendingTerms .row .pr-wrap, .ourProducts .terms-wrapper .pr-wrap, .ourProducts .row .pr-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.trendingTerms .terms-wrapper .pr-wrap .customize-prod, .trendingTerms .row .pr-wrap .customize-prod, .ourProducts .terms-wrapper .pr-wrap .customize-prod, .ourProducts .row .pr-wrap .customize-prod {
  font-size: 16px;
  padding: 11px 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .pr-wrap .customize-prod, .trendingTerms .row .pr-wrap .customize-prod, .ourProducts .terms-wrapper .pr-wrap .customize-prod, .ourProducts .row .pr-wrap .customize-prod {
    font-size: 12px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    width: 96%;
    justify-content: center;
    margin-top: 8px;
  }
}
.trendingTerms .terms-wrapper .pr-wrap .lowestPrice, .trendingTerms .row .pr-wrap .lowestPrice, .ourProducts .terms-wrapper .pr-wrap .lowestPrice, .ourProducts .row .pr-wrap .lowestPrice {
  text-align: left;
  margin: 0;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .pr-wrap .lowestPrice, .trendingTerms .row .pr-wrap .lowestPrice, .ourProducts .terms-wrapper .pr-wrap .lowestPrice, .ourProducts .row .pr-wrap .lowestPrice {
    font-size: 12px;
    text-align: center;
  }
}
.trendingTerms .terms-wrapper .pr-wrap .lowestPrice .fromPrice_label, .trendingTerms .row .pr-wrap .lowestPrice .fromPrice_label, .ourProducts .terms-wrapper .pr-wrap .lowestPrice .fromPrice_label, .ourProducts .row .pr-wrap .lowestPrice .fromPrice_label {
  display: block;
}
@media (max-width: 575px) {
  .trendingTerms .terms-wrapper .pr-wrap .lowestPrice .fromPrice_label, .trendingTerms .row .pr-wrap .lowestPrice .fromPrice_label, .ourProducts .terms-wrapper .pr-wrap .lowestPrice .fromPrice_label, .ourProducts .row .pr-wrap .lowestPrice .fromPrice_label {
    display: inline-block;
    margin-right: 5px;
  }
}
.trendingTerms .allbtn, .ourProducts .allbtn {
  padding-top: 15px;
  display: flex;
  width: 100%;
}
.trendingTerms .allbtn #viewAllCat, .ourProducts .allbtn #viewAllCat {
  margin: 0 auto;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  color: #000;
  border-bottom: 1px solid #E5E7EB;
  border: 0;
  padding: 15px 64px;
}
.trendingTerms .allbtn #viewAllCat:hover, .ourProducts .allbtn #viewAllCat:hover {
  background-color: var(--color-secondary);
}
@media (max-width: 575px) {
  .trendingTerms .allbtn #viewAllCat, .ourProducts .allbtn #viewAllCat {
    padding: 8px 54px;
    background-color: var(--color-secondary);
  }
  .trendingTerms .allbtn #viewAllCat:hover, .ourProducts .allbtn #viewAllCat:hover {
    background-color: #fff;
  }
}

.home-slides {
  line-height: 0;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .home-slides .slick-list {
    height: 250px;
  }
  .home-slides .slick-list div {
    height: 100%;
  }
}
.home-slides .slick-slide img {
  max-height: 650px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.home-slides .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 2;
  border: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 575px) {
  .home-slides .slick-arrow {
    top: 45%;
    transform: scale(0.7) translate(0px, 0px);
    padding: 5px 6px;
  }
}
.home-slides .slick-arrow.slick-prev {
  left: 6%;
  background-image: url("../../assets/images/prev-arrow.png");
}
@media (max-width: 575px) {
  .home-slides .slick-arrow.slick-prev {
    left: 3%;
  }
}
.home-slides .slick-arrow.slick-next {
  right: 6%;
  background-image: url("../../assets/images/next-arrow.png");
}
@media (max-width: 575px) {
  .home-slides .slick-arrow.slick-next {
    right: 3%;
  }
}
.home-slides .slick-arrow svg {
  font-size: 22px;
}
@media (max-width: 575px) {
  .home-slides .slick-arrow svg {
    font-size: 12px;
  }
}

#custom-category-gallery {
  height: 100%;
}
@media (max-width: 575px) {
  #custom-category-gallery {
    height: 315px;
  }
}
#custom-category-gallery div {
  height: 100%;
}
#custom-category-gallery div img {
  height: 100%;
}
#custom-category-gallery .slick-list {
  max-width: 90%;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-list {
    max-width: 100%;
  }
}
#custom-category-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
  z-index: 2;
  color: #fff;
  border-color: #fff;
  padding: 8px 9px;
  border-radius: 50%;
  border: 2px solid;
  height: 38px;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-arrow {
    top: 45%;
    transform: translate(0px, 0px);
    padding: 2px 8px;
    height: auto;
  }
}
#custom-category-gallery .slick-arrow.slick-prev {
  left: 17%;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-arrow.slick-prev {
    left: 3%;
  }
}
#custom-category-gallery .slick-arrow.slick-next {
  right: 4%;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-arrow.slick-next {
    right: 3%;
  }
}
#custom-category-gallery .slick-arrow svg {
  font-size: 20px;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-arrow svg {
    font-size: 12px;
  }
}
#custom-category-gallery .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 55%;
  transform: translate(-50%, 10px);
  display: flex;
  gap: 7px;
}
@media (max-width: 575px) {
  #custom-category-gallery .slick-dots {
    bottom: 15px;
    left: 50%;
  }
}
#custom-category-gallery .slick-dots li.slick-active button {
  background-color: #fff;
}
#custom-category-gallery .slick-dots li button {
  display: block;
  width: 10px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
}

.shop-products {
  padding-top: 20px;
}
@media (max-width: 575px) {
  .shop-products {
    padding-top: 5px;
  }
}
.shop-products .wrapper .cp_category_page {
  margin-bottom: 50px;
}
.shop-products .wrapper .cp_category_page h3.sec_cat_title {
  display: none;
}
@media (max-width: 575px) {
  .shop-products .wrapper .cp_category_page h3.sec_cat_title {
    display: flex;
    justify-content: center;
    font-weight: 600;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .shop-products .wrapper .cp_category_page {
    flex-wrap: wrap;
  }
  .shop-products .wrapper .cp_category_page .left_sec, .shop-products .wrapper .cp_category_page .right_sec {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .shop-products .wrapper .cp_category_page {
    text-align: center;
    row-gap: 10px;
    margin-bottom: 25px;
  }
  .shop-products .wrapper .cp_category_page .hme_rvs {
    display: none;
  }
}
@media (max-width: 575px) {
  .shop-products .wrapper .cp_category_page .left_sec {
    width: 100%;
  }
  .shop-products .wrapper .cp_category_page .left_sec p {
    font-size: 12px;
    line-height: 16px;
    text-align: justify;
  }
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc h1 {
  line-height: 28px;
  font-size: 24px;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc h2 {
  line-height: 26px;
  font-size: 22px;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc h3 {
  line-height: 24px;
  font-size: 20px;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc #cpCatDesc {
  overflow: hidden;
  max-height: 488px;
  transition: max-height 0.3s ease;
  margin-bottom: 5px;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc #cpCatDesc.expanded {
  max-height: inherit;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc #cpCatDesc span {
  color: #919191;
}
.shop-products .wrapper .cp_category_page .left_sec.cpCatDesc #t-toggle-btn {
  border: 0;
  font-weight: 600;
  padding: 0;
}
.shop-products .wrapper .cp_category_page .right_sec img.default {
  max-width: 90%;
  width: 100%;
  margin-left: auto;
  height: auto;
  float: right;
}
@media (max-width: 575px) {
  .shop-products .wrapper .cp_category_page .right_sec img.default {
    max-width: 100%;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.shop-products .wrapper .cp_category_page .customCanvas-upload {
  display: flex;
  justify-content: start;
  gap: 30px;
}
.shop-products .wrapper .cp_category_page .customCanvas-upload img {
  max-width: 45%;
}
.shop-products .wrapper .content-area {
  width: 100%;
}
.shop-products .wrapper-outer {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .shop-products .wrapper-outer {
    flex-direction: column-reverse;
  }
}
.shop-products .wrapper-outer .wrapper {
  width: 100%;
}
.shop-products .wrapper-outer .wrapper .sec_cat_title.mob {
  display: none;
}
@media (max-width: 575px) {
  .shop-products .wrapper-outer .wrapper .sec_cat_title.mob {
    display: flex;
    justify-content: center;
    font-weight: 600;
  }
}
.shop-products .tr-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-secondary);
}
@media (max-width: 575px) {
  .shop-products .tr-heading {
    font-size: 18px;
    line-height: 26px;
    margin-top: 10px;
  }
}
.shop-products .tr-dsc {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #919191;
  margin: 10px 0px;
}
@media (max-width: 575px) {
  .shop-products .tr-dsc {
    font-size: 12px;
    line-height: 16px;
    margin: 0px 0px 10px;
    font-weight: 400;
  }
}

@media (min-width: 575px) {
  .woocommerce ul.products li.product:not(.last), .woocommerce-page ul.products li.product:not(.last) {
    margin: 0 4.2% 1em 0 !important;
  }
}

.woocommerce ul.products li.product {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
  padding-bottom: 12px;
  transition: all 0.3s ease;
  padding: 0 0 15px !important;
  margin-bottom: 2rem;
  min-height: 428px;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  width: 30.5% !important;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product {
    min-height: auto;
    width: 48% !important;
  }
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0px 10px 6px 1px rgba(0, 0, 0, 0.2509803922);
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  flex-grow: 1;
  display: flex !important;
  flex-direction: column;
}
.woocommerce ul.products li.product a img {
  height: 256px;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product a img {
    height: auto;
  }
}
.woocommerce ul.products li.product h2 {
  font-size: 20px !important;
  line-height: 22px;
  text-align: left;
  padding: 0 15px !important;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product h2 {
    font-size: 14px !important;
    line-height: 16px;
    font-weight: 600;
    padding: 0 5px !important;
    text-align: center;
  }
}
.woocommerce ul.products li.product p {
  text-align: left;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  flex-grow: 1;
  padding: 0 15px !important;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product p {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    padding: 0 5px !important;
    text-align: center;
    margin-top: 10px;
  }
}
.woocommerce ul.products li.product .price {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0;
  font-family: var(--body-font-family);
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product .price {
    font-size: 12px;
    line-height: 14px;
    flex-direction: row;
    -moz-column-gap: 3px;
         column-gap: 3px;
    justify-content: center;
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product {
    padding: 0px 0px 10px !important;
    margin: 0 0 1em !important;
  }
}
.woocommerce ul.products li.product .outerWrap {
  padding: 0 30px 0 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product .outerWrap {
    flex-direction: column;
  }
}
.woocommerce ul.products li.product .outerWrap .product-customBtn {
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 5px 40px;
  height: 45px;
}
@media (max-width: 575px) {
  .woocommerce ul.products li.product .outerWrap .product-customBtn {
    font-weight: 600;
    padding: 5px 20px;
    height: 35px;
    width: 100%;
    justify-content: center;
  }
}

.br_lmp_button_settings .shop-products-view-more:hover {
  border: 1px solid #807E7E;
}
@media (max-width: 575px) {
  .br_lmp_button_settings .shop-products-view-more {
    font-size: 12px !important;
    padding: 12px 70px !important;
  }
}

/* Checkout Btn */
.checkout-button.button, .place-order.button {
  background-color: #000 !important;
}
.checkout-button .button, .place-order .button {
  background-color: #000 !important;
}

.woocommerce-info, .woocommerce-message {
  border-top-color: #000 !important;
}
.woocommerce-info::before, .woocommerce-message::before {
  color: #000 !important;
}

.wpfFilterButtons .wpfFilterButton.wpfButton, .wpfFilterButtons .wpfClearButton.wpfButton {
  font-weight: 400;
  border: 1px solid #222;
  min-height: 35px;
}

.search-results .woocommerce-products-header__title {
  font-size: 20px;
}

.shop-filter-sidebar {
  /* WebKit Browsers (Chrome, Safari, Edge) */
  /* Remove scrollbar buttons (top/bottom arrows) */
}
.shop-filter-sidebar .filter-sidebar h3 {
  font-size: 18px;
  font-weight: 500;
  height: 27px;
}
@media (max-width: 575px) {
  .shop-filter-sidebar .filter-sidebar h3 {
    font-size: 15px;
    height: 20px;
  }
}
.shop-filter-sidebar .filter-sidebar label {
  font-size: 13px;
  line-height: 16px;
  color: #807E7E;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 7px;
}
.shop-filter-sidebar .filter-sidebar label input[type=checkbox] {
  width: 20px;
  height: 15px;
}
.shop-filter-sidebar .filter-sidebar .catWrapper {
  overflow-y: auto;
}
.shop-filter-sidebar .filter-sidebar .filtersidebar button {
  padding: 5px 20px;
  margin: 20px 0 15px;
  background-color: transparent;
  color: #000;
  pointer-events: none;
  opacity: 0.5;
}
.shop-filter-sidebar .filter-sidebar .filtersidebar button.active {
  background-color: #000;
  color: #fff;
  pointer-events: inherit;
  opacity: 1;
}
.shop-filter-sidebar .catWrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 1px;
  background-color: #C0C0C0;
}
.shop-filter-sidebar .catWrapper::-webkit-scrollbar {
  width: 12px;
}
.shop-filter-sidebar .catWrapper::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #636363;
  border-color: #636363;
}
.shop-filter-sidebar .toggle-icon {
  font-weight: 500;
  font-size: 20px;
  transition: transform 0.3s ease;
  float: right;
}
.shop-filter-sidebar .toggle-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.shop-filter-sidebar .toggle-content.open {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin; /* Options: auto | thin | none */
  scrollbar-color: #636363 #C0C0C0; /* thumb color | track color */
}
.shop-filter-sidebar .toggle-content.open::-webkit-scrollbar {
  width: 12px;
}
.shop-filter-sidebar .toggle-content.open::-webkit-scrollbar-track {
  background-color: #C0C0C0;
  box-shadow: none;
  border-radius: 0; /* remove rounding */
}
.shop-filter-sidebar .toggle-content.open::-webkit-scrollbar-thumb {
  background-color: #636363;
  border-radius: 0; /* remove thumb rounding */
  border: none;
}
.shop-filter-sidebar .toggle-content.open::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.gallery-content.f-one {
  position: relative;
}

.products.loading, .f-one.loading {
  position: relative;
  min-height: 200px;
  opacity: 0.6;
}

.products.loading:after, .f-one.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#tr_form {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-left: 30px;
  margin-bottom: 15px;
  justify-content: center;
}
@media (max-width: 575px) {
  #tr_form {
    flex-wrap: wrap;
    padding: 0;
  }
}
#tr_form .t_form {
  width: 70%;
  position: relative;
}
@media (max-width: 575px) {
  #tr_form .t_form {
    width: 100%;
  }
}
#tr_form .t_form input {
  width: 100%;
  padding: 13px 10px;
  border: 1.5px solid #8D8787;
  border-radius: 4px;
}
#tr_form .t_form button {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0px 20px;
  border: 0;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 0;
}
#tr_form .t_form #clearSearch {
  position: absolute;
  right: 60px;
  cursor: pointer;
  font-size: 16px;
  display: none; /* Hidden by default */
  color: #aaa;
  top: 50%;
  transform: translateY(-50%);
}

.single .related-products {
  background-color: #000;
  padding: 30px 0 5px;
}
@media (max-width: 575px) {
  .single .related-products {
    padding: 20px 0 5px;
  }
}
.single .related-products h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFA500;
  text-align: center;
  margin: 0 0 15px;
}
@media (max-width: 575px) {
  .single .related-products h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
.single .related-products .outer-wrap:hover {
  box-shadow: none !important;
}

/***** Cart page style *****/
.woocommerce-cart .innerHero .wrapper h2 {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .woocommerce-cart .innerHero .wrapper h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
  max-width: 16%;
  width: 100%;
}
.woocommerce-cart-form__cart-item.cart_item .product-thumbnail img {
  width: 180px;
}
.woocommerce-cart-form__cart-item.cart_item .product-remove .remove {
  height: 54px;
  width: 54px;
}
@media (max-width: 575px) {
  .woocommerce-cart-form__cart-item.cart_item .product-remove .remove {
    height: 35px;
  }
}
.woocommerce-cart-form__cart-item.cart_item .product-remove .remove img {
  height: 54px;
  width: 54px;
}
@media (max-width: 575px) {
  .woocommerce-cart-form__cart-item.cart_item .product-remove .remove img {
    height: 30px;
    width: 30px;
  }
}
.woocommerce-cart-form__cart-item.cart_item .product-quantity .qty {
  border: 0;
}

@media (max-width: 575px) {
  .woocommerce table.cart thead {
    display: block;
  }
  .woocommerce table.cart thead th {
    font-size: 12px;
  }
  .woocommerce table.cart thead th.product-price {
    opacity: 0;
  }
}
@media (max-width: 575px) {
  .woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item td {
    text-align: left !important;
    font-size: 12px;
    padding: 5px;
    border-top: 0;
  }
  .woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
    display: block;
  }
  .woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item td::before {
    display: none !important;
  }
  .woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item .product-price {
    display: none;
  }
}
.woocommerce table.cart .woocommerce-cart-form__cart-item.cart_item .product-name a {
  text-transform: capitalize;
}
.woocommerce table.cart .dt-dd-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  font-size: 12px;
}
@media (max-width: 575px) {
  .woocommerce table.cart .dt-dd-wrapper {
    margin-bottom: 1px;
    padding-bottom: 2px;
    flex-direction: column;
    align-items: start;
    gap: 1px;
  }
}
.woocommerce table.cart .dt-dd-wrapper p {
  margin: 0;
  font-size: 12px;
}
@media (max-width: 575px) {
  .woocommerce table.cart .dt-dd-wrapper p {
    line-height: 16px;
  }
}
@media (max-width: 575px) {
  .woocommerce table.cart .dt-dd-wrapper dd.variation-PolePocket {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

.woocommerce table.woocommerce-cart-form__contents {
  border: 0;
  border-bottom: 1px solid #E5E7EB;
}
.woocommerce thead th {
  font-size: 24px;
}
.woocommerce .cart .coupon .button {
  color: #fff;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.woocommerce .cart .actions {
  padding: 30px 12px;
}
.woocommerce .cart .actions button[name=update_cart] {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1607843137);
  background: #919191;
  color: #fff !important;
  height: 45px;
  width: 170px;
  border-radius: 9px;
  font-size: 17px;
}
.woocommerce .cart .actions .coupon {
  width: 34%;
  position: relative;
}
@media (max-width: 575px) {
  .woocommerce .cart .actions .coupon {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 10px;
  }
}
.woocommerce .cart .actions .coupon #coupon_code {
  width: 100%;
  margin: 0;
  border: 1px solid #DCDBDD;
  border-radius: 5px;
  padding: 13px 6px 10px;
}
.woocommerce .woocommerce-MyAccount-navigation {
  width: 25%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 10px 0 10px 15px;
}
.woocommerce .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link:last-child {
  margin-bottom: 0;
}
.woocommerce .product-remove a.remove:hover {
  background: #fff;
  transition: all 0.3s ease;
}
.woocommerce .product-remove a.remove:hover img {
  transform: scale(1.1);
}
.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
.woocommerce .cart-collaterals .cart_totals .shop_table {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 0;
  padding: 20px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table td {
  text-align: right;
  color: #919191;
}
.woocommerce .cart-collaterals .cart_totals .shop_table th, .woocommerce .cart-collaterals .cart_totals .shop_table td {
  border: 0;
}
.woocommerce .wc-proceed-to-checkout {
  width: 22%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .woocommerce .wc-proceed-to-checkout {
    width: 100%;
  }
  .woocommerce .wc-proceed-to-checkout .checkout-button {
    padding: 12px 20px !important;
  }
}
.woocommerce .wc-proceed-to-checkout a {
  border-radius: 5px;
}

/* Checkout */
.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-product-metadata__description {
  display: none !important;
}

@media (max-width: 575px) {
  .wp-block-woocommerce-checkout-actions-block .wc-block-components-checkout-place-order-button {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 5px !important;
    min-height: 2em !important;
  }
}

/* Login - Register page */
.userAccountPage h2 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .userAccountPage h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
  }
}
.userAccountPage .u-column1 {
  padding: 50px 55px;
}
@media (max-width: 575px) {
  .userAccountPage .u-column1 h2 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
  }
}
.userAccountPage .u-column2 {
  padding: 10px 55px;
}
@media (max-width: 575px) {
  .userAccountPage .u-column2 h2 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
  }
}
.userAccountPage .u-column2, .userAccountPage .u-column1 {
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .userAccountPage .u-column2, .userAccountPage .u-column1 {
    padding: 10px 15px;
    margin: 20px 0;
  }
}
.userAccountPage .row {
  background-color: #fff;
}
@media (max-width: 575px) {
  .userAccountPage .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.userAccountPage .row .LoginForm {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2509803922);
}
.userAccountPage .row .RegisterForm {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2509803922);
}
.userAccountPage .woocommerce-form {
  max-width: 517px;
  width: 100%;
  margin: 0 auto;
}
.userAccountPage .woocommerce-form p {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.userAccountPage .woocommerce-form p input {
  border-radius: 9px;
  padding: 10px;
  border-color: #DCDBDD;
}
.userAccountPage .woocommerce-form label {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .userAccountPage .woocommerce-form label {
    font-size: 14px;
  }
}
.userAccountPage .woocommerce-form .woocommerce-button {
  margin: 0 auto;
  background-color: #000;
  color: #fff;
  max-width: 300px;
  width: 100%;
  padding: 10px;
  border-radius: 9px;
}
.userAccountPage .woocommerce-form .woocommerce-form-login__rememberme {
  margin: 2px 0 15px;
  font-weight: 400;
  font-size: 16px;
}
.userAccountPage .woocommerce-form .woocommerce-LostPassword {
  text-align: center;
}

#customer_login .woocommerce-form-login__submit, #customer_login .woocommerce-form-register__submit {
  color: #fff;
  background-color: #000;
}

.contactUS {
  padding-top: 10px;
}
.contactUS .contactDetails {
  padding-left: 0;
}
@media (max-width: 575px) {
  .contactUS .contactDetails h1, .contactUS .contactDetails h2 {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
  }
  .contactUS .contactDetails p {
    font-size: 12px;
    line-height: normal;
  }
}
.contactUS .ct-random-images {
  padding-top: 15px;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #000;
  padding: 50px 0 10px;
}
@media (max-width: 575px) {
  .contact-form-wrapper {
    padding: 10px 0 1px;
  }
}
.contact-form-wrapper h1, .contact-form-wrapper h2 {
  color: #fff;
  text-align: center;
}
@media (max-width: 575px) {
  .contact-form-wrapper h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .contact-form-wrapper h2 {
    font-size: 12px;
    line-height: normal;
    margin-top: 1px;
  }
}
@media (max-width: 575px) {
  .contact-form-wrapper .wpcf7-form p {
    margin: 0;
  }
}
.contact-form-wrapper .wpcf7-form p .wpcf7-submit {
  margin-top: 10px;
}
.contact-form-wrapper .wpcf7-form label.sg-field {
  width: 49.2%;
  display: inline-block;
}
.contact-form-wrapper .wpcf7-form label.sg-field:nth-child(odd) {
  margin-right: 1.6%;
}
@media (max-width: 575px) {
  .contact-form-wrapper .wpcf7-form label.sg-field {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-form-wrapper .wpcf7-form label.sg-field.sg-mb {
    width: 49.2% !important;
  }
}
.contact-form-wrapper .wpcf7-form label.message {
  width: 100%;
}
.contact-form-wrapper .wpcf7-form label.message textarea {
  max-height: 195px;
}
.contact-form-wrapper .wpcf7-form input, .contact-form-wrapper .wpcf7-form select, .contact-form-wrapper .wpcf7-form textarea {
  background-color: #000 !important;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  padding: 12.5px;
}
@media (max-width: 575px) {
  .contact-form-wrapper .wpcf7-form input, .contact-form-wrapper .wpcf7-form select, .contact-form-wrapper .wpcf7-form textarea {
    padding: 5px;
    font-size: 14px;
  }
}
.contact-form-wrapper .wpcf7-form select {
  color: #8a8787;
}
.contact-form-wrapper .wpcf7-form select option {
  color: #fff !important;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  margin: 0 auto;
  display: flex;
  background-color: #fff !important;
  color: #000;
  font-size: 14px;
  border-radius: 10px;
}
.contact-form-wrapper .wpcf7-form text::-moz-placeholder, .contact-form-wrapper .wpcf7-form textarea::-moz-placeholder {
  color: #8a8787 !important;
  opacity: 1 !important;
}
.contact-form-wrapper .wpcf7-form text::placeholder,
.contact-form-wrapper .wpcf7-form textarea::placeholder {
  color: #8a8787 !important;
  opacity: 1 !important;
}
.contact-form-wrapper .wpcf7-form input::-moz-placeholder,
.contact-form-wrapper .wpcf7-form textarea::-moz-placeholder {
  color: #8a8787;
}
.contact-form-wrapper .wpcf7-form input:-ms-input-placeholder,
.contact-form-wrapper .wpcf7-form textarea:-ms-input-placeholder {
  color: #8a8787;
}
.contact-form-wrapper .wpcf7-form input::-ms-input-placeholder,
.contact-form-wrapper .wpcf7-form textarea::-ms-input-placeholder {
  color: #8a8787;
}

/* ABOUT PAGE */
.aboutUS h2.title {
  text-align: center;
  color: #333333;
}
@media (max-width: 575px) {
  .aboutUS h2.title {
    font-size: 18px;
    line-height: 24px;
    color: #191919;
    font-weight: 700;
  }
}
.aboutUS .wp-block-heading {
  font-size: 36px;
  line-height: 40px;
  color: #333333;
}
@media (max-width: 575px) {
  .aboutUS .wp-block-heading {
    font-size: 18px;
    line-height: 24px;
    color: #191919;
    font-weight: 700;
  }
}
.aboutUS p {
  text-align: justify;
  color: #333333;
  margin-top: 0;
}

/* OUR PRODUCTS  */
.ourProducts .ptitle {
  color: #000 !important;
}
.ourProducts .outerWrapper .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .ourProducts .outerWrapper .top {
    align-items: baseline;
    margin-bottom: 5px;
  }
}
.ourProducts .outerWrapper .top .termTitle {
  margin: 0;
}
.ourProducts .outerWrapper .top .termTitle a {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .ourProducts .outerWrapper .top .termTitle a {
    font-size: 18px;
    line-height: 20px;
  }
}
.ourProducts .outerWrapper .top .viewAll {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .ourProducts .outerWrapper .top .viewAll {
    font-size: 16px;
    line-height: 18px;
    color: #FFA500;
    text-decoration: underline !important;
  }
}/*# sourceMappingURL=app.css.map */