/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
select {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types 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 display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


dl,
h1,
h2,
h3,
h4,
hr,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

input::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */


code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  border-color: currentColor;
}

.container {
  width: 100%;
}

@media (min-width: 320px) {
  .container {
    max-width: 320px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 820px) {
  .container {
    max-width: 820px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}

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

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.top-2 {
  top: 2px;
}

.top-5 {
  top: 5px;
}

.top-10 {
  top: 10px;
}

.top-20 {
  top: 20px;
}

.top-23 {
  top: 23px;
}

.top-25 {
  top: 25px;
}

.top-35 {
  top: 35px;
}

.top-40 {
  top: 40px;
}

.top-45 {
  top: 45px;
}

.top-118 {
  top: 118px;
}

.-top-2 {
  top: -2px;
}

.-top-6 {
  top: -6px;
}

.-top-15 {
  top: -15px;
}

.top-m25 {
  top: -25px;
}

.-top-43 {
  top: -43px;
}

.top-50p {
  top: 50%;
}

.right-0 {
  right: 0;
}

.right-10 {
  right: 10px;
}

.right-16 {
  right: 16px;
}

.right-20 {
  right: 20px;
}

.right-25 {
  right: 25px;
}

.right-30 {
  right: 30px;
}

.right-8p {
  right: 8%;
}

.bottom-0 {
  bottom: 0;
}

.bottom-10 {
  bottom: 10px;
}

.bottom-15 {
  bottom: 15px;
}

.bottom-20 {
  bottom: 20px;
}

.left-0 {
  left: 0;
}

.left-10 {
  left: 10px;
}

.left-15 {
  left: 15px;
}

.left-20 {
  left: 20px;
}

.left-28 {
  left: 28px;
}

.left-66 {
  left: 66px;
}

.left-71 {
  left: 71px;
}

.left-100 {
  left: 100px;
}

.left-113 {
  left: 113px;
}

.-left-12 {
  left: -12px;
}

.-left-30 {
  left: -30px;
}

.-left-65 {
  left: -65px;
}

.-left-165 {
  left: -165px;
}

.left-50p {
  left: 50%;
}

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

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

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

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

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

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

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

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

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

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

.focus\:z-999:focus {
  z-index: 999;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.clear-both {
  clear: both;
}

.m-10 {
  margin: 10px;
}

.m-auto {
  margin: auto;
}

.mx-6 {
  margin-left: 6px;
  margin-right: 6px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-m30 {
  margin-left: -30px;
  margin-right: -30px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 1px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-13 {
  margin-top: 13px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-17 {
  margin-top: 17px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.-mt-2 {
  margin-top: -2px;
}

.-mt-3 {
  margin-top: -3px;
}

.-mt-13 {
  margin-top: -13px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

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

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.-mb-70 {
  margin-bottom: -70px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-160 {
  margin-left: 160px;
}

.-ml-5 {
  margin-left: -5px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.hidden {
  display: none;
}

.h-2 {
  height: 2px;
}

.h-14 {
  height: 14px;
}

.h-15 {
  height: 15px;
}

.h-18 {
  height: 18px;
}

.h-20 {
  height: 20px;
}

.h-28 {
  height: 28px;
}

.h-30 {
  height: 30px;
}

.h-33 {
  height: 33px;
}

.h-35 {
  height: 35px;
}

.h-38 {
  height: 38px;
}

.h-40 {
  height: 40px;
}

.h-45 {
  height: 45px;
}

.h-48 {
  height: 48px;
}

.h-50 {
  height: 50px;
}

.h-60 {
  height: 60px;
}

.h-68 {
  height: 68px;
}

.h-75 {
  height: 75px;
}

.h-80 {
  height: 80px;
}

.h-100 {
  height: 100px;
}

.h-180 {
  height: 180px;
}

.h-190 {
  height: 190px;
}

.h-230 {
  height: 230px;
}

.h-420 {
  height: 420px;
}

.h-510 {
  height: 510px;
}

.h-530 {
  height: 530px;
}

.h-632 {
  height: 632px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.min-h-25 {
  min-height: 25px;
}

.min-h-35 {
  min-height: 35px;
}

.min-h-53 {
  min-height: 53px;
}

.min-h-77 {
  min-height: 77px;
}

.min-h-93 {
  min-height: 93px;
}

.min-h-120 {
  min-height: 120px;
}

.min-h-130 {
  min-height: 130px;
}

.min-h-135 {
  min-height: 135px;
}

.min-h-144 {
  min-height: 144px;
}

.min-h-150 {
  min-height: 150px;
}

.min-h-168 {
  min-height: 168px;
}

.min-h-180 {
  min-height: 180px;
}

.min-h-240 {
  min-height: 240px;
}

.min-h-307 {
  min-height: 307px;
}

.min-h-312 {
  min-height: 312px;
}

.min-h-336 {
  min-height: 336px;
}

.min-h-390 {
  min-height: 390px;
}

.min-h-420 {
  min-height: 420px;
}

.min-h-431 {
  min-height: 431px;
}

.min-h-477 {
  min-height: 477px;
}

.min-h-480 {
  min-height: 480px;
}

.w-9 {
  width: 9px;
}

.w-10 {
  width: 10px;
}

.w-15 {
  width: 15px;
}

.w-17 {
  width: 17px;
}

.w-20 {
  width: 20px;
}

.w-22 {
  width: 22px;
}

.w-28 {
  width: 28px;
}

.w-30 {
  width: 30px;
}

.w-45 {
  width: 45px;
}

.w-68 {
  width: 68px;
}

.w-75 {
  width: 75px;
}

.w-120 {
  width: 120px;
}

.w-143 {
  width: 143px;
}

.w-144 {
  width: 144px;
}

.w-149 {
  width: 149px;
}

.w-150 {
  width: 150px;
}

.w-155 {
  width: 155px;
}

.w-196 {
  width: 196px;
}

.w-230 {
  width: 230px;
}

.w-241 {
  width: 241px;
}

.w-300 {
  width: 300px;
}

.w-335 {
  width: 335px;
}

.w-366 {
  width: 366px;
}

.w-530 {
  width: 530px;
}

.w-1000 {
  width: 1000px;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

.w-4\/5 {
  width: 80%;
}

.w-8\/9 {
  width: 88.888%;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-6\/12 {
  width: 50%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-9\/12 {
  width: 75%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-87p {
  width: 87%;
}

.w-90p {
  width: 90%;
}

.w-95p {
  width: 95%;
}

.w-full {
  width: 100%;
}

.w-100vw {
  width: 100vw;
}

.min-w-146 {
  min-width: 146px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-90p {
  max-width: 90%;
}

.max-w-full {
  max-width: 100%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.list-none {
  list-style-type: none;
}

.list-disc {
  list-style-type: disc;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-items-center {
  justify-items: center;
}

.gap-15 {
  gap: 15px;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.rounded-2 {
  border-radius: 2px;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-6 {
  border-radius: 6px;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-50 {
  border-radius: 50px;
}

.border-0 {
  border-width: 0;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b-4 {
  border-bottom-width: 4px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-none {
  border-style: none;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.border-borderGreen {
  --tw-border-opacity: 1;
  border-color: rgba(175, 211, 77, var(--tw-border-opacity));
}

.border-grey {
  --tw-border-opacity: 1;
  border-color: rgba(100, 100, 100, var(--tw-border-opacity));
}

.border-lightBgGrey {
  --tw-border-opacity: 1;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity));
}

.border-gray2 {
  --tw-border-opacity: 1;
  border-color: rgba(88, 83, 83, var(--tw-border-opacity));
}

.border-gray3 {
  --tw-border-opacity: 1;
  border-color: rgba(197, 197, 197, var(--tw-border-opacity));
}

.border-grayFooter {
  border-color: rgba(61,61,65,0.2);
}

.border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity));
}

.border-gray-light2 {
  --tw-border-opacity: 1;
  border-color: rgba(251, 251, 251, var(--tw-border-opacity));
}

.border-gray5 {
  --tw-border-opacity: 1;
  border-color: rgba(138, 138, 138, var(--tw-border-opacity));
}

.border-gray8 {
  --tw-border-opacity: 1;
  border-color: rgba(151, 151, 151, var(--tw-border-opacity));
}

.border-gray11 {
  --tw-border-opacity: 1;
  border-color: rgba(230, 230, 230, var(--tw-border-opacity));
}

.border-accessibleGreen {
  --tw-border-opacity: 1;
  border-color: rgba(0, 168, 48, var(--tw-border-opacity));
}

.border-cleanGreen {
  --tw-border-opacity: 1;
  border-color: rgba(0, 179, 52, var(--tw-border-opacity));
}

.border-magicGreen {
  --tw-border-opacity: 1;
  border-color: rgba(105, 255, 0, var(--tw-border-opacity));
}

.border-emeraldBlack {
  --tw-border-opacity: 1;
  border-color: rgba(0, 85, 52, var(--tw-border-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-linkGreen {
  --tw-bg-opacity: 1;
  background-color: rgba(2, 133, 67, var(--tw-bg-opacity));
}

.bg-lightBgGrey {
  --tw-bg-opacity: 1;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity));
}

.bg-menuWhite {
  background-color: rgba(255,255,255,0.95);
}

.bg-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.bg-humBurgerBg {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 240, 240, var(--tw-bg-opacity));
}

.bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 102, 255, var(--tw-bg-opacity));
}

.bg-gray7 {
  --tw-bg-opacity: 1;
  background-color: rgba(218, 218, 218, var(--tw-bg-opacity));
}

.bg-gray13 {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 85, 52, var(--tw-bg-opacity));
}

.bg-gray12 {
  --tw-bg-opacity: 1;
  background-color: rgba(162, 162, 162, var(--tw-bg-opacity));
}

.bg-arrow-bg {
  background-color:  rgba(98,189,75,0.48);
}

.bg-accessibleGreen {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 168, 48, var(--tw-bg-opacity));
}

.bg-buttonLinerGradient {
  background-color: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
}

.bg-cleanGreen {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 179, 52, var(--tw-bg-opacity));
}

.bg-magicGreen {
  --tw-bg-opacity: 1;
  background-color: rgba(105, 255, 0, var(--tw-bg-opacity));
}

.bg-emeraldBlack {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 85, 52, var(--tw-bg-opacity));
}

.hover\:bg-linkGreen:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(2, 133, 67, var(--tw-bg-opacity));
}

.hover\:bg-accessibleGreen:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 168, 48, var(--tw-bg-opacity));
}

.bg-darkHeaderBg {
  background-image: url('https://images.ctfassets.net/jeoogvtfnmyl/v5xWBv8JUImEz02M1gRxz/6c1a98d7639fd152c11e29fba2dfc501/Green_NavigationBarcompressed.jpg');
}

.bg-smallBar {
  background-image: linear-gradient(270deg, #B4EC51 0%, #429321 100%);
}

.bg-footerMobile {
  background-image: linear-gradient(90deg, #B4EC51 0.03%, #429321 47.25%, #B4EC51 100%);
}

.bg-adpTransparentbg {
  background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.95) 52.63%, rgba(255,255,255,0.8) 100%);
}

.bg-alpBanner {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,1));
}

.bg-alpSeeMore {
  background-image: linear-gradient(to right, #6dae48, #60a735, #028a47);
}

.bg-pdpMenu {
  background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.9) 100%);
}

.bg-ghost-bottom {
  background-image:  linear-gradient(270deg, #A0DC48 0%, #429321 100%);
}

.bg-ghost-mobile {
  background-image: url('https://images.ctfassets.net/jeoogvtfnmyl/BbRe4c63iAjyyDSUKviu2/28fd26148c0f675d88132f3d6bdfce3b/Mask_group.jpg');
}

.bg-cover {
  background-size: cover;
}

.bg-select-position {
  background-position: 97%;
}

.bg-topbar-position {
  background-position: 0 50%;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 2px;
}

.p-6 {
  padding: 6px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-6p {
  padding: 6%;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-23 {
  padding-left: 23px;
  padding-right: 23px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-3 {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 1px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-33 {
  padding-top: 33px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-50 {
  padding-left: 50px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.font-WorkSansLight {
  font-family: work-sans-light;
}

.font-WorkSansRegular {
  font-family: work-sans-regular;
}

.font-WorkSansItalic {
  font-family: work-sans-italic;
}

.font-WorkSans500 {
  font-family: work-sans-500;
}

.font-WorkSans600 {
  font-family: work-sans-600;
}

.font-WorkSans700 {
  font-family: work-sans-700;
}

.font-CoreRhino65 {
  font-family: core-rhino-65;
}

.font-CoreRhino75 {
  font-family: core-rhino-75;
}

.font-CoreRhino65Italic {
  font-family: core-rhino-65-italic;
}

.font-PoppinsRegular {
  font-family: Poppins-Regular;
}

.font-MohrBold {
  font-family: mohr-bold;
}

.font-Gilroy {
  font-family: Gilroy;
}

.font-GilroyBold {
  font-family: Gilroy-Bold;
}

.font-GilroySemibold {
  font-family: Gilroy-Semibold;
}

.font-GilroyMedium {
  font-family: Gilroy-Medium;
}

.font-GilroyMediumItalic {
  font-family: Gilroy-Medium-Italic;
}

.font-MohrBlack {
  font-family: Mohr-Black;
}

.text-10 {
  font-size: 0.625rem;
}

.text-11 {
  font-size: 0.6875rem;
}

.text-12 {
  font-size: 0.75rem;
}

.text-13 {
  font-size: 0.8125rem;
}

.text-14 {
  font-size: 0.875rem;
}

.text-15 {
  font-size: 0.9375rem;
}

.text-16 {
  font-size: 1rem;
}

.text-17 {
  font-size: 1.0625rem;
}

.text-18 {
  font-size: 1.125rem;
}

.text-19 {
  font-size: 1.1875rem;
}

.text-20 {
  font-size: 1.25rem;
}

.text-21 {
  font-size: 1.313rem;
}

.text-22 {
  font-size: 1.375rem;
}

.text-24 {
  font-size: 1.5rem;
}

.text-25 {
  font-size: 1.5625rem;
}

.text-28 {
  font-size: 1.75rem;
}

.text-30 {
  font-size: 1.875rem;
}

.text-36 {
  font-size: 2.25rem;
}

.text-40 {
  font-size: 2.5rem;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-900 {
  font-weight: 900;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-0 {
  line-height: 0;
}

.leading-11 {
  line-height: 0.6875rem;
}

.leading-14 {
  line-height: 0.875rem;
}

.leading-15 {
  line-height: 0.9375rem;
}

.leading-16 {
  line-height: 1rem;
}

.leading-18 {
  line-height: 1.125rem;
}

.leading-19 {
  line-height: 1.1875rem;
}

.leading-20 {
  line-height: 1.25rem;
}

.leading-21 {
  line-height: 1.3125rem;
}

.leading-22 {
  line-height: 1.375rem;
}

.leading-24 {
  line-height: 1.5rem;
}

.leading-25 {
  line-height: 1.5625rem;
}

.leading-26 {
  line-height: 1.625rem;
}

.leading-28 {
  line-height: 1.75rem;
}

.leading-29 {
  line-height: 1.8125rem;
}

.leading-30 {
  line-height: 1.875rem;
}

.leading-31 {
  line-height: 1.9375rem;
}

.leading-36 {
  line-height: 2.25rem;
}

.leading-38 {
  line-height: 2.375rem;
}

.leading-40 {
  line-height: 2.5rem;
}

.leading-42 {
  line-height: 2.625rem;
}

.leading-45 {
  line-height: 2.8125rem;
}

.tracking-2 {
  letter-spacing: 0.2px;
}

.tracking-9 {
  letter-spacing: 0.9px;
}

.tracking-11 {
  letter-spacing: 0.11px;
}

.tracking-13 {
  letter-spacing: 0.13px;
}

.tracking-14 {
  letter-spacing: 0.14px;
}

.tracking-15 {
  letter-spacing: 0.15px;
}

.tracking-16 {
  letter-spacing: 0.16px;
}

.tracking-17 {
  letter-spacing: 0.17px;
}

.tracking-18 {
  letter-spacing: 0.18px;
}

.tracking-19 {
  letter-spacing: 0.19px;
}

.tracking-22 {
  letter-spacing: 0.22px;
}

.tracking-23 {
  letter-spacing: 0.23px;
}

.tracking-26 {
  letter-spacing: 0.26px;
}

.tracking-28 {
  letter-spacing: 0.28px;
}

.tracking-33 {
  letter-spacing: 0.33px;
}

.tracking-34 {
  letter-spacing: 0.34px;
}

.tracking-35 {
  letter-spacing: 0.35px;
}

.tracking-36 {
  letter-spacing: 0.36px;
}

.tracking-49 {
  letter-spacing: 0.49px;
}

.tracking-50 {
  letter-spacing: 0.50px;
}

.tracking-65 {
  letter-spacing: 0.65px;
}

.tracking-normal {
  letter-spacing: .5px;
}

.tracking-m19 {
  letter-spacing: -0.19px;
}

.tracking-m16 {
  letter-spacing: -0.16px;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-linkGreen {
  --tw-text-opacity: 1;
  color: rgba(2, 133, 67, var(--tw-text-opacity));
}

.text-hoverGreen {
  --tw-text-opacity: 1;
  color: rgba(2, 122, 62, var(--tw-text-opacity));
}

.text-grey {
  --tw-text-opacity: 1;
  color: rgba(100, 100, 100, var(--tw-text-opacity));
}

.text-lightGrey {
  --tw-text-opacity: 1;
  color: rgba(61, 61, 65, var(--tw-text-opacity));
}

.text-smallGreyText {
  --tw-text-opacity: 1;
  color: rgba(191, 191, 191, var(--tw-text-opacity));
}

.text-darkGrey {
  --tw-text-opacity: 1;
  color: rgba(61, 60, 66, var(--tw-text-opacity));
}

.text-gray2 {
  --tw-text-opacity: 1;
  color: rgba(88, 83, 83, var(--tw-text-opacity));
}

.text-blue {
  --tw-text-opacity: 1;
  color: rgba(0, 102, 255, var(--tw-text-opacity));
}

.text-gray4 {
  --tw-text-opacity: 1;
  color: rgba(61, 61, 61, var(--tw-text-opacity));
}

.text-gray9 {
  --tw-text-opacity: 1;
  color: rgba(118, 118, 118, var(--tw-text-opacity));
}

.text-accessibleGreen {
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
}

.text-emeraldBlack {
  --tw-text-opacity: 1;
  color: rgba(0, 85, 52, var(--tw-text-opacity));
}

.text-breadCrumbLinks {
  --tw-text-opacity: 1;
  color: rgba(2, 136, 69, var(--tw-text-opacity));
}

.text-couponsBlue {
  --tw-text-opacity: 1;
  color: rgba(0, 60, 165, var(--tw-text-opacity));
}

.text-secondaryDarkBlue {
  --tw-text-opacity: 1;
  color: rgba(27, 50, 92, var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-linkGreen:hover {
  --tw-text-opacity: 1;
  color: rgba(2, 133, 67, var(--tw-text-opacity));
}

.hover\:text-accessibleGreen:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
}

.hover\:text-emeraldBlack:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 85, 52, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.placeholder-lightGray::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(183, 180, 180, var(--tw-placeholder-opacity));
}

.placeholder-lightGray::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(183, 180, 180, var(--tw-placeholder-opacity));
}

.opacity-0 {
  opacity: 0;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.shadow-card {
  --tw-shadow: 0 3px 13px 0 rgba(0,0,0,0.12);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-submenu {
  --tw-shadow: 0 -1px 7px 1px rgba(0,0,0,0.14);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-adpsticky {
  --tw-shadow:  0 2px 4px 0 rgba(0,0,0,0.11);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-alpcardMobile {
  --tw-shadow: 0 4px 12px 0 rgba(0,0,0,0.12);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-alpBanner {
  --tw-shadow: 0 4px 9px 0 rgba(0,0,0,0.18);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

/* Work Sans fonts */

@font-face {
  font-family: 'work-sans-light';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/6ro4fuInvnmKUP9NOeaU2e/e996f2b667624863b358a605ac0f586c/WorkSans-Light.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/01CY0E6jjEnNbPuSIcS0jW/f8189b1442640515316c85c7041f1f5e/WorkSans-Light.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-regular';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/6hSTYSZS0tAoUN9BJ20ra1/b99f99a8c57611d8885a1cee1fcc282e/WorkSans-Regular.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/5Fo3jpyqs0f7OpDufBw3vV/e10ee51b8214abb0dea95bd22f164f72/WorkSans-Regular.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-italic';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/6RQkriYBDmZ5mrvFPwH9oX/5a1de3bb6bd3b11a03d2a879b047b113/WorkSans-Italic-VariableFont_wght.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/4GTm8NkqFj42AHrqvxqECk/422b23a5f4b68a2abec0f794bea9322a/WorkSans-Italic-VariableFont_wght.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-500';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/5qnRGVNyKq31olUeqBA2ZT/60183b35619780fdb2709ee9c15173bc/WorkSans-Medium.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/18C3S9nUnScgq2trnVxJmL/53c8d4c1f140c12a1569d80421cb784b/WorkSans-Medium.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-500-italic';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/1SAIUTUXQR8Mv6P5AwSfnA/df53488883813b9ff6de68aeefb06400/WorkSans-MediumItalic.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/31X0Za98iTP3OEL1D3AWiP/72976592131ff74fbeb4f84617d4e2d3/WorkSans-MediumItalic.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-600';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/6LLLFK3yoYrBaWh1qjyBOR/820c9864d472a8a7de33aa25d0b1af12/WorkSans-SemiBold.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/4zaq4B54S3yaCoLMssmR0T/e3349e6bdbd45ca1e82254dc6b5eb3e3/WorkSans-SemiBold.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'work-sans-700';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/3NTmqrZkGFL76i3i7Kbv60/b11d3299938e76d1b308026c2e9a8d01/WorkSans-Bold.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/5VISyBlb1ldHxDr94rhZXT/51dc5c10a1a73ef2735828041aa9a1ee/WorkSans-Bold.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

/* CoreRhino fonts */

@font-face {
  font-family: 'core-rhino-45';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/2en4TLyYIUGs9cL6kMEq6A/82c6cccc98967386bc9b21e2484c95ab/CoreRhino45Regular.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/XE0FaNNW1t0QdNSSCpY83/b1cc2f19a779f1574e7874c4f7447716/CoreRhino45Regular.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'core-rhino-55';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/4CyosAZsBn3snjYK1WsFrO/14920259710d55d4718dc51256c12688/CoreRhino55Medium.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/66byJum7dSXevvEGFmQaq5/7345cac3a0d87cde47a6c76fa0a62f0d/CoreRhino55Medium.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'core-rhino-65';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/76baLwi5aKfjCZRWxCupNG/65128d9945dc6e4e141cd3cf37a57ce3/CoreRhino65Bold.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/117Ts0Op461eIIr8AY3KDp/e4d947d16eb9e72c846347d1cd423600/CoreRhino65Bold.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'core-rhino-75';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/4PqEqpKD35PHKDYWptfqPu/6df08be9df5476e4a5364de0d4061d9b/CoreRhino75Heavy.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/4Ycrv0RZ1X8jP7pZnUdCCr/d914100c13997b44de91cbe5e1724556/CoreRhino75Heavy.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

@font-face {
  font-family: 'core-rhino-65-italic';

  src:url('https://assets.ctfassets.net/jeoogvtfnmyl/1WQybEroVZteQGZByom6rG/ea03790b6a77b546e40467f3730df72e/CoreRhino65Bold-Italic.woff2'),
        url('https://assets.ctfassets.net/jeoogvtfnmyl/2WA5LbavlEAIVa4kWdzf3X/18d360331bcde4d6df657be957b15f89/CoreRhino65Bold-Italic.woff');

  font-weight: normal;

  font-style: normal;

  font-display: block;
}

/* Cocogoose W05 Fonts */

@font-face{
  font-family:"Cocogoose W05 Thin";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/5RdP64XRL31gbMvH0233U7/c4f80541e0592bb1bca7ed2111480517/f95b659b-127e-4740-8ef9-6a6a194e5e4a.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/2UQzCikyIM3CnaUmZN4kgE/dadb71b6108ce43db9c93097695aea36/69d4b347-23cf-4b82-9dd4-4f24c9039e02.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Thin Italic";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/4JPsXUac0QSeJqETJgZxOa/90669d4609f167ca1a4ef3ea24e8b731/ddf614f4-3cb3-4b21-ae19-0feae0f21863.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/AV9Ib8uw6PHIk66LP0aWP/5cd7c57458b706a9c7f00bfde13ec67e/b9f7d720-e127-4b41-8775-71570686a9cb.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 UltraLight";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/1hq6vF6tYrJwdQq1VKE8nQ/c2341d4e7a1cde5471cff1aba99e4521/67840e0d-9bb9-453b-8abf-524bcc2581b7.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/5ZGKVXdLrDJ6196RpwGYhW/542bbe27231d34801f44e33639ab4639/d7b30dea-7d04-4bff-8655-3761d19480ea.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 UltraLight Italic";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/U7PpAxD5HKqmEdf7G8IKl/ff0e0dbf39f574559bc187840b808af6/9f92410c-e1b4-4210-a6de-ccde971bc821.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/1I5Z87q5xdO278t63FxycN/0d07b4aaae6080589fe96a2ea76f30bf/d1ff7878-1099-4921-a656-e5a1c93316c9.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Light";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/3SDfdgc2NGtEpv90mmps6b/08aa3640d96c05f3b7099e0d582c35d0/43037253-5457-4a87-b3d8-2f1026d596d5.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/4Qf8A7AJdvByQdQQk8F5FT/920118de9e42cc340de38a7d7d94bb1d/4c323e95-3aad-4d36-81f7-084269ee9ce5.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Light Italic";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/1aeCKVbFWcipfkPxn6oiZk/c16d1e61760053bfdf996a6a5bb85057/545d8ff6-87e5-46b0-8296-614458a74519.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/7gQDEchN30j1QsMCCSsLaR/f060ba9fa9bf38cd2bd5eadf96efb638/cdd7c38a-88d0-416b-97b9-d95a3bacef99.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 SemiLight";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/5jkAQJXAgKAQqiGHfUJAY5/3622afc43fa2b569cb20977a77e710e7/81e9858f-51dc-44fe-a4f7-b33e8abf0cb2.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/6nNghGsN5NoJAXMdp6gOdJ/f7dabb5bdbe0c72a1d8271f8a520d25f/89e256e2-a5c5-495f-a76d-c430769a4fc2.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 SemiLight Italic";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/1xOOeKbSPbvrcixziM7SQr/a17dec5ee2840f10d292de1e9719c3fb/d579554d-708b-4545-b695-6e23ca6430de.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/2ebQpCkaup2bZHpvBie4G1/c0bdeafa0eb3b63f1c0596d21b9334b8/a47ebd9b-7a36-4e03-9958-436a1e41629b.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Regular";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/69DFKHb1cYHQPXDGTYGIOc/40c98b92c9b8f024c1aec9e9f1474667/4075eced-756b-4754-8203-2396328686d2.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/J8lDQdBdDgJ16TO4mGeyl/6eaa1e335e76a2604ec4cf2b59cb5945/f8a3e086-cf42-4ba8-a08a-57d6a23524b4.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Italic";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/eELQpBUnN5LsPyY1gQ1T4/5e3f9e8fe68cbfc35fbc03158a6bb2ad/0273e482-9777-40e3-a4ce-9edd2a304cea.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/2rikOzcuTnrlcLJ7ne2tzi/2391c7285b6d3395dbbe22c54b93bcc2/5dcf1c18-b42e-4cb6-839b-9a725f76f104.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Inline";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/5740a3je568CbEv34dqPS6/fd8ff9b21a6bc681cb9cd4a16deaa7bf/238fbf30-98f5-4fa1-bc82-b9e9962eac90.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/7tTA2Zl08gvsmlvij3wOwh/6c24b55f8b3195893cf476e9711ed9de/a3e338dc-912e-4ae2-8c3b-e72d6e075f27.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Letterpress";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/4z1pNDtNY4NGnVj8X0v1g7/f9a6b14a8b11dc2734131ccb84469e8a/ce5ac9b2-b6dd-4e62-a98d-c5e286c0c70c.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/5bIWGPW2UPbhVwBYN59AMg/24bd4b86354f2ac16dbac2a5926ac802/be27a194-218b-49c9-87d0-4392c3f1d76d.woff") format("woff");
}

@font-face{
  font-family:"Cocogoose W05 Outlined";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/1e1zZzreUtsur4vaEz74v8/e7eea4c31f51aa3cd22cd6d88bfe1cf7/912fe500-547c-43a4-af47-d142c786aa6e.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/4IoVEL8GT5ZwnHrfHzJOUS/d801fe9bb35a0f89b0c4475157975ace/29788428-981f-419c-bffb-9f9b3264204a.woff") format("woff");
}

@font-face{
  font-family:"CocogooseProBlockW05BlockInnerline";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/5O6N1cPLLIw78B14lcej1w/abc0eec6abe0b93f37f248e37578655c/309ef813-ee42-4ddd-8e16-4c295c828351.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/18XXVIjzgvvMfptF9XmkDE/52b8fbb51dfc5ec27d7bb542ce870ba5/b3b92f72-430a-43cf-ba5a-5aa69e844e7c.woff") format("woff");
}

@font-face{
  font-family:"CocogooseProBlockW05BlockBorder";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/5CVH9Jcpa0pVudCm1ILTCH/0b5ff16fc358fea476df423ab7ea29fc/5fbfcd5c-1e86-4ac6-a13d-2e4c1b3afb46.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/6sm6zHn1EGKgMLylnQ1eqf/19516bdafaa6a6cc71ffbe0e301b5745/2053b2bc-c18e-450a-8f20-8dc0db38ffc3.woff") format("woff");
}

@font-face{
  font-family:"CocogooseProBlockW05BlockGradient";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/48kcGgX3UfY3Cu1V77u6DS/d52c835ceb3ddc30495f05073e54b978/ecd569c5-9141-4c03-876d-88e71ee327b1.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/3sqi04pLSYrrwOifKCqfHq/e01c3bb356a87709bedaff55c529aa53/66d53d71-ae2d-4f08-bfe4-733a7ade9ee5.woff") format("woff");
}

@font-face{
  font-family:"CocogooseProBlockW05BlockShado";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/1LmAHsYXi2EOFRXuEIrrTq/c089fa82d583e04c237813e27ca172b5/d9b13040-9783-46e7-9239-a8f71acae059.woff2") format("woff2"),url("https://assets.ctfassets.net/jeoogvtfnmyl/6NgXJKGllY2cRoDPQhRCs/403284ee251219f4040909aeeaefd1a5/b44e9e3e-60f8-4651-a8e8-d6f1fd42aa4d.woff") format("woff");
}

@font-face {
  font-family: "Poppins-Regular";

  font-weight: 400;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/4iqyDRlOMDl8NhUbL9Xadf/dc8f56cdf317d12e3683f1b8a60a6130/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Medium";

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/3iGTL908d4cmyUz49EZO1P/db6cda9fce90aafa0b2d286cbf175536/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-SemiBold";

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/1PiLirNO5E5IBFnXOvVOLC/371bb52959ca702ee9f7a9e3360053b8/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Bold";

  font-weight: 700;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/18BnstwC8GPMtfelkKvVcB/5e218b02ac999e0595c2dca16fb3d84e/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family:"just-lovely";

  src:url("https://assets.ctfassets.net/jeoogvtfnmyl/71n9aWEyWESEFqIS0zOx6z/74b41a545cfd4b30a079698545ba2cff/JustLovely.woff") format("woff"),
        url("https://assets.ctfassets.net/jeoogvtfnmyl/5Xu5oex7JearzjqSssANR4/7746a4e785af827958ba7c96c62f6e4a/JustLovely.woff2") format("woff2");
}

@font-face {
  font-family: "Mohr-Regular";

  font-weight: normal;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/1ZpohYvCMSd14ch198y6Nx/833990e9cb984ddd657d45542864bc8a/Mohr-Regular.otf") format("truetype")
}

@font-face {
  font-family: "Mohr-Bold";

  font-weight: 900;

  src: url("https://assets.ctfassets.net/zd7gjvh8ans9/4BAkBdeet6rvhuyGCGE9VL/2f63c0bdd86166877103f614a6d5fa8e/Mohr-Bold.otf") format("truetype")
}

@font-face {
  font-family: "Mohr-Black";

  font-weight: 900;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/2rMrMWLTcE4nLADzhvyruo/d8f60f7940c0494eb328968b30c6f7cb/Mohr-Black.otf") format("truetype")
}

@font-face {
  font-family: "Mohr-Alt-Black";

  font-weight: normal;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/2zhUEKx4T8QQPKErHm1K2i/e7a6bf04ddbfe0706b8a8fbaaa1cfe12/MohrAlt-Black.otf") format("truetype")
}

@font-face {
  font-family: "Gilroy";

  font-weight: normal;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/1unQGpGBmJfvee3iTytTfh/27492fbd7247cc6334760d27883fb38d/Gilroy-Regular.otf") format("truetype")
}

@font-face {
  font-family: "Gilroy-Bold";

  font-weight: 700;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/17WwKCP99PMkP7fgmsP5Uw/e419980b5643ab86278ae139588ae2b7/Gilroy-Bold.otf") format("truetype")
}

@font-face {
  font-family: "Gilroy-Semibold";

  font-weight: 700;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/AVLkeQu66WYWgxrqQpmpy/4a6ed31b5df471100cc8739f0244bc38/Gilroy-SemiBold.otf") format("truetype")
}

@font-face {
  font-family: "Gilroy-Medium";

  font-weight: 700;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/4LlSA7mxfjz7Sj4davFVuR/028eba5a6fe3ff24ff904f2a855889db/Gilroy-Medium.otf") format("truetype")
}

@font-face {
  font-family: "Gilroy-Medium-Italic";

  font-weight: normal;

  src: url("https://assets.ctfassets.net/jeoogvtfnmyl/4FYAMBi8uVlQLfXonrg2S9/9adea1b434fcf3269fc64d3c59e47879/Gilroy-MediumItalic.otf") format("truetype")
}

.slick-list,.slick-slider,.slick-track{
  position:relative;
  display:block
}

.slick-loading .slick-slide,.slick-loading .slick-track{
  visibility:hidden
}

.slick-slider{
  box-sizing:border-box;
  -webkit-user-select:none;
  -moz-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
  -khtml-user-select:none;
  touch-action:pan-y;
  -webkit-tap-highlight-color:transparent
}

.slick-list{
  overflow:hidden;
  margin:0;
  padding:0
}

.slick-list:focus{
  outline:0
}

.slick-list.dragging{
  cursor:pointer;
  cursor:hand
}

.slick-slider .slick-list,.slick-slider .slick-track{
  transform:translate3d(0,0,0)
}

.slick-track{
  top:0;
  left:0
}

.slick-track:after,.slick-track:before{
  display:table;
  content:''
}

.slick-track:after{
  clear:both
}

.slick-slide{
  display:none;
  float:left;
  height:100%;
  min-height:1px
}

.slick-slide img{
  display:block
}

.slick-slide.slick-loading img{
  display:none
}

.slick-slide.dragging img{
  pointer-events:none
}

.slick-initialized .slick-slide{
  display:block
}

.slick-vertical .slick-slide{
  display:block;
  height:auto;
  border:1px solid transparent
}

.slick-arrow.slick-hidden{
  display:none
}

/* RR */

#ratingsReviewWrapper .writeReviewButton {
  padding: 11px 40px !important;
  color: #000 !important;
  background-color: #028845;
  border: none !important;
}

#ratingsReviewWrapper .writeReviewButton:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(2, 122, 62, var(--tw-bg-opacity));
  color: #fff !important;
}

#ratingsReviewWrapper [data-bv-show=rating_summary] .bv_main_container .bv_button_buttonMinimalist,
#ratingsReviewWrapper .bv-action-bar {
  display: none !important;
}

#ratingsReviewWrapper * {
  font-family: 'Gilroy' !important;
  color: #000 !important;
}

#ratingsReviewWrapper .bv-section-summary {
  padding: 0 60px !important;
}

#ratingsReviewWrapper .bv_numReviews_text {
  color: #028845 !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-title {
  color: #028845 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
}

#ratingsReviewWrapper .bv-control-bar.bv-control-bar-filter-offset {
  background: #F7F7F7 !important;
}

#ratingsReviewWrapper .bv-control-bar.bv-control-bar-filter-offset select{
  background: #F7F7F7 !important;
}

#ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable {
  background: #fff !important;
  border: 2px solid #028845 !important;
  border-radius: 50px !important;
  padding: 15px 0 !important;
  font-size: 20px !important;
  width: 22% !important;
  font-family: work-sans-500 !important;
  cursor: pointer !important;
  transition-duration: 0.2s;
}

#ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable:hover {
  box-shadow: none !important;
  background: #028845 !important;
}

#ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable span{
  color: #028845 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

#ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable:hover span {
  color: #fff !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-pagination {
  margin-bottom: 35px!important;
  margin-top: 20px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-rating-stars-on {
  color: #FFB702 !important;
  font-size: 23px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-rating-stars-off {
  color: #757575 !important;
  font-size: 23px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-details-container,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data {
  display: none !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-core {
  float: left !important;
  width: 100% !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-item.bv-content-review {
  border-bottom: 2px solid #f3f3f3 !important;
  padding-top: 30px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-actions-container {
  margin-bottom: 15px !important;
  padding-left: 243px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-header {
  position: relative !important;
  float: left !important;
  width: 18% !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-list-clientresponses .bv-content-header {
  width: 21% !important;
  transform: translateX(85%);
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-content-list-clientresponses .bv-content-details-offset-off {
  margin-top: 100px !important;
  margin-left: -4% !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-header-meta {
  display: flex !important;
  margin-top: 25px !important;
  flex-direction: column !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-details-offset-on,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-content-details-offset-off {
  float: left !important;
  margin-bottom: 10px !important;
  margin-top: 50px !important;
  width: 70%!important;
  word-wrap: break-word!important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-summary,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-item .bv-content-feedback-vote-request p {
  font-size: 16px !important;
  line-height: 27px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data-summary .bv-content-meta .bv-content-datetime-stamp {
  font-size: 15px !important;
  line-height: 30px !important;
  color: #585353 !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data-summary .bv-content-meta .bv-author {
  font-size: 18px !important;
  line-height: 20px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-title-container {
  position: absolute !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 400% !important;
  bottom: auto !important;
  transform: translateX(27.5%);
  margin-top: 25px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data-summary .bv-content-meta .bv-content-datetime {
  position: absolute!important;
  right: 0!important;
  left: auto!important;
  top: 0!important;
  bottom: auto!important;
  margin-top: 0!important;
  transform: translateX(110%);
  width: 100%!important;
  margin-top: -8px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-list-clientresponses .bv-content-data-summary .bv-content-meta .bv-content-datetime {
  transform: translateX(0);
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data-summary .bv-content-meta .bv-content-datetime-dot {
  display: none !important;
}

.bv-cv2-cleanslate .bv-shared .bv-dropdown-container .bv-dropdown ul .bv-dropdown-item {
  font-family: work-sans-regular !important;
}

#reviewSection.reviewSection .bv_main_container {
  padding-left: 0 !important;
  padding-top: 0 !important;
  margin-left: 0 !important;
}

#reviewSection.reviewSection .bv_main_container *{
  font-family: work-sans-regular !important;
  font-size: 16px !important;
}

.search-body div.bv_modal_component_container[data-bv-modal] {
  display: none !important;
  visibility: hidden !important;
}

.searchRatingSummary [data-bv-show=rating_summary] .bv_main_container .bv_numReviews_text,
.searchRatingSummary [data-bv-show=rating_summary] .bv_main_container .bv_numReviews_text:hover,
.searchRatingSummary [data-bv-show=rating_summary] .bv_main_container .bv_avgRating_component_container,
.searchRatingSummary [data-bv-show=rating_summary] .bv_main_container .bv_avgRating_component_container:hover {
  font-family: 'Gilroy' !important;
  font-size: 16px !important;
}

#reviewSection.reviewSection .bv_main_container .bv_numReviews_text {
  color: #028845 !important;
}

#reviewSection.reviewSection .bv_main_container .bv_button_buttonMinimalist {
  color: #028845 !important;
  text-decoration: underline !important;
}

#reviewSection.reviewSection .bv_main_container > .bv_main_container_row_flex:last-child {
  border-left: 1px solid #028845 !important;
  padding-left: 15px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-inline-histogram-header  > .bv-content-title,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-secondary-rating-summary-header  > .bv-content-title {
  color: #3d3d41 !important;
  font-size: 16px !important;
  text-transform: capitalize !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-active-filters .bv-active-filter-button.bv-focusable,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-active-filters .bv-active-filter-button.bv-focusable .bv-close-icon {
  color: #fff !important;
}

#reviewSection.reviewSection .bv_main_container > .bv_main_container_row_flex #ratings-summary:hover {
  border: none !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-histogram-filter-helper,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-secondary-rating-summary-id {
  font-size: 16px !important;
}

.bounty-body #bv-mboxzone-lightbox.bv-cv2-cleanslate .bv-shared .bv-mbox-wide .bv-mbox {
  background-color: #028845 !important;
}

#reviewSection .bv_main_container .bv_stars_component_container,
#ratingsReviewWrapper .bv_main_container .bv_stars_component_container {
  padding-right: 10px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-secondary-ratings-container,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-secondary-rating-summary-bars-container .bv-secondary-rating-summary-bars {
  background-color: #d4d4d4 !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-secondary-ratings-container,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-secondary-ratings-value {
  height: 12px !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-control-bar .bv-expand-filter-button {
  display: none !important;
}

#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-section-summary-inline .bv-secondary-rating-summary .bv-secondary-rating-summary-container .bv-secondary-rating-summary-bars,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-section-summary-inline .bv-secondary-rating-summary .bv-secondary-rating-summary-bars .bv-secondary-rating-summary-bar,
#ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-section-summary-inline .bv-secondary-rating-summary .bv-secondary-rating-summary-value {
  height: 10px !important;
}

#bv-mbox-breadcrumb-item{
  font-size: 30px !important;
  font-family: work-sans-600 !important;
  line-height: 35px!important;
}

.bounty-body .bv-cv2-cleanslate .bv-core-container-156 .bv-mbox .bv-mbox-sidebar .bv-submission-sidebar .bv-subject-info-section .bv-subject-info span {
  font-size: 18px!important;
  line-height: 26px !important;
  font-family: work-sans-600 !important;
}

#bv-mbox-lightbox-list{
  background-color: #3e7905!important;
}

.bv-fieldset-arrowicon{
  border-left-color: #3e7905!important;
}

.searchRatingSummary [data-bv-show=rating_summary] .bv_main_container .bv_main_container_row_flex .bv_button_buttonMinimalist {
  display: none !important;
}

@media only screen and (max-width: 1023px) {
  #ratingsReviewWrapper .container {
    padding-left: 0;
    padding-right: 0;
  }

  #reviewSection.reviewSection .bv_main_container {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  #reviewSection.reviewSection .bv_main_container>.bv_main_container_row_flex:last-child,
    #reviewSection.reviewSection .bv_main_container>.bv_main_container_row_flex:last-child > div {
    padding-right: 0 !important;
  }

  #ratingsReviewWrapper .ratingCountHeading,
    #ratingsReviewWrapper .bv_main_container #ratings-summary {
    padding: 0 !important;
  }

  #ratingsReviewWrapper .bv_main_container {
    padding: 0 !important;
    margin: 0 !important;
    padding-left: 10px !important;
    padding-top: 3px !important;
  }

  #ratingsReviewWrapper .bv-section-summary,
    #ratingsReviewWrapper .bv_main_container .bv_main_container_row_flex {
    padding: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-flex-container-column {
    width: 100% !important;
  }

  #ratingsReviewWrapper .bv_main_container > .bv_main_container_row_flex:last-child {
    display: none !important;
  }

  #ratingsReviewWrapper .bv-control-bar.bv-control-bar-filter-offset {
    margin-left: -30px !important;
    margin-right: -30px !important;
    display: flex !important;
    justify-content: center !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-control-bar .bv-control-bar-count {
    padding: 0 !important;
    font-size: 16px!important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-dropdown-target {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-control-bar .bv-control-bar-sort {
    margin-right: 0 !important;
    font-size: 16px!important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-item.bv-content-review {
    padding-top: 15px!important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-header {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-header-meta {
    width: auto !important;
    margin-top: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-list-clientresponses .bv-content-header {
    width: auto !important;
    transform: translateX(0);
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-content-list-clientresponses .bv-content-details-offset-off {
    margin: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-secondary-content-list .bv-secondary-content-clientresponse.bv-content-item {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-data-summary .bv-content-meta .bv-content-datetime {
    position: static!important;
    transform: inherit !important;
    width: auto!important;
    margin-top: 0px!important;
    margin-left: 20px !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-title-container {
    position: static!important;
    top: 0!important;
    left: auto!important;
    right: auto!important;
    width: auto!important;
    bottom: auto!important;
    transform: inherit;
    margin-top: 5px!important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-details-offset-on,
    #ratingsReviewWrapper .bv-cv2-cleanslate .bv-content-details-offset-off  {
    margin-top: 0px!important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-summary {
    padding: 0 !important;
    margin: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-item .bv-content-feedback-vote .bv-content-feedback-vote-request {
    margin-left: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-actions-container {
    padding: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-summary-body-text p {
    margin-bottom: 0 !important;
  }

  #ratingsReviewWrapper .bv-cv2-cleanslate .bv-shared .bv-content-item.bv-content-review {
    border-bottom: 0 !important;
  }

  #ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable {
    width: 100%!important;
  }
}

[data-bv-show="rating_summary"] .bv_main_container .bv_avgRating_component_container,
.bv_main_container_row_flex .bv_main_container .bv_button_buttonMinimalist:hover {
  font-family: 'Gilroy' !important;
  font-weight: 400 !important;
}

.menuIcon {
  transform: translate(0px, -4px);
}

@media only screen and (max-width: 1023px) {
  .imageSection .slick-slider {
    position: relative;
  }

  .saveWrapper .imageContainer {
    flex-direction: column-reverse;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

#homePage .slick-slide img {
  width: 100%;
}

a:focus, button:focus, input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 1px solid #000 !important;
  outline-offset: 2px;
}

a.goToBtn:focus-visible {
  display: inline-block;
}

a.menuButton:focus-visible,
.socialIcons>.FooterLinks>a:focus-visible,
.badgeSection>div a:focus-visible,
.countryslotsDiv a:focus-visible {
  display: inherit;
}

.btn {
  display: block;
  border-width: 1px;
}

.visionPage .jumpToArtistSection .undefined.btn ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.btn ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.btn {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.btn {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.btn ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.btn ul {
    width: 453px;
    margin-left: 32px;
  }
}

.btn {
  /* background-color: #028845;
    border-color: #afd34d; */
}

/* .btn:hover {
    @apply border;
    color: #028845;
    border-color: #028845;
} */

/*Footer*/

.badgeSection>div:first-child>a>div>img {
  width: 42px;
}

/*Footer*/

.badgeSection>div:last-child>a>div>img {
  margin-left: 15px;
}

.footerWrapper .menu-accordion:last-child {
  border-bottom-width: 1px;
  border-color: 'rgb(61,61,65)';
}

.footerWrapper .bottomLinks .list .listItem:nth-last-child(2) {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.44px;
}

/*Header*/

.hideNav {
  top: -112px;
  transition: top 0.35s ease-in;
}

.showNav {
  top: 0px;
  transition: top 0.35s ease-in;
}

.setTop {
  top: 60px;
  transition: top 0.35s ease-in;
  min-height: 62px;
}

.removeTop {
  top: 170px;
  transition: top 0.35s ease-in;
}

.linkSection a img, .linkSection button img {
  margin-right: 15px;
  display: block;
  height: 20px;
}

.visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.linkSection a img ul>img, .visionPage .jumpToArtistSection .undefined.linkSection button img ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.linkSection a img, .visionPage .jumpToArtistSection button+button+.undefined.linkSection button img {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li a, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li>img, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:first-child, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(2), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(3), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(4), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(5), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(6), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(7), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(8), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.linkSection a img, .visionPage .jumpToArtistSection button+button+.undefined.linkSection button img {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li a, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li>img, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:first-child, .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(2), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(3), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(4), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(5), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(6), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(7), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.linkSection a img ul li:nth-child(8), .visionPage .jumpToArtistSection .undefined.linkSection button img ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.linkSection a img ul, .visionPage .jumpToArtistSection .undefined.linkSection button img ul {
    width: 453px;
    margin-left: 32px;
  }
}

.slotsWrap-1:before {
  content: '';
  position: absolute;
  top: -30px;
  left: 196px;
  display: block;
  height: 30px;
  width: 75px;
}

.visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slotsWrap-1:before {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slotsWrap-1:before {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-1:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

.mainMenuItem2:before {
  content: '';
  position: absolute;
  top: -30px;
  left: 60px;
  display: block;
  height: 30px;
  width: 110px;
}

.visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainMenuItem2:before {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainMenuItem2:before {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

.slotsWrap-2:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 113px;
  display: block;
  height: 20px;
  width: 120px;
}

.visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slotsWrap-2:before {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slotsWrap-2:before {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.slotsWrap-2:before ul {
    width: 453px;
    margin-left: 32px;
  }
}

.countryslotsDiv.active>a>span {
  color: #005534;
}

.mainMenuItem2>.menuUl {
  display: block;
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainMenuItem2>.menuUl {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainMenuItem2>.menuUl {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.mainMenuItem2>.menuUl ul {
    width: 453px;
    margin-left: 32px;
  }
}

.primaryMenuWrapper>a>img {
  height: 70px;
  width: 85px;
}

.wrapperMobile .menuLinkButton:last-child {
  border-width: 0;
}

.mobileMenuWrapper .menu-collapsed {
  background-color: #ffffff;
}

.mobileMenuWrapper .menu-expanded {
  border-width: 0;
  background-color: #fbfbfb;
}

.mobileMenuWrapper .expanded1 .menuButton .titleSection, .mobileMenuWrapper .collapse .menuButton .titleSection {
  padding-bottom: 8px;
  padding-left: 25px;
  text-align: left;
  font-family: Gilroy;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  letter-spacing: 0.32px;
}

.mobileMenuWrapper .expanded1 .setActive .menuButton .titleSection {
  color: #028845;
}

.mobileMenuWrapper .wrapperMobile .navbarAccordionOpen .menu-expanded {
  position: relative;
}

.mobileMenuWrapper .wrapperMobile .navbarAccordionOpen .menu-expanded:before {
  content: '';
  position: absolute;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(#17EE00, #69FF00, #C3FF02);
     border-image: linear-gradient(#17EE00, #69FF00, #C3FF02);
  border-image-slice: 1;
  left: 16px;
  bottom: 5px;
  width: 95px;
}

.menuUl a.menuButton {
  color: #005534;
}

.menuUl a.menuButton:hover {
  color: #00A830;
}

#homePage .buttonText {
  border: none;
}

.primaryMenuWrapper .megaButton:after {
  content: '';
  transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
  position: absolute;
  top: 25px;
  left: 50%;
  display: block;
  height: 4px;
  width: 0px;
}

.visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.primaryMenuWrapper .megaButton:after {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.primaryMenuWrapper .megaButton:after {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.primaryMenuWrapper .megaButton:after ul {
    width: 453px;
    margin-left: 32px;
  }
}

.primaryMenuWrapper .megaButton:after {
  background-color: transparent;
}

.primaryMenuWrapper .megaButton:hover:after {
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .primaryMenuWrapper .megaButton:hover:after video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.primaryMenuWrapper .megaButton:hover:after {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .primaryMenuWrapper .megaButton:hover:after video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.primaryMenuWrapper .megaButton:hover:after {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .primaryMenuWrapper .megaButton:hover:after video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.primaryMenuWrapper .megaButton:hover:after {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .primaryMenuWrapper .megaButton:hover:after video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.primaryMenuWrapper .megaButton:hover:after {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .primaryMenuWrapper .megaButton:hover:after video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.primaryMenuWrapper .megaButton:hover:after {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.primaryMenuWrapper .megaButton:hover:after {
  background-color: #028845;
}

.hide-submenu {
  /* Move offscreen and hide visually; remains in DOM for keyboard navigation */
  top: -99999px;
  left: -99999px;
  opacity: 0;
}

.show-submenu {
  opacity: 1;
}

.slotsWrap-1,
.slotsWrap-2,
.slotsWrap-4 {
  transition: opacity 0.3s ease-in-out;
}

.videotxtTileWrpr+div>span {
  color: #009d50;
  font-weight: 600;
}

.adpContentWrapper h2 {
  padding-bottom: 20px;
  font-family: mohr-bold;
  font-size: 1.6875rem;
  line-height: 1.75rem;
  letter-spacing: 0.28px;
  color: #00A830;
}

.adpContentWrapper h3 {
  padding-bottom: 30px;
  font-family: mohr-bold;
  font-size: 1.5625rem;
  line-height: 1.75rem;
  letter-spacing: 0.28px;
  color: #028845;
}

.adpContentWrapper p {
  line-height: 1.8125rem;
  color: #000;
}

.adpContentWrapper h1 p {
  line-height: 2.375rem;
  color: #028845;
}

.adpContentWrapper ol {
  list-style-position: outside;
  list-style-type: decimal;
  padding-top: 30px;
  padding-left: 30px;
}

.adpContentWrapper ol li {
  padding-bottom: 30px;
  padding-left: 5px;
}

.adpContentWrapper ol li a {
  color: #028845;
}

.articlerichtext p strong a {
  text-decoration: underline;
  color: #3d3d3d;
}

.articlerichtext p a {
  color: #005534;
  text-decoration: underline;
}

.greenText {
  color: #028845;
}

.adpContentWrapper a {
  /* color: #028845;
     */
}

.adpContentWrapper ul {
  list-style-position: outside;
  list-style-type: disc;
  padding-left: 30px;
}

.adpContentWrapper ul li {
  padding-bottom: 30px;
  padding-left: 5px;
}

.adpContentWrapper ul li a {
  color: #028845;
}

.pdpPage .gradient-liner {
  animation: slide_up 1.4s ease;
}

.gradient-liner {
  margin-top: 50px;
  margin-bottom: 20px;
  display: block;
  height: 2px;
  width: 120px;
  background-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
}

.visionPage .jumpToArtistSection .undefined.gradient-liner ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.gradient-liner ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.gradient-liner {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.gradient-liner {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.gradient-liner ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.gradient-liner ul {
    width: 453px;
    margin-left: 32px;
  }
}

.adpRecommendLink a {
  color: #2079ff;
}

.gradient-liner.line,
.gradient-liner.customizeLiner {
  margin: 10px 0;
}

.alpTitle>h2 {
  display: inline;
  cursor: pointer;
  font-family: mohr-bold;
  font-size: 1.375rem;
  text-transform: capitalize;
  line-height: 1.75rem;
  color: #ffffff;
}

.alpTitle>h2:hover {
  color: #ffffff;
}

.alpTitle>p {
  padding: 10px;
  font-family: Gilroy;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.moreTopicsContainer button.active {
  color: #028845;
}

.primaryMenuWrapper .slotsWrap-1 li a img {
  width: 180px;
  max-width: 200px;
}

.menu-opened {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.26s ease;
}

.menu-closed {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.26s ease;
}

.homePageVideoWrpr iframe {
  /* height: 90vw;
     */
}

.panelHeader>a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .panelHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.panelHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.panelHeader>a.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.panelHeader>a.list-reset {
        padding-left: 5%;
      }
    }
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .panelHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.panelHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .panelHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.panelHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .panelHeader>a video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.panelHeader>a {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .panelHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.panelHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footerAccHeader>a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .footerAccHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.footerAccHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.footerAccHeader>a.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.footerAccHeader>a.list-reset {
        padding-left: 5%;
      }
    }
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .footerAccHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.footerAccHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .footerAccHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.footerAccHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .footerAccHeader>a video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.footerAccHeader>a {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .footerAccHeader>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.footerAccHeader>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.articleListWrapper .panelHeader>a {
  width: auto;
  justify-content: center;
}

.animateMenu {
  transition: all 0.5s ease-out;
}

.adpCardWrapper:last-child {
  margin-right: 0px;
}

.ADPpanelHeader>a {
  position: relative;
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.ADPpanelHeader>a.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.ADPpanelHeader>a.list-reset {
        padding-left: 5%;
      }
    }
  }
}

/* slick css */

.slick-slider .slick-list {
  /* @apply px-10p py-10;
     */
}

.slick-slider .slick-dots {
  margin-top: 10px;
  justify-content: center;
  display: flex !important;
}

.slick-slider .slick-dots li {
  margin-left: 4px;
  margin-right: 4px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border-width: 1px;
  border-color: #00A830;
}

.slick-dots li button {
  display: block;
  border-width: 0;
  padding: 5px;
  font-size: 0;
  line-height: 0;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.slick-dots li button ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slick-dots li button {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.slick-dots li button {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.slick-dots li button ul {
    width: 453px;
    margin-left: 32px;
  }
}

.slick-dots li button {
  background-color: transparent;
  color: transparent;
}

#homePage .slick-slider .slick-dots li.slick-active {
  border-color: #ffffff;
  background-color: #028845;
}

#articleBannerCarousel .slick-slider .slick-dots li.slick-active {
  background: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
}

.articleBannerWrapper .slick-arrow.slick-prev {
  position: absolute;
  top: 50%;
  left: 22px;
  z-index: 1;
  margin-top: -34px;
  width: 68px;
  height: 68px;
}

.articleBannerWrapper .slick-arrow.slick-next {
  position: absolute;
  top: 50%;
  right: 68px;
  z-index: 1;
  margin-top: -34px;
  width: 68px;
  height: 68px;
}

.sortSelectDiv {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.articleBannerWrapper .slick-slide:not(.slick-active) {
  filter: contrast(0.8);
}

.articleBannerWrapper .slick-track {
  /* transition: transform 0.4s;
     */
}

/* PDP page css */

.headerMenuCls li.active a {
  color: #00A830;
}

.slideUpAnimation {
  animation: slide_up 1.4s ease;
}

.slideUpAnimation1 {
  animation: slide_up 2.1s ease;
}

hr {
  color: #f7f7f7;
}

.productListingWrapper .buyNowButton div.ps-widget:hover,
.pdpPage .CalloutHeaderWrapper div.ps-widget:hover,
.searchResultsWrapper .ps-widget:hover,
.productListingWrapper .buyNowButton div.ps-widget small:hover,
.productListingWrapper .buyNowButton div.ps-widget:hover small {
  color: #fff !important;
  background-color: #00A830;
}

.pageContentDescription h3 {
  display: inline-block;
  vertical-align: text-bottom;
  font-family: Mohr-Black;
  font-size: 2.375rem;
  line-height: 2.625rem;
  letter-spacing: -0.704023px;
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
  animation: slide_up 1.4s ease;
}

.productListingWrapper .buyNowBtn {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 1rem;
  border: none !important;
}

.buyNowBtn {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none !important;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  background-color: #028845;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 21.11px;
}

.buyNowBtn:hover {
  background-color: #00A830 !important;
  font-weight: 500;
  color: #fff;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

/* .topLayer > .container, #footer-wrapper .container, .pageContent.container{
     padding: 0 15px!important;
}
 */

.adpBannerContainer {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.ghostContainer {
  max-width: 100%;
}

.desktop_enabled_footer {
  display: none !important;
}

.desktop {
  display: none !important;
}

.mobile {
  display: block !important;
}

.pdpPageContWrpr>div:nth-child(2) div {
  flex-direction: row-reverse;
  /* .lazyload-wrapper:nth-child(2) .pageContent*/
}

.pdpPageContWrpr>div:nth-child(2) div .pageContentDescription {
  margin-right: 0px;
  margin-left: 40px;
}

.shortDescription ul li::before {
  content: '\2022';
  width: 1.5em;
  margin-left: -1em;
  display: inline-block;
  position: absolute;
  left: 0;
  color: #646464;
}

.shortDescription ul {
  margin-left: 30px;
}

.shortDescription ul li {
  position: relative;
  padding-left: 10px;
}

.shortDescription p, .pdpPage .shortDescription strong {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 75%;
  font-family: Gilroy;
  font-weight: 500;
}

.shortDescription p,
.pdpPage .shortDescription strong {
  color: #000;
}

.gradientBgClr {
  display: flex;
  height: 2px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.gradientBgClr.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.gradientBgClr.list-reset {
        padding-left: 5%;
      }
    }
  }
}

.gradientBgClr {
  background: linear-gradient(91.47deg, #17ee00 1.25%, #69ff00 34.99%, #c3ff02 69.43%);
}

.ratingReviewHeading {
  background: #00B334;
}

.pdpPage span.headerMenuCls button.buyNowBtn {
  padding-top: 2px;
  padding-bottom: 2px;
}

div#product-detail-page span.gradientBgClr {
  position: fixed;
  margin-top: 13px;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper div#product-detail-page span.gradientBgClr video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper div#product-detail-page span.gradientBgClr video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper div#product-detail-page span.gradientBgClr video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper div#product-detail-page span.gradientBgClr video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper div#product-detail-page span.gradientBgClr video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.slick-slider .slick-dots li {
  background-color: #ffffff;
}

div.modalDialogBg iframe {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
  }
}

div.modalDialogBg iframe {
  width: 100%;
  height: 80vh;
  background-color: transparent;
  margin: 0 auto;
  align-items: center;
  z-index: 9999;
}

@media only screen and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) and (min-device-width: 768px) and (max-device-width: 1007px) {

  div.brandStorywrapper div.brandStoryContainer {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .productListingWrapper .buyNowButton div.ps-widget, .productListingWrapper .buyNowButton div.ps-widget small {
    padding-left: 25px;
    padding-right: 25px;
    font-family: Gilroy;
    font-size: 0.8125rem;
    font-weight: 500;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1200px) {
  .videoContentWrpr {
    padding-left: 50px !important;
  }
}

.sitemapCardWraper .sectionBoxWrapper .parentPageCollection p, .sitemapCardWraper .sectionBoxWrapper .parentPageCollection p>strong {
  font-family: Gilroy;
  font-weight: 700;
}

.sitemapCardWraper .sectionBoxWrapper .parentPageCollection p,
.sitemapCardWraper .sectionBoxWrapper .parentPageCollection p>strong {
  color: #00A830;
}

/* .sitemapCardWraper .sectionBoxWrapper .parentPageCollection p > strong {
    @apply font-normal;
} */

.bv-cv2-cleanslate .bv-core-container-151 .bv-control-bar-sort .bv-sort-native select {
  background-color: #f7f7f7 !important;
}

.headerMenuCls ul>div {
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (min-width: 1900px) {
}

.videoclosespan {
  align-items: center;
  background: white;
  display: flex;
  justify-content: center;
  border-radius: 25px;
  padding: 0;
  margin: 0;
  font-size: 30px !important;
  width: 25px;
  height: 25px;
  top: 10px;
  right: 7px !important;
}

@media only screen and (max-width: 1023px) {
  #homePage .slick-slide img {
    width: 100%;
    height: 200px;
  }

  .productDetailWrapper.videoContainer {
    display: flex;
    justify-content: center;
  }

  #mobile-nav {
    overflow: auto;
  }

  /* .timeline-content img{
         width:46%;
    }
     */

  .shortDescription p {
    width: 100%;
  }

  .timeLIneStickyText {
    z-index: 10;
    position: sticky;
    top: 40px;
    height: 154px;
    background: white;
  }

  div.modalDialogBg div.homePageVideoWrpr {
    width: 100vw;
  }

  .homePageVideoWrpr iframe {
    height: 22vh;
  }

  .homePageVideoWrpr .closespan {
    top: 0px;
  }

  .videoclosespan {
    align-items: center;
    background: white;
    display: flex;
    justify-content: center;
    border-radius: 25px;
  }

  .sitemapCardWraper .gradient-liner {
    margin-bottom: 15px;
  }

  .pageContentDescription h3, .pageContentDescription p {
    margin-left: 30px;
    margin-right: 30px;
  }

  .pdpPageContWrpr>div:nth-child(2) div .pageContentDescription {
    margin-left: 0px;
    margin-right: 0px;
  }

  .homePageVideoWrapper .modal-dialog {
    background: #3d3d419c;
  }

  .homePageVideoWrapper .videoContainer iframe {
    height: 31vh;
  }

  .brandStoryVideoWrapper .videoContainer iframe {
    height: 26vh;
  }

  .brandStoryVideoWrapper .homePageVideoWrpr .closespan {
    top: -190px;
  }

  .brandStorywrapper .heroBannerText .gradient-liner {
    margin-left: 0px;
  }

  .brandStoryContainer .timeline-year .activeCircle {
    background-color: #69FF00;
  }

  #timeline-card .timeline-year {
    /* @apply border-r-3;
        border-color: #8a8a8a; */
  }

  #timeline-card .timeline-year-active {
    border-right: 1px solid #69FF00 !important;
    font-family: Gilroy;
    font-weight: 700;
    color: linear-gradient(0.01deg, #FF8D2D 38.33%, #FFEB00 52.22%, #69FF00 64.79%);
    /* border: none */
  }

  .brandStoryContainer #timeline-card {
    margin-bottom: 200px;
  }

  .card-content.cardImage {
    visibility: hidden;
  }

  .card-content .image-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* .timeline-navigation {
         transition: all .2s ease;
    }
     */

  .timeline-navigation.fixed+div.timeline-content {
    margin-left: 80px;
  }

  .homePageBannerContainer>.leftSection .slideUpAnimation1 {
    justify-content: start;
    margin-bottom: 15px;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    padding-top: 25px;
  }

  #homePage .homePageBannerContainer .leftSection {
    padding-bottom: 30px;
  }

  div.brandStoryContainer .videoContentWrpr h2 p {
    margin-bottom: 10px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.375rem;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper div.brandStoryContainer .videoContentWrpr h2 p video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper div.brandStoryContainer .videoContentWrpr h2 p video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper div.brandStoryContainer .videoContentWrpr h2 p video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper div.brandStoryContainer .videoContentWrpr h2 p video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper div.brandStoryContainer .videoContentWrpr h2 p video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  div.removeTop.headerMenuWrapper {
    top: 80px;
  }

  .pdpPage .headerMenuCls .ps-widget {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .buyNowButton div.ps-widget {
    padding-left: 25px;
    padding-right: 25px;
    line-height: 2.5rem;
  }

  .brandStorywrapper .heroBannerText h2 {
    justify-content: center;
  }

  #homePage .slick-slider .slick-dots {
    margin-top: -50px;
    position: relative;
  }

  #homePage div.homePageBannerContainer div.bannerThird h3 {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
  }

  .homePageVideoWrapper .thumbnailWrapper button img {
    margin-top: 10px;
    margin-left: 20px;
    width: 40px;
    margin: 0;
  }

  .heroImagewrapper img {
    width: 100%;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .heroImagewrapper img video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.heroImagewrapper img {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .heroImagewrapper img video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.heroImagewrapper img {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .heroImagewrapper img video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.heroImagewrapper img {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .heroImagewrapper img video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.heroImagewrapper img {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .heroImagewrapper img video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.heroImagewrapper img {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  /* For mobile phones: */

  #homePage .gradient-liner {
    margin-left: 0px;
  }

  #homePage .imageSection .slick-list {
    padding: 0px;
  }

  .pdpPage span.headerMenuCls button.buyNowBtn {
    box-shadow: 1px 3px #5a565666;
    margin-top: 20px;
    margin-bottom: 20px;
    border-width: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #ffffff;
    color: #000;
    font-size: 12px;
  }

  .calloutWrapper,
    .pageContent {
    flex-wrap: wrap;
  }

  .calloutWrapper, .pageContent {
    padding-left: 0px;
    padding-right: 0px;
  }

  .totalReviewText, .dropdownOption {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .totalReviewText video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .dropdownOption video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.totalReviewText, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.dropdownOption {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      .breadcrumb-ul.totalReviewText.list-reset, .breadcrumb-ul.dropdownOption.list-reset {
        padding-left: 5%;
      }

      @media (max-width: 1099px) and (min-width: 1024px) {
        .breadcrumb-ul.totalReviewText.list-reset, .breadcrumb-ul.dropdownOption.list-reset {
          padding-left: 5%;
        }
      }
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .totalReviewText video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .dropdownOption video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.totalReviewText, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.dropdownOption {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .totalReviewText video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .dropdownOption video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.totalReviewText, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.dropdownOption {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .totalReviewText video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .dropdownOption video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.totalReviewText, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.dropdownOption {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .totalReviewText video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .dropdownOption video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.totalReviewText, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.dropdownOption {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .pageContentDescription {
    margin-right: 0px;
  }

  .container {
    width: 100%;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .container video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.container {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .container video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.container {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .container video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.container {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .container video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.container {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .container video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.container {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .pageContentDescription h3 {
    font-size: 1.6875rem;
    line-height: 2rem;
  }

  .pageContentDescription p {
    margin-bottom: 20px;
  }

  .productDetailWrapper .pageContentDescription>div>div:last-child {
    margin-top: -20px;
  }

  hr.container {
    width: auto;
  }

  .listWrapper {
    padding-left: 0px;
    padding-right: 0px;
  }

  .CalloutHeaderWrapper button {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      .breadcrumb-ul.CalloutHeaderWrapper button.list-reset {
        padding-left: 5%;
      }

      @media (max-width: 1099px) and (min-width: 1024px) {
        .breadcrumb-ul.CalloutHeaderWrapper button.list-reset {
          padding-left: 5%;
        }
      }
    }
  }

  .pdpImagewrapper div.imageset img {
    width: 100vh;
  }

  .animateMenu #LearnMore_Header .menuButton div {
    flex-wrap: wrap;
    border-bottom-width: 1px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    font-size: 1rem;
    color: #3d3d41;
    border-color: #bfbfbf;
    font-family: 'work-sans-500';
  }

  .pageContentDescription p {
    margin-left: auto;
    margin-right: auto;
    width: 91.666667%;
  }

  .pageContentDescription h3 {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .pageContentDescription h3 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.pageContentDescription h3 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .pageContentDescription h3 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.pageContentDescription h3 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .pageContentDescription h3 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.pageContentDescription h3 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .pageContentDescription h3 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.pageContentDescription h3 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .pageContentDescription h3 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.pageContentDescription h3 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .headerMenuCls {
    background: url('https://images.ctfassets.net/jeoogvtfnmyl/3cj9qIit9nfgG2PEVVYFeW/decd22eb5efca82d23772af9e6f2cb32/Green_NavigationBar.jpg') no-repeat;
  }

  .setTop {
    min-height: 115px;
    top: 0;
  }

  .setTop .headerMenuCls {
    height: 80px;
  }

  .removeTop .headerMenuCls {
    height: 0;
  }

  .productListingWrapper .buyNowBtn {
    padding-left: 15px;
    padding-right: 15px;
  }

  div.productListingWrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container.headerMenuWrapper {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
  }

  .gradient-liner {
    margin-left: 30px;
  }

  .adpContentWrapper .gradient-liner, .relatedProductContainer .gradient-liner {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0px;
  }

  .adpContentWrapper h2 {
    font-size: 1.25rem;
    letter-spacing: 0.14px;
  }

  .adpContentWrapper h3 {
    font-size: 1.125rem;
    letter-spacing: 0.14px;
  }

  .averageRatings .ratingInfo .ratingInfoTitle {
    width: 50%;
  }

  .moreArticleContainer.container {
    padding: 0 !important;
  }

  .articleBannerWrapper .slick-slide picture img {
    height: 520px;
    width: 1134px;
  }

  .articleBannerWrapper .slick-slider .slick-list,
    .moreArticleContainer .slick-slider .slick-list {
    padding: 0 !important;
  }

  .faqAccorTitle>a>span>img {
    width: 12px;
  }

  .faqPanelDetail p {
    padding-bottom: 20px;
  }

  .termsWrapper .gradient-liner {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .relatedProductWrapper .gradient-liner {
    margin-left: 0px;
  }

  .brandStoryContainer .brandStoryBanner img {
    animation: none;
    height: 350px;
  }

  .headerMenuCls .ps-widget[ps-sku] {
    background-color: #fff;
    color: #029a4f;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.26);
    line-height: 34px;
    border: 0;
    font-family: work-sans-500;
  }
}

.productDetailWrapper .pageContentDescription>div>p {
  margin-top: 15px;
  margin-left: 0px;
  font-family: Gilroy;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  .productDetailWrapper .pageContentDescription>div>p {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}

.productDetailWrapper .pageContentDescription>div>p {
  animation: slide_up 1.4s ease;
}

@media (min-width: 1024px) {
  #menu-second .pageContentDescription>div>p {
    font-size: 1.0625rem;
    letter-spacing: 0.025em;
  }
}

@media (min-width: 1024px) {
  #menu-third .pageContentDescription>div>p {
    width: 83.333333%;
  }
}

.productDetailWrapper .pageContentDescription>div>div {
  font-family: work-sans-light;
  animation: slide_up 1.4s ease;
}

.productDetailWrapper .pageContentDescription>div>div:last-child {
  margin-bottom: 30px;
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 13px;
  color: #000;
}

.childPageCollection:hover {
  color: #028845;
}

/*Animations*/

.callOutContent h1 {
  animation: slide_up 1.4s ease;
}

.callOutContent div.reviewSection {
  animation: slide_up 2.1s ease;
}

.callOutContent .buyNowBtn {
  animation: slide_up 2.4s ease;
}

.callOutContent div.shortDescription {
  animation: slide_up 2.6s ease;
}

.calloutWrapper .bannerImage {
  animation: slide_right 2.6s ease;
}

@keyframes scale {
  0% {
    height: 500px;
  }

  100% {
    height: 350px;
  }
}

@keyframes imageTransition {
  0% {
    transform: rotate(-45deg);
    height: 400px;
    margin-top: 150px;
  }

  50% {
    margin-top: -250px;
  }

  100% {
    transform: rotate(0deg);
    height: 600px;
    margin-top: 0px;
  }
}

@keyframes slide_right {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes slide_up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 1;
  }
}

/* image slide from left animation*/

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBrand {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

/*image zoom in animation*/

.productListingWrapper .zoom,
.productListingWrapper .cardSectionWrapper a img {
  transition: transform 0.8s;
  margin: 0 auto;
}

.productListingWrapper .zoom:hover,
.productListingWrapper .cardSectionWrapper a img:hover {
  /* IE 9 */
  /* Safari 3-8 */
  transform: scale(1.05);
}

#homePage .homePageBannerWrapper .homepageTitle p {
  color: #fff;
}

#homePage .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
  color: #fff;
}

/* Home page css starts */

#homePage .slick-slider {
  display: block;
}

.visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined#homePage .slick-slider {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined#homePage .slick-slider {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined#homePage .slick-slider ul {
    width: 453px;
    margin-left: 32px;
  }
}

#homePage div.homePageBannerWrapper {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

#homePage .bannerThird h3 {
  margin-bottom: 25px;
  display: inline-block;
  vertical-align: text-bottom;
  font-family: work-sans-light;
  font-size: 2.5rem;
  line-height: 2.5rem;
  animation: slide_up 1.4s ease;
  color: #028845;
}

#homePage .bannerThird p {
  animation: slide_up 1.4s ease;
}

.homePageBannerWrapper {
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
  background: white;
  margin-top: 25px;
  z-index: 2;
}

#homePage .rightSection .slick-list {
  padding: 0px;
}

#homePage .rightSection .slick-dots {
  position: relative;
  top: -60px;
}

#homePage .rightSection .slick-dots li {
  background-color: #ffffff;
}

#homePage .rightSection .slick-dots li.slick-active {
  background-color: #028845;
}

.rewardSection p {
  margin-bottom: 30px;
  width: 70%;
  font-family: work-sans-light;
  line-height: 2.625rem;
}

html[lang='en'] .rewardSection p {
  margin-bottom: 20px !important;
}

.videotxtTileWrpr p {
  margin-bottom: 15px;
  font-family: work-sans-light;
  font-size: 2.5rem;
  line-height: 2.625rem;
  color: #028845;
}

.videotxtTileWrpr div.gradient-liner {
  margin-top: 30px;
  margin-bottom: 10px;
}

.videoContainer .thumbnailWrapper button {
  position: absolute;
  outline: 2px solid transparent;
  outline-offset: 2px;
  left: calc(30%-33px);
  top: calc(50%-33px);
}

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

.alpcard-zoom {
  transition: transform 0.3s;
  margin: 0 auto;
}

.alpcard-zoom:hover {
  transform: scale(1.05);
}

.headerMenuCls li.setActive a>div {
  font-family: work-sans-500;
  color: #028845 !important;
}

/* Brand Story*/

.brandStorywrapper .heroBannerText h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  width: 100%;
  font-family: Gilroy-Bold;
  font-size: 1.5625rem;
  font-weight: 700;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .brandStorywrapper .heroBannerText h2 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStorywrapper .heroBannerText h2 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.brandStorywrapper .heroBannerText h2.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.brandStorywrapper .heroBannerText h2.list-reset {
        padding-left: 5%;
      }
    }
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .brandStorywrapper .heroBannerText h2 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStorywrapper .heroBannerText h2 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .brandStorywrapper .heroBannerText h2 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStorywrapper .heroBannerText h2 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .brandStorywrapper .heroBannerText h2 video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStorywrapper .heroBannerText h2 {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .brandStorywrapper .heroBannerText h2 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStorywrapper .heroBannerText h2 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.brandStorywrapper .heroBannerText h2 {
  color: #00A830;
}

.brandStorywrapper .heroBannerText p {
  font-family: Gilroy-Medium;
}

.brandStorywrapper .videoContentWrpr h2 p {
  margin-bottom: 20px;
  width: 25%;
  font-family: mohr-bold;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 2.5rem;
  color: #00A830;
}

/*FAQ*/

.faqAccorTitle>a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .faqAccorTitle>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.faqAccorTitle>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.faqAccorTitle>a.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.faqAccorTitle>a.list-reset {
        padding-left: 5%;
      }
    }
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .faqAccorTitle>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.faqAccorTitle>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .faqAccorTitle>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.faqAccorTitle>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .faqAccorTitle>a video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.faqAccorTitle>a {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .faqAccorTitle>a video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.faqAccorTitle>a {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.faqAccorTitle>a>div {
  width: 91.666667%;
  padding-right: 22px;
}

.Faqwrapper .FaqItemWrapper:nth-child(3) .faqAccorTitle {
  border-width: 0;
}

.faqPanelDetail p {
  padding-bottom: 25px;
}

.termsWrapper .articlerichtext p strong {
  display: block;
  padding-bottom: 20px;
}

.visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.termsWrapper .articlerichtext p strong {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.termsWrapper .articlerichtext p strong {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.termsWrapper .articlerichtext p strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

.termsWrapper .articlerichtext p strong {
  color: #00A830;
}

.modalDialogBg {
  background: #6d6767a6;
  z-index: 999999;
}

.modalDialogBg iframe body {
  background: transparent;
}

.modalDialogBg .homePageVideoWrpr {
  max-width: 77.6rem;
  width: 100%;
}

.modalDialogBg .saveNowVideoWrpr {
  width: 420px !important;
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
  z-index: 99999;
  max-height: 350px;
}

.modalDialogBg .videowrapper {
  width: 35% !important;
}

.modalDialogBg .videowrapper iframe {
  width: 100%;
  height: 400px;
}

/* Search page*/

#searchIconButton svg {
  margin-left: 8px;
  width: 16px;
}

.searchResultsWrapper .searchContent:last-child {
  border-width: 0;
}

.searchResultsWrapper .ps-widget {
  line-height: 28px !important;
}

@media only screen and (max-width: 374px) {
  .searchContent .productTextContainer .buttons>div {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .searchContent .productTextContainer .buttons>div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.searchContent .productTextContainer .buttons>div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      .breadcrumb-ul.searchContent .productTextContainer .buttons>div.list-reset {
        padding-left: 5%;
      }

      @media (max-width: 1099px) and (min-width: 1024px) {
        .breadcrumb-ul.searchContent .productTextContainer .buttons>div.list-reset {
          padding-left: 5%;
        }
      }
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .searchContent .productTextContainer .buttons>div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.searchContent .productTextContainer .buttons>div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .searchContent .productTextContainer .buttons>div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.searchContent .productTextContainer .buttons>div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .searchContent .productTextContainer .buttons>div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.searchContent .productTextContainer .buttons>div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .searchContent .productTextContainer .buttons>div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.searchContent .productTextContainer .buttons>div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .searchContent .productTextContainer .buttons>div>button {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 440px) {
  .searchContent .learnMoreBtnWrapper {
    margin-left: 0px;
  }

  .searchContent .productTextContainer .buttons>div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      .breadcrumb-ul.searchContent .productTextContainer .buttons>div.list-reset {
        padding-left: 5%;
      }

      @media (max-width: 1099px) and (min-width: 1024px) {
        .breadcrumb-ul.searchContent .productTextContainer .buttons>div.list-reset {
          padding-left: 5%;
        }
      }
    }
  }

  .pdpPageContWrpr>div:nth-child(2) div {
    flex-direction: column;
    /* .lazyload-wrapper:nth-child(2) .pageContent*/
  }

  .shopButton {
    font-family: 'Gilroy-Bold' !important;
  }

  .alpTitle {
    padding: 0 30px !important;
  }

  .productNameText {
    min-height: 40px;
  }
}

#search-box-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  position: relative;
  right: 8px;
  height: 16px;
  width: 16px;
  background-image: url('https://images.ctfassets.net/jeoogvtfnmyl/6NgGgZdBw091EIEu3dsSAp/b85bbc1ba65c1b9d7e5f03d0ea8697df/CloseGrey.svg');
  background-size: contain;
}

#search-box-input::-ms-clear {
  position: relative;
  right: 8px;
  height: 16px;
  width: 16px;
  background-image: url('https://images.ctfassets.net/jeoogvtfnmyl/6NgGgZdBw091EIEu3dsSAp/b85bbc1ba65c1b9d7e5f03d0ea8697df/CloseGrey.svg');
  background-size: contain;
}

.writeReviewContainer {
  width: 100%;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .writeReviewContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.writeReviewContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .writeReviewContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.writeReviewContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .writeReviewContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.writeReviewContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .writeReviewContainer video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.writeReviewContainer {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .writeReviewContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.writeReviewContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.pdpPage .shortDescription p:last-child {
  font-size: 0.8125rem;
  color: #000;
  font-family: 'Gilroy';
  font-weight: 500;
}

.btnParentCollection {
  white-space: nowrap;
}

/* .getCouponTitle,
.shopNowTitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
} */

.termsContainer .relatedProductWrapper {
  width: 100%;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .termsContainer .relatedProductWrapper video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.termsContainer .relatedProductWrapper {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .termsContainer .relatedProductWrapper video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.termsContainer .relatedProductWrapper {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .termsContainer .relatedProductWrapper video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.termsContainer .relatedProductWrapper {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .termsContainer .relatedProductWrapper video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.termsContainer .relatedProductWrapper {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .termsContainer .relatedProductWrapper video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.termsContainer .relatedProductWrapper {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.QuickerPickerWrapper .relatedProductWrapper {
  width: 90%;
}

.continueReadingWrapper:hover {
  color: #028845;
}

#product-Listing-page .buyNowButton .ps-widget[ps-sku].ps-disabled {
  padding: 8px 5px !important;
}

#product-Listing-page .buyNowButton .ps-widget[ps-sku].ps-disabled * {
  line-height: 14px !important;
  font-size: 12px !important;
  font-family: 'Gilroy' !important;
}

#product-Listing-page .buyNowButton .ps-widget[ps-sku].ps-disabled * {
  font-size: 17px !important;
  line-height: 17px !important;
}

.badgeSectionGhost div:first-child>a>div>img {
  width: 54px;
}

.badgeSectionGhost div:last-child>a>div>img {
  margin-left: 30px;
}

.faqAccor p a {
  color: #005534;
}

.shopButton,
.productListingWrapper .buyNowButton div.ps-widget,
.pdpPage .CalloutHeaderWrapper div.ps-widget,
.searchResultsWrapper .ps-widget,
.productListingWrapper .buyNowButton div.ps-widget small {
  float: left;
  display: block;
  margin: 0 auto;
  padding: 0 30px;
  background: rgb(24, 182, 53);
  color: #fff;
  font-weight: 700;
  border-color: none !important;
  border-radius: 4px;
  min-width: 0;
  font-family: 'Gilroy';
  font-weight: 700;
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
}

html[lang='en'] .pdpPage .CalloutHeaderWrapper div.ps-widget {
  padding: 2px 30px 0 30px;
}

.shopButton:hover,
.productListingWrapper .buyNowButton div.ps-widget:hover,
.pdpPage .CalloutHeaderWrapper div.ps-widget:hover,
.searchResultsWrapper .ps-widget:hover,
.productListingWrapper .buyNowButton div.ps-widget:hover small {
  background: #00A830 !important;
  color: #fff;
}

.pdpPage .CalloutHeaderWrapper div.ps-widget {
  margin: 0 !important;
}

.articlerichtext {
  font-family: 'Gilroy';
  color: #000;
}

.articlerichtext h2 {
  padding-bottom: 20px;
  font-family: mohr-bold;
  font-size: 1.25rem;
  color: #00A830;
}

.articlerichtext h3 {
  padding-bottom: 20px;
  font-family: mohr-bold;
  font-size: 1.5625rem;
  color: #00A830;
}

.articlerichtext h1 {
  padding-bottom: 20px;
  font-family: Mohr-Black;
  font-size: 2.25rem;
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
}

.articlerichtext p {
  font-family: Gilroy;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.articlerichtext ul {
  padding-left: 30px;
  list-style: disc;
}

.brandStoryContainer>h2>p>strong {
  font-family: Mohr-Black;
}

.videoContentWrpr>div>span {
  font-family: Gilroy-Medium;
  font-weight: 500;
  color: #005534;
}

.timeline-navigation>div {
  padding-top: 140px !important;
}

.timeline-navigation>div:first-child {
  padding-top: 200px !important;
}

.bv-cv2-cleanslate .bv-core-container-154 .bv-control-bar-sort .bv-sort-native select {
  background-color: #f7f7f7 !important;
}

.brandStoryContainer .gradient-liner {
  margin-top: 25px !important;
}

@media only screen and (max-width: 1023px) {
  .shopButton {
    line-height: 41px;
    margin-top: -27px;
    font-size: 14px !important;
  }

  .calloutWrapper {
    flex-wrap: wrap;
  }

  .CalloutHeaderWrapper button {
    margin: 0 auto;
  }

  div.removeTop.headerMenuWrapper {
    top: 80px;
  }

  .timeline-content>.card-content:nth-child(1)>div {
    padding-top: 150px !important;
  }

  .timeline-content>.card-content:nth-child(1)>div img {
    height: 145px !important;
    transform: translateX(40%);
  }

  .timeline-content>.card-content:nth-child(2)>div {
    padding-top: 130px !important;
  }

  .timeline-content>.card-content:nth-child(2)>div img {
    height: 187px !important;
    transform: translateX(45%);
  }

  .timeline-content>.card-content:nth-child(3)>div {
    padding-top: 145px !important;
  }

  .timeline-content>.card-content:nth-child(3)>div img {
    height: 170px !important;
    transform: translateX(52%);
  }

  .timeline-content>.card-content:nth-child(4)>div {
    padding-top: 140px !important;
  }

  .timeline-content>.card-content:nth-child(4)>div img {
    height: 187px !important;
    transform: translateX(60%);
  }

  .timeline-content>.card-content:nth-child(5)>div {
    padding-top: 85px !important;
  }

  .timeline-content>.card-content:nth-child(5)>div img {
    height: 160px !important;
    transform: translateX(12%);
  }

  .timeline-navigation>div:nth-child(5) {
    padding-bottom: 50px !important;
    padding-right: 22px !important
  }

  .buyNowButton .event_buy_now .ps-button-label {
    font-family: work-sans-regular;
    font-size: 0.875rem;
  }

  #product-detail-page .calloutWrapper {
    padding-top: 80px !important;
  }

  .brandStoryBanner {
    transform: translateX(13px);
  }

  .everydayButton .imageGetCoupon {
    height: 35px;
  }

  .productTextContainer .learnMoreBtnWrapper .learnMoreButton {
    width: 100% !important;
    line-height: 24px !important;
  }
}

.videoContentWrpr>h2>p>strong {
  padding-right: 6px;
  font-family: Mohr-Black;
}

.faqPanelDetail .articlerichtext>p:first-child strong {
  font-family: Gilroy;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
}

.faqPanelDetail .articlerichtext>p:first-child strong {
  display: block;
  padding-bottom: 10px;
  font-family: Gilroy-Bold;
  --tw-text-opacity: 1;
  color: rgba(0, 168, 48, var(--tw-text-opacity));
}

.visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.faqPanelDetail .articlerichtext>p:first-child strong {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.faqPanelDetail .articlerichtext>p:first-child strong {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p:first-child strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

.faqPanelDetail .articlerichtext>p>strong {
  display: block;
  padding-bottom: 10px;
  font-family: Gilroy-Bold;
}

.visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.faqPanelDetail .articlerichtext>p>strong {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.faqPanelDetail .articlerichtext>p>strong {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.faqPanelDetail .articlerichtext>p>strong ul {
    width: 453px;
    margin-left: 32px;
  }
}

.faqPanelDetail .articlerichtext>p>strong {
  color: #00A830;
}

.signUpFormWrapper>div>div {
  z-index: 1 !important;
  min-height: 296px !important;
  height: 296px !important;
}

.signUpFormWrapper>div {
  max-height: 350px !important;
  overflow: hidden !important;
}

.productItem .productTextContainer .event_buy_now, .productItem .productTextContainer .event_buy_now:hover {
  font-family: Gilroy;
  font-size: 1rem;
}

.productItem .productTextContainer .event_buy_now {
  border: none !important;
}

.productItem .productTextContainer .ps-widget.ps-disabled>small, .productItem .productTextContainer .ps-widget.ps-disabled:hover>small {
  font-family: work-sans-500;
  font-size: 1rem;
  line-height: 1.75rem;
}

@media only screen and (min-device-width: 767px) and (max-device-width: 1023px) {
  #ratingsReviewWrapper .bv-content-btn.bv-content-btn-pages.bv-content-btn-pages-load-more.bv-focusable {
    width: 60% !important;
  }

  .pdpPageContWrpr>div:nth-child(2) div {
    flex-direction: column;
  }

  #product-Listing-page .buyNowButton .ps-widget[ps-sku].ps-disabled {
    padding: 15px 5px !important;
  }
}

@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
  .bannerSecond.homePageBannerContainer,
    .homePageVideoWrapper {
    min-height: 425px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .pdpImagewrapper video {
    width: 100%;
  }

  .ipadmx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  div.modalDialogBg div.homePageVideoWrpr {
    width: 100vw;
    display: flex;
    height: 80vh;
    margin-top: 0px;
  }

  .homePageVideoWrapper .videoContainer iframe {
    height: 100%;
    position: absolute;
    top: auto;
  }

  .homePageVideoWrpr .closespan {
    top: -50px;
  }

  /* .ipadpx-20 {
         padding-left: 20px !important;
         padding-right: 20px !important;
    } */
}

.mainTextContainer {
  position: absolute;
  width: 873px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  padding-top: 300px;
}

.everydayContent p strong {
  font-family: work-sans-500;
  font-weight: normal;
  --tw-text-opacity: 1;
  color: rgba(88, 83, 83, var(--tw-text-opacity));
}

.sustainabilityPageContent {
  width: 873px;
  margin: 0 auto;
  padding: 0 10px;
}

.sustainabilityPageContent h3 {
  font-size: 18px;
  color: #6eac00;
}

.sustainabilityPageContent p a {
  color: #06a1e7;
}

.sustainabilityPageContent p strong {
  color: #6eac00;
}

.fscWrapper img {
  display: flex;
  width: 100%;
}

.videoPageWrapper .contentWrapper {
  display: none;
}

.videoPageWrapper .thumbnailImage {
  display: inline;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 900px) {
  .mainTextContainer {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .sustainabilityPageContent {
    width: 100%;
  }

  .mainTextContainer {
    padding-top: 230px;
  }

  .brandStoryVideoWrapper .videoContainer iframe {
    position: absolute;
    top: 20vw;
    width: 100%;
    height: 42vh;
  }

  .brandStoryVideoWrapper .homePageVideoWrpr .closespan {
    top: 105px;
  }
}

@media screen and (max-width: 767px) {
  #homePage .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    font-size: 30px !important;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    line-height: 36px;
  }

  #homePage .homePageVideoWrapper .bg-pdpMenu {
    margin: 35px 0 10px;
  }

  .sustainPageFadeIn .fade-in-section .forestsSection1 p {
    color: #14a45c;
    font-family: core-rhino-75;
    font-weight: 400;
  }

  #homePage .homePageBannerContainer .textWrapper.bannerThird {
    margin: 35px 0 30px;
  }

  .modalDialogBg .saveNowVideoWrpr,
    .modalDialogBg .videowrapper {
    width: 90% !important;
  }

  .modalDialogBg .videowrapper iframe {
    height: 400px;
    width: 100%;
  }

  .essentialPopup {
    top: 10px;
  }

  .brandStoryVideoWrapper {
    margin-bottom: 0;
  }

  .sustainabilityWrapper .videoPageWrapper {
    display: block !important;
    padding: 30px 0;
  }

  .faqPanelDetail .articlerichtext p {
    font-size: 16px;
  }

  .pdpPage .headerMenuWrapper .menu-accordion .accor {
    display: none;
  }

  .productListingWrapper .buyNowButton div.ps-widget small {
    padding: 0 20px 0 30px;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  .sustainabilityWrapper {
    width: 360px !important;
    padding: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }

  .sustainabilityPageContent {
    top: 196vw !important;
  }

  .mainTextContainer,
    .sustainabilityPageContent {
    width: 360px;
  }

  .sustainabilityPageContent {
    padding: 0 10px;
  }

  .mainTextContainer {
    padding-top: 48%;
  }

  .sustainabilityPageContent h3 {
    font-size: 12px;
  }

  .sustainLastSectionWrapper p {
    top: 10px !important;
  }
}

.pageContentDescription .gradient-liner {
  margin-left: 0px;
}

.homepageTitle .gradient-liner {
  margin-top: 40px;
}

.homePageBannerContainer .leftSection .homepageTitle h1 strong {
  font-family: work-sans-regular;
  font-weight: normal;
}

.homePageBannerContainer .leftSection .homepageTitle h2 {
  font-family: work-sans-light;
  font-size: 2.5rem;
}

.homePageBannerContainer .leftSection .homepageTitle h2 strong {
  font-family: work-sans-regular;
  font-weight: normal;
}

/* @media screen and (max-width: 767px) {
     .ps-product-image.right {
         margin: 0 auto !important;
         padding-top: 210px !important;
    }
}
 */

.bannerSecond .cardButton>.buttonText {
  display: inline !important;
}

.brandStoryBanner {
  transition-duration: 0.2s;
}

.ghostListContainer {
  height: 632px !important;
}

.brandStoryBanner img.scale-down {
  animation: none;
}

.brandStoryBanner img.scale-up {
  animation: none;
}

@keyframes scaleDown {
  0% {
    height: 714px;
    transform: rotate(-10deg);
  }

  100% {
    height: 600px;
    transform: rotate(0deg);
  }
}

@keyframes scaleUp {
  0% {
    height: 600px;
    transform: rotate(0deg);
  }

  100% {
    height: 714px;
    transform: rotate(-10deg);
  }
}

.everydayContent p strong {
  font-family: work-sans-500;
  font-weight: normal;
}

.homePageBannerContainer .slick-slider.slick-initialized {
  position: relative;
}

.homePageBannerContainer .slick-prev {
  position: absolute;
  top: 43%;
  left: 20px;
  z-index: 1;
}

.homePageBannerContainer .slick-next {
  position: absolute;
  top: 43%;
  right: 20px;
  z-index: 1;
}

.userContentDetails .articlerichtext p:nth-last-child(1) {
  margin-bottom: 30px;
}

.userContentDetails .articlerichtext p:nth-of-type(2) {
  margin-top: 30px;
}

.fade-in-section {
  animation: slide_up 1.4s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.signUpFormWrapper>div>div>iframe * {
  font-family: 'work-sans-regular' !important;
}

.bannerDescription>p>strong {
  font-family: Gilroy-Bold;
  font-weight: normal;
  --tw-text-opacity: 1;
  color: rgba(0, 85, 52, var(--tw-text-opacity));
}

.articleDetailTitle>span {
  font-family: mohr-bold;
}

.footerContentWrapper .wrapper>.content:nth-child(1) {
  width: 45%;
}

.footerContentWrapper .wrapper>.content:nth-child(3) {
  width: 45%;
}

.footerContentWrapper .wrapper>.content:nth-child(4) {
  width: 20%;
}

.hideBuyNow {
  display: none;
}

@media (min-width: 768px) {
  .tablet {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  /*brand story animation starts*/

  .badgeSection>div:last-child>a>div>img {
    margin-left: 0px;
  }

  .timeline-content>.card-content:nth-child(2)>div>img {
    position: relative;
    top: 12px;
    left: -60px;
  }

  .timeline-content>.card-content:nth-child(3)>div>img {
    position: relative;
    left: -75px;
  }

  .timeline-content>.card-content:nth-child(4)>div>img {
    position: relative;
    top: 2px;
    left: -80px;
  }

  .timeline-content>.card-content:nth-child(5)>div>img {
    position: relative;
    top: 2px;
    left: -24px;
  }

  .desktop_enabled_footer {
    display: block !important;
  }

  .desktop {
    display: block !important;
  }

  .mobile {
    display: none !important;
  }

  .timeline-content .card-content {
    animation: fadeInLeftBrand 2s ease;
    animation-fill-mode: forwards;
    visibility: hidden;
  }

  .timeline-content .card-content:first-child {
    animation-delay: 0.5s;
  }

  .timeline-content .card-content:first-child+div {
    animation-delay: 1s;
  }

  .timeline-content .card-content:first-child+div+div {
    animation-delay: 1.5s;
  }

  .timeline-content .card-content:first-child+div+div+div {
    animation-delay: 2s;
  }

  .timeline-content .card-content:first-child+div+div+div+div {
    animation-delay: 2.5s;
  }

  .timeline-content .image-container {
    padding: 0 9%;
  }

  /*brand story animation ends*/

  .productListingWrapper .buyNowButton div.ps-widget, .productListingWrapper .buyNowButton div.ps-widget small, .pdpPage .CalloutHeaderWrapper div.ps-widget {
    padding-left: 50px;
    padding-right: 50px;
    font-family: Gilroy;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .productListingWrapper .buyNowButton div.ps-widget,
    .productListingWrapper .buyNowButton div.ps-widget small,
    .pdpPage .CalloutHeaderWrapper div.ps-widget {
    color: #000;
    background: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%) !important;
    border: none !important;
  }

  html[lang='en'] .productListingWrapper .buyNowButton div.ps-widget small {
    font-family: 'Gilroy' !important;
    font-size: 1rem !important;
    font-weight: 700;
    color: #000;
    padding-top: 5px !important;
  }

  .pdpPage .headerMenuCls div.ps-widget {
    padding-left: 25px;
    padding-right: 25px;
    font-family: Gilroy-Bold;
    font-size: 1rem;
  }

  .brandStorywrapper .mainBnnerimg img {
    /* height:500px;
         */
    /* transform: rotate(-10deg); */
  }

  .pdpPageContWrpr .pageContent:nth-child(2) .pageContentDescription {
    margin-right: 0px;
    margin-left: 40px;
  }

  .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1130px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .adpBannerContainer, .homePageBannerContainer, .brandStoryContainer, .ghostContainer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1440px;
    padding-left: 0px;
    padding-right: 0px;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .adpBannerContainer video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerContainer video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .ghostContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.adpBannerContainer, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerContainer, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.ghostContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .adpBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .ghostContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.adpBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.ghostContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .adpBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .ghostContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.adpBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.ghostContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .adpBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .ghostContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.adpBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.ghostContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .adpBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .ghostContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.adpBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.ghostContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .brandStoryContainer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1130px;
    padding-left: 0px;
    padding-right: 0px;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .brandStoryContainer video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.brandStoryContainer {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerWrapper+div, .homePageBannerWrapper+div+div, .homePageBannerWrapper+div+div+div {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div+div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div+div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div+div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div+div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div+div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div+div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div+div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div+div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .homePageBannerWrapper+div+div+div video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.homePageBannerWrapper+div+div+div {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .footerWrapper .bottomLinks .list .listItem:nth-last-child(2) {
    font-size: 0.8125rem;
    line-height: 0.9375rem;
    letter-spacing: 0.16px;
  }

  .primaryMenuWrapper>a {
    position: absolute;
    top: -65px;
    padding-left: 16px;
  }

  .primaryMenuWrapper>a>img {
    height: 130px;
    width: 138px;
  }

  .alpTitle>h2 {
    font-size: 2.25rem;
    line-height: 2.8125rem;
    letter-spacing: 0.33px;
    font-style: normal !important;
  }

  .alpTitle>p {
    font-family: work-sans-regular;
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .articleBannerWrapper .slick-slide {
    margin-left: 6px;
    margin-right: 6px;
  }

  .articleBannerWrapper .slick-slider .slick-list {
    /* padding: 0 19% !important;
         */
  }

  .articleBannerWrapper .slick-list,
    .articleBannerWrapper .slick-slider,
    .articleBannerWrapper .slick-track {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .primaryMenuWrapper .wrapperDiv .mainMenuItem:first-child {
    display: none;
  }

  .searchResultsContainer .tabs-container .tabContent {
    margin-left: 6%;
    margin-right: 6%;
  }

  .bottomLinksGhost>.footerLink {
    margin-left: auto;
    margin-right: auto;
    width: 83.333333%;
    padding-top: 20px;
  }

  .articlerichtext h2 {
    font-size: 1.5625rem;
  }
}

/* 150% Resolution*/

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .topBanner .leftSectionImg img {
    width: 100% !important;
    padding-right: 60px;
    margin-top: 30px;
  }

  .topBanner {
    margin: 0 50px !important;
  }

  .callOutContent div.shortDescription h3 {
    letter-spacing: 0.2px;
    color: #646464;
    font-family: 'work-sans-regular';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
  }

  .homePageBannerContainer>.leftSection,
    .homePageBannerContainer>.bannerThird {
    padding-left: 70px;
  }

  .ghostListContainer {
    height: 529px !important;
  }

  .ALPDesc {
    height: 230px;
  }
}

/* Ipad pro portrait */

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  .callOutContent div.shortDescription h3 {
    font-size: 20px;
    line-height: 30px;
  }

  html[lang='en'] #homePage .slideUpAnimation1.content {
    top: 0 !important;
  }

  .pageContentDescription h3 {
    font-size: 1.75rem;
    line-height: 34px;
  }

  .pdppagecontent {
    width: 90%;
  }
}

.footerWrapperEC {
  clear: both !important;
}

.essentialPopup {
  font-size: 20px !important;
  border: 1px solid #b1b1b1;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
}

.essential-life-hacks-body nav.mainNav {
  display: none !important;
}

.essential-life-hacks-body main.bounty-mt-0 {
  margin-top: 0 !important;
}

.visionPage .headerVV {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.visionPage .headerVV div:first-child img {
  width: 100%;
  height: 127px;
}

.visionPage .headerVV div:nth-child(2) {
  position: absolute;
  top: 12px;
  left: 60px;
}

.visionPage .headerVV+div img {
  width: 100%;
  margin-top: 127px;
  float: left;
}

.visionPage .bountyVVLogo+div.ps-widget {
  background: #00607a;
  border-radius: 35px;
  color: #fff;
  font-family: Poppins-Bold;
  font-size: 24px;
  height: 48px;
  line-height: 48px;
  position: absolute;
  right: 60px;
  text-align: center;
  top: 40px;
  width: 200px;
  font-weight: 700;
}

.visionPage .headerVV+div+div {
  float: none;
  width: 80%;
  margin: 37px auto 0;
  display: block;
  clear: both;
  padding-top: 48px;
}

.visionPage .partnershipText {
  color: #000;
  float: none;
  font-family: Poppins-Bold;
  font-size: 32px;
  font-weight: 700;
  margin: 70px auto 20px;
  width: 80%;
  line-height: 48px;
}

.visionPage .printsWithPurposeSection {
  clear: both;
  float: inherit;
  height: inherit;
  margin: 88px auto 0;
  width: 80%;
}

.visionPage .printsWithPurposeSection .pwpImage {
  float: right;
}

.visionPage .printsWithPurposeSection .pwpTextContainer h2 {
  margin-bottom: 15px;
  color: #00607a;
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  font-family: 'Poppins-Bold';
}

.visionPage .printsWithPurposeSection .pwpTextContainer p {
  color: #000;
  font-family: Poppins-Regular;
  font-size: 22px;
  font-weight: 400;
  line-height: 46px;
}

.visionPage .pwpTextContainer {
  width: 54%;
  margin-bottom: 30px;
  float: left;
}

.visionPage .printsWithPurposeSection {
  width: 80%;
  margin: 41px auto 0;
  clear: both;
  float: inherit;
  height: inherit;
}

.visionPage .printsWithPurposeSection div:nth-child(2) {
  float: right;
}

.visionPage .printsWithPurposeSection+div {
  clear: both;
  display: block;
  float: none;
  margin: 37px auto 0;
  padding-top: 48px;
  width: 80%;
}

.VVArtistsHeading>p:first-child {
  color: #00607a;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 90px;
}

.VVArtistsHeading {
  clear: both;
  float: inherit;
  height: inherit;
  margin: 41px auto 0;
  width: 80%;
}

.visionPage .jumpToArtistSection .undefined.block ul {
  width: 30vw !important;
  margin: 0 5vw !important;
}

.visionPage .jumpToArtistSection img {
  width: 38vw !important;
}

.visionPage .jumpToArtistSection .undefined.block ul>img {
  width: 30vw !important;
}

.tylerCardB .leahCardBackContentWrapper,
.elmerCardB .leahCardBackContentWrapper,
.ruthCardB .leahCardBackContentWrapper,
.neilCardB .leahCardBackContentWrapper,
.cathrineCardB .leahCardBackContentWrapper,
.michaelCardB .leahCardBackContentWrapper {
  top: 3vw !important;
}

.visionPage .leahCardBackContentWrapper p {
  font-size: 18px;
  line-height: 28px;
}

.visionPage .leahCardBackContentWrapper h2 {
  font-size: 40px !important;
}

.visionPage .artistSection1 {
  margin: 0;
  width: 40%;
  float: left;
  display: block;
  position: inherit;
}

.visionPage .howYouCanSupportSection {
  clear: both;
  float: inherit;
  height: inherit;
  margin: 41px auto 0;
  width: 80%;
}

.visionPage .howYouCanSupportSection .hycsTextContainer {
  float: left;
  margin-bottom: 30px;
  width: 52%;
  margin-top: 25px;
}

.visionPage .howYouCanSupportSection .hycsTextContainer p {
  color: #000;
  float: left;
  font-family: Poppins-Regular;
  font-size: 25px;
  font-weight: 400;
  line-height: 46px;
  margin-top: 10px;
}

.visionPage .howYouCanSupportSection .hycsTextContainer h2 {
  color: #00607a;
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  margin-bottom: 10px;
  font-family: 'Poppins-Bold';
}

.visionPage .buyNowBountyPrints {
  width: 80%;
  float: none;
  margin: 0 auto;
  display: inherit;
  position: relative;
  clear: both;
  padding-bottom: 5vw;
}

.visionPage .buyNowBountyPrints {
  width: 80%;
  float: none;
  margin: 0 auto;
  display: inherit;
}

.visionPage .howYouCanSupportSection .hycsImageSet {
  float: right;
}

.visionPage .howYouCanSupportSection div:nth-child(2) {
  float: right;
}

@media screen and (max-width: 767px) {
  div.visionPage .bountyVVBg img {
    height: 170px;
  }

  div.visionPage .bountyVVLogo {
    left: 3.2vw;
    position: absolute;
    top: 4px;
  }

  div.visionPage .partnershipVideoVV {
    margin-top: 11px;
  }

  div.visionPage .bountyPrintImage {
    float: left;
    margin-top: 171px;
    width: 100%;
  }

  div.visionPage .printsWithPurposeSection .pwpTextContainer p {
    color: #000000;
    font-family: Poppins-Regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 17px;
  }

  div.visionPage .printsWithPurposeSection .pwpImage {
    display: none;
  }

  div.visionPage .greenLineVV {
    clear: both;
    display: inherit;
    float: inherit;
    margin: 36px auto 0;
    padding-top: 45px;
    width: 80%;
    padding-bottom: 10px;
  }

  .VVArtistsHeading {
    clear: both;
    float: inherit;
    height: inherit;
    margin: 41px auto 0;
    width: 80%;
  }

  div.visionPage .headerVV div:nth-child(2) {
    left: 4vw;
    position: absolute;
    top: 0vw;
    width: 47vw;
    height: auto;
  }

  .visionPage .bountyVVLogo+div.ps-widget {
    background: #00607a;
    border-radius: 35px;
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 16px;
    height: 43px;
    line-height: 43px;
    position: absolute;
    right: 3.2vw;
    text-align: center;
    top: 70px;
    width: 39vw;
  }

  div.visionPage .headerVV div:first-child img {
    height: 170px;
    width: 100%;
  }

  div.visionPage .headerVV+div img {
    float: left;
    margin-top: 170px;
    width: 100%;
  }

  div.visionPage .partnershipText {
    color: #000;
    float: none;
    font-family: 'Poppins-Bold';
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 49px auto 0;
    width: 80%;
  }

  div.visionPage .printsWithPurposeSection .pwpTextContainer h2 {
    color: #00607a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 40px;
  }

  div.visionPage .pwpTextContainer {
    float: left;
    margin-bottom: 30px;
    width: 100%;
  }

  .VVArtistsHeading>p:first-child {
    color: #00607a;
    font-family: Poppins-Bold;
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 10px;
  }

  div.visionPage .allArtistSectionContainer .artistSection1,
    .visionPage .allArtistSectionContainer .artistSection3,
    .visionPage .allArtistSectionContainer .artistSection5,
    .visionPage .allArtistSectionContainer .artistSection7 {
    color: transparent;
    display: block;
    float: left;
    height: auto;
    margin: 0 0 40px !important;
    position: inherit;
    width: 100%;
  }

  div.visionPage .allArtistSectionContainer .artistSection2,
    .visionPage .allArtistSectionContainer .artistSection4,
    .visionPage .allArtistSectionContainer .artistSection6,
    .visionPage .allArtistSectionContainer .artistSection8 {
    display: block;
    float: right;
    height: auto;
    margin: 0 0 40px;
    position: inherit;
    width: 100%;
  }

  div.visionPage .howYouCanSupportSection .hycsTextContainer h2 {
    color: #00607a;
    font-family: Poppins-Bold;
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 10px;
  }

  div.visionPage .howYouCanSupportSection .hycsTextContainer {
    float: left;
    margin-bottom: 30px;
    margin-top: 25px;
    width: 100%;
  }

  div.visionPage .buyNowBountyPrints {
    display: inherit;
    float: none;
    margin: 0 auto;
    position: relative;
    width: 80%;
    clear: both;
  }

  div.visionPage .howYouCanSupportSection .hycsTextContainer p {
    color: #000;
    float: left;
    font-family: Poppins-Regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
  }

  div.visionPage .howYouCanSupportSection .hycsTextContainer p {
    color: #000;
    float: left;
    font-family: Poppins-Regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
  }

  div.visionPage .howYouCanSupportSection .hycsImageSet {
    display: none;
  }
}

@media only screen and (min-width: 315px) and (max-width: 359px) {
  .visionPage .headerVV div:nth-child(2) {
    left: 2.5vw;
    position: absolute;
    top: 2vw;
    width: 52vw;
    height: auto;
  }

  .visionPage .bountyVVLogo+div.ps-widget {
    background: #00607a;
    border-radius: 35px;
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 16px;
    height: 41px;
    line-height: 41px;
    position: absolute;
    right: 3.2vw;
    text-align: center;
    top: 70px;
    width: 38vw;
  }
}

.visionPage .flip-card {
  background-color: transparent;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  width: 100%;
  height: auto;
  float: inherit;
}

.visionPage .flip-card-inner {
  float: none !important;
  height: 100%;
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  width: 100% !important;
  display: block;
}

.visionPage .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.visionPage .flip-card-front,
.visionPage .flip-card-back {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  backface-visibility: hidden;
  float: none !important;
  left: 0;
}

.visionPage .flip-card-front {
  background-color: transparent;
  color: black;
}

.visionPage .flip-card-back {
  background-color: transparent;
  color: white;
  transform: rotateY(180deg);
}

.visionPage .bountyVVBg img {
  width: 100%;
  height: 127px;
}

.visionPage .bountyVVLogo {
  position: absolute;
  top: 12px;
  left: 60px;
}

.visionPage .bountyPrintImage {
  margin-top: 127px;
  float: left;
  width: 100%;
}

.visionPage .bountyPrintImage img {
  width: 100%;
}

.visionPage .greenLineVV {
  width: 80%;
  margin: 0 auto;
  float: inherit;
  margin-top: 40px;
  display: inherit;
  clear: both;
  padding-top: 50px;
}

.visionPage .partnershipVideoVV {
  width: 100%;
}

.visionPage .partnershipVideoVV .videoContainer.m-auto.IeVideoiContainer img {
  width: 100%;
}

.visionPage .allArtistSectionContainer {
  clear: both;
  display: block;
  float: none;
  height: auto;
  margin: 0 auto;
  position: inherit;
  width: 80%;
}

.visionPage .allArtistSectionContainer .artistSection1,
.visionPage .allArtistSectionContainer .artistSection3,
.visionPage .allArtistSectionContainer .artistSection5,
.visionPage .allArtistSectionContainer .artistSection7 {
  display: block;
  float: left;
  margin: 0 0 80px;
  position: inherit;
  width: 100%;
  color: transparent;
  height: 28vw;
}

.visionPage .allArtistSectionContainer .artistSection2,
.visionPage .allArtistSectionContainer .artistSection4,
.visionPage .allArtistSectionContainer .artistSection6,
.visionPage .allArtistSectionContainer .artistSection8 {
  display: block;
  float: right;
  height: 28vw;
  margin: 0 0 80px;
  position: inherit;
  width: 30vw;
}

.visionPage .allArtistSectionContainer .artistSection5 {
  margin-top: 45px;
}

.visionPage .allArtistSectionContainer .artistSection6 {
  margin-top: 64px;
}

.visionPage .allArtistSectionContainer+.greenLineVV {
  padding-top: 127px;
}

.artistSection3,
.artistSection5,
.artistSection7 {
  clear: both;
}

.visionPage .modalDialogBg {
  background: #6d6767a6;
  z-index: 999999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  position: fixed;
}

.visionPage div.modalDialogBg iframe {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection {
    margin: 17px auto 34px;
    width: 80%;
    position: relative;
  }

  .visionPage .allArtistSectionContainer .artistSection5 {
    position: relative !important;
    left: -1.5vw;
  }

  .visionPage .allArtistSectionContainer .artistSection8 .leahCardFrontContentWrapper h2 {
    left: -1vw !important;
  }

  .visionPage .allArtistSectionContainer .artistSection6 {
    position: relative !important;
    right: -2vw;
  }

  .visionPage .jumpToArtistSection img {
    width: 516px;
    height: 80px;
  }

  .visionPage .jumpToArtistSection button+button+.undefined.block {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li {
    background: #fff;
    border-bottom: 0 !important;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .allArtistSectionContainer {
    margin: 22px auto 0;
  }

  .visionPage .card {
    transition: transform 2s;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .visionPage .back,
    .visionPage .front {
    align-items: center;
    backface-visibility: hidden;
    float: left !important;
    height: 100%;
    justify-content: center;
    left: 0;
    position: relative;
    width: 100%;
  }

  .visionPage .back {
    transform: rotateY(180deg);
    float: left;
    position: absolute;
  }

  .visionPage .flip-card-inner {
    float: left !important;
    height: 100%;
    margin: 0;
    perspective: 1000px;
    width: 100% !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .bountyPrintImage+.greenLineVV {
    padding-top: 60px;
  }

  .visionPage .printsWithPurposeSection {
    margin: 62px auto 0;
  }

  .visionPage .printsWithPurposeSection+picture.greenLineVV {
    padding-top: 40px;
  }

  .visionPage .howYouCanSupportSection .hycsImageSet {
    width: 47%;
  }

  .visionPage .printsWithPurposeSection .pwpImage {
    float: right;
    width: 38%;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li>img {
    height: 100%;
  }

  .leahCardFrontContentWrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .leahCardFrontContentWrapper h2 {
    position: absolute;
    bottom: 1.2vw;
    color: #fff;
    left: 0;
    right: 0;
    font-weight: 700;
    font-size: 32px;
    font-family: Poppins-Regular;
    top: auto;
  }

  .leahCardBackContentWrapper {
    position: absolute;
    top: 10%;
    width: 46%;
    height: 100%;
    color: #000000;
    right: 14%;
    text-align: left;
    font-family: Poppins-Bold;
  }

  .visionPage .leahCardBackContentWrapper h2 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.06945px;
    line-height: 75px;
    margin-top: 50px;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .allArtistSectionContainer .artistSection1,
    .visionPage .allArtistSectionContainer .artistSection3,
    .visionPage .allArtistSectionContainer .artistSection5,
    .visionPage .allArtistSectionContainer .artistSection7 {
    color: transparent;
    display: block;
    float: left;
    height: auto;
    margin: 0;
    position: inherit;
    width: 50%;
  }

  .visionPage .allArtistSectionContainer .artistSection2,
    .visionPage .allArtistSectionContainer .artistSection4,
    .visionPage .allArtistSectionContainer .artistSection6,
    .visionPage .allArtistSectionContainer .artistSection8 {
    display: block;
    float: right;
    height: auto;
    margin: 0 0 80px;
    position: inherit;
    width: 50%;
  }

  .visionPage .flip-card-inner>button {
    width: 100%;
    height: 100%;
  }

  .visionPage .leahCardFrontImageWrapper {
    width: 100%;
    height: 100%;
    float: left;
  }

  .leahCardFrontImageWrapper>div:first-child {
    width: 100%;
    height: 100%;
  }

  .visionPage .back img,
    .visionPage .front img {
    width: 100%;
    height: 100%;
    max-width: inherit;
    vertical-align: inherit;
  }

  .visionPage .leahCardBackImageWrapper {
    width: 100%;
    height: 100%;
  }

  .visionPage .leahCardBackImageWrapper>div:first-child {
    width: 100%;
    height: 100%;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -54px;
  }

  .tylerCardB .leahCardBackContentWrapper {
    right: 14%;
    top: 20%;
  }

  .elmerCardB .leahCardBackContentWrapper {
    right: 14%;
    top: 8vw;
    width: 50%;
  }

  .ruthCardB .leahCardBackContentWrapper {
    width: 51%;
    top: 20%;
  }

  .neilCardB .leahCardBackContentWrapper {
    width: 47%;
    top: 20%;
  }

  .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 22px;
    left: -75px;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    width: 54%;
    right: 11%;
    top: 15%;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .kevinCardB .leahCardBackContentWrapper {
    width: 55%;
    right: 11%;
  }

  .kevinCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .michaelCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .michaelCardB .leahCardBackContentWrapper {
    width: 58%;
    right: 11%;
    top: 20%;
  }

  .visionPage .allArtistSectionContainer+.greenLineVV {
    padding-top: 35px;
  }

  .visionPage .printsWithPurposeSection div:nth-child(2) p:first-child br:first-of-type,
    .visionPage .printsWithPurposeSection div:nth-child(2) p:first-child br:nth-of-type(2) {
    display: none;
  }

  .visionPage .printsWithPurposeSection div:nth-child(2) p:first-child+br {
    display: none;
  }

  .VVArtistsHeading>p:first-child {
    font-family: Poppins-Bold;
  }

  .visionPage .videoContainer .thumbnailWrapper button {
    width: 120px;
  }

  .visionPage .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -36px;
  }

  .visionPage .front h2+img {
    width: auto;
    height: auto;
    left: 206px;
    position: absolute;
    right: 0;
    bottom: 16px;
    margin: 0 auto;
    float: none;
  }

  .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    width: auto;
    height: auto;
    left: 133px;
    position: absolute;
    right: 0;
    bottom: 16px;
    margin: 0 auto;
    float: none;
  }

  .visionPage .front.tylerCardF h2+img {
    left: 138px;
  }

  .visionPage .front.ruthCardF h2+img {
    left: 163px;
  }

  .visionPage .front.neilCardF h2+img {
    left: 194px;
  }

  .visionPage .michaelCardF.front h2+img {
    left: 198px;
  }

  .visionPage .front.cathrineCardF h2+img {
    bottom: 32px;
    left: 118px;
  }

  .elmerCardF .leahCardFrontContentWrapper h2+p {
    display: none;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    left: 147px;
  }

  .visionPage .front.kevinCardF h2+img {
    left: 217px;
  }

  .visionPage .back p+img {
    bottom: 8px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: auto;
    left: -112px;
  }

  .visionPage .back.leahCardBack p+img {
    bottom: 18px;
  }

  .visionPage .back.leahCardBack.tylerCardB p+img {
    bottom: 46px;
  }

  .visionPage .back.leahCardBack.elmerCardB p+img {
    bottom: 7px;
  }

  .visionPage .back.leahCardBack.ruthCardB p+img {
    bottom: 32px;
  }

  .visionPage .back.leahCardBack.neilCardB p+img {
    bottom: 8px;
  }

  .visionPage .back.leahCardBack.cathrineCardB p+img {
    bottom: 18px;
  }

  .visionPage .back.leahCardBack.kevinCardB p+img {
    bottom: 16px;
  }

  .visionPage .back.leahCardBack.michaelCardB p+img {
    bottom: 27px;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 900px;
  }

  .visionPage .pwpTextContainer p br:first-of-type,
    .visionPage .pwpTextContainer p br:nth-of-type(2) {
    display: none;
  }

  .visionPage .pwpTextContainer p br:nth-of-type(5),
    .visionPage .pwpTextContainer p br:nth-of-type(6) {
    display: none;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(8) {
    top: -26px;
  }

  .visionPage .printsWithPurposeSection .pwpTextContainer p br:nth-of-type(1),
    .visionPage .printsWithPurposeSection .pwpTextContainer p br:nth-of-type(2) {
    display: none;
  }

  .visionPage .printsWithPurposeSection .pwpTextContainer p br:nth-of-type(5),
    .visionPage .printsWithPurposeSection .pwpTextContainer p br:nth-of-type(6) {
    display: none;
  }

  .visionPage .pwpTextContainer p br:nth-of-type(1),
    .visionPage .pwpTextContainer p br:nth-of-type(2) {
    display: none;
  }

  .visionPage .pwpTextContainer p br:nth-of-type(5),
    .visionPage .pwpTextContainer p br:nth-of-type(6) {
    display: none;
  }

  .visionPage .printsWithPurposeSection .pwpTextContainer br:nth-of-type(1),
    .visionPage .printsWithPurposeSection .pwpTextContainer br:nth-of-type(2) {
    display: none;
  }

  .visionPage .printsWithPurposeSection .pwpTextContainer br:nth-of-type(5),
    .visionPage .printsWithPurposeSection .pwpTextContainer br:nth-of-type(6) {
    display: none;
  }

  .visionPage p.pwpPara {
    display: block;
  }

  .visionPage .pwpPara br:first-of-type,
    .visionPage .pwpPara br:nth-of-type(2) {
    display: none;
  }

  .visionPage .pwpPara br:nth-of-type(6),
    .visionPage .pwpPara br:nth-of-type(5) {
    display: none;
  }

  .visionPage .pwpTextContainer .pwpBr1,
    .visionPage .pwpTextContainer .pwpBr2,
    .visionPage .pwpTextContainer .pwpBr5,
    .visionPage .pwpTextContainer .pwpBr6 {
    display: none;
  }
}

.visionPage .howYouCanSupportSection .hycsTextContainer strong a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .visionPage .pwpTextContainer .pwpBr3,
    .visionPage .pwpTextContainer .pwpBr4 {
    display: none;
  }

  div.visionPage .printsWithPurposeSection .pwpTextContainer p a.event_outbound_link+br,
    div.visionPage .printsWithPurposeSection .pwpTextContainer p a.event_outbound_link+br+br {
    display: none;
  }

  div.visionPage .pwpTextContainer p a.event_outbound_link+br,
    div.visionPage .pwpTextContainer p a.event_outbound_link+br+br {
    display: none;
  }

  .visionPage .pwpTextContainer p br:first-of-type,
    .visionPage .pwpTextContainer p br:nth-of-type(2) {
    display: block;
  }

  .visionPage .pwpTextContainer p br:nth-of-type(3),
    .visionPage .pwpTextContainer p br:nth-of-type(4) {
    display: none;
  }

  .visionPage .pwpTextContainer p br:nth-of-type(5),
    .visionPage .pwpTextContainer p br:nth-of-type(6) {
    display: block;
  }

  div.visionPage .bountyPrintImage+.greenLineVV {
    position: relative;
    top: 12px;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 233px;
  }

  .visionPage .jumpToArtistSection {
    margin: 15px auto 16px;
    width: 80%;
    position: relative;
  }

  .visionPage .jumpToArtistSection img {
    width: 100%;
    height: auto;
  }

  .visionPage .jumpToArtistSection button+button+.undefined.block {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li {
    background: #fff;
    border-bottom: 0 !important;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.block ul li:nth-child(8) {
    top: -27px;
  }

  .visionPage .allArtistSectionContainer {
    margin: 22px auto 0;
    width: 80%;
    display: inherit;
    float: none;
  }

  .visionPage .card {
    transition: transform 2s;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .visionPage .back,
    .visionPage .front {
    align-items: center;
    backface-visibility: hidden;
    float: left !important;
    height: 100%;
    justify-content: center;
    left: 0;
    position: relative;
    width: 100%;
  }

  .visionPage .back {
    transform: rotateY(180deg);
    float: left;
    position: absolute;
  }

  .visionPage .flip-card-inner {
    float: left !important;
    height: 100%;
    margin: 0;
    perspective: 1000px;
    width: 100% !important;
  }

  .leahCardFrontContentWrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .leahCardFrontContentWrapper h2 {
    position: absolute;
    color: #fff;
    left: 0;
    right: 0;
    font-weight: 700;
    font-size: 4vw;
    font-family: Poppins-Regular;
    top: auto;
    bottom: 1.2vw;
  }

  .leahCardBackContentWrapper {
    position: absolute;
    top: 7vw;
    width: 46%;
    height: 100%;
    color: #000000;
    right: 14%;
    text-align: left;
    font-family: Poppins-Bold;
  }

  .leahCardBackContentWrapper h2 {
    color: #000;
    font-size: 7vw !important;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.06945px;
    line-height: 45px;
    margin-top: 9vw;
  }

  .leahCardBackContentWrapper p {
    font-size: 3vw;
    font-weight: 700;
    line-height: 24px;
  }

  .visionPage .allArtistSectionContainer .artistSection1,
    .visionPage .allArtistSectionContainer .artistSection3,
    .visionPage .allArtistSectionContainer .artistSection5,
    .visionPage .allArtistSectionContainer .artistSection7 {
    color: transparent;
    display: block;
    float: left;
    height: auto;
    margin: 0;
    position: inherit;
    width: 100%;
  }

  .visionPage .allArtistSectionContainer .artistSection2,
    .visionPage .allArtistSectionContainer .artistSection4,
    .visionPage .allArtistSectionContainer .artistSection6,
    .visionPage .allArtistSectionContainer .artistSection8 {
    display: block;
    float: right;
    height: auto;
    margin: 0 0 40px !important;
    position: inherit;
    width: 100%;
  }

  .visionPage .flip-card-inner>button {
    width: 100%;
    height: 100%;
  }

  .visionPage .leahCardFrontImageWrapper {
    width: 100%;
    height: 100%;
    float: left;
  }

  .leahCardFrontImageWrapper>div:first-child {
    width: 100%;
    height: 100%;
  }

  .visionPage .back img,
    .visionPage .front img {
    width: 100%;
    height: 100%;
    max-width: inherit;
    vertical-align: inherit;
  }

  .visionPage .leahCardBackImageWrapper {
    width: 100%;
    height: 100%;
  }

  .visionPage .leahCardBackImageWrapper>div:first-child {
    width: 100%;
    height: 100%;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -5vw;
    bottom: 1.5vw;
  }

  .tylerCardB .leahCardBackContentWrapper {
    right: 9%;
    top: 2%;
    width: 48%;
  }

  .elmerCardB .leahCardBackContentWrapper {
    width: 50%;
    right: 7%;
    top: -10px;
  }

  .ruthCardB .leahCardBackContentWrapper {
    top: 4%;
    width: 47%;
    right: 10%;
  }

  .neilCardB .leahCardBackContentWrapper {
    width: 47%;
    top: -10px;
  }

  .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 22px;
    left: -75px;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    right: 8%;
    width: 50%;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    width: 55%;
    right: 5%;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 6vw !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    right: 4%;
    width: 53%;
    top: -4%;
  }

  .kevinCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .michaelCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 43px;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 5%;
    top: 12px;
    width: 52%;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
    left: -5vw;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2+img {
    bottom: 2vw;
    left: 24vw;
  }

  .visionPage .front.ruthCardF h2 {
    bottom: 2.4vw;
    left: -7vw;
  }

  .visionPage .front h2+img {
    height: auto;
    left: 26vw;
    position: absolute;
    right: 0;
    bottom: 1.5vw;
    margin: 0 auto;
    float: none;
    width: 5vw;
  }

  .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    width: auto;
    height: auto;
    left: 133px;
    position: absolute;
    right: 0;
    bottom: 16px;
    margin: 0 auto;
    float: none;
  }

  .visionPage .front.tylerCardF h2+img {
    left: 22vw;
    bottom: 1.9vw;
  }

  .visionPage .front.ruthCardF h2+img {
    bottom: 2.8vw;
    left: 25vw;
  }

  .visionPage .front.neilCardF h2+img {
    left: 23vw;
    bottom: 2.3vw;
  }

  .visionPage .michaelCardF.front h2+img {
    bottom: 2.8vw;
    left: 26vw;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 2vw;
    left: -4vw;
    font-size: 4vw;
  }

  .visionPage .front.cathrineCardF h2+img {
    bottom: 2.3vw;
    left: 31vw;
  }

  .elmerCardF .leahCardFrontContentWrapper h2+p {
    display: none;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    bottom: 1.8vw;
    left: 18vw;
    width: 5vw;
  }

  .visionPage .front.kevinCardF h2+img {
    left: 26vw;
    bottom: 1.8vw;
  }

  .visionPage .back p+img {
    bottom: 8px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: auto;
    left: -112px;
  }

  .visionPage .back.leahCardBack p+img {
    bottom: 1.2vw;
    left: -18vw;
  }

  .visionPage .back.leahCardBack.tylerCardB p+img {
    bottom: 2.9vw;
  }

  .visionPage .artistSection1 .back.leahCardBack p+img {
    bottom: 1.1vw;
    left: -18vw;
  }

  .visionPage .back.leahCardBack.elmerCardB p+img {
    bottom: -0.6vw;
  }

  .visionPage .back.leahCardBack.ruthCardB p+img {
    bottom: 7.2vw;
    left: -16vw;
  }

  .visionPage .back.leahCardBack.neilCardB p+img {
    bottom: 1.5vw !important;
  }

  .visionPage .back.leahCardBack.cathrineCardB p+img {
    bottom: 4vw;
  }

  .visionPage .back.leahCardBack.michaelCardB p+img {
    bottom: 5vw;
  }

  .artistSection7 .leahCardBackContentWrapper h2 {
    margin-top: 12vw;
  }

  .visionPage .allArtistSectionContainer+.greenLineVV {
    padding-top: 40px;
  }

  div.visionPage .howYouCanSupportSection .hycsTextContainer p:first-of-type br {
    display: none;
  }

  .visionPage .partnershipVideoVV .videoContainer.m-auto.IeVideoiContainer button>img {
    width: 70px;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 28vw;
    padding: 4px 76px 37px;
    top: -11vw;
  }
}

@media only screen and (min-width: 315px) and (max-width: 359px) {
  .leahCardBackContentWrapper p {
    font-size: 3vw;
    font-weight: 700;
    line-height: 18px;
  }

  .visionPage .back.leahCardBack.neilCardB p+img {
    bottom: 0.5vw !important;
  }

  .visionPage .artistSection1 .back.leahCardBack p+img {
    bottom: 0.7vw;
    left: -18vw;
  }

  .visionPage .back.leahCardBack.tylerCardB p+img {
    bottom: 2.5vw;
  }

  .visionPage .back.leahCardBack.elmerCardB p+img {
    bottom: -2vw;
  }

  .visionPage .back.leahCardBack p+img {
    bottom: 0.5vw;
    left: -18vw;
  }

  .visionPage .back.leahCardBack.michaelCardB p+img {
    bottom: 5.2vw;
  }

  .visionPage .buyNowBountyPrints img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) {
  .visionPage .buyNowBountyPrints img {
    width: 100%;
    height: auto;
  }

  .leahCardBackContentWrapper {
    top: 0;
  }

  .visionPage .allArtistSectionContainer .artistSection1,
    .visionPage .allArtistSectionContainer .artistSection3,
    .visionPage .allArtistSectionContainer .artistSection5,
    .visionPage .allArtistSectionContainer .artistSection7 {
    color: transparent;
    display: block;
    float: left;
    height: 290px;
    margin: 0;
    position: inherit;
    width: 290px;
  }

  .visionPage .allArtistSectionContainer .artistSection2,
    .visionPage .allArtistSectionContainer .artistSection4,
    .visionPage .allArtistSectionContainer .artistSection6,
    .visionPage .allArtistSectionContainer .artistSection8 {
    display: block;
    float: right;
    height: 290px;
    margin: 0 0 80px;
    position: inherit;
    width: 290px;
  }

  .visionPage .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -31px;
  }

  .visionPage .front.ruthCardF h2+img {
    left: 177px;
  }

  .visionPage .front.kevinCardF h2+img {
    left: 185px;
  }

  .visionPage .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw;
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 14px;
    font-weight: 700;
    left: -2vw;
    position: absolute;
    right: 0;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img,
    .visionPage .front h2+img {
    bottom: 10px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 147px;
    width: auto;
  }

  .visionPage .front h2+img {
    left: 178px;
    bottom: 3px;
  }

  .visionPage .front.tylerCardF h2+img {
    left: 171px;
  }

  .visionPage .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -35px;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -50px;
  }

  .visionPage .allArtistSectionContainer .artistSection1 .leahCardFrontContentWrapper h2,
    .visionPage .allArtistSectionContainer .artistSection2 .leahCardFrontContentWrapper h2 {
    line-height: 2vw;
  }

  .visionPage .allArtistSectionContainer .artistSection8 .leahCardFrontContentWrapper h2 {
    left: -3vw !important;
  }

  .visionPage .front.cathrineCardF h2+img {
    bottom: 5px;
    left: 184px;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    bottom: 3px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 72px;
    width: auto;
  }

  .visionPage .michaelCardF.front h2+img {
    left: 182px;
    bottom: 4px;
  }

  .visionPage .front.neilCardF h2+img {
    left: 181px;
    bottom: 5px;
  }

  .visionPage .leahCardBackContentWrapper h2 {
    color: #000;
    font-size: 25px !important;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.06945px;
    line-height: 51px;
    margin-top: 17px;
  }

  .tylerCardB .leahCardBackContentWrapper {
    right: 15%;
    top: 6%;
  }

  .visionPage .printsWithPurposeSection .pwpTextContainer p {
    color: #000;
    font-family: Poppins-Regular;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
  }

  .leahCardBackContentWrapper p {
    font-size: 12px !important;
    font-weight: 700;
    line-height: 18px !important;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 20px !important;
  }

  .elmerCardB .leahCardBackContentWrapper {
    top: 1vw;
  }

  .ruthCardB .leahCardBackContentWrapper {
    top: 5%;
  }

  .neilCardB .leahCardBackContentWrapper {
    top: 1vw;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    top: 4%;
  }

  .kevinCardB .leahCardBackContentWrapper h2.cardContentTitle,
    .michaelCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 24px;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 3%;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 13%;
  }

  .visionPage div.back.leahCardBack p+img {
    bottom: 6px;
    float: none;
    height: auto;
    left: -72px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: auto;
  }

  .visionPage .back.leahCardBack.tylerCardB p+img {
    bottom: 22px;
  }

  .visionPage .back.leahCardBack.elmerCardB p+img {
    bottom: -3px;
  }

  .visionPage .back.leahCardBack.ruthCardB p+img {
    left: -62px;
    bottom: 19px;
  }

  .visionPage .back.leahCardBack.neilCardB p+img {
    bottom: 4px;
  }

  .visionPage .back.leahCardBack.cathrineCardB p+img {
    bottom: 14px;
  }

  .visionPage .back.leahCardBack.kevinCardB p+img {
    bottom: 14px;
  }

  .visionPage .back.leahCardBack.michaelCardB p+img {
    bottom: 23px;
    left: -62px;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 13%;
    top: 4vw;
    width: 55%;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 371px;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  .brandStoryVideoWrapper .videoContainer iframe {
    position: absolute;
    top: -16vw;
    width: 100%;
    height: 42vh;
  }

  .brandStoryVideoWrapper .homePageVideoWrpr .closespan {
    top: -225px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    width: 100% !important;
  }

  #homePage .bannerSecond.homePageBannerContainer,
    #homePage .homePageVideoWrapper {
    min-height: 100% !important;
  }

  #homePage .homePageBannerContainer .homepageTitle h1 {
    padding-bottom: 0px;
    text-align: left;
    font-size: 1.75rem;
    line-height: 24px;
  }

  #homePage .homePageBannerContainer>.leftSection>.heading.homepageTitle p {
    margin-bottom: 20px;
  }

  #homePage .bannerThirdHP .bannerThird h3 {
    font-size: 1.75rem !important;
    line-height: 34px !important;
    margin-bottom: 20px;
  }

  #homePage .bannerThirdHP .bannerThird h3 .text-28 {
    font-size: 1.75rem;
    line-height: 0;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  div#homePage .homePageVideoWrapper .videoContainer+.hpContentWrapper {
    background: none;
    height: 100%;
    padding-left: 0px;
    padding-top: 30px;
    position: absolute;
    right: 0px;
    width: 25%;
  }

  html[lang='en'] div#homePage .homePageVideoWrapper .videoContainer+.hpContentWrapper {
    background: none;
    height: 100%;
    padding-left: 0px;
    padding-top: 30px;
    position: absolute;
    right: 0px;
    width: auto;
  }

  div#homePage .bannerSecond h2.cardTitle {
    margin: 0px;
  }

  #homePage .bannerSecond+.IeSpcificWrapper .imageWrapper>span>span+img {
    height: auto !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-left: 110px;
    padding-right: 0px;
  }

  .homePageVideoWrpr .closespan {
    top: -50px;
  }

  div.modalDialogBg div.homePageVideoWrpr {
    width: 100vw;
    display: flex;
    height: 31vh;
    margin-top: 0px;
  }

  .homePageVideoWrapper .videoContainer iframe {
    height: 100%;
    position: absolute;
    top: auto;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 371px;
  }

  .visionPage .allArtistSectionContainer .artistSection5 {
    position: relative !important;
    left: -1.5vw;
  }

  .visionPage .allArtistSectionContainer .artistSection6 {
    position: relative !important;
    right: -2vw;
  }

  .visionPage .allArtistSectionContainer .artistSection1,
    .visionPage .allArtistSectionContainer .artistSection3,
    .visionPage .allArtistSectionContainer .artistSection5,
    .visionPage .allArtistSectionContainer .artistSection7 {
    color: transparent;
    display: block;
    float: left;
    height: auto;
    margin: 0;
    position: inherit;
    width: 50%;
  }

  .visionPage .allArtistSectionContainer .artistSection2,
    .visionPage .allArtistSectionContainer .artistSection4,
    .visionPage .allArtistSectionContainer .artistSection6,
    .visionPage .allArtistSectionContainer .artistSection8 {
    display: block;
    float: right;
    height: auto;
    margin: 0 0 80px;
    position: inherit;
    width: 50%;
  }

  .visionPage .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw;
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 20px;
    font-weight: 700;
    left: 0px;
    position: absolute;
    right: 0;
  }

  .visionPage .allArtistSectionContainer .artistSection2 .leahCardFrontContentWrapper h2 {
    left: -1vw;
  }

  .visionPage .allArtistSectionContainer .artistSection3 .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
  }

  .visionPage .allArtistSectionContainer .artistSection4 .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
    left: -3vw;
  }

  .visionPage .allArtistSectionContainer .artistSection5 .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
    left: 2.3vw;
  }

  .visionPage .allArtistSectionContainer .artistSection7 .leahCardFrontContentWrapper h2 {
    bottom: 1.7vw;
  }

  .visionPage .allArtistSectionContainer .artistSection8 .leahCardFrontContentWrapper h2 {
    bottom: 1.7vw;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img,
    .visionPage .front h2+img {
    bottom: 10px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 64px;
    width: auto;
  }

  .visionPage .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -10px;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
    font-size: 19px;
    left: -90px;
  }

  .visionPage .front.cathrineCardF h2+img {
    bottom: 21px;
    left: 148px;
  }

  .visionPage .elmerCardF .leahCardFrontContentWrapper h2+p+img {
    bottom: 9px;
    float: none;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 50px;
    width: auto;
  }

  .visionPage .michaelCardF.front h2+img {
    left: 190px;
  }

  .visionPage .front.neilCardF h2+img {
    left: 194px;
    bottom: 9px;
  }

  .visionPage .leahCardBackContentWrapper h2 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.06945px;
    line-height: 75px;
    margin-top: 50px;
  }

  .leahCardBackContentWrapper p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
  }

  .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 28px;
  }

  .kevinCardB .leahCardBackContentWrapper h2.cardContentTitle,
    .michaelCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 28px;
  }

  .visionPage div.back.leahCardBack p+img {
    bottom: 10px;
    float: none;
    height: auto;
    left: -72px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: auto;
  }

  .visionPage .back.leahCardBack.tylerCardB p+img {
    bottom: 30px;
  }

  .visionPage .back.leahCardBack.elmerCardB p+img {
    bottom: 0px;
  }

  .visionPage .back.leahCardBack.ruthCardB p+img {
    bottom: 22px;
  }

  .visionPage .back.leahCardBack.neilCardB p+img {
    bottom: 0px;
  }

  .visionPage .back.leahCardBack.cathrineCardB p+img {
    bottom: 10px;
  }

  .visionPage .back.leahCardBack.kevinCardB p+img {
    bottom: 10px;
  }

  .visionPage .back.leahCardBack.michaelCardB p+img {
    bottom: 22px;
  }

  #homePage .bannerSecond .rewardSection p {
    font-size: 1.75rem !important;
    line-height: 32px !important;
    padding-top: 40px;
  }

  #homePage .bannerThirdHP .bannerThird h3 strong {
    font-weight: normal;
  }
}

/***** Media Queries *******/

@media only screen and (min-width: 935px) and (max-width: 1099px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw;
  }
}

@media only screen and (min-width: 1100px) and (max-width: 1279px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw;
  }
}

@media only screen and (min-width: 1281px) and (max-width: 1500px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.5vw;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 31px 148px 33px !important;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 430px;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 5vw;
  }

  .cathrineCardB .leahCardBackContentWrapper,
    .elmerCardB .leahCardBackContentWrapper,
    .neilCardB .leahCardBackContentWrapper,
    .ruthCardB .leahCardBackContentWrapper,
    .tylerCardB .leahCardBackContentWrapper {
    top: 5vw !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    top: 4vw !important;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 41px 167px 33px !important;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 450px;
  }

  .leahCardBack .leahCardBackContentWrapper,
    .tylerCardB .leahCardBackContentWrapper,
    .elmerCardB .leahCardBackContentWrapper,
    .ruthCardB .leahCardBackContentWrapper,
    .cathrineCardB .leahCardBackContentWrapper,
    .kevinCardB .leahCardBackContentWrapper {
    top: 7vw !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    top: 8vw !important;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw;
  }

  .visionPage .allArtistSectionContainer .artistSection1 .leahCardFrontContentWrapper h2,
    .visionPage .allArtistSectionContainer .artistSection2 .leahCardFrontContentWrapper h2 {
    line-height: 1.2vw;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 46px 170px 33px !important;
    left: 37.5vw !important;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 460px;
  }

  .leahCardBack .leahCardBackContentWrapper,
    .tylerCardB .leahCardBackContentWrapper,
    .elmerCardB .leahCardBackContentWrapper,
    .cathrineCardB .leahCardBackContentWrapper,
    .neilCardB .leahCardBackContentWrapper {
    top: 8vw !important;
  }

  .kevinCardB .leahCardBackContentWrapper,
    .ruthCardB .leahCardBackContentWrapper,
    .michaelCardB .leahCardBackContentWrapper {
    top: 10vw !important;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 23px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw !important;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 46px 170px 33px !important;
    left: 40.5vw !important;
    top: -9.5vw !important;
  }

  .visionPage .buyNowBountyPrints {
    margin: 0 17% !important;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 480px;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -54px !important;
  }

  .leahCardBack .leahCardBackContentWrapper {
    top: 10vw !important;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3000px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 1.8vw;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 46px 170px 33px !important;
    left: 38vw !important;
    top: -8.3vw !important;
  }

  .visionPage .buyNowBountyPrints {
    margin: 0 20% !important;
  }

  .visionPage .partnershipVideoVV iframe {
    height: 500px;
  }
}

/***** Media Queries *******/

/***** ipad Media Queries *******/

@media only screen and (min-width: 1024px) and (max-width: 1250px) {
  .tylerCardB .leahCardBackContentWrapper,
    .leahCardBackContentWrapper .elmerCardB .leahCardBackContentWrapper,
    .ruthCardB .leahCardBackContentWrapper,
    .neilCardB .leahCardBackContentWrapper,
    .cathrineCardB .leahCardBackContentWrapper,
    .kevinCardB .leahCardBackContentWrapper,
    .michaelCardB .leahCardBackContentWrapper,
    .elmerCardB .leahCardBackContentWrapper {
    top: 7%;
  }

  .visionPage .leahCardFrontContentWrapper h2,
    .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw !important;
  }

  .kevinCardB .leahCardBackContentWrapper h2.cardContentTitle,
    .michaelCardB .leahCardBackContentWrapper h2.cardContentTitle,
    .cathrineCardB .leahCardBackContentWrapper h2.cardContentTitle {
    font-size: 28px !important;
  }

  .visionPage .allArtistSectionContainer .artistSection2 .leahCardFrontContentWrapper h2 {
    bottom: 1vw !important;
    right: 2vw;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw !important;
    left: 1vw !important;
  }

  .visionPage .allArtistSectionContainer .artistSection1 .leahCardFrontContentWrapper h2 {
    left: -3vw;
    bottom: 1.1vw;
  }

  .visionPage .allArtistSectionContainer .artistSection7 .leahCardFrontContentWrapper h2 {
    left: -3vw;
    bottom: 1.5vw;
  }

  .visionPage .allArtistSectionContainer .artistSection8 .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
    right: 3vw;
  }

  .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -65px !important;
  }
}

@media (min-width: 1366px) {
  .visionPage .allArtistSectionContainer .artistSection2 .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw;
    right: 1vw;
  }

  .visionPage .allArtistSectionContainer .artistSection1 .leahCardFrontContentWrapper h2 {
    left: -1vw;
    bottom: 1.5vw;
  }
}

/***** ipad Media Queries *******/

/***** SP *******/

@media screen and (max-device-width: 414px) {
  .leahCardBackContentWrapper {
    top: 3vw !important;
    right: 14% !important;
  }

  .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
    font-size: 4vw;
  }

  .leahCardBackContentWrapper h2 {
    font-size: 6vw !important;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -6.5vw !important;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
  }

  .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -6vw !important;
    bottom: 2.2vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    left: 1vw !important;
    bottom: 2.5vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -15vw !important;
    bottom: 2.5vw !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
    bottom: 2.5vw !important;
  }

  .michaelCardF .leahCardFrontContentWrapper h2 {
    left: -7vw !important;
    bottom: 2.5vw !important;
  }

  .leahCardBackContentWrapper p {
    line-height: normal;
  }

  .elmerCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 5vw !important;
  }

  .ruthCardB .leahCardBackContentWrapper {
    right: 16% !important;
  }

  .neilCardB .leahCardBackContentWrapper {
    top: 5% !important;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    right: 11% !important;
    top: 11% !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 2% !important;
    right: 11% !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 9% !important;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 32vw !important;
    padding: 4px 72px 36px !important;
    top: -16vw !important;
  }
}

@media screen and (max-device-width: 375px) {
  .leahCardBackContentWrapper {
    top: 3vw !important;
    right: 14% !important;
  }

  .leahCardFrontContentWrapper h2 {
    bottom: 1.8vw !important;
    font-size: 4vw;
  }

  .leahCardBackContentWrapper h2 {
    font-size: 6vw !important;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -6.5vw !important;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
  }

  .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -6vw !important;
    bottom: 2.2vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    left: 1vw !important;
    bottom: 2.5vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -15vw !important;
    bottom: 2.5vw !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
    bottom: 2.5vw !important;
  }

  .michaelCardF .leahCardFrontContentWrapper h2 {
    left: -7vw !important;
    bottom: 2.5vw !important;
  }

  .leahCardBackContentWrapper p {
    line-height: normal;
  }

  .elmerCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 5vw !important;
  }

  .ruthCardB .leahCardBackContentWrapper {
    right: 16% !important;
  }

  .neilCardB .leahCardBackContentWrapper {
    top: 5% !important;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    right: 11% !important;
    top: 11% !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 2% !important;
    right: 11% !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 9% !important;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 31vw !important;
    top: -16vw !important;
    padding: 0 68px 36px !important;
  }
}

@media screen and (max-device-width: 360px) {
  .leahCardBackContentWrapper {
    top: 3vw !important;
    right: 14% !important;
  }

  .leahCardFrontContentWrapper h2 {
    bottom: 1.8vw !important;
    font-size: 4vw;
  }

  .leahCardBackContentWrapper h2 {
    font-size: 6vw !important;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -6.5vw !important;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
  }

  .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -6vw !important;
    bottom: 2.2vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    left: 1vw !important;
    bottom: 2.5vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -15vw !important;
    bottom: 2.5vw !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
    bottom: 2.5vw !important;
  }

  .michaelCardF .leahCardFrontContentWrapper h2 {
    left: -7vw !important;
    bottom: 2.5vw !important;
  }

  .leahCardBackContentWrapper p {
    line-height: normal;
  }

  .elmerCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 5vw !important;
  }

  .ruthCardB .leahCardBackContentWrapper {
    right: 16% !important;
  }

  .neilCardB .leahCardBackContentWrapper {
    top: 5% !important;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    right: 11% !important;
    top: 11% !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 2% !important;
    right: 11% !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 9% !important;
  }
}

@media screen and (max-device-width: 320px) {
  .leahCardBackContentWrapper {
    top: 3vw !important;
    right: 14% !important;
  }

  .leahCardFrontContentWrapper h2 {
    bottom: 1.8vw !important;
    font-size: 4vw;
  }

  .leahCardBackContentWrapper h2 {
    font-size: 6vw !important;
  }

  .artistSection1 .leahCardFront .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -6.5vw !important;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
  }

  .ruthCardF .leahCardFrontContentWrapper h2 {
    left: -6vw !important;
    bottom: 2.2vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    left: 1vw !important;
    bottom: 2.5vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    left: -15vw !important;
    bottom: 2.5vw !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    left: -5vw !important;
    bottom: 2.5vw !important;
  }

  .michaelCardF .leahCardFrontContentWrapper h2 {
    left: -7vw !important;
    bottom: 2.5vw !important;
  }

  .leahCardBackContentWrapper p {
    line-height: normal;
  }

  .elmerCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 5vw !important;
  }

  .ruthCardB .leahCardBackContentWrapper {
    right: 16% !important;
  }

  .neilCardB .leahCardBackContentWrapper {
    top: 5% !important;
  }

  .cathrineCardB .leahCardBackContentWrapper {
    right: 11% !important;
    top: 11% !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    top: 2% !important;
    right: 11% !important;
  }

  .michaelCardB .leahCardBackContentWrapper {
    right: 14% !important;
    top: 9% !important;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 29vw !important;
    padding: 0px 64px 33px !important;
    top: -12vw !important;
  }
}

@media only screen and (device-width: 390px) and (device-height: 844px) {
  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 0 68px 41px !important;
  }
}

@media only screen and (max-width: 428px) and (orientation: portrait) {
  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 31vw !important;
    padding: 0 78px 37px !important;
    top: -15vw !important;
  }

  .michaelCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.5vw !important;
    left: -7vw !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.5vw !important;
    left: -5vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.5vw !important;
    left: -15vw !important;
  }

  .neilCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.5vw !important;
    left: 1vw !important;
  }

  .elmerCardF .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
  }

  .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -6.5vw !important;
    bottom: 1.8vw !important;
  }

  .leahCardFrontContentWrapper h2 {
    bottom: 2.2vw !important;
    font-size: 4vw;
  }

  .leahCardBackContentWrapper h2 {
    font-size: 6vw !important;
  }

  .leahCardBackContentWrapper p {
    line-height: normal;
  }

  .leahCardBackContentWrapper {
    right: 14% !important;
    top: 3vw !important;
  }
}

/***** SP *******/

/***** Buy now fixes ****/

.visionPage .buyNowBountyPrints+div.ps-widget {
  background: transparent;
  position: relative;
  left: 39vw;
  top: -10vw;
  line-height: 0;
  padding: 24px 134px 33px;
  border: none;
  display: block !important;
}

.visionPage .buyNowBountyPrints+div.ps-widget>span {
  font-size: 0;
}

.visionPage .bountyVVLogo+div.ps-widget {
  background: #08647c;
  border: none;
  display: block !important;
}

.visionPage .bountyVVLogo+div.ps-widget>span {
  font-family: 'Poppins-Bold';
  font-size: 18px;
  line-height: 45px;
}

/***** Buy now fixes ****/

/***** Resolution fixes ****/

@media only screen and (min-width: 641px) and (max-width: 800px) {
  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 29vw !important;
    padding: 24px 159px 63px !important;
    top: -16vw !important;
  }
}

@media screen and (width: 1600px) {
  .visionPage .leahCardFrontContentWrapper h2 {
    bottom: 1.5vw;
  }
}

/***** Resolution fixes ****/

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .visionPage .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw !important;
  }

  .visionPage .cathrineCardF .leahCardFrontContentWrapper h2 {
    bottom: 1.2vw !important;
    left: -7vw !important;
  }

  .visionPage .leahCardBackContentWrapper h2 {
    font-size: 22px !important;
  }

  .leahCardBackContentWrapper p {
    line-height: 18px !important;
    font-size: 11px !important;
  }

  .kevinCardF .leahCardFrontContentWrapper h2 {
    left: -4vw !important;
  }

  .kevinCardB .leahCardBackContentWrapper {
    right: 11% !important;
  }

  .visionPage .tylerCardF .leahCardFrontContentWrapper h2 {
    left: -35px !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .cathrineCardB .leahCardBackContentWrapper,
    .elmerCardB .leahCardBackContentWrapper,
    .kevinCardB .leahCardBackContentWrapper,
    .leahCardBackContentWrapper .elmerCardB .leahCardBackContentWrapper,
    .michaelCardB .leahCardBackContentWrapper,
    .neilCardB .leahCardBackContentWrapper,
    .ruthCardB .leahCardBackContentWrapper,
    .tylerCardB .leahCardBackContentWrapper,
    .leahCardBack .leahCardBackContentWrapper {
    top: -4%;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .visionPage .leahCardBackContentWrapper h2 {
    font-size: 28px !important;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    padding: 24px 110px 20px !important;
  }

  .visionPage .leahCardBackContentWrapper p {
    font-size: 13px;
    line-height: 24px;
  }

  .leahCardBack .leahCardBackContentWrapper {
    top: 2vw !important;
  }

  .elmerCardB .leahCardBackContentWrapper {
    top: 1vw !important;
  }
}

@media (max-width: 1367px) and (min-width: 1365px) {
  .leahCardBack .leahCardBackContentWrapper {
    top: 7vw !important;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .visionPage .leahCardBackContentWrapper p {
    font-size: 3vw;
    line-height: 17px;
  }

  .visionPage .leahCardBackContentWrapper h2 {
    font-size: 5vw !important;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .leahCardBackContentWrapper h2 {
    font-size: 24px !important;
  }

  .visionPage .leahCardBackContentWrapper p {
    font-size: 3vw;
    line-height: normal;
  }

  .visionPage .bountyVVLogo+div.ps-widget>span {
    font-size: 16px;
  }

  div.visionPage .buyNowBountyPrints {
    width: 72%;
  }

  .visionPage .jumpToArtistSection img {
    height: auto;
    width: 100% !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    width: 58vw !important;
    margin: 0 11vw !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    width: 100% !important;
  }

  #homePage .bannerSecond.homePageBannerContainer,
    #homePage .homePageVideoWrapper {
    min-height: 100% !important;
  }

  #homePage .bannerSecond+.IeSpcificWrapper {
    height: auto;
  }

  #homePage .bannerSecond+.IeSpcificWrapper .imageWrapper>span>span+img {
    height: auto !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-left: 110px;
    padding-right: 0px;
    padding-top: 10px !important;
  }

  .homePageBannerContainer>.bannerThird {
    width: 100%;
  }

  #homePage .bannerThird h3 {
    line-height: 1.7rem;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-list .slick-track {
    width: 610px !important;
    margin-right: inherit;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-list .slick-track .slick-slide.slick-active.slick-current {
    width: 100% !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .locationText {
    padding: 0px;
  }

  .homePageBannerContainer>.leftSection .slideUpAnimation1 .buyNowBtn {
    margin: 0px;
  }

  .homePageBannerContainer>.leftSection>.heading.homepageTitle p {
    margin: 0px;
  }

  html[lang='en'] #homePage .homePageBannerContainer.bannerThirdHP .textWrapper.bannerThird {
    padding-left: 15%;
    padding-right: 0px;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .textWrapper.bannerThird {
    padding-left: 10%;
    padding-right: 0px;
  }

  #homePage .homePageVideoWrapper .videoContainer .thumbnailWrapper button {
    margin: 0px;
    width: 65%;
  }

  #homePage.pageWrapper div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-left: 55px;
    height: 345px !important;
  }

  #homePage .slick-list .slick-track .slick-slide img {
    min-width: auto !important;
    height: auto !important;
    min-height: 100% !important;
    width: auto !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection.rightSection {
    height: 100%;
  }

  html[lang='en'] #homePage.pageWrapper div.homePageBannerWrapper {
    height: 345px !important;
    min-height: 343px !important;
  }

  #homePage.pageWrapper div.homePageBannerWrapper {
    height: 343px !important;
    min-height: 450px !important;
  }

  #homePage .bannerSecond .secondBanner .cardButton>.buttonText {
    width: 245px;
  }

  .visionPage .buyNowBountyPrints+div.ps-widget {
    left: 38vw !important;
    padding: 24px 110px 20px !important;
    top: -10vw !important;
  }

  .ipadmx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/***** Algolia CSS Fixes ******/

.searchPageWrapper input {
  width: 100%;
  padding-left: 23px;
  height: 26px;
  color: #029a4f;
}

.searchPageWrapper input:focus-visible,
.searchPageWrapper input:focus {
  content: '';
  outline: none !important;
}

.searchPageWrapper form {
  position: relative;
}

.searchPageWrapper form button[type='submit'] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
}

.searchPageWrapper form button[type='submit'] svg {
  width: 14px;
  height: 14px;
  fill: #029a4f;
}

/***** Algolia CSS Fixes ******/

/***** Drop-Down Fixes ******/

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .jumpToArtistSection img {
    max-width: 26vw !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    margin-left: 10px !important;
    width: 410px !important;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .jumpToArtistSection img {
    max-width: 27vw !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    width: 453px !important;
    margin-left: 32px !important;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .jumpToArtistSection img {
    max-width: 27vw !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    margin-left: 10px !important;
    width: 510px !important;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection img {
    width: 516px !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    width: 453px !important;
    margin-left: 32px !important;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection img {
    width: 516px !important;
  }

  .visionPage .jumpToArtistSection .undefined.block ul {
    width: 453px !important;
    margin-left: 32px !important;
  }
}

/***** Drop-Down Fixes ******/

/* Sustainability Redesign */

@media only screen and (min-width: 1025px) {
  .faqPanelDetail .articlerichtext p {
    font-size: 20px;
    line-height: 30px;
  }

  .articleListWrapper .tabMenuWrapper ul.list li.listItem:hover,
    .articleDetailMenu .articleDetailTitle ul.list li.listItem:hover,
    .pdpPage .headerMenuCls .listItem:hover {
    -o-border-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
       border-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
    border-image-slice: 1;
    border-bottom-width: 4px;
  }

  div#__next {
    overflow: auto;
  }

  #menu-second .pageContentDescription>div>p {
    width: 91%;
  }

  .callOutContent div.shortDescription h3 {
    letter-spacing: 0.2px;
    color: #646464;
    font-family: 'work-sans-regular';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
  }

  #homePage .bannerThirdHP .bannerThird h3 .text-28 {
    font-size: 1.75rem;
    line-height: 0;
  }

  .sustainabilityWrapper {
    padding: 0;
    max-width: 100vw !important;
    margin: 0 !important;
    overflow: hidden;
  }

  .sustainLastSectionWrapper .fscWrapper img {
    display: flex;
    width: 100%;
  }

  .richtextFadeInSection {
    float: left;
    width: 100%;
    position: relative;
    margin: 0 !important;
  }

  .richtextFadeInSection .mainTextContainer {
    position: static !important;
    padding: 0;
    margin: 0;
    width: 100%;
    transform: none !important;
  }

  .sustainPageFadeIn,
    .sustainPageFadeIn1 {
    width: 50%;
  }

  .richtextFadeInSectioncontainer {
    width: 100%;
    display: flex;
    margin: 50px auto;
  }

  .sustainPageFadeIn .forestsSection1 p {
    color: #14a45c;
    font-family: core-rhino-75;
    font-size: 50px;
    line-height: 50px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .sustainPageFadeIn .forestsSection1ES p {
    color: #14a45c;
    font-family: core-rhino-75;
    font-size: 3.3vw;
    line-height: 5vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .sustainPageFadeIn .forestsSection1 p>span {
    color: #6c9b2a;
  }

  .sustainPageFadeIn .fade-in-section.is-visible {
    animation: fadeIn 3s ease;
  }

  .sustainPageFadeIn1 .fade-in-section.is-visible {
    animation: fadeIn 3s ease;
  }

  .sustainabilityWrapper div.modalDialogBg iframe {
    width: 100%;
    height: 45vw !important;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage,
    .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent {
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage picture>img,
    .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage2 picture>img {
    max-width: 21vw;
    margin: 0 auto;
    left: 0;
  }

  .sustainabilityPageContent {
    left: 0;
    margin: 0px 7vw;
    top: 100vw;
    transition: none !important;
    width: 86vw;
    background: #e7f9ff;
    padding-top: 5vw;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent {
    position: relative;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage2 picture>img {
    max-width: 16vw;
    padding-bottom: 2vw;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara {
    color: #005534;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    top: 1vw;
    left: 0;
    letter-spacing: -0.01em;
    margin: 0 35%;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara>span {
    color: #006838;
  }

  .sustainLastSectionWrapper .growSectionSustain {
    float: left;
    padding-bottom: 2vw;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage,
    .sustainLastSectionWrapper .growSectionSustain .growSectionContent {
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: 0;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImageES picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: 2vw;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent {
    position: relative;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage2 picture>img {
    max-width: 8vw;
    padding-bottom: 2vw;
    position: relative;
    left: 6vw;
    top: 0;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent p.growSectionPara {
    color: #005534;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    top: -3.5vw;
    left: 0vw;
    letter-spacing: -0.01em;
    margin: 0px 34%;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent p.growSectionPara>span {
    color: #006838;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage {
    width: 100%;
    float: left;
    top: -5vw;
    position: relative;
  }

  .sustainLastSectionWrapper .protectSectionSustain {
    float: left;
    padding-bottom: 13vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage {
    margin: 0;
    width: 100%;
    float: left;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: 0;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage2 picture>img {
    max-width: 16vw;
    padding-bottom: 2vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara {
    color: #005534;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
    margin: 0 35%;
    top: 1vw;
    float: left;
  }

  .sustainLastSectionWrapper .restoreSectionSustain,
    .sustainLastSectionWrapper .growSectionSustain {
    padding-bottom: 5vw;
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara>span {
    color: #006838;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent {
    position: relative;
    width: 100%;
  }

  .forestBottomImageSustain {
    margin: 0 -4vw !important;
    position: relative;
    width: 91vw !important;
    float: left;
  }

  .forestBottomImageSustain img {
    width: 100%;
  }

  .fscWrapper {
    margin-top: -19% !important;
    padding: 0;
  }

  .badgeSection>div:first-child>a>div>img {
    width: 42px;
  }

  .badgeSection>div:last-child>a>div>img {
    margin-left: 0;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    padding: 0;
    background: #e7f9ff;
    float: left;
  }

  .sustainabilityWrapper .videoContainer .thumbnailWrapper button {
    top: calc(50% + 73px);
  }

  .richtextFadeInSection,
    .richtextFadeInSection+div {
    background: transparent !important;
    clear: both;
  }

  .protectSectionSustain {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .textContainer {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
  }

  .badgeSection {
    width: 19.333333%;
  }

  .footerWrapper .bottomLinks .list .listItem,
    .footerWrapper .bottomLinks .list .listItem:nth-last-child(2) {
    font-size: 11px;
  }

  .footerContentWrapper .wrapper>.content:nth-child(1) {
    width: 45%;
  }

  .footerContentWrapper .wrapper>.content:nth-child(3) {
    width: 66%;
  }

  .footerContentWrapper .enwrapper>.content:nth-child(3) ul li:first-child,
    .footerContentWrapper .enwrapper>.content:nth-child(2) ul li:last-child {
    white-space: nowrap;
  }

  .footerContentWrapper .childEsUsWrapper .wrapper>.content:nth-child(3) {
    width: 43.33% !important;
  }

  .sustainabilityWrapper .videoContainer .thumbnailWrapper button {
    top: calc(50% - -73px);
  }

  .footerLink.mainWrapper ul.spanishList li {
    font-size: 8px !important;
    text-transform: uppercase;
  }

  .brandStoryContainer .brandStoryText {
    position: absolute;
    right: 150px;
    top: 332px;
    width: 33%;
  }
}

@media only screen and (min-width: 1023px) and (max-width: 1025px) {
  /*Ipad pro */

  .sustainabilityWrapper {
    padding: 0;
    max-width: 100vw !important;
    margin: 0 !important;
  }

  .footerWrapper .bottomLinks .list .listItem,
    .footerWrapper .bottomLinks .list .listItem:nth-last-child(2) {
    font-size: 8px !important;
  }

  .richtextFadeInSection,
    .richtextFadeInSection+div {
    background: transparent;
    clear: both;
  }

  .sustainPageFadeIn .forestsSection1 p {
    color: #14a45c;
    font-family: core-rhino-75;
    font-size: 4.3vw;
    line-height: 5vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .sustainPageFadeIn .forestsSection1ES p {
    color: #000;
    font-family: 'Gilroy';
    font-size: 3.3vw;
    line-height: 5vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .sustainPageFadeIn .forestsSection1 p>span {
    color: #6c9b2a;
  }

  .sustainPageFadeIn .fade-in-section.is-visible {
    animation: fadeIn 3s ease;
  }

  .sustainPageFadeIn1 .fade-in-section.is-visible {
    animation: fadeIn 3s ease;
  }

  .sustainabilityWrapper div.modalDialogBg iframe {
    width: 100%;
    height: 45vw !important;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage,
    .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent {
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage picture>img,
    .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage2 picture>img {
    max-width: 21vw;
    margin: 0 auto;
  }

  .sustainabilityPageContent {
    left: 0;
    margin: 0px 7vw;
    top: 100vw;
    transition: none !important;
    width: 86vw;
    background: #e7f9ff;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent {
    position: relative;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage2 picture>img {
    max-width: 16vw;
    padding-bottom: 2vw;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara {
    color: #005534;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    top: 1vw;
    left: 0;
    letter-spacing: -0.01em;
    margin: 0 35%;
  }

  .sustainLastSectionWrapper .protectSectionSustainES .protectSectionContentES p.protectSectionPara {
    color: #556800;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    top: 1vw;
    left: 0;
    letter-spacing: -0.01em;
    margin: 0 32%;
  }

  .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara>span {
    color: #005534;
  }

  .sustainLastSectionWrapper .growSectionSustain {
    float: left;
    padding-bottom: 2vw;
    width: 100%;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage,
    .sustainLastSectionWrapper .growSectionSustain .growSectionContent {
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: 0;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent {
    position: relative;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage2 picture>img {
    max-width: 8vw;
    padding-bottom: 2vw;
    position: relative;
    left: 6vw;
    top: 0;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent p.growSectionPara {
    color: #006838;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    top: -3.5vw;
    left: 0vw;
    letter-spacing: -0.01em;
    margin: 0px 34%;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent p.growSectionPara>span {
    color: #006838;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage {
    width: 100%;
    float: left;
    top: -5vw;
    position: relative;
  }

  .sustainLastSectionWrapper .protectSectionSustain {
    float: left;
    padding-bottom: 13vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage {
    margin: 0;
    width: 100%;
    float: left;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage2 picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: -4vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage picture>img {
    max-width: 21vw;
    margin: 0px auto;
    position: relative;
    left: -4vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage2 picture>img {
    max-width: 16vw;
    padding-bottom: 2vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara {
    color: #005534;
    font-family: 'Poppins-Regular';
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 2.2vw;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
    margin: 0 35%;
    top: 1vw;
  }

  .sustainLastSectionWrapper .restoreSectionSustain {
    padding-bottom: 5vw;
    float: left;
    width: 100%;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara>span {
    color: #005534;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent {
    position: relative;
    width: 100%;
  }

  .forestBottomImageSustain {
    margin: 0 -4vw !important;
    position: relative;
    width: 91vw !important;
    float: left;
  }

  .sustainLastSectionWrapper .fscWrapper img {
    margin-top: -6vw;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    padding: 0;
  }

  .richtextFadeInSection {
    float: left;
    width: 100%;
    position: relative;
  }

  .richtextFadeInSection .mainTextContainer {
    position: static !important;
    padding: 0;
    margin: 0;
    width: 100% !important;
    transform: none !important;
  }

  .richtextFadeInSection {
    margin-top: 6%;
  }

  .fscWrapper {
    margin-top: -16%;
    padding: 0;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    background: #e7f9ff;
    padding: 0;
    float: left;
  }

  .sustainabilityPageContent {
    background: #e7f9ff;
  }

  .sustainabilityWrapper {
    overflow: hidden;
  }

  .richtextFadeInSectioncontainer {
    width: 66%;
    display: flex;
    margin: 50px auto;
  }

  
    .richtextFadeInSection,
    .richtextFadeInSection+div {
    background: #fff;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionContent p.growSectionPara {
    left: 0 !important;
  }

  .sustainLastSectionWrapper .growSectionSustain .growSectionImage {
    left: 0 !important;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage img {
    left: 0 !important;
  }

  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara {
    left: 0 !important;
  }

  .brandStoryContainer .brandStoryText {
    position: absolute;
    right: 57px !important;
    top: 332px !important;
    width: 42% !important;
  }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {
  .richtextFadeInSection {
    float: left;
    width: 100%;
    position: relative;
  }

  .richtextFadeInSection .mainTextContainer {
    position: static !important;
    padding: 0;
    margin: 0;
    width: 100% !important;
    transform: none !important;
  }

  .richtextFadeInSection {
    margin-top: 6%;
  }

  .fscWrapper {
    margin-top: -13%;
    padding: 0;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    background: #e7f9ff;
    padding: 0;
    float: left;
  }

  .sustainabilityPageContent {
    background: #e7f9ff;
  }

  .sustainabilityWrapper {
    overflow: hidden;
  }

  .richtextFadeInSectioncontainer {
    width: 66%;
    display: flex;
    margin: 50px auto;
  }

  
    .richtextFadeInSection,
    .richtextFadeInSection+div {
    background: #fff;
  }
}

/*Ingredients pages - CSS for moible to tablet resolutions */

@media screen and (max-width: 999px) {
  div#__next {
    overflow: auto;
  }

  .sustainabilityWrapper .videoContainer {
    clear: both;
    padding: 0 20px;
  }

  .sustainabilityWrapper .restoreSectionSustain .restoreSectionImage img {
    width: 85%;
    margin: 0 8%;
  }

  .sustainabilityWrapper {
    min-width: 100%;
    margin: 0;
    padding: 0;
  }

  .forestBottomImageSustain {
    position: relative;
    top: -14vw;
  }

  .videoContainer .thumbnailWrapper button {
    top: calc(50% - 35px);
  }

  .richtextFadeInSection {
    float: left;
    width: 100%;
    position: relative;
  }

  .richtextFadeInSection .mainTextContainer {
    position: static !important;
    padding: 20px 50px 50px;
    margin: 0;
    width: 100% !important;
    transform: none !important;
    text-align: center;
  }

  .richtextFadeInSectioncontainer {
    width: 100%;
    display: contents;
    padding-bottom: 4%;
  }

  .sustainPageFadeIn .forestsSection1 {
    text-align: center;
  }

  .sustainPageFadeIn .forestsSection1 p {
    color: #14a45c;
    font-family: core-rhino-75;
    font-size: 6vw;
    line-height: 7vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .sustainPageFadeIn .forestsSection1 p>span {
    color: #6c9b2a;
  }

  .sustainabilityPageContent {
    left: 0;
    padding-top: 24vw;
    top: 220vw;
    transition: none !important;
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }

  .sustainLastSectionWrapper .protectSectionSustain,
    .sustainLastSectionWrapper .growSectionSustain,
    .sustainLastSectionWrapper .restoreSectionSustain {
    margin: 0px 10vw;
  }

  .sustainLastSectionWrapper p {
    color: #556800;
    font-family: 'Poppins-Regular';
    font-weight: 700;
    font-size: 4vw;
    line-height: 5vw;
    text-align: center;
    position: relative;
    top: 10vw;
    left: -5vw;
    letter-spacing: -0.01em;
  }

  .footerWrapperEC {
    padding-top: 0;
  }

  .sustainabilityWrapper .restoreSectionContent {
    padding-bottom: 30%;
  }

  .sustainLastSectionWrapper p>span {
    color: #006838;
  }

  .sustainLastSectionWrapper .growSectionSustain {
    padding-bottom: 5vw;
  }

  .sustainabilityWrapper .protectSectionContent,
    .sustainabilityWrapper .growSectionContent,
    .sustainabilityWrapper .restoreSectionContent {
    text-align: center;
    width: 62vw;
    margin: 0 13vw;
    position: relative;
    top: 0;
    padding-bottom: 20vw;
  }

  /* .sustainabilityWrapper .arrowDividerSustain {
         width: 50vw;
         margin: 0 19vw;
         position: relative;
         top: 32vw;
         padding-bottom: 40vw;
    }
     */

  .sustainabilityWrapper .arrowDividerSustain {
    display: none;
  }

  .sustainabilityWrapper .restoreSectionSustain {
    position: relative;
    top: -20vw;
  }

  #footer-wrapper {
    float: left;
    display: block;
    width: 100%;
  }

  .fscWrapper {
    margin-top: -78%;
    padding: 0;
  }

  .sustainabilityWrapper .fscWrapper img {
    margin-top: -7%;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    background: #e7f9ff;
    padding: 0;
    float: left;
  }

  .sustainabilityPageContent div:nth-of-type(1) {
    position: relative;
    top: 0vw;
  }

  .sustainLastSectionWrapper {
    margin-top: 0;
  }

  div.modalDialogBg iframe {
    width: 100%;
    position: absolute;
    top: -36vw;
  }

  .sustainLastSectionWrapper .fscWrapper,
    .sustainLastSectionWrapper .textContainerwrapper {
    padding: 0;
  }

  .richtextFadeInSection,
    .richtextFadeInSection+div {
    background: transparent;
  }

  .callOutContent div.shortDescription h3 {
    font-family: 'work-sans-regular';
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #646464;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  .fscWrapper {
    margin-top: -85vw;
    float: left;
  }

  .sustainabilityPageContent {
    top: -20vw !important;
  }

  /* .sustainabilityWrapper .arrowDividerSustain {
         top: 24vw !important;
    }
     */

  .sustainLastSectionWrapper {
    height: auto !important;
    margin-top: 0 !important;
  }

  .sustainLastSectionWrapper .restoreSectionSustain {
    position: relative;
    top: -10vw;
  }

  .forestBottomImageSustain img {
    top: -17vw !important;
  }

  .forestBottomImageSustain {
    position: relative;
    top: 6vw !important;
  }

  .sustainabilityWrapper .fscWrapper img {
    margin-top: 46% !important;
  }

  @media only screen and (min-width: 641px) and (max-width: 800px) {
    .richtextFadeInSection {
      margin-top: 0%;
    }

    .sustainabilityPageContent .protectSectionImage picture>img,
        .sustainabilityPageContent .growSectionImage picture>img,
        .sustainabilityPageContent .restoreSectionImage picture>img {
      margin: 0 auto;
    }

    .sustainLastSectionWrapper {
      margin-top: 25vw;
    }

    .sustainabilityPageContent {
      top: 200vw;
    }

    .sustainLastSectionWrapper {
      float: left;
      /* height: 3550px;
         */
      background: #e6faff;
    }

    /* .sustainabilityWrapper .arrowDividerSustain {
         margin: 0 26vw;
         padding-bottom: 40vw;
         position: relative;
         top: 11vw;
         width: 50vw;
         background: url('https://images.ctfassets.net/jeoogvtfnmyl/2TWhgje4KKdFi23tYy0mv7/4c3cb9308c39f60a91b3ce33a2e137e6/ArrowDivider.png');
         background-repeat: no-repeat;
    }
     */
  }

  .fscWrapper {
    margin-top: -85vw;
    float: left;
  }

  .sustainabilityPageContent {
    top: 0vw !important;
  }

  /* .sustainabilityWrapper .arrowDividerSustain {
         top: 24vw !important;
    }
     */

  .sustainLastSectionWrapper {
    /* height: 1860px !important;
         */
    margin-top: 0 !important;
  }

  .forestBottomImageSustain {
    position: relative;
    top: -14vw;
  }

  .sustainabilityWrapper .fscWrapper img {
    margin-top: 51% !important;
  }

  .videoContainer .thumbnailWrapper button {
    top: calc(50% + 233px);
  }

  /*Grijesh fixes*/

  @media (max-width: 1200px) and (min-width: 1100px) {
    .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara {
      top: 1vw;
    }

    .forestBottomImageSustainES {
      top: 0 !important;
    }

    .sustainLastSectionWrapper .growSectionSustain {
      padding-bottom: 2vw;
    }

    .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara {
      top: 1vw;
    }

    .forestBottomImageSustain {
      top: 0 !important;
    }

    .sustainLastSectionWrapper .fscWrapper img {
      height: 175vw;
    }

    .footerContentWrapper {
      padding-left: 5%;
    }

    .breadcrumb-ul.flex.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionContent p.restoreSectionPara {
        top: 1vw;
      }

      .forestBottomImageSustainES {
        top: 0 !important;
      }

      .sustainLastSectionWrapper .growSectionSustain {
        padding-bottom: 2vw;
      }

      .sustainLastSectionWrapper .protectSectionSustain .protectSectionContent p.protectSectionPara {
        top: 1vw;
      }

      .forestBottomImageSustain {
        top: 0 !important;
      }

      .sustainLastSectionWrapper .fscWrapper img {
        height: 171vw;
        margin-top: -25px;
      }

      .footerContentWrapper {
        padding-left: 5%;
      }

      .breadcrumb-ul.flex.list-reset {
        padding-left: 5%;
      }
    }

    @media (max-width: 767px) and (min-width: 449px) {
      .sustainabilityWrapper .fscWrapper img {
        margin-top: -15%;
      }

      .videoPageWrapper .thumbnailImage {
        display: inline;
        width: 100%;
        margin-top: 25px;
      }

      .sustainPageFadeIn .forestsSection1 p {
        color: #006838;
      }

      .sustainabilityWrapper .restoreSectionContent {
        padding-bottom: 7%;
      }

      .forestBottomImageSustain {
        position: relative;
        top: 0vw;
      }

      .sustainabilityPageContent div:first-of-type {
        position: relative;
        top: 0vw;
      }

      .sustainabilityPageContent {
        padding-top: 3vw;
      }

      .sustainabilityWrapper .fscWrapper img {
        margin-top: -7% !important;
      }
    }

    @media (max-width: 450px) {
      .sustainabilityWrapper .fscWrapper img {
        margin-top: 36%;
        display: inline;
      }

      .videoPageWrapper .thumbnailImage {
        display: inline;
        width: 100%;
        margin-top: -30px;
      }

      .sustainPageFadeIn .forestsSection1 p {
        color: #006838;
      }

      .richtextFadeInSection {
        margin-top: 0%;
      }

      footer {
        padding-top: 0px;
      }

      .footerLink.mainWrapper {
        padding-left: 0px;
        margin-top: 0px;
      }

      footer .container.ipadpx-20 {
        padding-left: 15px;
        padding-right: 15px;
      }

      .videoContainer.m-auto.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }

      .brandStorywrapper .videoContainer.m-auto.IeVideoiContainer {
        padding: 0px 0px;
        clear: both;
      }
    }

    .videoContainer.m-auto.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }
  }

  @media (max-width: 1400px) and (min-width: 1300px) {
    .sustainLastSectionWrapper .fscWrapper img {
      height: 159vw !important;
      margin-top: -67px;
      z-index: 0;
    }
  }

  @media (max-width: 998px) and (min-width: 768px) {
    .richtextFadeInSection {
      margin-top: 0%;
    }

    .sustainabilityPageContent div:first-of-type {
      position: relative;
      top: 3vw;
    }

    .growTitle {
      padding-bottom: 6rem !important;
      right: 10% !important;
    }

    .sustainLastSectionWrapper img {
      display: block;
      width: 35vw;
      position: relative;
      top: -12vw;
      margin: 0 auto;
    }

    .sustainabilityWrapper .restoreSectionSustain .restoreSectionImage img {
      width: 31vw;
      margin: 0 auto;
    }

    .forestBottomImageSustain img {
      margin: 0;
      width: 100%;
    }

    .sustainabilityWrapper .restoreSectionContent {
      padding-bottom: 0;
    }

    .sustainLastSectionWrapper {
      background: #e6faff;
      float: left;
      /* height: 1985px;
         */
      margin-top: 0;
    }

    .sustainLastSectionWrapper p {
      top: -7vw;
    }

    .sustainLastSectionWrapper .growSectionSustain,
        .sustainLastSectionWrapper .protectSectionSustain,
        .sustainLastSectionWrapper .restoreSectionSustain {
      margin: 0px 10vw;
    }

    .sustainabilityPageContent {
      left: 0;
      margin: 0 4vw;
      padding-left: 0;
      padding-right: 0;
      padding-top: 8vw;
      position: relative;
      top: 0px;
      transition: none !important;
      width: 92vw;
    }

    .sustainabilityWrapper {
      position: relative;
    }

    .sustainabilityWrapper .fscWrapper img {
      margin-top: 41%;
      width: 100%;
      height: auto;
      display: inline;
    }

    .sustainabilityPageContent {
      top: 0vw !important;
      margin: 0;
      width: 100vw;
    }

    footer {
      padding-top: 0px;
    }

    .forestBottomImageSustain {
      position: relative;
      top: 0vw;
    }

    .footerLink.mainWrapper {
      padding-left: 0px;
      margin-top: 0px;
    }

    footer .container.ipadpx-20 {
      padding-left: 15px;
      padding-right: 15px;
    }

    .videoContainer.m-auto.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }

    .brandStorywrapper .videoContainer.m-auto.IeVideoiContainer {
      padding: 0px 0px;
      clear: both;
    }
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    .videoContainer.m-auto.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }

    .fscWrapper {
      margin-top: -13%;
    }
  }

  /* Sustainability Redesign */

  /*** Resolution Fixes *****/

  /*** Resolution Fixes *****/

  /*** Sustainability-ES Redesign *****/

  @media only screen and (min-width: 1025px) {
    html[lang='en'] .napkinsDummyBtnEN div#product-detail-page span.gradientBgClr {
      margin-top: 40px;
    }
  }

  .sustainPageFadeIn.fadeInSectionDivES {
    margin-top: 2.5%;
  }

  .sustainPageFadeIn .forestsSection1ES p {
    font-size: 4vw;
  }

  .primaryMenuWrapper .wrapperDiv .mainMenuItem h3,
    .primaryMenuWrapper .wrapperDiv .mainMenuItem h2.menuItemText {
    font-size: 13px;
  }

  .sustainLastSectionWrapper .growSectionSustainES .growSectionImageES picture>img {
    left: 2vw;
    max-width: 37vw;
  }

  .sustainLastSectionWrapper .growSectionSustainES .growSectionContentES .growSectionParaES {
    margin: 0 !important;
    line-height: 50px !important;
  }

  .sustainLastSectionWrapper .restoreSectionSustainES .restoreSectionImageES picture>img {
    left: 0;
  }

  html[lang='en'] .sustainLastSectionWrapper .restoreSectionSustainES .restoreSectionContentES p.restoreSectionParaES {
    margin: 0 32%;
    width: 36%;
  }

  .sustainLastSectionWrapper .restoreSectionSustainES .restoreSectionContentES p.restoreSectionParaES {
    margin: 0 !important;
    width: 100% !important;
  }

  .sustainLastSectionWrapper .protectSectionSustainES .protectSectionContent p.protectSectionParaES {
    margin: 0;
  }
}

@media only screen and (min-width: 1023px) and (max-width: 1025px) {

  .sustainLastSectionWrapper .growSectionSustainES .growSectionImageES picture>img {
    max-width: 25vw;
  }

  .richtextFadeInSectioncontainerES {
    width: 85%;
  }

  .primaryMenuWrapper .wrapperDiv .mainMenuItem h3,
    .primaryMenuWrapper .wrapperDiv .mainMenuItem h2.menuItemText {
    font-size: 12px;
  }

  .fscWrapperES {
    margin-bottom: 0;
  }

  .sustainPageFadeIn .forestsSection1ES p {
    font-size: 3.8vw;
  }

  .sustainPageFadeIn .forestsSection1ES p {
    font-size: 4vw;
  }

  .richtextFadeInSectioncontainerES .mainTextContainer .forestsSection2ES p {
    line-height: 2.2vw !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustain .growSectionImageES {
    left: 3vw !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustain .growSectionContentES p.growSectionParaES {
    left: 0 !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .restoreSectionSustainES .restoreSectionContentES p.restoreSectionParaES {
    left: 0 !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .restoreSectionSustainES .restoreSectionImageES picture>img {
    max-width: 20vw;
  }

  /* .sustainLastSectionWrapper.lastSectionWrapperES
        .protectSectionSustainES
        .protectSectionContentES
        p.protectSectionParaES {
        width: 36%;
    } */

  .footerWrapper .bottomLinks ul.spanishList li {
    font-size: 8px !important;
  }
}

@media only screen and (min-width: 641px) and (max-width: 800px) {
  .sustainLastSectionWrapper.lastSectionWrapperES {
    /* height: 1830px !important;
         */
    margin-top: 0px !important;
  }

  .forestBottomImageSustainES {
    top: 0 !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustainES .growSectionImage.growSectionImageES img {
    position: relative;
    left: 1vw;
  }

  .forestBottomImageSustainES img {
    width: 100%;
  }
}

@media screen and (max-width: 999px) {
  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustainES {
    padding-bottom: 20vw;
  }

  .sustainabilityWrapper .growSectionContentES,
    .sustainabilityWrapper .protectSectionContentES,
    .sustainabilityWrapper .restoreSectionContentES {
    width: 70vw;
    margin: 0 10vw;
  }

  .sustainabilityWrapper .protectSectionContentES {
    padding-bottom: 28vw;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustainES .growSectionImage.growSectionImageES img {
    margin: 0 9%;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .restoreSectionSustainES .restoreSectionImageES img {
    width: 71%;
    margin: 0 15%;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .protectSectionSustainES .protectSectionImageES img {
    width: 85%;
    margin: 0 10%;
  }
}

@media (max-width: 998px) and (min-width: 768px) {
  .forestBottomImageSustainES {
    top: -32vw;
  }

  .sustainabilityWrapper .growSectionContentES,
    .sustainabilityWrapper .restoreSectionContentES {
    padding-bottom: 13vw;
  }

  .sustainabilityWrapper .protectSectionContentES {
    padding-bottom: 13vw;
  }

  .sustainabilityPageContent .growSectionSustainES .growSectionImageES img {
    width: 40vw;
  }

  /* .sustainLastSectionWrapper.lastSectionWrapperES {
         height: 1864px;
    }
     */

  .sustainLastSectionWrapper.lastSectionWrapperES .protectSectionSustainES .protectSectionImageES img {
    margin: 0 auto;
    width: 34vw;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .restoreSectionSustainES .restoreSectionImageES img {
    margin: 0 auto;
    width: 30vw;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  .forestBottomImageSustainES {
    top: 11vw !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustainES {
    padding-bottom: 6vw;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES .growSectionSustainES .growTitle {
    padding-bottom: 6rem !important;
    right: 10% !important;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES {
    /* height: 1981px !important;
         */
    margin-top: 0px !important;
  }

  .fscWrapperES {
    margin-top: -79vw;
  }
}

@media (max-width: 998px) and (min-width: 768px) {
  .sustainabilityPageContent .growSectionSustainES .growSectionImageES img {
    margin: 0px 23% !important;
    width: 50%;
  }
}

@media only screen and (min-width: 743px) and (max-width: 745px) {
  .sustainabilityPageContent .growSectionSustainES .growSectionImageES img {
    left: 0vw !important;
    width: 100% !important;
  }

  .sustainabilityWrapper .restoreSectionSustainES .restoreSectionImageES img {
    width: 66%;
    margin: 0 19%;
  }

  .sustainPageFadeIn .forestsSection1ES {
    padding-top: 3vw;
  }

  .sustainLastSectionWrapper.lastSectionWrapperES p {
    top: 3vw;
  }
}

@media (max-width: 767px) and (min-width: 449px) {
  .sustainabilityWrapper .fscWrapperES img {
    margin-top: 60% !important;
  }
}

/*** Sustainability-ES Redesign *****/

/*** Sustainability-EN-US & ES-US Live Bug Fixes *****/

@media only screen and (min-width: 1023px) and (max-width: 1025px) {

  html[lang='en'] .fscWrapper {
    margin-bottom: 0;
  }

  html[lang='en'] .richtextFadeInSectioncontainer {
    width: 85%;
  }
}

@media only screen and (min-width: 641px) and (max-width: 800px) {
  html[lang='en'] .sustainabilityPageContent .growSectionImage picture>img,
    html[lang='en'] .sustainabilityPageContent .protectSectionImage picture>img,
    html[lang='en'] .sustainabilityPageContent .restoreSectionImage picture>img {
    margin: 0 auto !important;
  }

  html[lang='en'] .sustainabilityPageContent .protectSectionImage picture>img {
    width: 47vw !important;
  }

  html[lang='en'] .sustainabilityPageContent .restoreSectionImage picture>img {
    width: 39vw !important;
  }

  html[lang='en'] .sustainabilityPageContent .growSectionImage picture>img {
    width: 46vw !important;
    position: relative;
  }

  html[lang='en'] .fscWrapper {
    float: left;
    margin-top: -20vw;
  }

  html[lang='en'] .forestBottomImageSustain img {
    width: 100%;
  }
}

@media (max-width: 998px) and (min-width: 768px) {
  html[lang='en'] .forestBottomImageSustain {
    top: -22vw;
  }

  html[lang='en'] .sustainabilityWrapper .growSectionContent,
    .sustainabilityWrapper .restoreSectionContent {
    padding-bottom: 10vw;
  }

  html[lang='en'] .sustainabilityWrapper .protectSectionContent {
    padding-bottom: 12vw;
  }

  html[lang='en'] .sustainLastSectionWrapper .growSectionSustain .growSectionImage.growSectionImage img {
    margin: 0 50px !important;
    width: 40%;
  }

  html[lang='en'] .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage img {
    margin: 0 auto;
    width: 32vw;
  }

  html[lang='en'] .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage img {
    margin: 0 auto;
    width: 27vw;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  html[lang='en'] .sustainLastSectionWrapper .growSectionSustain {
    padding-bottom: 6vw;
  }

  html[lang='en'] .sustainLastSectionWrapper {
    margin-top: 0px !important;
  }

  html[lang='en'] .fscWrapper {
    float: left;
    margin-top: -85vw;
  }

  html[lang='en'] .forestBottomImageSustain {
    top: -1vw;
  }

  html[lang='en'] .forestBottomImageSustain img {
    top: -12vw !important;
  }
}

@media only screen and (min-width: 743px) and (max-width: 745px) {
  html[lang='en'] .sustainabilityPageContent .growSectionImage picture>img {
    left: 3vw;
  }

  html[lang='en'] .sustainLastSectionWrapper p {
    top: 3vw;
  }
}

@media screen and (max-width: 999px) {
  html[lang='en'] .sustainLastSectionWrapper .growSectionSustain {
    padding-bottom: 20vw;
  }

  html[lang='en'] .sustainLastSectionWrapper .growSectionSustain .growSectionImage.growSectionImage img {
    margin: 0px 15%;
    width: 71%;
  }

  html[lang='en'] .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage img {
    width: 71%;
    margin: 0 15%;
  }

  html[lang='en'] .sustainLastSectionWrapper .protectSectionSustain .protectSectionImage img {
    width: 85%;
    margin: 0 10%;
  }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {
  .sustainPageFadeIn.fadeInSectionDivES {
    margin-top: 2.5%;
  }
}

/*** Sustainability-EN-US Live Bug Fixes *****/

.videoContainer .thumbnailWrapper button {
  left: calc(50% - 30px) !important;
  outline: 2px solid transparent;
  outline-offset: 2px;
  position: absolute;
  top: calc(50% - 33px);
  margin-left: -12x !important;
}

/***** Algolia CSS Fixes ******/

.searchPageWrapper input {
  width: 100%;
  padding-left: 23px;
  height: 26px;
  color: #005534;
  font-family: 'Gilroy';
  font-weight: 600;
}

.searchPageWrapper input:focus-visible,
.searchPageWrapper input:focus {
  content: '';
  outline: none !important;
}

.searchPageWrapper form {
  position: relative;
}

.searchPageWrapper form button[type='submit'] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
}

.searchPageWrapper form button[type='submit'] svg {
  width: 14px;
  height: 14px;
  fill: #00B334;
}

@media screen and (max-width: 999px) {
  .videoContainer .thumbnailWrapper button {
    top: calc(50% - 20px) !important;
    left: calc(50% - 35px) !important;
  }
}

@media only screen and (min-width: 641px) and (max-width: 800px) {
  .videoContainer .thumbnailWrapper button {
    top: calc(50% + -25px) !important;
  }
}

@media (max-width: 1025px) and (min-width: 999px) {
  .videoContainer .thumbnailWrapper button {
    left: calc(50% - 50px) !important;
  }
}

.Faqtitlesubtext {
  display: flex;
  font-family: 'Gilroy-Bold';
  font-size: 1.5625rem;
  width: 100%;
  color: #00A830;
  text-align: center;
}

/* ////Brit and Co */

.bncHeader {
  max-height: 90px;
  background-color: #78c2cf;
  position: fixed;
  width: 100%;
  z-index: 1;
}

.headerImg img {
  max-width: 400px;
  margin-left: 40px;
}

picture.shopNowBg {
  position: absolute;
  right: 2vw;
  top: 24%;
}

.shopnow {
  background-color: transparent !important;
  position: absolute;
  top: 26px;
  right: 32px;
  border-color: transparent !important;
  color: #000 !important;
  font-weight: 600 !important;
}

.pageContainer {
  max-width: 1024px;
  margin: auto;
  padding-top: 140px;
}

.contentHdr,
.artistsHdr,
.bPImageSection h1,
.bPVideoSection h1 {
  font-size: 2rem;
  font-weight: bolder;
  text-align: center;
}

.bPImageSection h1,
.bPVideoSection h1 {
  color: #78c2cf;
  line-height: 50px;
  text-align: left;
  font-family: 'Poppins-Bold';
  font-size: 42px;
  float: left;
  padding-bottom: 2%;
  letter-spacing: 0.342222px;
}

.bPImageSection p,
.bPVideoSection p {
  font-family: 'Poppins-Regular';
  float: left;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.342222px;
}

.bPImageSection,
.bPVideoSection {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 24px 0;
}

.bPImageSection>div {
  max-width: 45%;
  padding: 0 40px;
}

.bPVideoDesc {
  max-width: 40%;
  padding-right: 60px;
  float: left;
  position: relative;
  top: -2vw;
  bottom: 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 281px;
}

.bPVideoSection {
  flex-direction: row;
  float: left;
  min-height: 505px;
}

.artistsContainer {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 48px;
  justify-content: space-between;
}

.artistsContainer>.leftItems,
.artistsContainer>.rightItems {
  flex: 50% 1;
  max-width: 48%;
  padding: 0 4px;
}

.simpleCard {
  position: relative;
  width: 100%;
  min-height: 569px;
}

.simpleCard.noBg {
  min-height: 569px;
}

.comboDesc {
  position: absolute;
  top: 0;
  max-width: 55%;
  padding-left: 24px;
  height: 100%;
  display: flex;
}

.comboDesc>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 24px;
  position: relative;
  top: auto;
  bottom: 2vw;
}

.noBg {
  border: 1px solid #bdbdbd;
  padding: 16px;
  border-radius: 10px;
  margin: 40px 0;
}

.artistGrid {
  display: flex;
  justify-content: center;
  min-height: 867px;
}

.footerContainer {
  margin-top: 120px;
}

.footerContainer>.contentHdr {
  margin-bottom: 0;
  padding-bottom: 0.5%;
  line-height: 38px;
  min-height: 63px;
}

.footerContainer>div {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.bnCVector {
  position: relative;
  right: -24px;
  float: right;
  top: -18px;
  max-width: 65px;
}

.footerContainer>div.shopNowBtmCont {
  max-width: 270px;
  position: relative;
  top: -10vw;
}

.shopNowBtmBg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
}

.shopNowBtnBtm {
  background-color: #eba591 !important;
  border: none !important;
  color: #000 !important;
  font-weight: bolder !important;
  line-height: 40px;
  position: absolute;
  width: 100%;
  max-width: 220px !important;
}

.contentHdr {
  color: #3f3f3f;
  font-family: Poppins-Bold;
  font-size: 48px;
  padding-bottom: 1%;
  line-height: 51px;
  letter-spacing: 0.342222px;
  text-transform: capitalize;
  min-height: 63px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .bPImageSection,
    .bPVideoSection {
    flex-direction: column;
  }
}

.footerContentWrapper .wrapper>.content:nth-child(3) {
  width: 50%;
  margin-left: 3%;
}

.footerContentWrapper .wrapper>.content:nth-child(4) {
  width: 30%;
  margin-left: 3%;
}

/***** BritandCo Mobile *******/

@media screen and (max-width: 999px) {
  .footerContainer>.contentHdr p {
    font-family: Poppins-Regular !important;
  }

  .noBg {
    margin: 40px 0;
    margin-top: -40px;
  }

  .simpleCard picture:nth-of-type(2) img {
    width: 30%;
    height: 2px;
    min-height: 2px;
  }

  .simpleCard picture:nth-of-type(3) img {
    min-height: 143px;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled>span {
    display: block;
  }

  .brit-and-co picture.shopNowBg img {
    display: none;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled small {
    display: none !important;
  }

  .brit-and-co .ps-widget[ps-sku] {
    height: 42px;
    line-height: 40px;
    overflow: hidden;
  }

  .brit-and-co .bncHeader .ps-widget[ps-sku] {
    background: #f7cb47 !important;
    position: absolute;
    top: 22.5vw;
    padding: 0px 30px;
    border-radius: 60px;
    font-size: 16px;
    min-height: 42px;
  }

  .modalDialogBg .homePageVideoWrpr .closespan {
    color: #fff;
  }

  .artistsContainer>div:nth-of-type(2),
    .artistsContainer>div:nth-of-type(6) {
    border: 1px solid #f3bcac;
  }

  .simpleCard.noBg {
    min-height: 550px;
  }

  .artistsContainer>div:nth-of-type(4),
    .artistsContainer>div:nth-of-type(8) {
    border: 1px solid #79c3cf;
  }

  .bPVideoSection .britCoSelfmadeVideo .videoContainer .thumbnailWrapper button>img {
    width: 6vw;
    margin: 3vw 7vw;
  }

  .footerContainer p {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.342222px;
    color: #3f3f3f;
    min-height: 120px;
  }

  .modalDialogBg {
    height: 100%;
  }

  .britCoSelfmadeVideo .fade-in-section.is-visible {
    animation: none;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 26vh;
    width: 100% !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
    min-height: 50px;
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -36px;
    right: -7px;
  }

  .bPVideoSection p {
    padding-bottom: 5%;
  }

  .comboDesc .para1,
    .noBg .para1 {
    font-family: 'Poppins-Bold';
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.342222px;
    color: #3f3f3f;
  }

  .simpleCard.noBg picture:nth-of-type(2)+div {
    padding-bottom: 4%;
  }

  .noBg div:nth-of-type(2) {
    padding-top: 3%;
  }

  .noBg picture:first-child>img {
    width: 75%;
    min-height: 71px;
  }

  .comboDesc .para2,
    .noBg .para2 {
    font-family: 'Poppins-Regular';
    font-size: 18px;
    line-height: 26px;
    color: #3f3f3f;
  }

  .comboDesc .para3,
    .noBg .para3 {
    font-size: 15px !important;
    line-height: 20px;
    font-family: 'Poppins-Regular';
    letter-spacing: 0.342222px;
    color: #3f3f3f;
  }

  .bPImageSection,
    .bPVideoSection {
    flex-direction: column;
    padding-top: 0;
  }

  .simpleCard.noBg picture:nth-of-type(2) {
    display: block;
    padding: 15px 0;
  }

  .simpleCard.noBg p:nth-of-type(1),
    .simpleCard.noBg p:nth-of-type(2) {
    padding-bottom: 5%;
  }

  .simpleCard.noBg div+picture+div>p {
    padding-top: 5%;
  }

  .bPImageSection>div,
    .bPVideoDesc {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 5%;
    min-width: 175px;
    min-height: 281px;
  }

  .bPImageSection h1,
    .bPVideoSection h1 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.342222px;
    min-height: 55px;
  }

  .contentHdr {
    color: #3f3f3f;
    font-size: 26px;
    line-height: 115%;
    padding: 0 20px 2%;
    text-align: left;
    font-family: 'Poppins-Bold';
    letter-spacing: 0.342222px;
    min-height: 67px;
  }

  .bPImageSection p,
    .bPVideoSection p {
    color: #3f3f3f;
    min-height: 161px;
  }

  .bPImageSection>div+picture img {
    width: 75vw;
    margin: 0 12vw;
    min-height: 196px;
  }

  .bPVideoSection .britCoSelfmadeVideo .videoContainer {
    padding: 0 0px;
  }

  .bnCVector {
    display: none;
  }

  .bPVideoSection {
    padding-top: 0;
    min-height: 600px;
  }

  .bPVideoSection .britCoSelfmadeVideo .videoContainer img {
    /* width: 50%;
         */
    height: auto;
    margin: 0 auto;
  }

  .bnCVector+div {
    padding: 0 20px;
    margin: 5% 0;
    position: relative;
    top: 0;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-size: 26px;
    line-height: normal;
    font-family: 'Poppins-Bold';
    text-align: left;
    padding: 0 20px;
    line-height: 37px;
    float: left;
    min-height: 74px;
  }

  .artistsContainer {
    padding: 24px 20px;
    min-height: 4922px;
  }

  .simpleCard {
    min-height: 450px;
  }

  .simpleCard img,
    .noBg img {
    width: 100%;
  }

  .simpleCard img {
    min-height: 450px;
  }

  .comboDesc>div {
    position: absolute;
    width: 49vw;
    top: 42vw;
    left: 4vw;
    justify-content: initial;
  }

  .comboDesc>div p,
    .noBg div>p {
    font-size: 16px;
  }

  .simpleCard:nth-of-type(7) .comboDesc>div {
    top: 30vw;
    left: 5vw;
  }

  .simpleCard:nth-of-type(3) .comboDesc>div {
    top: 40vw;
    left: 3vw;
  }

  .simpleCard:nth-of-type(5) .comboDesc>div {
    top: 36vw;
    left: 5vw;
  }

  .footerContainer>.contentHdr {
    text-align: left;
    color: #3f3f3f;
    font-size: 26px;
    line-height: 34px;
    font-family: 'Poppins-Bold';
    padding-bottom: 2%;
    min-height: 63px;
  }

  .artistsContainer+div {
    padding: 0 20px 6%;
    line-height: 30px;
    letter-spacing: 0.342222px;
    min-height: 83px;
  }

  .footerContainer {
    min-height: 591px;
  }

  .artistGrid {
    min-height: 1132px;
  }

  .footerContainer>div {
    padding: 0 20px 5%;
    text-align: left;
    width: 100%;
    font-size: 20px;
    line-height: normal;
    text-align: left;
    color: #363636;
  }

  picture.footerBg img {
    width: 100%;
    /* height: auto; */
    min-height: 370px;
  }

  .footerContainer>div.shopNowBtmCont .shopNowBtmBg img {
    width: 100%;
  }

  .footerContainer>div.shopNowBtmCont .ps-widget {
    z-index: 2;
    padding: 0px 30px;
    left: 40px;
    font-size: 16px;
    font-family: Poppins-Bold !important;
    line-height: 42px;
    max-width: 180px !important;
    min-height: 42px;
  }

  .footerContainer>div.shopNowBtmCont {
    background: transparent;
  }

  .bPVideoDesc+div>div.britCoSelfmadeVideo {
    padding: 0 21px;
  }

  .brit-and-co .shopnow {
    font-family: Poppins-Bold !important;
    right: 26px;
    top: 24.7vw;
  }

  .bncHeader {
    max-height: 170px;
    height: 200px;
  }

  picture.shopNowBg {
    top: 24vw;
  }

  .brit-and-co .pageContainer {
    padding-top: 200px;
  }

  .headerImg img {
    width: 80%;
    min-height: 104px;
  }

  .shopNowBtmCont .shopNowBtnBtm {
    line-height: 44px;
    font-family: 'core-rhino-75' !important;
    font-size: 15px;
  }

  .footerContainer>div.shopNowBtmCont {
    top: -25vw;
    text-align: center;
  }
}

/***** BritandCo Mobile *******/

/***** BritandCo Ipad *******/

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) {
  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    line-height: 30px !important;
  }

  .bPImageSection,
    .bPVideoSection {
    flex-direction: column;
  }

  .bnCVector+div>p {
    font-family: 'Poppins-Bold';
  }

  .modalDialogBg {
    height: 100%;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled>span {
    display: block;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled small {
    display: none !important;
  }

  .brit-and-co picture.shopNowBg img {
    display: none;
  }

  .brit-and-co .ps-widget[ps-sku] {
    height: 45px;
    overflow: hidden;
    line-height: 41px;
  }

  .brit-and-co .bncHeader .ps-widget[ps-sku] {
    background: #f7cb47 !important;
    padding: 0 30px 0 30px;
    border-radius: 60px;
    top: 4.5vw;
  }

  .modalDialogBg .homePageVideoWrpr .closespan {
    color: #fff;
  }

  .artistsContainer>.rightItems>div:nth-of-type(1),
    .artistsContainer>.rightItems>div:nth-of-type(3) {
    border: 1px solid #f3bcac;
  }

  .artistsContainer>.leftItems>div:nth-of-type(2),
    .artistsContainer>.leftItems>div:nth-of-type(4) {
    border: 1px solid #79c3cf;
  }

  .britCoSelfmadeVideo .fade-in-section.is-visible {
    animation: none;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 45vh;
    width: 100% !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }

  .comboDesc .para2,
    .noBg .para2 {
    font-size: 20px;
    line-height: 30px;
  }

  .comboDesc .para3,
    .noBg .para3 {
    font-size: 16px !important;
    line-height: 24px;
    font-family: 'Poppins-Regular';
  }

  .comboDesc .para1,
    .noBg .para1 {
    font-size: 20px;
    line-height: 30px;
  }

  .shopNowBtmCont .shopNowBtnBtm,
    .shopNowBtmCont .shopNowBtnBtm:hover {
    line-height: 44px;
    font-family: Poppins-Bold !important;
    font-size: 15px;
  }

  .brit-and-co .videoContainer .thumbnailWrapper button img {
    margin: 0 4vw !important;
    width: 5vw !important;
  }

  .bncHeader {
    max-height: 110px;
    height: 110px;
  }

  .footerContainer>.contentHdr,
    .footerContainer>.contentHdr+div {
    position: relative;
    top: 20px;
  }

  .artistsContainer+div {
    padding: 0 40px 6%;
  }

  .brit-and-co .shopnow {
    font-family: Poppins-Bold !important;
    right: 25px;
    top: 30%;
    font-size: 16px !important;
  }

  picture.shopNowBg {
    top: 4vw;
  }

  .shopNowBtmCont .shopNowBtnBtm {
    line-height: 44px;
    font-family: 'core-rhino-75' !important;
    font-size: 15px;
  }

  .simpleCard.noBg p:first-of-type,
    .simpleCard.noBg p:nth-of-type(2),
    .simpleCard.noBg div+picture+div>p {
    font-size: 24px;
    line-height: 34px;
  }

  .bPImageSection>div,
    .bPVideoDesc {
    max-width: 100%;
    padding: 0 40px;
    margin-bottom: 5%;
    font-size: 2rem;
  }

  .bPImageSection h1,
    .bPVideoSection h1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .contentHdr {
    text-align: left;
    padding: 0 40px;
    color: #3f3f3f;
    line-height: normal;
    padding-bottom: 5%;
    font-size: 40px;
    line-height: 50px;
  }

  .bPImageSection>div+picture img {
    width: 70vw;
    margin: 0 15vw;
  }

  .bPVideoSection .britCoSelfmadeVideo .videoContainer {
    padding: 0 40px;
  }

  .bnCVector {
    display: none;
  }

  .bPVideoSection {
    padding-top: 0;
  }

  .bPVideoSection .britCoSelfmadeVideo .videoContainer img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .bnCVector+div {
    display: flex;
    font-size: 1.5rem;
    justify-content: flex-start;
    margin: 2% 0;
    padding: 0 20px;
    position: relative;
    left: 6%;
  }

  .artistsHdr {
    font-size: 2rem;
    text-align: left;
    padding: 0 40px;
    color: #000;
    line-height: normal;
  }

  .artistsContainer {
    padding: 24px 40px;
    flex-direction: column;
  }

  span.para1 {
    font-size: 18px;
    font-family: poppins-bold;
  }

  span.para2 {
    font-size: 18px;
  }

  span.para3 {
    font-size: 15px;
  }

  .noBg {
    margin-top: 40px;
  }

  .simpleCard img,
    .noBg img {
    width: 100%;
  }

  .comboDesc>div {
    position: absolute;
    width: 42vw;
    top: 41vw;
    left: 4vw;
    justify-content: initial;
  }

  .comboDesc>div p {
    font-size: 28px;
  }

  .noBg p {
    font-size: 28px;
  }

  .artistsContainer>.rightItems>div:nth-of-type(4) .comboDesc>div {
    top: 30vw;
    left: 5vw;
  }

  .simpleCard:nth-of-type(3) .comboDesc>div {
    top: 38vw;
    left: 3vw;
  }

  .artistsContainer>.rightItems>div:nth-of-type(2) .comboDesc>div {
    top: 39vw;
    left: 3vw;
  }

  .footerContainer>.contentHdr {
    color: #3f3f3f;
    text-align: left;
    font-family: 'Poppins-Bold';
    font-size: 40px;
    padding-bottom: 2%;
    line-height: 50px;
  }

  .footerContainer>div {
    padding: 0 40px;
    text-align: left;
    color: #000;
    padding-bottom: 5%;
    font-size: 2rem;
  }

  picture.footerBg img {
    width: 100%;
  }

  .footerContainer>div.shopNowBtmCont .shopNowBtmBg img {
    width: 100%;
  }

  .footerContainer>div.shopNowBtmCont .ps-widget {
    z-index: 2;
    padding: 0 30px;
    background-color: #eba591 !important;
    font-size: 18px;
    font-weight: bold !important;
    line-height: 45px;
    max-width: 220px !important;
  }

  .footerContainer>div.shopNowBtmCont {
    background: transparent;
  }

  .artistsContainer>.leftItems,
    .artistsContainer>.rightItems {
    max-width: 100%;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-family: 'Poppins-Bold';
    line-height: normal;
    font-size: 40px;
    line-height: 50px;
  }

  .simpleCard.noBg picture:nth-of-type(2) {
    display: block;
    padding: 15px 0;
  }

  .simpleCard.noBg p:nth-of-type(1),
    .simpleCard.noBg p:nth-of-type(2) {
    padding-bottom: 5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .artistsContainer>.rightItems>div:nth-of-type(4) .comboDesc>div {
    top: 18vw !important;
    left: 2vw !important;
  }

  .brit-and-co .videoContainer .thumbnailWrapper button {
    left: calc(38% - 50px) !important;
  }

  .simpleCard:nth-of-type(3) .comboDesc>div {
    left: 2vw !important;
    top: 16vw !important;
  }

  .artistsContainer>.rightItems>div:nth-of-type(2) .comboDesc>div {
    top: 20vw !important;
    left: 2vw !important;
  }

  .comboDesc>div {
    position: absolute !important;
    width: 19vw !important;
    top: 21vw !important;
    left: 2vw !important;
    justify-content: initial !important;
  }

  .simpleCard.noBg picture:nth-of-type(2) {
    display: block;
    padding: 15px 0;
  }

  .simpleCard.noBg p:nth-of-type(1),
    .simpleCard.noBg p:nth-of-type(2) {
    padding-bottom: 5%;
  }

  .simpleCard.noBg div+picture+div>p {
    padding-top: 5%;
  }

  .brit-and-co .shopnow {
    right: 35px;
    top: 27%;
    font-family: 'core-rhino-75' !important;
  }

  .shopNowBtmCont .shopNowBtnBtm {
    line-height: 44px;
    font-family: 'core-rhino-75' !important;
    font-size: 15px;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-size: 40px;
    font-family: core-rhino-75;
    line-height: normal;
  }

  .brit-and-co .videoContainer .thumbnailWrapper button img {
    margin: 0 14vw !important;
  }

  .bnCVector+div {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 61vh !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
    color: #000;
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }
}

/***** BritandCo Ipad *******/

/***** BritandCo Ipad-Pro *******/

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
  .bPVideoDesc {
    max-width: 40%;
    padding-right: 32px;
    position: relative;
    top: -2vw;
  }

  .contentHdr {
    font-size: 40px;
    line-height: 43px;
  }

  .bPImageSection h1,
    .bPVideoSection h1 {
    font-size: 30px;
    line-height: 41px;
  }

  .bnCVector+div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled>span {
    display: block;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled>small {
    display: none !important;
  }

  .brit-and-co picture.shopNowBg img {
    display: none;
  }

  .brit-and-co .ps-widget[ps-sku] {
    height: 42px;
    line-height: 39px;
    overflow: hidden;
  }

  .brit-and-co .bncHeader .ps-widget[ps-sku] {
    background: #f7cb47 !important;
    padding: 0 30px 0 30px;
    border-radius: 60px;
  }

  .modalDialogBg {
    height: 100%;
  }

  .britCoSelfmadeVideo .fade-in-section.is-visible {
    animation: none;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 50vh !important;
    width: 100% !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }

  .modalDialogBg .homePageVideoWrpr .closespan {
    color: #fff;
  }

  .artistsContainer>.rightItems>div:nth-of-type(1),
    .artistsContainer>.rightItems>div:nth-of-type(3) {
    border: 1px solid #f3bcac;
  }

  .artistsContainer>.leftItems>div:nth-of-type(2),
    .artistsContainer>.leftItems>div:nth-of-type(4) {
    border: 1px solid #79c3cf;
  }

  .comboDesc .para1,
    .noBg .para1 {
    font-family: 'Poppins-Bold';
    font-size: 14px;
    line-height: 18px;
    color: #3f3f3f;
  }

  .noBg picture:first-child>img {
    width: 75%;
  }

  .comboDesc .para2,
    .noBg .para2 {
    font-family: 'Poppins-Regular';
    font-size: 14px;
    line-height: 18px;
    color: #3f3f3f;
  }

  .comboDesc .para3,
    .noBg .para3 {
    font-size: 12px !important;
    line-height: normal;
    font-family: 'Poppins-Regular';
    color: #3f3f3f;
  }

  .simpleCard.noBg picture:nth-of-type(2)+div {
    padding-bottom: 4%;
  }

  .noBg div:nth-of-type(2) {
    padding-top: 3%;
  }

  .artistsContainer+.contentHdr {
    padding-bottom: 4%;
  }

  .footerContainer>.contentHdr+div {
    font-family: 'Poppins-Regular';
  }

  .brit-and-co .videoContainer .thumbnailWrapper button img {
    margin: 0 11vw;
    width: 3vw !important;
  }

  .brit-and-co .videoContainer .thumbnailWrapper button {
    left: calc(33% - 50px) !important;
  }

  .artistsContainer+.contentHdr {
    float: left;
    width: 100%;
  }

  .artistsContainer+.contentHdr .artistGrid {
    float: left;
    width: 100%;
  }

  .artistsContainer+.contentHdr+.artistGrid {
    float: left;
    width: 80%;
    margin: 0 10%;
  }

  .brit-and-co .footerContainer {
    float: left;
    width: 100%;
  }

  .bPVideoDesc+div {
    max-width: 70%;
  }

  .bPVideoSection {
    margin: 0 10%;
    max-width: 80%;
  }

  .comboDesc>div {
    position: absolute;
    top: 21vw;
    left: 2vw;
    display: block;
    width: 18vw;
  }

  .artistsContainer>.rightItems>div:nth-of-type(2) .comboDesc>div {
    top: 19vw;
  }

  .comboDesc>div p,
    .noBg p {
    font-size: 14px;
  }

  .artistsContainer>.leftItems>div:nth-of-type(3) .comboDesc>div {
    top: 16vw;
  }

  .artistsContainer>.rightItems>div:nth-of-type(4) .comboDesc>div {
    top: 18vw;
  }

  .simpleCard.noBg picture:nth-of-type(2) {
    display: block;
    padding: 15px 0;
  }

  .simpleCard.noBg p:nth-of-type(1),
    .simpleCard.noBg p:nth-of-type(2) {
    padding-bottom: 5%;
  }

  .simpleCard.noBg div+picture+div>p {
    padding-top: 5%;
  }

  .brit-and-co .shopnow {
    right: 37px !important;
    top: 25% !important;
    font-family: Poppins-Bold !important;
  }

  .shopNowBtmCont .shopNowBtnBtm {
    font-family: Poppins-Bold !important;
    font-size: 16px !important;
    line-height: 43px !important;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-family: Poppins-Bold;
    line-height: normal;
    font-size: 40px;
  }

  .artistsContainer>.leftItems {
    position: relative;
    margin-top: 7%;
  }

  .artistsContainer {
    padding-top: 0;
  }

  .footerContainer>.contentHdr,
    .footerContainer>.contentHdr+div {
    position: relative;
    top: 60px;
  }

  .footerContainer>.contentHdr,
    .footerContainer>.contentHdr+div {
    position: relative;
    top: 35px;
    color: #3f3f3f;
    letter-spacing: 0.342222px;
    max-width: 700px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
  .artistsContainer>.rightItems>div:nth-of-type(2) .comboDesc>div {
    top: 20vw;
    left: 1.5vw;
  }

  .artistsContainer>.leftItems>div:nth-of-type(3) .comboDesc>div {
    top: 16vw;
    left: 1.5vw;
  }

  .artistsContainer>.rightItems>div:nth-of-type(4) .comboDesc>div {
    top: 18vw;
    left: 1.5vw;
  }

  .comboDesc>div {
    position: absolute;
    top: 21vw;
    left: 1.5vw;
    display: block;
    width: 22vw;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-size: 40px;
    font-family: 'Poppins-Bold';
    line-height: 50px;
    float: left;
    width: 100%;
  }

  .bPVideoSection {
    margin: 0 5%;
    max-width: 90%;
  }

  .bPVideoDesc {
    max-width: 40%;
    padding-right: 20px;
    top: -2vw;
  }

  .modalDialogBg {
    height: 100%;
  }

  .britCoSelfmadeVideo .fade-in-section.is-visible {
    animation: none;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 62vh !important;
    width: 100% !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }

  .brit-and-co .pageContainer {
    max-width: 1300px !important;
  }
}

/***** BritandCo Ipad-Pro *******/

@media only screen and (min-width: 1025px) {
  .brit-and-co .pageContainer {
    max-width: 1200px;
  }

  .britCoSelfmadeVideo .videoContainer .thumbnailWrapper {
    min-height: 390px;
  }

  .bncHeader picture.headerImg {
    min-height: 120px;
  }

  .simpleCard picture>img {
    min-height: 569px;
  }

  .brit-and-co .shopnow {
    position: absolute;
    left: auto;
    right: 74px;
    float: right;
    top: 35%;
    font-family: 'Poppins-Bold' !important;
  }

  .artistsContainer>.rightItems>div:nth-of-type(1),
    .artistsContainer>.rightItems>div:nth-of-type(3) {
    border: 1px solid #f3bcac;
  }

  .artistsContainer>.leftItems>div:nth-of-type(2),
    .artistsContainer>.leftItems>div:nth-of-type(4) {
    border: 1px solid #79c3cf;
  }

  .modalDialogBg .homePageVideoWrpr .closespan {
    color: #fff;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled>span {
    display: block !important;
  }

  .brit-and-co picture.shopNowBg img {
    display: none;
  }

  .brit-and-co .ps-widget[ps-sku] {
    height: 42px;
    overflow: hidden;
  }

  .brit-and-co .bncHeader .ps-widget[ps-sku] {
    background: #f7cb47 !important;
    position: absolute;
    top: 1.5vw;
    padding: 5px 30px;
    line-height: 30px !important;
    border-radius: 60px;
    font-size: 16px;
    font-family: 'Poppins-Bold' !important;
    min-height: 42px;
  }

  .brit-and-co .ps-widget[ps-sku].ps-disabled small {
    display: none !important;
  }

  .artistsContainer+.contentHdr {
    padding-bottom: 4%;
    min-height: 99px;
  }

  .artistsContainer>.leftItems div:nth-of-type(3) .comboDesc>div {
    bottom: 1.5vw;
  }

  .shopNowBtmCont .shopNowBtnBtm,
    .shopNowBtmCont .shopNowBtnBtm:hover {
    line-height: 42px !important;
    font-family: 'Poppins-Bold' !important;
    font-size: 16px !important;
    color: #3f3f3f !important;
    letter-spacing: 0.513334px;
  }

  .bPImageSection {
    padding-top: 0;
    min-height: 431px;
  }

  .comboDesc .para1,
    .noBg .para1 {
    font-family: 'Poppins-Bold';
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.342222px;
  }

  .noBg picture:first-child>img {
    width: 75%;
    min-height: 128px;
  }

  .comboDesc .para2,
    .noBg .para2 {
    font-family: 'Poppins-Regular';
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.342222px;
  }

  .comboDesc .para3,
    .noBg .para3 {
    font-size: 18px !important;
    line-height: 27px;
    font-family: 'Poppins-Regular';
    letter-spacing: 0.342222px;
  }

  .simpleCard.noBg picture:nth-of-type(2)+div {
    padding-bottom: 4%;
  }

  .noBg div:nth-of-type(2) {
    padding-top: 3%;
  }

  .artistsContainer>.rightItems div:nth-of-type(2) .comboDesc>div {
    bottom: 0.5vw;
  }

  .artistsContainer>.rightItems div:nth-of-type(4) .comboDesc>div {
    bottom: 0vw;
  }

  .britCoSelfmadeVideo iframe {
    width: 100% !important;
  }

  .brit-and-co .modalDialogBg {
    height: 100%;
  }

  .modalDialogBg .homePageVideoWrpr .closespan {
    color: #fff;
  }

  .brit-and-co .modalDialogBg iframe {
    height: 90vh;
    width: 100% !important;
    position: static;
  }

  .bnCVector+div p {
    font-family: 'Poppins-Bold';
  }

  .brit-and-co .modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }

  .brit-and-co.modalDialogBg .homePageVideoWrpr>button {
    top: -45px;
  }

  .bnCVector+div {
    display: flex;
  }

  .bnCVector+div>p {
    text-align: center;
    font-family: 'Poppins-Bold';
    float: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 2% auto;
    color: #000;
    font-size: 20px;
    line-height: 30px;
  }

  .bPVideoSection h1 {
    font-family: 'Poppins-Bold';
    font-size: 42px;
    line-height: 51px;
    width: 100%;
  }

  .artistsHdr {
    color: #3f3f3f;
    font-size: 48px;
    font-family: 'Poppins-Bold';
    line-height: 50px;
    float: left;
    width: 100%;
    min-height: 50px;
  }

  .simpleCard.noBg picture:nth-of-type(2) {
    display: block;
    padding: 15px 0;
  }

  .simpleCard.noBg p:nth-of-type(1),
    .simpleCard.noBg p:nth-of-type(2) {
    padding-bottom: 5%;
  }

  .artistsContainer>.leftItems {
    position: relative;
    margin-top: 7%;
  }

  .artistsContainer {
    padding-top: 0;
  }

  .simpleCard.noBg picture:nth-of-type(2)>img {
    min-height: 3px;
  }

  .simpleCard.noBg picture:nth-of-type(3)>img {
    min-height: auto;
  }

  picture.footerBg {
    min-height: 481px;
  }

  .footerContainer>.contentHdr+div {
    font-family: 'Poppins-Regular';
    line-height: 24px;
    letter-spacing: 0.342222px;
    font-size: 16px;
    max-width: 700px;
    min-height: 48px;
  }

  .brit-and-co .videoContainer .thumbnailWrapper button img {
    margin: 0 10vw;
    width: 2vw;
  }

  .britCoSelfmadeVideo .fade-in-section.is-visible {
    animation: none;
  }
}

@media screen and (max-width: 999px) and (orientation: landscape) {
  .brit-and-co .modalDialogBg iframe {
    height: 65vh;
  }

  .brandStoryVideoWrapper .videoContainer iframe {
    height: 93vh;
    top: -26vw;
  }

  .brandStoryVideoWrapper .homePageVideoWrpr .closespan {
    top: -259px;
  }
}

.brit-and-co .ps-widget.event_buy_now.event_buy_now_choose_product>span.ps-button-label {
  display: block !important;
}

.brit-and-co .ps-widget.event_buy_now.event_buy_now_choose_product.ps-disabled>span.ps-button-label {
  display: none !important;
}

.brit-and-co .ps-widget[ps-sku] {
  border-radius: 60px !important;
  min-height: 42px;
}

/*Image stretch bug fix*/

@media screen and (max-width: 999px) {
  .pageWrapper .bannerSecond.homePageBannerContainer .defaultWrapper .contentWrapper div:nth-of-type(2)>div>div>span>span,
    .pageWrapper .IeSpcificWrapper .homePageBannerContainer>div:nth-of-type(2)>div>div>span>span {
    padding: 0 !important;
    height: 100% !important;
    width: 100% !important;
  }

  .pageWrapper .bannerSecond.homePageBannerContainer .defaultWrapper .contentWrapper div:nth-of-type(2)>div>div>span>span+img,
    .pageWrapper .IeSpcificWrapper .homePageBannerContainer>div:nth-of-type(2)>div>div>span>span+img {
    height: auto !important;
    position: static !important;
  }
}

@media only screen and (min-width: 1025px) {
  .primaryMenuWrapper .wrapperDiv .mainMenuItem h3 {
    font-size: 16px;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    float: left;
    font-family: 'core-rhino-65';
    font-size: 2.8125rem;
    line-height: 2.5rem;
    margin-bottom: 14px;
    text-transform: none;
    width: 19vw;
    vertical-align: text-bottom;
  }

  div#homePage .slideUpAnimation1 .buyNowBtn {
    padding: 7px 60px !important;
    margin-top: 10px;
    font-weight: 500;
  }

  .homePageVideoWrapper .videoContainer button>img {
    margin-left: 0;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    color: #646464;
    font-family: 'work-sans-regular';
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 25px;
    text-transform: none;
    width: 16vw;
    float: left;
  }

  .homePageBannerContainer>.leftSection .slideUpAnimation1 {
    float: left;
  }

  #homePage div.homePageBannerWrapper {
    height: 600px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  #homePage .slick-slide img {
    background: #00A830;
    display: flex;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:nth-of-type(1) .leftSection {
    width: 30%;
    background: #00A830;
    position: relative;
    top: 0;
    height: 100%;
    padding-top: 6vw;
    padding-left: 4%;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:nth-of-type(1) #desktopRightSection {
    width: 70%;
    height: 536px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:nth-of-type(1) .leftSection .homepageTitle .gradient-liner {
    visibility: hidden;
    position: relative;
    margin-top: 150px;
  }

  .homePageBannerContainer>.leftSection>.heading {
    padding-bottom: 0;
  }

  #homePage .bannerThird p {
    color: #000;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .homePageVideoWrapper,
    .hpContentWrapper {
    background: #f8fcf6;
  }

  .textWrapper.bannerThird {
    /* box-shadow: 6px 0 16px 0 rgb(0 0 0 / 23%); */
    padding-left: 2%;
  }

  
    .bannerThirdHP .imageWrapper,
    .bannerThirdHP span,
    .bannerThirdHP img {
    height: 100% !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 65%;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 35%;
    padding-left: 1%;
  }

  html[lang='en'] #homePage .IeSpcificWrapper .everydayContent {
    width: 90%;
    padding-top: 25px;
  }

  #homePage .IeSpcificWrapper .everydayContent {
    width: 100%;
    padding-top: 16px;
    padding-left: 16px !important;
  }

  #homePage .bannerThirdOuterWrapper {
    width: 50% !important;
  }

  div#homePage .videoContainer img.thumbnailImage {
    width: 70% !important;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    font-family: 'core-rhino-65';
    text-transform: none;
    text-transform: initial;
    font-size: 18px !important;
    line-height: 115.6% !important;
    width: 21vw;
    padding-bottom: 3%;
    position: relative;
    left: 0;
    text-align: left;
    display: flex;
  }

  .rewardSection p,
    #homePage .bannerThird h3,
    .videotxtTileWrpr p {
    font-family: 'Mohr-Black' !important;
    font-size: 18px;
  }

  .homePageBannerContainer>.leftSection .slideUpAnimation1 {
    float: left;
  }

  .homePageBannerContainer>.leftSection .gradient-liner {
    margin-top: 10px;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    color: #646464;
    font-family: 'work-sans-500';
    font-size: 11px !important;
    line-height: 147.18%;
    width: 22vw;
    font-weight: 400;
    text-transform: none;
    position: relative;
    float: left;
    text-align: left;
    padding-bottom: 4%;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active {
    width: 500px !important;
  }

  #homePage .secondBanner {
    width: 33.3333%;
    padding-left: 30px;
  }

  #homePage .bannerThird h3 {
    font-size: 22px !important;
    margin-bottom: 10px;
    line-height: 28px !important;
  }

  #homePage .bannerSecond.homePageBannerContainer,
    .homePageVideoWrapper {
    min-height: auto !important;
  }

  div#homePage .homePageVideoWrapper .hpContentWrapper {
    background: none;
    height: 100%;
    padding-left: 0px;
    padding-top: 16px;
    position: absolute;
    right: 5px;
    width: 216px;
  }

  #homePage .bannerSecond .cardButton>.buttonText {
    display: block !important;
    padding: 10px 0px;
    text-align: center;
    width: 215px;
  }

  .topSection+.imageSection {
    background: #f8fcf6;
  }

  .boxShadow {
    display: none;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    background: #00A830;
    position: relative;
    top: 0;
    width: 35%;
  }

  #homePage .slick-slide img {
    background: #00A830;
    min-height: 260px !important;
    width: 600px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    width: 465px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active.slick-cloned {
    display: none;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active.slick-current {
    width: 500px !important;
  }

  #homePage div.homePageBannerWrapper {
    height: 260px;
    display: block;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slider {
    background: #f8fcf6;
  }

  .homePageBannerContainer .homepageTitle h1 {
    padding-bottom: 10px;
    text-align: left;
  }

  .homepageTitle p {
    font-size: 1rem;
    text-align: left;
    line-height: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .homePageVideoWrapper,
    .hpContentWrapper {
    background: #f8fcf6;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    float: left;
    font-family: 'core-rhino-65';
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 10px;
    text-transform: none;
    vertical-align: text-bottom;
    width: 19vw;
  }

  .rewardSection p,
    #homePage .bannerThird h3 {
    font-family: 'core-rhino-75';
    font-size: 1.2rem !important;
    line-height: 1.2rem !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection .gradient-liner {
    margin-top: 70px;
  }

  div#homePage .slideUpAnimation1 .buyNowBtn {
    padding: 7px 30px !important;
    margin-top: 10px;
  }

  .everydayContent {
    padding-top: 75px;
  }

  .everydayContent .gradient-liner {
    margin-top: 20px;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    color: #000;
    font-family: work-sans-regular;
    font-size: 1rem;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
    width: 24vw;
    float: left;
  }

  .slideUpAnimation1 {
    float: left;
  }

  #homePage div.homePageBannerWrapper {
    height: 262px !important;
  }

  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    position: relative;
    top: 0;
    height: 382px !important;
    padding-top: 6vw;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    background: #f8fcf6;
    position: relative;
    top: 0;
    height: 360px !important;
    padding-top: 6vw;
  }

  #homePage .slick-slide img {
    background: #f8fcf6;
    height: 379px !important;
  }

  .homePageBannerContainer>.leftSection>.heading {
    padding-bottom: 0;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px)
/*iPad Pro 12 Potrait Homepage */
    {
  .homePageVideoWrapper,
    .hpContentWrapper {
    background: #f8fcf6;
  }
}

/**** RITM4178984 ****/

@media only screen and (min-width: 1025px) {
  #homePage .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: -50px !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #homePage .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  #homePage .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) {
  #homePage .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 999px) {
  #homePage .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(50% + -25px) !important;
  }

  .homePageVideoWrapper .thumbnailWrapper button img {
    width: 40px !important;
  }

  .brandStoryVideoWrapper .thumbnailWrapper button img {
    width: 40px !important;
  }

  .brandStoryVideoWrapper .videoContainer .thumbnailWrapper button {
    width: 100%;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(50% + -25px) !important;
  }
}

/**** RITM4178984 ****/

/***** RITM4179025 ******/

@media only screen and (min-width: 1025px) {
  #homePage .homePageVideoWrapper .hpVideoOuterContainer {
    width: 50%;
  }

  .bannerThirdHP {
    height: 585px;
  }

  .textWrapper.bannerThird {
    /* box-shadow: 6px 0 16px 0 rgb(0 0 0 / 23%); */
    padding-top: 2vw;
  }

  
    .heroImagewrapper .imageWrapper,
    .heroImagewrapper span {
    height: 100% !important;
  }

  .heroImagewrapper img {
    height: 95% !important;
  }

  .pickupDisclaimer {
    font-weight: 300;
  }

  .homePageVideoWrapper,
    .hpContentWrapper {
    background: #f8fcf6;
  }

  .rewardSection p,
    #homePage .bannerThird h3,
    .videotxtTileWrpr p,
    .homePageBannerContainer .leftSection .homepageTitle h1 {
    font-family: 'Mohr-Black';
    font-size: 2.8125rem;
    color: #028845;
  }

  .rewardSection p {
    line-height: 46px;
    color: #00A830;
  }

  #homePage .bannerThird h3,
    .homePageBannerContainer .leftSection .homepageTitle h1,
    .videotxtTileWrpr p {
    line-height: 52px;
  }

  #homePage .bannerThird p,
    .hpContentWrapper .textContent,
    .homepageTitle p {
    font-size: 24px;
  }

  .homepageTitle p,
    .hpContentWrapper .textContent,
    #homePage .bannerThird p {
    line-height: 30px;
  }

  .hpContentWrapper .textContent {
    letter-spacing: -0.02em;
    margin-top: 30px;
  }

  .homePageBannerContainer .textContainer .homepageTitle h1 {
    color: white;
    font-size: 3.125rem !important;
    line-height: 52px !important;
  }

  .homePageBannerContainer .textContainer .homepageTitle p {
    color: white;
    float: left;
    font-family: work-sans-regular;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 26px;
    text-transform: none;
    width: 22vw;
    margin-bottom: 25px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) {
  .rewardSection p {
    width: 80% !important;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    line-height: 25px !important;
    margin-bottom: 24px !important;
  }
}

@media screen and (max-width: 999px) {
  .pickupDisclaimer {
    font-weight: 300;
  }

  .rewardSection p,
    #homePage .bannerThird h3,
    .homepageTitle h1 {
    font-family: 'Mohr-Black';
    font-size: 1.75rem !important;
  }

  .rewardSection p,
    #homePage .bannerThird h3 {
    line-height: 29px !important;
  }

  .videotxtTileWrpr p,
    .homepageTitle h1 {
    line-height: 32px !important;
  }

  .videotxtTileWrpr p {
    font-family: 'core-rhino-65';
    font-size: 1.75rem !important;
    font-weight: bold;
  }

  .everydayContent p {
    line-height: 26px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
  .rewardSection p,
    #homePage .bannerThird h3,
    .videotxtTileWrpr p {
    font-family: 'core-rhino-65';
    font-size: 1.75rem;
    line-height: 1.5rem;
  }

  .textWrapper.bannerThird {
    /* box-shadow: 6px 0 16px 0 rgb(0 0 0 / 23%); */
  }
}

/***** RITM4179025 ******/

.homePageBannerWrapper {
  background: #f8fcf6;
}

@media only screen and (max-width: 1023px) {
  html[lang='en'] .pdpPage .headerMenuWrapper .headerMenuCls.napkinsDummyBtnEN .buyNowBtn {
    background: none !important;
  }

  .pdpPage .headerMenuCls div.dummyBuyNowBtn {
    padding: 0 30px !important;
    margin: 10px 0;
    font-size: 14px !important;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    display: flex;
    font-family: 'core-rhino-65';
    font-size: 25px;
    left: 0;
    line-height: 30px;
    padding-bottom: 3%;
    position: relative;
    text-align: left;
    text-transform: none;
    width: 21vw;
  }

  html[lang='en'] .homePageBannerContainer>.leftSection>.heading+.slideUpAnimation1+.slideUpAnimation1 {
    float: left;
    position: relative;
    left: 0;
  }

  .homePageBannerContainer>.leftSection>.heading+.slideUpAnimation1+.slideUpAnimation1 {
    float: none;
    left: 0;
    margin: auto;
  }

  .homePageBannerContainer>.leftSection .gradient-liner {
    margin-top: 10px;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    color: #646464;
    float: left;
    font-family: work-sans-500;
    font-size: 10px;
    font-weight: 400;
    line-height: 147.18%;
    padding-bottom: 8%;
    position: relative;
    text-align: left;
    text-transform: none;
    width: 22vw;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active {
    width: 500px !important;
  }

  .topSection+.imageSection {
    background: #f8fcf6;
  }

  .homePageBannerContainer>.leftSection>.heading {
    padding-bottom: 0;
  }

  .boxShadow {
    display: none;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    background: #f8fcf6;
    position: relative;
    top: 0;
    padding-top: 3vw;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 65%;
  }

  #homePage .slick-slide img {
    background: #00A830;
    height: auto;
    width: 600px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    width: 465px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active.slick-cloned {
    display: none;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active.slick-current {
    width: 500px !important;
  }

  #homePage div.homePageBannerWrapper {
    height: 286px;
    display: block;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slider {
    background: #f8fcf6;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection .gradient-liner {
    margin-top: 0;
  }

  div#homePage .slideUpAnimation1 .buyNowBtn {
    margin-top: 10px;
    padding: 7px 43px !important;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
  .rewardSection p,
    #homePage .bannerThird h3,
    .videotxtTileWrpr p {
    font-family: 'core-rhino-75';
    font-size: 2.8125rem;
  }

  .rewardSection p {
    line-height: 46px;
  }

  #homePage .bannerThird h3,
    .videotxtTileWrpr p {
    line-height: 52px;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    width: 25vw;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 35%;
  }

  .buyNowBtn {
    font-size: 1.125rem;
    line-height: 21px;
    font-weight: 500;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 65%;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 19vw;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    max-width: 19vw !important;
  }

  #homePage .slick-slide img {
    height: 450px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 6vw;
    height: 450px;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    margin-bottom: 10px;
  }

  #homePage div.homePageBannerWrapper {
    height: 500px !important;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1292px) and (orientation: landscape) {
  #homePage div.wrapper.homePageBannerWrapper {
    height: 300px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 390px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 5vw !important;
    padding-left: 6.5%;
  }

  #homePage .bannerSecond+div {
    height: 565px;
  }

  #homePage .IeSpcificWrapper .everydayContent {
    padding-top: 10px;
  }

  #homePage .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    font-size: 2rem !important;
    line-height: 52px !important;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    font-size: 45px !important;
    line-height: 46px !important;
  }

  #homePage .homePageBannerContainer.bannerThird {
    align-items: flex-start;
    padding-top: 70px;
  }

  div#homePage .homePageVideoWrapper .hpContentWrapper {
    padding-left: 70px;
  }

  #homePage .homePageVideoWrapper .videotxtTileWrpr p {
    font-size: 2.8125rem;
    font-family: 'Mohr-Black' !important;
  }

  #homePage .homePageBannerWrapper .homepageTitle p {
    font-size: 24px !important;
    line-height: 28px !important;
  }
}

@media only screen and (min-device-width: 810px) and (max-device-width: 1010px) and (orientation: landscape) {
  .homePageBannerContainer>.leftSection>.heading>p,
    #homePage .bannerThird h3,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 23vw !important;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 300px !important;
  }

  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 7vw !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: 255px !important;
    padding-top: 7vw !important;
  }

  #homePage .slick-slide img {
    height: 375px !important;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    margin: 0 17% !important;
    width: 56% !important;
  }
}

@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .homePageBannerContainer>.leftSection>.heading>p,
    #homePage .bannerThird h3,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 23vw !important;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 300px !important;
  }
}

@media screen and (max-width: 999px) {
  .primaryMenuWrapper {
    background: #028845;
  }

  div#homePage .videoContainer {
    padding: 0;
    width: 100%;
  }

  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 7vw !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: 255px !important;
    padding-left: 10%;
    padding-top: 7vw !important;
  }

  #homePage .slick-slide img {
    height: 375px !important;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    margin: 0 17% !important;
    width: 56% !important;
  }

  div#homePage .slideUpAnimation1 .buyNowBtn {
    font-size: 14px;
  }
}

@media only screen and (min-device-width: 744px) and (max-device-width: 1059px) and (orientation: portrait) {
  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 25vw;
    font-size: 13px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 297px;
  }

  #homePage .homePageVideoWrapper .videoContainer .thumbnailWrapper button {
    margin: 0px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: auto;
    padding-top: 0px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: auto;
  }

  .homePageBannerContainer>.leftSection>.heading+.slideUpAnimation1+.slideUpAnimation1 {
    margin-bottom: 0px;
  }

  #homePage .slick-slide img {
    height: 296px;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    margin: 0 17%;
    width: 65%;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    padding-bottom: 7%;
  }
}

@media only screen and (min-device-width: 744px) and (max-device-width: 1059px) and (orientation: landscape) {
  .homePageBannerContainer>.leftSection>.heading>p,
    #homePage .bannerThird h3,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 25vw;
    font-size: 19px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 300px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: 380px;
    padding-top: 7vw;
  }

  #homePage .slick-slide img {
    height: 380px;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    margin: 0 17%;
    width: 56%;
  }

  .homePageBannerContainer>.leftSection>.heading>p {
    padding-bottom: 0;
  }
}

@media (resolution: 1.5dppx) {
  .homePageBannerContainer>.leftSection>.heading>p {
    width: 22vw;
  }

  .homePageVideoWrapper .videoContainer button>img {
    margin-left: 0;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-left: 50px;
  }
}

/****** RITM4111811 **********/

@media only screen and (min-width: 1025px) {
  .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0;
  }

  .adpContentWrapper div+div+div+div+div {
    margin-top: 80px;
  }

  .adpContentWrapper div+div+div+div+div+div+div+div {
    margin-top: 40px;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div {
    background: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    font-weight: 700;
    position: relative;
    width: 100%;
    left: 0;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div>a {
    color: #000;
    display: flex;
    flex-direction: column;
    float: left;
    font-size: 14px;
    margin: 0;
    position: relative;
    text-decoration: underline;
    padding-right: 11%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 135%;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    position: relative;
    background: none;
    flex-wrap: wrap;
    left: -4%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a {
    float: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-decoration: underline;
    color: #6d6d6d;
    position: relative;
    flex: 0 0 27%;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    position: relative;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(1) {
    padding-left: 0;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(3) {
    text-align: right;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:hover {
    color: #028845;
  }

  .adpContentWrapper div+div+div+div>div img {
    width: 50%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide.slick-active.slick-cloned {
    display: none;
  }

  .adpContentWrapper div+div+div+div+div {
    margin-top: 80px;
  }

  .adpContentWrapper div+div+div+div+div+div+div+div {
    margin-top: 40px;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(1) {
    padding-left: 0;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(3) {
    padding-right: 0;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 100%;
    display: block;
    font-weight: bold;
  }

  div#homePage .slideUpAnimation1 .buyNowBtn {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 7px 43px !important;
    font-weight: 500;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 100%;
    display: block;
    font-weight: bold;
    float: left;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a {
    color: #6d6d6d;
    display: block;
    float: left;
    font-size: 14px;
    line-height: 31px;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    width: 100%;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:hover {
    color: #028845;
  }

  #homePage .bannerThird h3 strong {
    font-weight: normal;
    line-height: 24px !important;
  }

  .rewardSection p {
    line-height: 46px;
    padding-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0;
  }

  .adpContentWrapper div+div+div+div+div+div+div+div {
    margin-top: 40px;
  }

  .adpContentWrapper div+div+div+div+div {
    margin-top: 80px;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div {
    background: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    font-weight: 700;
    position: relative;
    width: 100%;
    left: 0;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div>a {
    color: #6d6d6d;
    display: flex;
    flex-direction: column;
    float: left;
    font-size: 14px;
    margin: 0;
    position: relative;
    text-decoration: underline;
    padding-right: 8%;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    position: relative;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(1) {
    padding-left: 0;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(3) {
    text-align: right;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 118%;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    position: relative;
    background: none;
    flex-wrap: wrap;
    left: -11%;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 500px !important;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a {
    float: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-decoration: underline;
    color: #6d6d6d;
    position: relative;
    flex: 0 0 27%;
  }

  #homePage div.wrapper.homePageBannerWrapper,
    html[lang='en'] #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 500px !important;
  }

  html[lang='en'] #homePage div.wrapper.homePageBannerWrapper {
    height: 400px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper {
    height: 500px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    margin: auto !important;
    width: 500px !important;
  }

  html[lang='en'] #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide img {
    height: 400px !important;
    min-width: 100%;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide img {
    height: 220px !important;
    min-width: 100%;
  }

  #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 6vw !important;
    padding-left: 4.5%;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:hover {
    color: #028845;
  }

  .adpContentWrapper div+div+div+div>div img {
    width: 50%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    text-align: center;
    left: 0;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) {
  .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0;
  }

  .adpContentWrapper div+div+div+div+div+div+div+div {
    margin-top: 40px;
  }

  .adpContentWrapper div+div+div+div+div {
    margin-top: 80px;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    position: relative;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(1) {
    padding-left: 0;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(3) {
    text-align: right;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div {
    background: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    font-weight: 700;
    position: relative;
    width: 100%;
    left: 0;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div>a {
    color: #6d6d6d;
    display: flex;
    flex-direction: column;
    float: left;
    font-size: 14px;
    margin: 0;
    position: relative;
    text-decoration: underline;
    padding-right: 5%;
    left: 0;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 128%;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    position: relative;
    background: none;
    flex-wrap: wrap;
    left: -4%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a {
    float: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    text-decoration: underline;
    color: #6d6d6d;
    position: relative;
    flex: 0 0 28%;
    left: 0;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:hover {
    color: #028845;
  }

  .adpContentWrapper div+div+div+div>div img {
    width: 50%;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div>div h2+div>div>a:nth-of-type(2) {
    text-align: center;
  }
}

@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .homePageBannerContainer>.leftSection>.heading>p,
    #homePage .bannerThird h3,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 2.8125rem !important;
    line-height: 42px !important;
  }

  .adpContentWrapper div+div+div+div+div {
    margin-top: 80px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 300px !important;
  }
}

@media screen and (max-width: 999px) {
  .primaryMenuWrapper {
    background: #028845;
  }

  div#homePage .videoContainer {
    padding: 0;
    display: block;
    font-size: 14px;
    text-decoration: underline;
    color: #6d6d6d;
    line-height: 31px;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div {
    float: left;
    width: 100%;
  }

  .adpContentWrapper div+div+div+div>div h2+div>div>a:hover {
    color: #028845;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div {
    display: flex;
    flex-direction: column;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div {
    display: flex;
    flex-direction: column;
  }

  .adpContentWrapper .gradient-liner {
    height: 3px;
  }

  .adpContentWrapper div+div+div+div+div+div {
    height: auto;
  }

  .homePageBannerContainer>.leftSection>.heading>p,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 1.2rem !important;
    line-height: 20px !important;
  }

  .homepageTitle h1,
    #homePage .bannerThird h3,
    .rewardSection p,
    .videotxtTileWrpr p {
    font-size: 1.75rem !important;
    line-height: 30px !important;
  }

  .homePageBannerContainer>.leftSection>.heading>span>p {
    width: 25vw;
    font-size: 13px;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div+div {
    margin-top: 40px !important;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0 !important;
  }

  #homePage .homePageVideoWrapper .videoContainer .thumbnailWrapper button {
    margin: 0px;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: auto;
    padding-top: 0px;
    padding-left: 0;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div+div {
    margin-top: 60px !important;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0 !important;
  }

  .adpContentWrapper .articlerichtext ol>li:last-of-type {
    padding-bottom: 0;
  }
}

@media screen and (max-device-width: 428px) {
  .diy-paper-roll-craft .adpContentWrapper div+div+div+div+div {
    margin-top: 40px !important;
  }

  .diy-paper-roll-craft .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0 !important;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div+div {
    margin-top: 60px !important;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div+div+div {
    margin-top: 0 !important;
  }
}

/****** RITM4111811 **********/

img.thumbnailImage {
  width: 100% !important;
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  #homePage .slick-slider .slick-slide img {
    height: 500px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 380px;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  #homePage .slick-slider .slick-slide img {
    height: 550px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 550px;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 1500px) {
  #homePage .slick-slide img {
    height: 600px;
  }
}

#main .articleDetailContainer a {
  text-decoration: underline;
}

@media screen and (max-width: 430px) {
  #homePage .slick-slide img {
    height: auto !important;
  }

  #homePage div.homePageBannerWrapper {
    display: none;
  }

  .boxShadow {
    display: block;
    background: #fcfcf6;
  }
}

#homePage div.homePageBannerWrapper,
#homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
  height: 500px;
}

#homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
  width: 100% !important;
  margin-top: 10px !important;
}

#homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
  height: 420px;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  #homePage .slick-slider .slick-slide img {
    height: 550px;
  }

  #homePage div.homePageBannerWrapper,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 550px;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* Multicultural Page starts */

.headerSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 246, 202, var(--tw-bg-opacity));
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.headerSection.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.headerSection.list-reset {
        padding-left: 5%;
      }
    }
  }
}

.headerSection {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.rightSectionRtf>h1, .creativeVideoRtf>h1, .artistBehindHdr>h1, .printRtfCta h1, .essentials .rightSectionRtf>h1, .creativeVideoRtf>h1, .artistBehindHdr>h1, .printRtfCta h1 {
  font-family: core-rhino-75;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.rightSectionRtf>p,
.creativeVideoRtf>p,
.mainSection>div.artistBehindHdr>p,
.profileDesc>p,
.printRtfCta p {
  white-space: pre-line;
}

.rightSectionRtf>p, .creativeVideoRtf>p, .artistBehindHdr>p, .profileDesc>p, .printRtfCta p {
  font-family: Poppins-Regular;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.rightSectionRtf>p,
.creativeVideoRtf>p,
.artistBehindHdr>p,
.profileDesc>p,
.printRtfCta p {
  margin-top: 18px;
}

.multicultural-prints div.shopNowBtn {
  border-radius: 60px;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-family: Poppins-Bold !important;
  font-weight: 600 !important;
  text-align: center !important;
  background: #006366 !important;
  /* border-radius: 60px; */
  border: none !important;
}

.bountyImageText, .creativeVideo, .profileContainer, .seeAPrint {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.bountyImageText.list-reset, .breadcrumb-ul.creativeVideo.list-reset, .breadcrumb-ul.profileContainer.list-reset, .breadcrumb-ul.seeAPrint.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.bountyImageText.list-reset, .breadcrumb-ul.creativeVideo.list-reset, .breadcrumb-ul.profileContainer.list-reset, .breadcrumb-ul.seeAPrint.list-reset {
        padding-left: 5%;
      }
    }
  }
}

.creativeVideoRightSection>button, .watchVideoCTA {
  margin-top: 0px;
  border-radius: 35px;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 99, 102, var(--tw-bg-opacity));
  text-align: center;
  font-family: Poppins-Regular;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.creativeVideoLeft .event_video_play {
  display: none;
}

.mainSection img {
  margin: auto;
}

.visionPage .partnershipVideoVV .videoContainer.mainSection img.IeVideoiContainer img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .visionPage .partnershipVideoVV .videoContainer.mainSection img.IeVideoiContainer button>img {
    width: 70px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    @media (max-width: 450px) {
      .videoContainer.mainSection img.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }

      .brandStorywrapper .videoContainer.mainSection img.IeVideoiContainer {
        padding: 0px 0px;
        clear: both;
      }
    }

    .videoContainer.mainSection img.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }
  }

  @media (max-width: 998px) and (min-width: 768px) {
    .videoContainer.mainSection img.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }

    .brandStorywrapper .videoContainer.mainSection img.IeVideoiContainer {
      padding: 0px 0px;
      clear: both;
    }
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    .videoContainer.mainSection img.IeVideoiContainer {
      padding: 0px 20px;
      clear: both;
    }
  }
}

.mainSection picture.dividerLine {
  display: block;
}

.visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
  width: 30vw;
  margin: 0 5vw;
}

.visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul>img {
  width: 30vw;
}

@media only screen and (min-width: 768px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainSection picture.dividerLine {
    position: absolute;
    top: 94px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 453px;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li {
    background: #fff;
    border-bottom: 0;
    height: 59px;
    line-height: 53px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li a {
    font-family: Poppins-Bold;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(8) {
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .visionPage .jumpToArtistSection button+button+.undefined.mainSection picture.dividerLine {
    position: absolute;
    top: 15vw;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    margin-left: 32px;
    position: relative;
    text-align: center;
    width: 80%;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li {
    background: #fff;
    border-bottom: 0;
    height: 50px;
    line-height: 41px;
    position: relative;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li a {
    font-family: Poppins-Bold;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    color: #000000;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li>img {
    height: 100%;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:first-child {
    top: 0;
    position: relative;
    z-index: 9999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(2) {
    top: -4px;
    z-index: 999999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(3) {
    top: -8px;
    z-index: 99999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(4) {
    top: -12px;
    z-index: 9999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(5) {
    top: -16px;
    z-index: 999;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(6) {
    top: -20px;
    z-index: 99;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(7) {
    top: -23px;
    z-index: 9;
  }

  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul li:nth-child(8) {
    top: -27px;
  }
}

@media (min-device-width: 320px) and (max-device-width: 768px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    width: 58vw;
    margin: 0 11vw;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1700px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    margin-left: 10px;
    width: 410px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1900px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1901px) and (max-width: 2000px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    margin-left: 10px;
    width: 510px;
  }
}

@media only screen and (min-width: 2101px) and (max-width: 3100px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    width: 453px;
    margin-left: 32px;
  }
}

@media only screen and (min-width: 3101px) and (max-width: 4000px) {
  .visionPage .jumpToArtistSection .undefined.mainSection picture.dividerLine ul {
    width: 453px;
    margin-left: 32px;
  }
}

.mainSection picture.dividerLine {
  margin: 60px auto !important;
}

.seeAPrint {
  position: static;
  border-radius: 32px;
  --tw-bg-opacity: 1;
  background-color: rgba(254, 227, 213, var(--tw-bg-opacity));
  padding: 28px;
}

.mainSection>div.seeAPrint {
  margin-bottom: 60px;
}

@media (min-width: 320px) {
  .mainSection {
    margin-top: 70vw;
  }

  .mainSection>div {
    max-width: 700px;
    margin: 30px auto 0;
  }

  .bountyImageText, .creativeVideo, .profileContainer, .seeAPrint {
    flex-direction: column;
  }

  .rightSectionRtf>h1 {
    font-size: 34px;
    line-height: 39px;
    letter-spacing: 0;
  }

  .essentials .rightSectionRtf>h1, .creativeVideoRtf>h1, .artistBehindHdr>h1, .printRtfCta h1 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .rightSectionRtf>p, .creativeVideoRtf>p, .artistBehindHdr>p, .profileDesc>p, .printRtfCta p {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.34px;
  }

  .artistsProfile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      .breadcrumb-ul.artistsProfile.list-reset {
        padding-left: 5%;
      }

      @media (max-width: 1099px) and (min-width: 1024px) {
        .breadcrumb-ul.artistsProfile.list-reset {
          padding-left: 5%;
        }
      }
    }
  }

  .spHidden {
    display: none;
  }

  .dtHidden {
    display: block;
  }

  .visionPage .jumpToArtistSection .undefined.dtHidden ul {
    width: 30vw;
    margin: 0 5vw;
  }

  .visionPage .jumpToArtistSection .undefined.dtHidden ul>img {
    width: 30vw;
  }

  @media only screen and (min-width: 768px) {
    .visionPage .jumpToArtistSection button+button+.undefined.dtHidden {
      position: absolute;
      top: 94px;
      z-index: 9;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      margin-left: 32px;
      position: relative;
      text-align: center;
      width: 453px;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li {
      background: #fff;
      border-bottom: 0;
      height: 59px;
      line-height: 53px;
      position: relative;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li a {
      font-family: Poppins-Bold;
      font-size: 25px;
      font-weight: 700;
      position: absolute;
      top: 5px;
      left: 0;
      right: 0;
      color: #000000;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li>img {
      height: 100%;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:first-child {
      top: 0;
      position: relative;
      z-index: 9999999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(2) {
      top: -4px;
      z-index: 999999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(3) {
      top: -8px;
      z-index: 99999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(4) {
      top: -12px;
      z-index: 9999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(5) {
      top: -16px;
      z-index: 999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(6) {
      top: -20px;
      z-index: 99;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(7) {
      top: -23px;
      z-index: 9;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(8) {
      top: -26px;
    }
  }

  @media screen and (max-width: 767px) {
    .visionPage .jumpToArtistSection button+button+.undefined.dtHidden {
      position: absolute;
      top: 15vw;
      z-index: 9;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      margin-left: 32px;
      position: relative;
      text-align: center;
      width: 80%;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li {
      background: #fff;
      border-bottom: 0;
      height: 50px;
      line-height: 41px;
      position: relative;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li a {
      font-family: Poppins-Bold;
      font-size: 16px;
      font-weight: 700;
      position: absolute;
      top: 5px;
      left: 0;
      right: 0;
      color: #000000;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li>img {
      height: 100%;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:first-child {
      top: 0;
      position: relative;
      z-index: 9999999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(2) {
      top: -4px;
      z-index: 999999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(3) {
      top: -8px;
      z-index: 99999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(4) {
      top: -12px;
      z-index: 9999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(5) {
      top: -16px;
      z-index: 999;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(6) {
      top: -20px;
      z-index: 99;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(7) {
      top: -23px;
      z-index: 9;
    }

    .visionPage .jumpToArtistSection .undefined.dtHidden ul li:nth-child(8) {
      top: -27px;
    }
  }

  @media (min-device-width: 320px) and (max-device-width: 768px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      width: 58vw;
      margin: 0 11vw;
    }
  }

  @media only screen and (min-width: 1501px) and (max-width: 1700px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      margin-left: 10px;
      width: 410px;
    }
  }

  @media only screen and (min-width: 1701px) and (max-width: 1900px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      width: 453px;
      margin-left: 32px;
    }
  }

  @media only screen and (min-width: 1901px) and (max-width: 2000px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      margin-left: 10px;
      width: 510px;
    }
  }

  @media only screen and (min-width: 2101px) and (max-width: 3100px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      width: 453px;
      margin-left: 32px;
    }
  }

  @media only screen and (min-width: 3101px) and (max-width: 4000px) {
    .visionPage .jumpToArtistSection .undefined.dtHidden ul {
      width: 453px;
      margin-left: 32px;
    }
  }

  .headerSection {
    flex-direction: column;
    max-height: none;
    padding-bottom: 30px;
  }

  .artistHeaderLogo {
    left: 0;
  }

  .multicultural-prints div.shopNowBtn {
    width: 153px !important;
    min-width: 153px !important;
    height: 43px !important;
    min-height: 43px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0.3422223925590515px !important;
    margin-right: 0 !important;
    position: relative;
    left: 5rem;
  }

  .multicultural-prints div.shopNowBtn>.ps-button-label {
    padding-top: 10px !important;
    display: block;
  }

  .multicultural-prints div.shopNowBtn>small {
    letter-spacing: 0.3422223925590515px !important;
    line-height: 22px !important;
    font-weight: inherit !important;
  }

  .rightSectionRtf>h1 {
    text-align: center;
    margin-bottom: 0px;
  }

  picture+.rightSectionRtf.dtHidden {
    margin-bottom: 20px;
  }

  .rightSectionRtf>p, .creativeVideoRtf>h1 {
    width: 100%;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .rightSectionRtf>p video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf>h1 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.rightSectionRtf>p, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf>h1 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .rightSectionRtf>p video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf>h1 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.rightSectionRtf>p, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf>h1 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .rightSectionRtf>p video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf>h1 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.rightSectionRtf>p, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf>h1 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .rightSectionRtf>p video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf>h1 video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.rightSectionRtf>p, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf>h1 {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .rightSectionRtf>p video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf>h1 video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.rightSectionRtf>p, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf>h1 {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .creativeVideoRtf>h1 {
    padding-left: 20px;
  }

  .creativeVideoRtf>p {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .creativeVideoRightSection>button,
    .watchVideoCTA {
    width: 190px;
    height: 46px;
    font-size: 18px;
    line-height: 21px;
    margin-top: 0;
  }

  .artistBehindHdr>h1,
    .artistBehindHdr>p {
    text-align: left;
  }

  .artistBehindHdr {
    width: 90%;
    padding-left: 15px;
    margin: 50px 0;
  }

  .artistProfile {
    margin-top: -8rem;
    margin-left: 15px;
  }

  .profileDesc>p {
    margin-left: 35px;
    width: 85%;
    margin-bottom: 35px;
    min-width: 350px;
  }

  .bountyImageText {
    flex-direction: column-reverse;
  }

  .essentials .rightSectionRtf>h1,
    .essentials .rightSectionRtf>p {
    padding: 0;
    width: 100%;
    text-align: left;
  }

  .seeAPrint {
    width: 85%;
    margin: auto;
    text-align: center;
    position: relative;
    padding: 30px 0 0;
  }

  .seeAPrint h1,
    .seeAPrint p {
    padding: 0;
  }

  .creativeVideoLeft iframe {
    max-width: 90%;
    margin: auto auto 20px;
    min-height: 230px;
  }

  .printRtfCta .shopNowBtn {
    display: none !important;
  }

  .seeAPrint p {
    margin-bottom: -2rem;
  }

  .seeAPrint .shopNowBtn {
    position: absolute !important;
    bottom: -20px !important;
    left: 27% !important;
  }

  .seeAPrint picture img {
    border-radius: 33px;
  }

  .dividerLine {
    width: 90%;
  }

  .artistsProfile picture.leftSectionImg,
    .workingImg,
    .essentials .rightSectionRtf.dtHidden {
    max-width: 80%;
  }

  .essentials .rightSectionRtf.dtHidden {
    margin: auto;
  }

  .visionPage .partnershipVideoVV .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer img {
    width: 100%;
  }

  @media screen and (max-width: 767px) {
    .visionPage .partnershipVideoVV .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer button>img {
      width: 70px;
    }
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      @media (max-width: 450px) {
        .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
          padding: 0px 20px;
          clear: both;
        }

        .brandStorywrapper .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
          padding: 0px 0px;
          clear: both;
        }
      }

      .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }
    }

    @media (max-width: 998px) and (min-width: 768px) {
      .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }

      .brandStorywrapper .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
        padding: 0px 0px;
        clear: both;
      }
    }

    @media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
      .videoContainer.essentials .rightSectionRtf.dtHidden.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }
    }
  }

  .rightSectionRtf.dtHidden.descSP {
    width: 90%;
    margin: auto;
  }

  .essentials .rightSectionRtf.dtHidden.descSP {
    width: 80%;
  }

  .bountyImageText.essentials {
    margin-bottom: -40px;
  }

  .creativeVideoRtf.dtHidden, .creativeVideoLeft {
    width: 100%;
  }

  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf.dtHidden video.w-full, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoLeft video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf.dtHidden, #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoLeft {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf.dtHidden video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoLeft video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf.dtHidden, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoLeft {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf.dtHidden video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoLeft video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf.dtHidden, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoLeft {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf.dtHidden video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoLeft video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf.dtHidden, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoLeft {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  @media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoRtf.dtHidden video.w-full, .homePageBannerContainer.bannerThirdHP.wrapper .creativeVideoLeft video.w-full {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }

    .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoRtf.dtHidden, .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.creativeVideoLeft {
      height: 101%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
}

@media (min-width: 1024px) {
  .noNavFooter .container {
    max-width: 950px;
  }

  .mainSection {
    max-width: 100%;
    margin-top: 245px;
  }

  .artistsProfile picture.leftSectionImg,
    .workingImg,
    .essentials .rightSectionRtf.dtHidden {
    max-width: 100%;
  }

  .bountyImageText.essentials {
    margin-bottom: 0px;
  }

  .mainSection>div,
    .dividerLine {
    max-width: 970px;
    margin: auto;
    width: 100%;
  }

  .headerSection {
    max-height: 135px;
    flex-direction: row;
    padding-bottom: 0;
  }

  .artistHeaderLogo {
    left: 70px;
    top: 40px;
    position: relative;
    max-width: 423px;
  }

  .multicultural-prints div.shopNowBtn {
    margin-right: 85px !important;
    width: 212px !important;
    min-width: 212px !important;
    min-height: 58px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    letter-spacing: 0em !important;
    text-align: center !important;
    padding-top: 16px !important;
    border: none !important;
    position: static;
  }

  .multicultural-prints div.shopNowBtn>.ps-button-label {
    padding-top: 0px !important;
  }

  .multicultural-prints div.shopNowBtn>small {
    font-family: Poppins-Bold !important;
    font-weight: 600 !important;
    line-height: 28px !important;
  }

  .bountyImageText,
    .creativeVideo,
    .profileContainer,
    .seeAPrint {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }

  .leftSectionImg {
    min-width: 45.5%;
  }

  .rightSectionRtf,
    .creativeVideoRightSection {
    white-space: pre;
    min-width: 500px;
  }

  .rightSectionRtf>h1 {
    margin-bottom: 0;
  }

  .creativeVideoRightSection {
    min-width: auto;
    padding-bottom: 40px;
  }

  .dividerLine:last-of-type {
    display: none;
  }

  .mainSection>div.artistBehindHdr {
    max-width: 890px;
    text-align: center;
    margin: 30px auto 0;
    padding-left: 0;
  }

  .mainSection>div.artistBehindHdr>p {
    max-width: 640px;
    margin: 18px auto 0;
  }

  .artistsProfile {
    display: block;
  }

  .artistProfile {
    padding-left: 20px;
    margin-top: 0;
    min-width: 420px;
  }

  .profileAvatar>img {
    margin-left: 0px;
  }

  .rightSectionRtf>h1,
    .creativeVideoRtf>h1,
    .artistBehindHdr>h1,
    .printRtfCta h1,
    .essentials .rightSectionRtf>h1,
    .creativeVideoRtf>h1,
    .artistBehindHdr>h1,
    .printRtfCta h1 {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: -1px;
    text-align: left;
    padding-left: 0;
    width: 100%;
  }

  .rightSectionRtf>p,
    .creativeVideoRtf>p,
    .artistBehindHdr>p,
    .profileDesc>p,
    .printRtfCta p {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.3422223925590515px;
    text-align: left;
    margin-top: 18px;
    padding-left: 0;
    width: 100%;
  }

  .profileDesc>p {
    margin-left: 25px;
    margin-bottom: 0;
  }

  .artistBehindHdr>h1,
    .artistBehindHdr>p {
    text-align: center;
  }

  .starArtImg {
    margin: 60px 0;
    display: block;
  }

  .creativeVideoLeft {
    min-width: 60%;
    min-height: 310px;
  }

  .creativeVideoLeft iframe {
    min-height: 355px;
    background: #000;
    max-width: 530px;
  }

  .creativeVideoRightSection>button,
    .watchVideoCTA {
    height: 57.78px;
    width: 237px;
    border-radius: 34.5px;
    background: #006366;
    font-family: Poppins-Regular;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin-top: 0px;
  }

  .workingImg {
    margin: 30px auto;
    display: block;
  }

  .dividerLine {
    width: 100%;
  }

  .profileContainer+.bountyImageText {
    margin: 70px auto;
  }

  .seeAPrint {
    background: #fee3d5;
    border-radius: 33px;
    padding: 28px;
    position: static;
  }

  .multicultural-prints .seeAPrint>div.shopNowBtn {
    height: 0 !important;
    display: none !important;
    min-height: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    overflow: hidden;
  }

  .printRtfCta {
    max-width: 350px;
  }

  .printRtfCta .shopNowBtn {
    display: block !important;
    position: static !important;
  }

  .printRtfCta p {
    margin-bottom: 20px;
    min-width: 340px;
  }

  .spHidden {
    display: block;
  }

  .dtHidden {
    display: none;
  }

  .mainSection>div.essentials {
    margin: 50px auto;
  }

  .essentials .rightSectionRtf>h1,
    .essentials .rightSectionRtf>p {
    padding: 0;
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    min-height: 600px;
  }

  #homePage div.wrapper.homePageBannerWrapper {
    min-height: 550px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    min-height: 400px;
  }

  html[lang='en'] #homePage div.wrapper.homePageBannerWrapper {
    min-height: 280px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper {
    min-height: 490px !important;
  }
}

@media (min-width: 1280px) {
  .topBanner {
    max-width: 1300px !important;
    display: flex;
    flex-direction: row-reverse;
    align-items: start !important;
  }

  .topBanner .rightSectionRtf {
    margin-right: 30px;
    margin-top: 20px;
  }

  .noNavFooter .container {
    max-width: 1130px;
  }

  .mainSection>div,
    .dividerLine {
    max-width: 1050px;
  }

  .creativeVideoRightSection {
    min-width: 420px;
  }

  .creativeVideoLeft iframe {
    max-width: 580px;
  }

  /* Homepage update */

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    #homePage div.homePageBannerWrapper,
    #homePage .slick-slider .slick-slide img {
    min-height: 600px;
  }
}

/* For Ipad min  */

@media (min-width: 768px) and (max-width: 999px) {
  .mainSection {
    margin-top: 390px;
  }

  .artistsProfile picture.leftSectionImg,
    .workingImg,
    .essentials .rightSectionRtf.dtHidden {
    max-width: 100%;
  }

  .rightSectionRtf.dtHidden.descSP {
    width: auto !important;
  }

  .creativeVideoRtf>p,
    .mainSection>div.artistBehindHdr>p,
    .printRtfCta p,
    .profileDesc>p,
    .rightSectionRtf>p {
    white-space: normal !important;
  }

  .rightSectionRtf>p {
    max-width: 90%;
    margin: 18px auto auto;
  }

  .seeAPrint .shopNowBtn {
    left: 38% !important;
    top: auto !important;
  }

  .essentials .rightSectionRtf>h1 {
    max-width: 90%;
    margin: auto;
  }

  .creativeVideoLeft iframe {
    min-height: 355px;
    background: #000;
    max-width: 94%;
  }

  .seeAPrint .printRtfCta p {
    max-width: 80%;
    margin: 18px auto -2rem;
  }

  .artistBehindHdr {
    padding-left: 25px;
  }

  .multicultural-prints div.shopNowBtn {
    left: 6rem;
    top: -1.5rem;
  }
}

/* Multicultural Page Ends */

/* Inclusive Page */

/* Inclusive Artists */

.inclusive-artists-project .incPageContainer {
  max-width: 1050px;
  margin: auto;
  padding-top: 40px;
}

.incContentHdr>h1 {
  font-family: core-rhino-75;
  font-size: 44px;
  font-weight: 400;
  line-height: 3.125rem;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  letter-spacing: -1px;
}

.incContentHdr>p {
  font-family: Poppins-Medium;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 0.3422223925590515px;
  color: #3f3f3f;
}

.rightCard p>strong {
  font-family: Poppins-Bold;
}

.inclusive-artists-project .incBPImageSection {
  margin: auto;
  width: 100%;
  max-width: 1600px;
}

.inclusive-artists-project .incBPImageSection>picture {
  max-width: 1019px;
}

.rightCard img {
  max-width: 47px;
  margin-right: 20px;
}

.rightCard h1 {
  padding-bottom: 10px;
  font-family: Poppins-Bold;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #006366;
  letter-spacing: 0.3422223925590515px;
}

.rightCard p {
  font-family: Poppins-Medium;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 0.3422223925590515px;
  color: #3f3f3f;
}

.contentBlock h1 {
  font-family: core-rhino-75;
  font-size: 34px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1px;
  color: #000;
}

.contentBlock p {
  font-family: Poppins-Medium;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 0.3422223925590515px;
  color: #3f3f3f;
}

/* Multicultural Prints Section*/

.multiculturalPrintsDetails+.contentBottom {
  max-width: 560px;
}

.multiculturalPrintsDescription picture {
  max-width: 375px;
}

.multiculturalPrintsImage {
  max-width: 460px;
}

/* BritandCo Section*/

.britCoDescription picture {
  max-width: 190px;
}

.britCoDetailsImage,
.vVDetailsImage {
  max-width: 610px;
}

.britCoDetails+.contentBottom {
  max-width: 680px;
}

.vVDescription picture {
  max-width: 265px;
}

.vVDetails+.contentBottom {
  max-width: 630px;
}

.inclusive-artists-project .britCoBtn {
  width: auto !important;
  min-width: 187px !important;
  padding: 0 35px !important;
  height: 50px !important;
  color: #000 !important;
  border-radius: 34px;
  background-color: #fee3d5 !important;
  border: none !important;
  font-family: Poppins-SemiBold !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 23px !important;
  letter-spacing: 0em !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.inclusive-artists-project .britCoBtn:focus {
  border: 2px solid #006366 !important;
}

.inclusive-artists-project .britCoBtn span.ps-button-label {
  margin-top: 3px;
}

.inclusive-artists-project .britCoBtn.ps-enabled {
  border: 2px solid #00607a !important;
}

.contentBottom small {
  display: none !important;
}

.contentBottom>div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.contentBottom>div.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.contentBottom>div.list-reset {
        padding-left: 5%;
      }
    }
  }
}

.multiculturalPrintsDetails+.contentBottom>div {
  margin-top: -100px;
  width: 100%;
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .multiculturalPrintsDetails+.contentBottom>div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #homePage .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.multiculturalPrintsDetails+.contentBottom>div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .multiculturalPrintsDetails+.contentBottom>div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.multiculturalPrintsDetails+.contentBottom>div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .multiculturalPrintsDetails+.contentBottom>div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.multiculturalPrintsDetails+.contentBottom>div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.homePageBannerContainer.bannerThirdHP.wrapper .multiculturalPrintsDetails+.contentBottom>div video.w-full {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homePageBannerContainer.bannerThirdHP.wrapper .w-full video.multiculturalPrintsDetails+.contentBottom>div {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-device-width: 1410px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  .homePageBannerContainer.bannerThirdHP.wrapper .multiculturalPrintsDetails+.contentBottom>div video.w-full {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .homePageBannerContainer.bannerThirdHP.wrapper .w-full video.multiculturalPrintsDetails+.contentBottom>div {
    height: 101%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.multiculturalPrintsDetails+.contentBottom>div {
  justify-content: space-evenly;
  max-width: 480px;
}

.britCoDetails+.contentBottom>div {
  margin-top: -40px;
}

.vVDetails+.contentBottom>div {
  margin-top: -35px;
}

.inclusive-artists-project .headerSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 246, 202, var(--tw-bg-opacity));
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
  @media (max-width: 1200px) and (min-width: 1100px) {
    .breadcrumb-ul.inclusive-artists-project .headerSection.list-reset {
      padding-left: 5%;
    }

    @media (max-width: 1099px) and (min-width: 1024px) {
      .breadcrumb-ul.inclusive-artists-project .headerSection.list-reset {
        padding-left: 5%;
      }
    }
  }
}

.inclusive-artists-project .headerSection {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.rightCard {
  min-height: 150px;
}

@media (min-width: 320px) {
  .inclusive-artists-project .mainSection {
    margin-top: 70vw;
  }

  .inclusive-artists-project .mainSection>div {
    max-width: 700px;
    margin: 30px auto 0;
  }

  .inclusive-artists-project .artistHeaderLogo {
    left: 0;
  }

  .inclusive-artists-project .headerSection {
    flex-direction: column;
    max-height: none;
    padding-bottom: 30px;
  }

  .inclusive-artists-project div.shopNowBtn {
    width: 153px !important;
    min-width: 153px !important;
    height: 43px !important;
    min-height: 43px !important;
    font-size: 16px !important;
    font-weight: 600;
    font-family: Poppins-Bold !important;
    line-height: normal !important;
    letter-spacing: 0.3422223925590515px !important;
    margin-right: 0 !important;
    position: relative;
    left: 5rem;
  }

  .inclusive-artists-project div.shopNowBtn>.ps-button-label {
    padding-top: 8px !important;
    display: block;
  }

  .inclusive-artists-project div.shopNowBtn>small {
    letter-spacing: 0.3422223925590515px !important;
    line-height: 22px !important;
    font-weight: inherit !important;
  }
}

@media (min-width: 768px) {
  .inclusive-artists-project .artistHeaderLogo {
    left: 70px;
    top: 40px;
    position: relative;
    max-width: 423px;
  }

  .inclusive-artists-project .headerSection {
    max-height: 135px;
    flex-direction: row;
    padding-bottom: 0;
  }

  .inclusive-artists-project div.shopNowBtn {
    margin-right: 85px !important;
    width: 212px !important;
    min-width: 212px !important;
    min-height: 58px !important;
    font-size: 24px !important;
    line-height: 28px !important;
    letter-spacing: 0em !important;
    text-align: center !important;
    padding-top: 16px !important;
    border: none !important;
    position: static;
  }

  .inclusive-artists-project div.shopNowBtn>.ps-button-label {
    padding-top: 0px !important;
  }

  .inclusive-artists-project div.shopNowBtn>small {
    font-family: Poppins-Bold !important;
    font-weight: 600 !important;
    line-height: 28px !important;
  }
}

.inclusive-artists-project div.shopNowBtn {
  background-color: #006366 !important;
  color: #fff !important;
}

@media screen and (max-width: 999px) {
  .seeTheProjectsSP {
    padding-top: 260px;
  }

  .inclusive-artists-project .headerSection img {
    max-height: 170px;
  }

  .multicultural-prints .headerSection img {
    max-height: 250px;
  }

  .inclusive-artists-project .incPageContainer {
    max-width: 90%;
    padding-top: 20px;
  }

  .rightCard {
    min-height: 160px;
  }

  .mobCarousel .slick-arrow.slick-disabled {
    display: none !important;
  }

  .mobCarousel .slick-prev {
    left: -20px;
    z-index: 1;
  }

  .mobCarousel .slick-next {
    right: 0;
    z-index: 1;
  }

  .mobCarousel .slick-arrow::before {
    display: none;
  }

  .mobCarousel .slick-arrow>svg {
    fill: #bcafd6;
  }

  .mobCarousel .slick-arrow {
    top: 45%;
  }

  .vVDescription .mobCarousel .slick-arrow>svg {
    fill: #00607a;
  }

  .incContentHdr>h1 {
    padding-bottom: 10px;
    font-size: 29px;
    line-height: 33.35px;
  }

  .contentBlock .slick-list {
    width: calc(100% + 30px);
    margin-left: 0px;
    padding-left: 0px;
  }

  .mobCarouselImage {
    margin: auto;
    min-width: 146px;
    max-width: 90%;
  }

  .visionPage .partnershipVideoVV .videoContainer.mobCarouselImage.IeVideoiContainer img {
    width: 100%;
  }

  @media screen and (max-width: 767px) {
    .visionPage .partnershipVideoVV .videoContainer.mobCarouselImage.IeVideoiContainer button>img {
      width: 70px;
    }
  }

  @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
    @media (max-width: 1200px) and (min-width: 1100px) {
      @media (max-width: 450px) {
        .videoContainer.mobCarouselImage.IeVideoiContainer {
          padding: 0px 20px;
          clear: both;
        }

        .brandStorywrapper .videoContainer.mobCarouselImage.IeVideoiContainer {
          padding: 0px 0px;
          clear: both;
        }
      }

      .videoContainer.mobCarouselImage.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }
    }

    @media (max-width: 998px) and (min-width: 768px) {
      .videoContainer.mobCarouselImage.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }

      .brandStorywrapper .videoContainer.mobCarouselImage.IeVideoiContainer {
        padding: 0px 0px;
        clear: both;
      }
    }

    @media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
      .videoContainer.mobCarouselImage.IeVideoiContainer {
        padding: 0px 20px;
        clear: both;
      }
    }
  }

  .inclusive-artists-project .britCoBtn {
    font-size: 16px !important;
    line-height: normal !important;
    letter-spacing: 0.471px !important;
    min-width: 157px !important;
  }

  .seeTheProjectsSP h1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    font-weight: 500;
    color: #3f3f3f;
    line-height: normal;
    letter-spacing: 3.342px;
  }

  .inclusive-artists-project .seeProjLinks .britCoBtn {
    margin-right: 10px;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
    padding: 0 15px !important;
  }

  .rightCard h1 {
    font-size: 20px;
    line-height: normal;
  }

  .rightCard p {
    line-height: normal;
  }

  .multiculturalPrintsDescription picture {
    width: 70%;
    min-width: 225px;
  }

  .contentBlock h1 {
    font-size: 24px;
    line-height: 27.6px;
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .contentBlock p {
    font-size: 16px;
    line-height: normal;
  }

  .multiculturalPrintsDetails+.contentBottom {
    margin-top: -30px;
    margin-bottom: -60px;
  }

  .britCoDetails+.contentBottom,
    .vVDetails+.contentBottom {
    margin: 30px 0 -60px;
  }

  .vVDescription picture {
    margin-bottom: 10px;
  }

  .multiculturalPrintsDetails+.contentBottom>div {
    justify-content: space-around;
    max-width: 100%;
    margin-top: -80px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .inclusive-artists-project div.shopNowBtn {
    margin-right: 20px !important;
  }

  .inclusive-artists-project .artistHeaderLogo {
    left: 30px;
    max-width: 300px;
    top: 40px;
  }

  .inclusive-artists-project .incPageContainer {
    width: 90%;
  }

  .multiculturalPrintsDescription {
    width: 55%;
  }

  .multiculturalPrintsDetails+.contentBottom {
    margin-top: 0px;
  }

  .britCoDetailsImage,
    .vVDetailsImage {
    width: 90%;
  }

  .vVDetailsImage {
    float: right;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .inclusive-artists-project .incBPImageSection {
    margin-top: -160px;
  }

  .inclusive-artists-project .incBPImageSection>picture {
    width: 50%;
    min-width: 450px;
  }

  .inclusive-artists-project .incBPImageDesc {
    width: 40%;
    margin: 170px 0 0 !important;
    padding: 0 20px 0 0;
  }

  .tabGallery img {
    max-height: 127px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .multiculturalPrintsDetails+.contentBottom img {
    max-width: 470px;
  }

  .multiculturalPrintsDetails+.contentBottom>div {
    max-width: 90%;
    justify-content: center;
    margin-top: -100px;
  }

  .multiculturalPrintsDetails+.contentBottom>div a {
    margin-left: 20px;
  }

  .rightCard h1 {
    padding-bottom: 0;
  }

  .rightCard p {
    white-space: normal;
    white-space: initial;
  }
}

@media (min-width: 1000px) and (max-width: 1024px) {
  .inclusive-artists-project .incBPImageSection>picture {
    width: 50%;
  }

  .incBPImageDesc {
    width: 50%;
    margin-top: 90px;
    margin-left: 20px;
  }

  .tabGallery img {
    max-height: 127px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .multiculturalPrintsDetails+.contentBottom>div {
    max-width: 85%;
  }

  .rightCard {
    min-height: 120px;
  }
}

@media (min-width: 1220px) {
  .incBPImageDesc {
    margin-top: 110px;
  }

  .inclusive-artists-project .incBPImageSection {
    margin-top: -100px;
  }
}

/* Inclusive page ends */

@media screen and (max-width: 1023px) {
  #alpListID {
    margin-top: 2rem;
  }

  .articleListContainer .slick-dots li.slick-active button:before,
    .articleListContainer .slick-dots li button:before {
    color: transparent;
  }

  #homePage .slick-slide img {
    height: auto !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .slider-height {
    height: auto !important;
  }

  .slider-h50 {
    height: 50px !important;
  }

  .slider-heading {
    height: 70px !important;
  }

  .w-95p {
    width: 95% !important;
  }

  .slider-h117 {
    height: 120px !important;
  }

  .slider-position {
    position: static !important;
    padding-left: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* Homepage banner update */

.additionalBanner {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

div#homePage .additionalBanner .slideUpAnimation1 .buyNowBtn .buttonText {
  background-color: transparent;
  font-weight: 900 !important;
}

@media (max-width: 430px) {
  div#homePage .additionalBanner .wrapper .topSection .slideUpAnimation1 a {
    padding: 10px 0 !important;
    width: 200px;
    text-align: center;
    height: 44px;
  }

  div#homePage .additionalBanner .boxShadow {
    height: auto;
  }
}

@media (max-width: 1100px) {
  #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection p {
    font-size: 16px;
    line-height: 22px;
  }

  #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection .slideUpAnimation1 p {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding: 0px !important;
  }

  div#homePage .additionalBanner .slideUpAnimation1 .buyNowBtn {
    padding: 6px 0 !important;
    width: 167px;
    text-align: center;
    height: 35px;
  }

  #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 35%;
  }

  #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection p {
    white-space: pre;
  }

  #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 65%;
  }

  #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-slide img,
    #homePage .additionalBanner div.homePageBannerWrapper,
    #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    #homePage .additionalBanner div.wrapper.homePageBannerWrapper,
    #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: auto !important;
    min-height: auto !important;
    min-width: auto !important;
  }
}

@media (min-width: 1024px) {
  #homePage .additionalBanner div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection p {
    white-space: normal;
  }

  #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 30%;
    padding: 0 0 0 4.5% !important;
  }

  div#homePage .additionalBanner .slideUpAnimation1 .buyNowBtn {
    margin-bottom: 0;
  }

  #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 70%;
  }
}

@media screen and (max-device-width: 430px) {
  #homePage .slick-slide img {
    height: auto !important;
  }

  .buyNowBtn {
    padding: 10px 12px !important;
  }

  .bannerThirdOuterWrapper .textWrapper p.mobile {
    width: 83%;
  }

  .bannerThirdHP .heroImagewrapper {
    height: 376px;
  }

  
    .bannerThirdHP .imageWrapper,
    .bannerThirdHP span,
    .bannerThirdHP img {
    height: 100% !important;
  }

  #homePage .homePageVideoWrapper .bg-pdpMenu {
    padding-left: 20px;
    text-align: center;
  }

  .homepageTitle h1 {
    font-family: 'core-rhino-75';
    text-transform: none;
    text-transform: initial;
    font-size: 1.75rem;
    line-height: 32px;
    width: 100%;
    margin: auto;
    float: left;
    margin-bottom: 25px !important;
    margin-top: 25px !important;
  }

  .topSection, .homePageVideoWrapper, .hpContentWrapper {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 168, 48, var(--tw-bg-opacity));
  }

  .hpContentWrapper .textContent,
    .homepageTitle p {
    font-size: 1rem;
    font-family: 'work-sans-regular';
  }

  .homepageTitle p {
    line-height: 23px;
  }

  .hpContentWrapper .textContent {
    line-height: 23px;
  }

  .homePageVideoWrapper .closeBtn {
    z-index: 10000;
    top: -35vw;
  }

  #homePage div.homePageBannerWrapper {
    display: block !important;
  }

  .buyNowBtn {
    font-size: 1.125rem;
    line-height: 21px;
  }

  .boxShadow {
    display: block !important;
  }

  .slideUpAnimation1 {
    margin: 0;
    padding-bottom: 8px;
  }

  #homePage .slick-slide img {
    background: #f8fcf6;
    height: auto !important;
    width: 100% !important;
  }

  .wrapper .topSection>.heading p {
    color: #646464;
    font-family: 'work-sans-regular';
    line-height: 24px;
    width: 100%;
    font-weight: 400;
    text-transform: none;
  }

  .wrapper .topSection .slideUpAnimation1 a {
    float: left;
    width: 65%;
    text-align: center;
    margin-bottom: 8%;
    font-size: 18px !important;
    margin-top: 0 !important;
  }

  .boxShadow {
    height: 500px;
  }

  .homePageBannerContainer>.leftSection>.heading {
    padding-bottom: 0;
  }

  .wrapper .topSection>.heading {
    margin: 0 5%;
    width: 90%;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    width: 67% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1220px) {
  .shopNowTitle {
    word-break: break-word;
    width: 250px;
  }

  html[lang='en'] .shopNowContainer {
    position: relative;
    left: 45px;
  }

  .shopNowContainer {
    position: relative;
    left: 80px;
  }
}

@media (max-width: 1023px) {
  button.everydayButton {
    margin: 0 auto;
  }

  #homePage .leftSection .slideUpAnimation1 .buyNowBtn .buttonText {
    font-size: 16px !important;
  }
}

@media (min-width: 320px) and (max-width: 380px) {
  .ghostBtnWrapper {
    position: relative;
    bottom: 18px;
  }
}

@media (min-width: 1281px) and (max-width: 1380px) {
  html[lang='en'] .shopNowContainer {
    position: relative;
    left: 40px;
  }
}

@media (min-width: 1281px) and (max-width: 1380px) {
  .shopNowContainer {
    position: relative;
    left: 80px;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .ghostBtnWrapper {
    margin: 0 120px 0 80px;
  }
}

@media (min-width: 1024px) {
  html[lang='en'] .ghostBtnWrapper {
    margin: 0 120px;
  }

  .topBanner {
    max-width: 1300px !important;
    display: flex;
    flex-direction: row;
    align-items: center !important;
  }

  .topBanner .rightSectionRtf {
    margin-right: 30px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {

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

@media (min-width: 768px) {
  .everyday-content-margin {
    margin: auto !important;
  }

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

  .pdpPage .bannerImage img {
    max-width: inherit;
    width: 460px !important;
  }
}

#seo-h1-mRqywKRGj7Yk8lUgkY8rG h1 .text-28 {
  display: none !important;
}

#seo-h1-mRqywKRGj7Yk8lUgkY8rG .pickupDisclaimer {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .dummyBtnCont {
    margin-top: 65px;
  }

  .dummyBtniPad {
    margin-top: 40px;
  }

  html[lang='en'] .br-visibility br {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  html[lang='en'] .br-visibility {
    white-space: normal !important;
  }
}

@media (min-width: 768px) {
  html[lang='en'] .everydayContent {
    margin: auto !important;
  }

  html[lang='en'] .textWrapper.bannerThird {
    padding-top: 0 !important;
  }

  html[lang='en'] #homePage .IeSpcificWrapper .everydayContent {
    padding-top: 0 !important;
  }
}

@media (max-width: 767px) {
  html[lang='en'] .headerMenuCls.napkinsDummyBtnEN {
    margin-top: 20px !important;
  }

  .secondBanner {
    margin: 55px 0 0 !important;
  }

  #homePage .homePageVideoWrapper .bg-pdpMenu {
    justify-content: center;
  }

  #homePage .bannerThirdOuterWrapper .heroImagewrapper .imageWrapper img {
    margin-bottom: -16px !important;
  }
}

.moreArticleContainer .slick-dots {
  bottom: -8px !important;
}

.moreArticleContainer .slick-dots .slick-active {
  background-color: green;
}

.moreArticleContainer .slick-dots .slick-active button::before {
  opacity: 0;
}

.moreArticleContainer .slick-dots button::before {
  opacity: 0;
}

.moreArticleContainer .slick-dots li button:hover:before {
  opacity: 0;
}

.articleBannerCarousel .slick-dots .slick-active {
  background-color: green;
}

.articleBannerCarousel .slick-dots .slick-active button::before {
  opacity: 0;
}

.articleBannerCarousel .slick-dots button::before {
  opacity: 0;
}

.articleBannerCarousel .slick-dots li button:hover:before {
  opacity: 0;
}

/* Responsiveness CSS */

@media (min-width: 320px) and (max-width: 400px) {
  /* article banner page only */

  .shadow-alpBanner .readTitle {
    font-size: 22px !important;
    line-height: 25px;
  }

  .productListingWrapper .buyNowBtn {
    font-size: 0.7125rem !important;
  }

  .pdpPage .buyNowPopupSP,
    .productListingWrapper .buyNowPopupSP {
    top: 20%;
  }
}

@media (min-width: 400px) and (max-width: 450px) {
  .secondBanner {
    margin: 70px 0 0 !important;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {
  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: auto;
    min-height: 100%;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 220px;
    min-height: 300px;
  }
}

@media (min-width: 767px) and (max-width: 875px) {
  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 7vw !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-top: 0 !important;
  }
}

@media (min-width: 875px) and (max-width: 1023px) {
  html[lang='en'] #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    margin: none;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection .slick-track {
    margin: auto !important;
  }
}

@media (min-width: 431px) and (max-width: 767px) {
  .homePageBannerContainer>.leftSection>.heading+.slideUpAnimation1+.slideUpAnimation1 {
    float: none !important;
    margin: auto !important;
    left: 0 !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    padding-left: 0 !important;
  }

  .homePageBannerContainer:first-of-type #desktopRightSection {
    margin: auto !important;
  }

  html[lang='en'] #homePage .slick-slide img {
    height: 220px !important;
    width: 380px !important;
  }

  #homePage .slick-slide img {
    height: 230px !important;
    width: 450px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: 255px !important;
  }

  html[lang='en'] #homePage div.homePageBannerWrapper {
    height: 500px;
  }

  #homePage div.homePageBannerWrapper {
    height: 485px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  #homePage .additionalBanner .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    text-align: left;
  }

  .bannerSecond.homePageBannerContainer .secondBanner {
    padding-left: 40px;
    width: 33.33% !important;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .saveWrapper .bannerContainer {
    margin: auto;
  }
}

@media (min-width: 600px) and (max-width: 735px) {
  html[lang='en'] #homePage .homePageBannerContainer .textContainer {
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .heading.homepageTitle {
    text-align: left;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .heading .mobile .HPIPadBR {
    display: block;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .heading .mobile .HPDesktopBR {
    display: none;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 {
    margin-bottom: 0;
    justify-content: start;
    margin-left: 14px;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 .buyNowBtn {
    margin-top: 0;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .slideUpAnimation1.content {
    margin: 5px 18px 0;
  }

  html[lang='en'] #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 a.buyNowBtn:hover {
    background: #005534 !important;
  }
}

@media (min-width: 1024px) {
  .footerContentWrapper {
    padding: 0 30px;
  }

  #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 {
    width: 100%;
  }

  #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 a.buyNowBtn {
    padding: 10px 30px 30px !important;
  }

  #homePage .homePageBannerContainer .textContainer .slideUpAnimation1 a.buyNowBtn:hover {
    background: #005534 !important;
  }
}

@media (max-width: 767px) {

  #homePage .homePageBannerContainer>.leftSection .slideUpAnimation1 {
    justify-content: center;
    width: 100%;
    margin-top: -25px;
  }

  #homePage .leftSection .pickupDisclaimer {
    margin-top: 40px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .w-95p {
    width: 95% !important;
  }

  .crafts-for-kids .adpContentWrapper div+div+div+div>div h2+div>div>a {
    padding-right: 8%;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .adpBannerContainer .shadow-alpBanner .shade {
    height: 140px !important;
  }
}

@media (min-width: 700px) and (max-width: 810px) {
  #homePage .bannerThird p,
    #homePage .bannerThird .pickupDisclaimer {
    font-size: 14px !important;
    line-height: 16px !important;
  }

  #homePage .bannerThird .pickupDisclaimer {
    line-height: 14px !important;
    display: inline-block;
  }
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .box-txt-size {
    font-size: 1.2rem !important;
    line-height: 24px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    min-height: 350px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1050px) {
  html[lang='en'] #homePage div.wrapper.homePageBannerWrapper {
    min-height: 300px !important;
  }

  #homePage div.wrapper.homePageBannerWrapper {
    min-height: 347px !important;
  }

  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    min-height: 355px !important;
    height: 400px !important;
  }
}

@media (min-width: 1011px) and (max-width: 1023px) {
  #homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    height: 280px !important;
  }
}

@media only screen and (min-width: 1300px) {
  html[lang='en'] #homePage div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 570px !important;
  }
}

@media only screen and (max-width: 1023px) {
  .homePageBannerWrapper {
    /* box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2); */
    -webkit-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
    /* -moz-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2); */
    background: white;
    /* margin-top: 0; */
    z-index: 2;
  }
}

#homePage div.wrapper.homePageBannerWrapper {
  background-color: #00A830;
}

@media only screen and (min-width: 1024px) {
  .productListingWrapper .shopButtonAnchor {
    margin: 0 65px 20px auto !important;
  }
}

@media only screen and (max-width: 1023px) {
  .productListingWrapper .shopButtonAnchor {
    margin: 0 !important;
    justify-content: center !important;
    width: 100% !important;
  }
}

#homePage .slick-slide.slick-cloned {
  display: none !important;
}

/* sustainability backlog fixes 1013109*/

.sustainabilityWrapper .modalDialogBg .homePageVideoWrpr .closespan {
  color: #757575;
}

@media (min-width: 1024px) {
  .sustainabilityWrapper .modalDialogBg .homePageVideoWrpr {
    max-width: none;
    width: 80%;
  }
}

/* Home video banner */

.video-section {
  /* use clip-path of  polygon(0% 49%, 25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 51%); incase sharp edge required */
  clip-path: path("M1419.36 233.67L787.32 -577.481C769.438 -600.002 745.943 -611.157 722.501 -611C699.374 -610.843 676.352 -599.688 658.731 -577.481L26.6404 233.67C-8.86322 278.448 -8.86322 321.604 26.6404 366.382L658.731 1177.48C676.299 1199.69 699.374 1210.84 722.501 1211.05C745.943 1211.16 769.438 1200.05 787.32 1177.48L1419.41 366.382C1454.91 321.604 1454.91 278.448 1419.41 233.67H1419.36Z");
  height: 600px;
  max-width: 1000px;
}

html[lang='en'] .additionalBanner .wrapper .heading p {
  font-weight: 600;
}

html[lang='en'] .homePageBannerContainer>.leftSection .slideUpAnimation1 {
  margin-top: -85px;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .video-section {
    height: 247px;
    max-width: 400px;
    clip-path: path("M482.861 100.9L268.422 -174.943C262.354 -182.601 254.383 -186.395 246.43 -186.341C238.583 -186.288 230.772 -182.494 224.794 -174.943L10.337 100.9C-1.7087 116.127 -1.7087 130.803 10.337 146.03L224.794 421.855C230.754 429.407 238.583 433.2 246.43 433.272C254.383 433.307 262.354 429.531 268.422 421.855L482.878 146.03C494.924 130.803 494.924 116.127 482.878 100.9H482.861Z")
  }

  .video-section video {
    height: 247px;
  }

  html[lang=en] .additionalBanner .wrapper .topSection {
    margin-top: 20px;
    margin-bottom: -40px;
  }

  html[lang=en] .additionalBanner .wrapper .topSection .slideUpAnimation1 a {
    position: relative;
    top: -85px;
  }
}

@media only screen and (min-width: 768px) {
  .video-section video {
    height: 600px;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    height: 600px !important;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 35%
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 65% !important;
  }

  html[lang=en] .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    white-space: nowrap;
    font-size: 1.3rem !important;
  }

  html[lang=en] .homePageBannerContainer>.leftSection>.heading+.slideUpAnimation1+.slideUpAnimation1 {
    top: -100px;
  }

  html[lang=en] .additionalBanner .wrapper .pickupDisclaimer {
    text-align: left;
  }
}

/* iPad rendering Mobile for video section */

@media only screen and (min-width: 768px) and (max-width: 999px) {
  .video-section {
    margin-top: -160px;
    height: 440px !important;
  }

  .video-section video {
    -o-object-fit: contain;
       object-fit: contain;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection,
    html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection,
    html[lang=en] #homePage div.wrapper.homePageBannerWrapper {
    height: auto !important;
  }

  html[lang=en] #homePage .additionalBanner .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    line-height: 30px !important;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    margin-top: 30px;
    margin-bottom: -25px;
    padding-left: 20px !important;
  }
}

@media only screen and (min-width: 1024px) {
  html[lang=en] #homePage .additionalBanner .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    font-size: 2.3rem !important;
    line-height: 52px !important;
  }
}

/* ipad mini landscape */

@media only screen and (min-width: 1000px) and (max-width: 1180px) {
  .video-section {
    height: 480px;
    margin-top: -120px;
  }

  .video-section video {
    -o-object-fit: contain;
       object-fit: contain;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection,
    html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection,
    html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection,
    html[lang=en] #homePage div.wrapper.homePageBannerWrapper {
    height: auto !important;
  }

  html[lang=en] #homePage .additionalBanner .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    line-height: 45px !important;
  }
}

@media only screen and (min-width: 1440px) {
  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
    width: 30% !important;
  }

  html[lang=en] #homePage .additionalBanner div.wrapper.homePageBannerWrapper .homePageBannerContainer:first-of-type #desktopRightSection {
    width: 70% !important;
  }

  html[lang=en] #homePage .additionalBanner .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
    font-size: 2.8125rem !important;
  }

  .video-section {
    max-width: 1024px;
  }
}

/* Product gallery */

.pdpPage .bannerImage .gallerywrap img {
  max-width: 100%;
  width: auto !important;
  height: auto;
}

.gallerywrap .prodGalary button>img {
  max-width: 100% !important;
  max-height: 55px !important;
}

img.carouselList.active-img {
  border: 2px solid #029A4F;
}

.slider-count {
  font-family: 'work-sans-700';
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.45;
  text-align: center;
  color: #028845;
}

@media (min-width: 767px) and (max-width: 1024px) {
  .sustainabilityMainWrapperEN .richtextFadeInSection {
    margin-bottom: 0 !important;
  }

  .richtextFadeInSection {
    margin-bottom: 120px;
  }

  .richtextFadeInSectionES {
    margin-bottom: 25px;
  }

  .sustainLastSectionWrapper .growSectionSustain {
    padding-bottom: 5vw;
    float: left;
    width: 100%;
  }

  /* .sustainabilityMainWrapperEN .growSectionSustain {
        width: 0 !important;
    } */
}

@media (min-width: 1023px) and (max-width: 1025px) {
  .protectSectionSustain {
    width: 100%;
  }

  .sustainabilityPageContent div:first-of-type {
    margin-top: 20px;
  }

  .brandStoryContainer .brandStoryText {
    position: absolute;
    right: 57px !important;
    top: 332px !important;
    width: 42% !important;
  }

  .growTitle {
    padding-bottom: 6% !important;
  }
}

@media (min-width: 819px) and (max-width: 999px) {
  html[lang='en'] .sustainLastSectionWrapper .growSectionSustain .growSectionImage.growSectionImage img {
    width: 71% !important;
  }

  /* .sustainLastSectionWrapper p {

    } */
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sustainabilityMainWrapperES .richtextFadeInSectionES {
    margin-bottom: 0px !important;
  }
}

@media (min-width: 360px) and (max-width:667px) {
  .sustainLastSectionWrapper .restoreSectionSustain .restoreSectionImage img {
    margin: 0 15%;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  html[lang='en'] .growSectionSustain .growSectionImage.growSectionImage img {
    margin: 0;
    left: 12vw;
  }
}

/* homepage re-design */

@media (min-width: 1024px) {

  .brandStoryContainer .imageSection {
    width: 80%;
    position: relative;
  }

  .brandStoryContainer .imageSection img {
    height: 790px;
  }

  .brandStoryContainer .brandStoryText {
    position: absolute;
    right: 150px;
    top: 332px;
    width: 33%;
  }

  .slideUpAnimation1.content {
    position: relative;
    top: 80px;
  }
}

.buyNowBtn,
.saveButton,
.pdpPage .CalloutHeaderWrapper div.ps-widget,
.writeReviewButton {
  background: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%) !important;
  color: #000;
  font-weight: 700;
  text-transform: none;
  border-color: none !important;
  border: none !important;
}

.buyNowBtn:hover,
.saveButton:hover,
.pdpPage .CalloutHeaderWrapper div.ps-widget:hover,
.writeReviewButton:hover {
  background: #00A830 !important;
  color: #fff !important;
}

@media (max-width:767px) {
  #homePage .homePageBannerWrapper .homepageTitle p {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .saveWrapper .imageContainer {
    flex-direction: column-reverse !important;
  }

  .mainNav {
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
  }

  .searchResultsContainer .descriptionContainer .buttons .buyNowBtn,
    .searchResultsContainer .descriptionContainer .buttons .learnMoreBtnWrapper {
    width: 48%;
  }
}

.border-linkGradientGreen {
  -o-border-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
     border-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%);
  border-image-slice: 1;
}

.articleListWrapper .articleList .seeMoreBtnWrap button {
  background-image: linear-gradient(91.47deg, #17EE00 1.25%, #69FF00 34.99%, #C3FF02 69.43%) !important;
}

#homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3,
#homePage .homePageVideoWrapper .videotxtTileWrpr h3,
.BrandStoryWrapper .pageContentWrapper .articlerichtext h2,
#homePage .rewardSection p,
.pdpPage .slider-count {
  font-family: 'Mohr-Black';
}

#homePage .wrapper.homePageBannerWrapper .homePageBannerContainer .leftSection .homepageTitle h1 {
  font-family: 'Mohr-Black';
}

#homePage .HPbannertwoSTxt,
.homePageBannerContainer .textContainer .homepageTitle p,
.homePageBannerContainer .leftSection .homepageTitle p,
.homePageBannerContainer>.leftSection .slideUpAnimation1,
#homePage .bannerThird p,
#homePage .homePageVideoWrapper .textContent p,
#homePage .pickupDisclaimer,
.BrandStoryWrapper .pageContentWrapper .articlerichtext p,
.pdpPage .buyNowBtn,
.pdpPage #menu-second .pageContentDescription>div>p,
.pdpPage .bv_main_container .bv_button_buttonMinimalist,
.searchPageWrapper .searchResultsContainer .descriptionContainer p {
  font-family: 'Gilroy';
}

.pdpPage .buyNowBtn {
  border: none !important;
  padding: 5px 0 !important;
}

#homePage .homePageBannerWrapper .homepageTitle p,
.faqPanelDetail .articlerichtext p,
.productDetailWrapper .pageContentDescription>div>p {
  font-family: 'Gilroy-Medium' !important;
}

.primaryMenuWrapper .wrapperDiv .mainMenuItem h3 {
  font-family: 'Gilroy-Semibold';
}

.primaryMenuWrapper .wrapperDiv .mainMenuItem h3.titleSection {
  font-family: 'Gilroy-Bold';
}

.searchInput {
  border-radius: 20px;
  padding: 5px 35px 5px 12px;
  font-family: 'Gilroy';
  font-weight: 300;
  color: #000;
}

.search-bar {
  width: 100%;
}

#homePage .homePageVideoWrapper .textContent p {
  color: #fff;
  letter-spacing: normal;
}

#homePage .HPbannertwoSTxt {
  font-size: 24px;
  color: #000;
}

.articleListWrapper .tabMenuWrapper {
  border-bottom-width: 2px;
  border-color: #69FF00;
}

.articleListWrapper .sortSelectDiv {
  border: 2px solid #000;
}

#homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
  color: #00A830;
  line-height: 52px !important;
  margin-bottom: 10px !important;
}

#mobile-nav .wrapperMobile .menuLinkButton:hover {
  font-weight: 900;
  color: #00A830;
}

#mobile-nav .wrapperMobile .menuLinkButton,
#mobile-nav .wrapperMobile .menu-accordion,
#mobile-nav .wrapperMobile .navbarAccordionClosed {
  border-bottom: 2px solid #69FF00;
}

.mobileMenuWrapper .expanded1 .menuButton .titleSection {
  padding: 5px 0 0 25px;
}

.navHeader {
  background-image: linear-gradient(270deg, #17EE00, #69FF00 12.04%, #C3FF02);
  border-radius: 4px;
}

.HPFirstTxtAlign {
  display: flex;
}

.HPSecondTxtAlign {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.HPFirstBannerImgLine {
  height: 25px;
  margin-top: -8px;
  z-index: -1;
}

input[type="search"].searchInput::-webkit-search-cancel-button {
  display: none;
}

.navbarAccordionOpen {
  border: 2px solid #69FF00;
}

.FaqGrdLiner {
  background-image: linear-gradient(90deg, #17EE00 .03%, #69FF00 47.25%, #C3FF02);
}

.pdpPage .activeTxtLine {
  border-bottom-width: 4px;
  -o-border-image: linear-gradient(91.47deg, #17ee00 1.25%, #69ff00 34.99%, #c3ff02 69.43%);
     border-image: linear-gradient(91.47deg, #17ee00 1.25%, #69ff00 34.99%, #c3ff02 69.43%);
  border-image-slice: 1;
}

.pdpPage .slider-count {
  color: #005534;
}

.pdpPage #menu-second .pageContentDescription>div>p {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.navbarAccordionOpen .menuButton .titleSection {
  color: #000 !important;
}

.BrandStoryWrapper .pageContentWrapper .articlerichtext p,
.brandStorywrapper .heroBannerText p,
#homePage .bannerThird p {
  color: #000;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #homePage .homePageBannerWrapper .homepageTitle p {
    font-size: 23px !important;
    line-height: 26px !important;
  }

  .textContainer .homepageTitle .content {
    margin-left: 0 !important;
  }

  .textContainer {
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
  }

  #homePage .textContainer .slideUpAnimation1 {
    justify-content: start;
    padding: 0 10px;
  }

  .slideUpAnimation1.content {
    position: relative;
    top: -24px;
    margin: 30px 0;
  }

  #homePage .videoContainer .thumbnailWrapper button {
    margin: 0 !important;
    width: 60% !important;
  }

  #homePage .bannerThird .everydayContent {
    padding-left: 0 !important;
  }
}

#homePage .ipadBrVisible {
  display: none;
}

@media (min-width: 800px) and (max-width: 950px) {
  #homePage .videoContainer .thumbnailWrapper button {
    left: 0 !important;
    width: 85%;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    line-height: 50px !important;
  }

  .brSPVisible {
    display: block;
  }
}

.timeline-navigation>div:first-child,
.timeline-navigation>div:nth-child(n+2) {
  border-right: 3px solid #69FF00;
}

.timeline-navigation>div:nth-child(n+3) {
  border-right: 3px solid transparent;
  -o-border-image: linear-gradient(to bottom, #17ee00, #FFEB00);
     border-image: linear-gradient(to bottom, #17ee00, #FFEB00);
  border-image-slice: 1;
}

.timeline-navigation>div:nth-child(n+4) {
  border-right: 3px solid transparent;
  -o-border-image: linear-gradient(to bottom, #FFEB00, #FF8D2D);
     border-image: linear-gradient(to bottom, #FFEB00, #FF8D2D);
  border-image-slice: 1;
}

.timeline-navigation>div:last-child {
  border-right: 3px solid transparent;
  -o-border-image: linear-gradient(to bottom, #FF8D2D, #FF8D2D);
     border-image: linear-gradient(to bottom, #FF8D2D, #FF8D2D);
  border-image-slice: 1;
}

.HPFirstBannerImgLine {
  height: 25px !important;
  margin-top: -8px;
  z-index: -1 !important;
}

.hpBannerOneVideo {
  padding: 0;
}

#homePage .bannerThird p {
  font-weight: 500;
}

#homePage .homePageBannerWrapper {
  margin-top: 0 !important;
}

#homePage .homePageVideoWrapper,
#homePage .homePageVideoWrapper .hpContentWrapper,
#homePage div.homePageBannerWrapper .homePageBannerContainer:first-of-type .leftSection {
  background: #00A830;
}

#homePage .videotxtTileWrpr p {
  color: #fff;
  font-family: 'MohrBold' !important;
  font-weight: 900;
}

.hpVideoWrapperTitle {
  font-family: 'MohrBold';
  font-weight: 900;
}

.sustainabilityWrapper .videoPageWrapper {
  display: block;
}


.ReviewGuidelinesWrapper .articlerichtext ul li,
.articleListWrapper .alpTitle>p {
  color: #000 !important;
  font-family: 'Gilroy' !important;
  font-weight: 500 !important;
}

.articleListWrapper .alpTitle>p {
  font-style: normal;
  color: #fff !important;
}

#alpListID .articleListWrapper .sortContainer .text,
#alpListID .articleListWrapper .sortContainer .dropdownOption .sortALP p {
  font-family: 'Gilroy' !important;
}

.brandStoryImprtxt {
  color: #000 !important;
  font-family: 'Gilroy-Medium' !important;
}

.articleListWrapper #articleBannerCarousel .carouselCards .textWrapper .readTitle p {
  font-family: 'Gilroy-Bold' !important;
}

.sustainPageFadeIn1 .mainTextContainer .forestsSection2 {
  color: #006838;
  font-family: 'Poppins-Regular' !important;
  font-weight: 600;
}

.articleListWrapper .activeinMobile .menuButton .titleSection:hover {
  font-weight: 900 !important;
}

.mobileMenuWrapper .expanded1 .menuButton .titleSection:hover {
  color: #005534 !important;
  padding: 0 0 0 25px;
}

.forestsSection2 .forestsSection2ES {
  font-family: 'Poppins-SemiBold';
}

#homePage .homePageVideoWrapper .videotxtTileWrpr p {
  font-family: 'Mohr-Black' !important;
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1200px) {
  .HPFirstBannerImgLine {
    height: 14px !important;
    margin-top: -5px;
  }
}

.Faqwrapper .expanded.animateMenu {
  height: auto !important;
}

@media only screen and (min-width: 1650px) {
  .homePageBannerContainer .textContainer .homepageTitle h1 {
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .primaryMenuWrapper .wrapperDiv .mainMenuItem h2.menuItemText {
    font-size: 24px;
  }

  #homePage .homePageBannerWrapper .homepageTitle p {
    font-size: 30px !important;
    line-height: 42px !important;
  }

  .shopButton {
    text-transform: none;
  }

  .Faqwrapper .faqAccor .faqPanelDetail .articlerichtext p {
    font-size: 20px;
  }

  .HPFirstBannerImgLine {
    height: 40px !important;
    margin-top: -5px !important;
  }

  .rewardSection p {
    width: 100%;
  }

  #homePage .HPbannertwoSTxt {
    font-size: 30px;
  }

  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    font-size: 45px !important;
    line-height: 50px !important;
  }

  #homePage .bannerThird p {
    font-size: 26px !important;
    line-height: 30px !important;
  }

  #homePage .homePageVideoWrapper .textContent p {
    font-size: 30px;
    line-height: 36px;
  }

  #menu-second .pageContentDescription>div>p {
    font-size: 20px;
    line-height: 24px;
  }
}

.HPIPadBR {
  display: none;
}

.HPDesktopBR {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #homePage .homePageBannerContainer.bannerThirdHP .bannerThird h3 {
    line-height: 35px !important;
  }

  .HPIPadBR {
    display: block;
  }

  .HPDesktopBR {
    display: none;
  }

  .homepageTitle {
    width: 100%;
  }

  .homepageTitle h1 {
    font-size: 32px !important;
    line-height: 36px !important;
  }

  #homePage .textContainer .slideUpAnimation1 {
    padding: 0;
  }
}

@media only screen and (min-device-width: 740px) and (max-device-width: 750px) {
  html[lang=en] #homePage .textContainer {
    top: 10%;
    left: 2%;
  }

  html[lang=en] #homePage .textContainer .homepageTitle {
    text-align: left;
    width: 45%;
    margin: 0 20px;
  }

  html[lang=en] #homePage .textContainer .homepageTitle .HPDesktopBR {
    display: none;
  }

  html[lang=en] #homePage .slideUpAnimation1 {
    justify-content: start;
    margin-left: 20px;
    margin-bottom: 15px;
  }

  html[lang=en] #homePage .slideUpAnimation1.content {
    margin-top: 0;
  }

  html[lang=en] #homePage div.homePageBannerWrapper {
    height: auto !important;
  }

  html[lang=en] #homePage .homePageVideoWrapper .hpContentWrapper .fade-in-section.is-visible,
    html[lang=en] #homePage .videotxtTileWrpr {
    text-align: center;
  }

  html[lang=en] #homePage .secondBanner .goToBtn .buttonText {
    margin-left: 0;
  }
}

.mainMenuItem2 {
  background-image: linear-gradient(270deg, #17EE00 0%, #69FF00 12.04%, #C3FF02 100%);
}

.primaryMenuWrapper .wrapperDiv .mainMenuItem ul.menuUl li a h3 {
  color: #005534;
}

.primaryMenuWrapper .wrapperDiv .mainMenuItem ul.menuUl li a:hover h3 {
  color: #00A830;
}

.primaryMenuWrapper .wrapperDiv .slotsWrap-4.mainMenuItem2 .menuButton h3 {
  color: #000;
}

.primaryMenuWrapper .wrapperDiv .slotsWrap-4.mainMenuItem2 .menuButton h3:hover {
  color: #005534;
}

.pdpPage .removeTop {
  top: 165px;
}

.adpContentWrapper ol li {
  font-family: 'Gilroy';
  color: #000;
}

.productListingWrapper .productNameText {
  min-height: 65px;
}

.ALPContent .carouselCards .slick-next:before {
  display: none;
}

.ALPLeftArrow .prevArrow,
.ALPRightArrow .nextArrow {
  opacity: 1;
}

.ALPLeftArrow .prevArrowHover,
.ALPRightArrow .nextArrowHover {
  opacity: 0;
}

.ALPLeftArrow:hover .prevArrow,
.ALPRightArrow:hover .nextArrow {
  opacity: 0;
}

.ALPLeftArrow:hover .prevArrowHover,
.ALPRightArrow:hover .nextArrowHover {
  opacity: 1;
}

#articleBannerCarousel .slick-prev::before {
  display: none;
}

.pdpPage .headerMenuCls .buyNowBtn {
  padding: 0 !important;
}

.pdpPage .headerMenuCls div.ps-widget {
  font-size: 12px !important;
}

html[lang='en'] .productListingWrapper .shopButtonAnchor {
  margin: 0 50px 20px;
}

html[lang='en'] .productListingWrapper .shopButton {
  padding: 3px 50px;
}

html[lang='en'] .pdpPage .headerMenuCls ul.list li .buyNowBtn .ps-widget small,
html[lang='en'] .pdpPage .CalloutHeaderWrapper div.ps-widget small,
html[lang='en'] .pdpPage .headerMenuCls .ps-widget[ps-sku].ps-disabled > small {
  color: #000 !important;
  font-family: 'Gilroy-Bold' !important;
}

html[lang='en'] .pdpPage .headerMenuCls ul.list li .buyNowBtn .ps-widget small:hover,
html[lang='en'] .pdpPage .CalloutHeaderWrapper div.ps-widget small:hover,
html[lang=en] .pdpPage .headerMenuCls ul.list li .buyNowBtn .ps-widget[ps-sku]:hover small,
html[lang=en] .pdpPage .CalloutHeaderWrapper div.ps-widget:hover small,
html[lang=en] .pdpPage .headerMenuCls div.ps-widget:hover small {
  color: #fff !important;
}

html[lang='en'] .pdpPage .CalloutHeaderWrapper div.ps-widget small {
  font-family: 'Gilroy' !important;
  padding-top: 3px;
}

@media (min-width: 401px) and (max-width: 450px) {
  .pdpPage .buyNowPopupSP,
    .productListingWrapper .buyNowPopupSP {
    top: 35%;
  }
}

@media only screen and (max-device-width: 1023px) {
  .shopButtonAnchor,
    .shopButton {
    margin: 0;
    justify-content: center;
    width: 100%;
  }
}

.headerMenuCls .ps-widget[ps-sku] {
  color: #000 !important;
  background: linear-gradient(91.47deg, #17ee00 1.25%, #69ff00 34.99%, #c3ff02 69.43%) !important;
  border: none !important;
}

.pdpPage .headerMenuCls div.ps-widget {
  border: none !important;
}

.headerMenuCls .ps-widget[ps-sku]:hover {
  background: #00a830 !important;
  color: #fff !important;
}

.productListingWrapper .buyNowButton div.ps-widget {
  padding-top: 2px !important;
}

@media screen and (max-width: 767px) {
  html[lang='en'] .productListingWrapper .buyNowButton div.ps-widget {
    padding: 0 20px !important;
  }

  .productListingWrapper .productNameText {
    min-height: 35px;
  }
}

.pdpPage .pdp-smart-cart-container {
  margin-top: 20px;
}

.pdpPage .smart-cart-pdp .smarlink-button, .pdpPage .CalloutHeaderWrapper .smarlink-button, .productListingWrapper .buyNowButton .smarlink-button {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pdpPage .CalloutHeaderWrapper .smarlink-button button {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  line-height: 0 !important ;
}

.removeTop .smarlink-button {
  padding-top: 10px !important;
  padding: 0 !important;
}

.click2CartButtonAnchor {
  margin-top: 6px auto !important;
}

.click2cartButton {
  float: left;
  display: block;
  padding: 0 30px;
  background: rgb(24, 182, 53) !important;
  color: #fff;
  font-weight: 700;
  border-color: none !important;
  min-width: 0;
  font-family: 'Gilroy';
  font-weight: 700;
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  border-radius: 4px !important;
  margin-top: 0 !important;
}

.removeTop .pdp-header-smart-cart .smarlink-button  {
  margin-top: 10px !important;
}

@media screen and (max-width:450px) {
  .CalloutHeaderWrapper .smart-cart-pdp {
    width: auto !important;
  }

  .removeTop .smarlink-button {
    padding-top: 10px !important;
    padding: 0 !important;
    padding-top: 10px !important;
  }

  .productListingWrapper .click2cartButton {
    padding: 2px 62px !important;
  }

  .smarlink-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .smarlink-button button {
    vertical-align: middle;
    border: none;
    max-width: 220px !important;
    min-height: 44px;
    width: 100%;
    min-width: 170px !important;
  }

  .sc-btn-retailer-wrapper {
    margin-top: 285px !important;
  }

  .smart-cart-pdp div:nth-of-type(2)  {
    padding: 0 !important;
  }

  html[lang='en'] .productListingWrapper .shopButton {
    padding:0 30px !important;
  }
}

@media (min-width: 1024px) {
  .callout-smart-cart-wrapper {
    width:-moz-fit-content;
    width:fit-content;
  }

  .pdpPage .pdp-smart-cart-container {
    width: 100% !important;
    margin-top: 20px;
  }

  .removeTop .smarlink-button button {
    min-height: 30px !important;
    min-width: 200px !important
  }

  .smart-cart-pdp {
    padding: 0 !important;
    /* width: 390px !important; */
    margin-bottom: 20px !important;
  }

  .smart-cart-pdp div:nth-of-type(2)  {
    padding: 0 !important;
  }
}

@media (min-width:1023) and (max-width:1025px) {
  .callOutContent {
    margin-left: 10px;
  }
}

.sc-btn-retailer-wrapper {
  z-index: 20 !important;
}

.smart-cart-pdp {
  padding: 0 !important;
  margin-bottom: 20px !important;
}

.couponCard {
  box-shadow: 0 0 11px 1px #e0dbdb;
}

.couponCard:hover {
  box-shadow: 0 0 10px 3px #c7c1c1;
}

@media (min-width: 320px) {

  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:float-right {
    float: right;
  }

  .sm\:float-left {
    float: left;
  }

  .sm\:mt-20 {
    margin-top: 20px;
  }

  .sm\:mt-50 {
    margin-top: 50px;
  }

  .sm\:mb-30 {
    margin-bottom: 30px;
  }

  .sm\:ml-0 {
    margin-left: 0px;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-80 {
    height: 80px;
  }

  .sm\:min-h-50 {
    min-height: 50px;
  }

  .sm\:min-h-240 {
    min-height: 240px;
  }

  .sm\:min-h-1000 {
    min-height: 1000px;
  }

  .sm\:w-7\/12 {
    width: 58.333333%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:content-center {
    align-content: center;
  }

  .sm\:whitespace-normal {
    white-space: normal;
  }

  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:px-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sm\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm\:px-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .sm\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm\:pt-10 {
    padding-top: 10px;
  }

  .sm\:pt-20 {
    padding-top: 20px;
  }

  .sm\:pb-0 {
    padding-bottom: 0px;
  }

  .sm\:pb-10 {
    padding-bottom: 10px;
  }

  .sm\:pl-0 {
    padding-left: 0px;
  }

  .sm\:pl-15 {
    padding-left: 15px;
  }

  .sm\:text-center {
    text-align: center;
  }

  .sm\:text-18 {
    font-size: 1.125rem;
  }

  .sm\:text-21 {
    font-size: 1.313rem;
  }

  .sm\:text-22 {
    font-size: 1.375rem;
  }

  .sm\:text-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {

  .md\:top-0 {
    top: 0;
  }

  .md\:right-10p {
    right: 10%;
  }

  .md\:-left-50 {
    left: -50px;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mt-40 {
    margin-top: 40px;
  }

  .md\:mt-45 {
    margin-top: 45px;
  }

  .md\:mt-50 {
    margin-top: 50px;
  }

  .md\:mb-auto {
    margin-bottom: auto;
  }

  .md\:ml-45 {
    margin-left: 45px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-80 {
    height: 80px;
  }

  .md\:h-530 {
    height: 530px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:max-h-600 {
    max-height: 600px;
  }

  .md\:min-h-44 {
    min-height: 44px;
  }

  .md\:min-h-100 {
    min-height: 100px;
  }

  .md\:min-h-full {
    min-height: 100%;
  }

  .md\:w-380 {
    width: 380px;
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-6\/12 {
    width: 50%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:max-w-286 {
    max-width: 286px;
  }

  .md\:max-w-475 {
    max-width: 475px;
  }

  .md\:max-w-550 {
    max-width: 550px;
  }

  .md\:max-w-590 {
    max-width: 590px;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-40 {
    padding-top: 40px;
  }

  .md\:pt-120 {
    padding-top: 120px;
  }

  .md\:pt-200 {
    padding-top: 200px;
  }

  .md\:pb-40 {
    padding-bottom: 40px;
  }

  .md\:pl-30 {
    padding-left: 30px;
  }

  .md\:text-17 {
    font-size: 1.0625rem;
  }

  .md\:text-18 {
    font-size: 1.125rem;
  }

  .md\:text-35 {
    font-size: 2.1875rem;
  }

  .md\:leading-29 {
    line-height: 1.8125rem;
  }

  .md\:leading-40 {
    line-height: 2.5rem;
  }
}

@media (min-width: 820px) {

  .mdl\:pl-0 {
    padding-left: 0px;
  }

  .mdl\:text-22 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .lg\:container {
    width: 100%;
  }

  @media (min-width: 320px) {
    .lg\:container {
      max-width: 320px;
    }
  }

  @media (min-width: 768px) {
    .lg\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 820px) {
    .lg\:container {
      max-width: 820px;
    }
  }

  @media (min-width: 1024px) {
    .lg\:container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1440px) {
    .lg\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1600px) {
    .lg\:container {
      max-width: 1600px;
    }
  }

  @media (min-width: 1920px) {
    .lg\:container {
      max-width: 1920px;
    }
  }

  .lg\:visible {
    visibility: visible;
  }

  .lg\:invisible {
    visibility: hidden;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:top-30 {
    top: 30px;
  }

  .lg\:right-15 {
    right: 15px;
  }

  .lg\:right-m40 {
    right: -40px;
  }

  .lg\:left-0 {
    left: 0;
  }

  .lg\:-left-35 {
    left: -35px;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:float-left {
    float: left;
  }

  .lg\:m-0 {
    margin: 0px;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .lg\:my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .lg\:my-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-5 {
    margin-top: 5px;
  }

  .lg\:mt-6 {
    margin-top: 6px;
  }

  .lg\:mt-20 {
    margin-top: 20px;
  }

  .lg\:mt-25 {
    margin-top: 25px;
  }

  .lg\:mt-30 {
    margin-top: 30px;
  }

  .lg\:mt-70 {
    margin-top: 70px;
  }

  .lg\:mt-95 {
    margin-top: 95px;
  }

  .lg\:mt-100 {
    margin-top: 100px;
  }

  .lg\:mt-170 {
    margin-top: 170px;
  }

  .lg\:mt-auto {
    margin-top: auto;
  }

  .lg\:-mt-10 {
    margin-top: -10px;
  }

  .lg\:-mt-30 {
    margin-top: -30px;
  }

  .lg\:mr-25 {
    margin-right: 25px;
  }

  .lg\:mr-45 {
    margin-right: 45px;
  }

  .lg\:mr-50 {
    margin-right: 50px;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-20 {
    margin-bottom: 20px;
  }

  .lg\:mb-25 {
    margin-bottom: 25px;
  }

  .lg\:mb-30 {
    margin-bottom: 30px;
  }

  .lg\:mb-35 {
    margin-bottom: 35px;
  }

  .lg\:mb-40 {
    margin-bottom: 40px;
  }

  .lg\:mb-50 {
    margin-bottom: 50px;
  }

  .lg\:mb-55 {
    margin-bottom: 55px;
  }

  .lg\:mb-60 {
    margin-bottom: 60px;
  }

  .lg\:mb-95 {
    margin-bottom: 95px;
  }

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:ml-0 {
    margin-left: 0px;
  }

  .lg\:ml-15 {
    margin-left: 15px;
  }

  .lg\:ml-20 {
    margin-left: 20px;
  }

  .lg\:ml-25 {
    margin-left: 25px;
  }

  .lg\:ml-50 {
    margin-left: 50px;
  }

  .lg\:ml-170 {
    margin-left: 170px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-20 {
    height: 20px;
  }

  .lg\:h-27 {
    height: 27px;
  }

  .lg\:h-40 {
    height: 40px;
  }

  .lg\:h-50 {
    height: 50px;
  }

  .lg\:h-55 {
    height: 55px;
  }

  .lg\:h-170 {
    height: 170px;
  }

  .lg\:h-277 {
    height: 277px;
  }

  .lg\:h-600 {
    height: 600px;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:min-h-44 {
    min-height: 44px;
  }

  .lg\:min-h-135 {
    min-height: 135px;
  }

  .lg\:min-h-376 {
    min-height: 376px;
  }

  .lg\:min-h-386 {
    min-height: 386px;
  }

  .lg\:min-h-420 {
    min-height: 420px;
  }

  .lg\:min-h-431 {
    min-height: 431px;
  }

  .lg\:min-h-470 {
    min-height: 470px;
  }

  .lg\:min-h-474 {
    min-height: 474x;
  }

  .lg\:min-h-510 {
    min-height: 510px;
  }

  .lg\:min-h-568 {
    min-height: 568px;
  }

  .lg\:min-h-814 {
    min-height: 814px;
  }

  .lg\:w-20 {
    width: 20px;
  }

  .lg\:w-248 {
    width: 248px;
  }

  .lg\:w-277 {
    width: 277px;
  }

  .lg\:w-330 {
    width: 330px;
  }

  .lg\:w-340 {
    width: 340px;
  }

  .lg\:w-372 {
    width: 372px;
  }

  .lg\:w-600 {
    width: 600px;
  }

  .lg\:w-641 {
    width: 641px;
  }

  .lg\:w-873 {
    width: 873px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-3\/8 {
    width: 37.5%;
  }

  .lg\:w-7\/10 {
    width: 70%;
  }

  .lg\:w-1\/12 {
    width: 8.333333%;
  }

  .lg\:w-3\/12 {
    width: 25%;
  }

  .lg\:w-4\/12 {
    width: 33.333333%;
  }

  .lg\:w-7\/12 {
    width: 58.333333%;
  }

  .lg\:w-8\/12 {
    width: 66.666667%;
  }

  .lg\:w-9\/12 {
    width: 75%;
  }

  .lg\:w-10\/12 {
    width: 83.333333%;
  }

  .lg\:w-11\/12 {
    width: 91.666667%;
  }

  .lg\:w-90p {
    width: 90%;
  }

  .lg\:w-22p {
    width: 22%;
  }

  .lg\:w-78p {
    width: 78%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:min-w-350 {
    min-width: 350px;
  }

  .lg\:max-w-286 {
    max-width: 286px;
  }

  .lg\:max-w-340 {
    max-width: 340px;
  }

  .lg\:max-w-400 {
    max-width: 400px;
  }

  .lg\:max-w-650 {
    max-width: 650px;
  }

  .lg\:max-w-1065 {
    max-width: 1065px !important;
  }

  .lg\:max-w-1130 {
    max-width: 1130px;
  }

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-around {
    justify-content: space-around;
  }

  .lg\:gap-15 {
    gap: 15px;
  }

  .lg\:rounded-20 {
    border-radius: 20px;
  }

  .lg\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .lg\:bg-none {
    background-image: none;
  }

  .lg\:bg-ghost-desktop {
    background-image: url('https://images.ctfassets.net/jeoogvtfnmyl/4zjnwh5BqKRO6zWafFfuj6/4ebeafddf4cb5191981feda4fc61aa9c/Mask_group__1___1_.jpg');
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-10 {
    padding: 10px;
  }

  .lg\:p-12 {
    padding: 12px;
  }

  .lg\:p-50 {
    padding: 50px;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .lg\:px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .lg\:px-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lg\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lg\:px-23 {
    padding-left: 23px;
    padding-right: 23px;
  }

  .lg\:px-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .lg\:px-35 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .lg\:px-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .lg\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lg\:py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .lg\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .lg\:py-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-10 {
    padding-top: 10px;
  }

  .lg\:pt-15 {
    padding-top: 15px;
  }

  .lg\:pt-18 {
    padding-top: 18px;
  }

  .lg\:pt-20 {
    padding-top: 20px;
  }

  .lg\:pt-30 {
    padding-top: 30px;
  }

  .lg\:pt-35 {
    padding-top: 35px;
  }

  .lg\:pt-45 {
    padding-top: 45px;
  }

  .lg\:pt-50 {
    padding-top: 50px;
  }

  .lg\:pt-80 {
    padding-top: 80px;
  }

  .lg\:pt-124 {
    padding-top: 124px;
  }

  .lg\:pt-128 {
    padding-top: 128px;
  }

  .lg\:pt-180 {
    padding-top: 180px;
  }

  .lg\:pr-10 {
    padding-right: 10px;
  }

  .lg\:pr-15 {
    padding-right: 15px;
  }

  .lg\:pr-20 {
    padding-right: 20px;
  }

  .lg\:pr-30 {
    padding-right: 30px;
  }

  .lg\:pr-90 {
    padding-right: 90px;
  }

  .lg\:pb-0 {
    padding-bottom: 0px;
  }

  .lg\:pb-10 {
    padding-bottom: 10px;
  }

  .lg\:pb-15 {
    padding-bottom: 15px;
  }

  .lg\:pb-20 {
    padding-bottom: 20px;
  }

  .lg\:pb-30 {
    padding-bottom: 30px;
  }

  .lg\:pb-35 {
    padding-bottom: 35px;
  }

  .lg\:pb-40 {
    padding-bottom: 40px;
  }

  .lg\:pb-50 {
    padding-bottom: 50px;
  }

  .lg\:pb-60 {
    padding-bottom: 60px;
  }

  .lg\:pb-65 {
    padding-bottom: 65px;
  }

  .lg\:pb-75 {
    padding-bottom: 75px;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:pl-10 {
    padding-left: 10px;
  }

  .lg\:pl-15 {
    padding-left: 15px;
  }

  .lg\:pl-20 {
    padding-left: 20px;
  }

  .lg\:pl-36 {
    padding-left: 36px;
  }

  .lg\:pl-40 {
    padding-left: 40px;
  }

  .lg\:pl-45 {
    padding-left: 45px;
  }

  .lg\:pl-50 {
    padding-left: 50px;
  }

  .lg\:pl-60 {
    padding-left: 60px;
  }

  .lg\:pl-111 {
    padding-left: 111px;
  }

  .lg\:pl-160 {
    padding-left: 160px;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:font-CoreRhino75 {
    font-family: core-rhino-75;
  }

  .lg\:text-12 {
    font-size: 0.75rem;
  }

  .lg\:text-13 {
    font-size: 0.8125rem;
  }

  .lg\:text-14 {
    font-size: 0.875rem;
  }

  .lg\:text-16 {
    font-size: 1rem;
  }

  .lg\:text-17 {
    font-size: 1.0625rem;
  }

  .lg\:text-20 {
    font-size: 1.25rem;
  }

  .lg\:text-24 {
    font-size: 1.5rem;
  }

  .lg\:text-25 {
    font-size: 1.5625rem;
  }

  .lg\:text-26 {
    font-size: 1.625rem;
  }

  .lg\:text-30 {
    font-size: 1.875rem;
  }

  .lg\:text-34 {
    font-size: 2.125rem;
  }

  .lg\:text-36 {
    font-size: 2.25rem;
  }

  .lg\:text-38 {
    font-size: 2.375rem;
  }

  .lg\:text-40 {
    font-size: 2.5rem;
  }

  .lg\:text-42 {
    font-size: 2.625rem;
  }

  .lg\:text-46 {
    font-size: 2.875rem;
  }

  .lg\:leading-14 {
    line-height: 0.875rem;
  }

  .lg\:leading-20 {
    line-height: 1.25rem;
  }

  .lg\:leading-22 {
    line-height: 1.375rem;
  }

  .lg\:leading-24 {
    line-height: 1.5rem;
  }

  .lg\:leading-26 {
    line-height: 1.625rem;
  }

  .lg\:leading-28 {
    line-height: 1.75rem;
  }

  .lg\:leading-30 {
    line-height: 1.875rem;
  }

  .lg\:leading-31 {
    line-height: 1.9375rem;
  }

  .lg\:leading-42 {
    line-height: 2.625rem;
  }

  .lg\:leading-43 {
    line-height: 2.6875rem;
  }

  .lg\:leading-45 {
    line-height: 2.8125rem;
  }

  .lg\:leading-46 {
    line-height: 2.875rem;
  }

  .lg\:leading-80 {
    line-height: 5rem;
  }

  .lg\:tracking-16 {
    letter-spacing: 0.16px;
  }

  .lg\:tracking-19 {
    letter-spacing: 0.19px;
  }

  .lg\:tracking-23 {
    letter-spacing: 0.23px;
  }

  .lg\:tracking-32 {
    letter-spacing: 0.32px;
  }

  .lg\:tracking-33 {
    letter-spacing: 0.33px;
  }

  .lg\:tracking-34 {
    letter-spacing: 0.34px;
  }

  .lg\:tracking-43 {
    letter-spacing: 0.43px;
  }

  .lg\:tracking-wide {
    letter-spacing: 0.025em;
  }

  .lg\:tracking-m9 {
    letter-spacing: -9px;
  }

  .lg\:text-black {
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .lg\:shadow-alpcard {
    --tw-shadow: 0 6px 13px 0 rgba(0,0,0,0.12);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1440px) {

  .xl\:mt-150 {
    margin-top: 150px;
  }

  .xl\:-mt-90 {
    margin-top: -90px;
  }

  .xl\:min-h-150 {
    min-height: 150px;
  }

  .xl\:max-w-475 {
    max-width: 475px;
  }

  .xl\:whitespace-pre-line {
    white-space: pre-line;
  }

  .xl\:pb-20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 1920px) {

  .xxxl\:text-20 {
    font-size: 1.25rem;
  }
}