:root {
    --grid-columns: 4;
    --grid-gutter: 10px;
    --grid-gutter-half: calc(0.5 * var(--grid-gutter));
    --grid-margin: var(--grid-gutter);
    --header-space-y: 7.5rem;
    --header-top: 1.25rem;
    --main-space-top: calc(20 * var(--vh, 1vh));
    --font-size-h1: clamp(34px, calc(64/1200 * 100vw), 64px);
    --font-size-h2: clamp(48px, calc(60/1200 * 100vw), 60px);
    --font-size-h3: clamp(24px, calc(40/1200 * 100vw), 40px);
    --font-size-h4: 1.5rem;
    --font-size-body: .75rem;
    --rail-height: 1.5rem
}

@media(min-width:700px) {
    :root {
        --grid-columns: 12;
        --grid-gutter: 1rem
    }
}

@media(min-width:1000px) {
    :root {
        --grid-margin: 5rem
    }
}

/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/


button,
.c-button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none transparent;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

button:focus,
button:hover,
.c-button:focus,
.c-button:hover {
    text-decoration: none
}

*,
*:after,
*:before {
    position: relative;
    outline: none
}

@font-face {
    font-display: swap;
    font-family: neue montreal;
    src: url(../fonts/PPNeueMontreal-SemiBold.woff2) format("woff2"), url(../fonts/PPNeueMontreal-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-display: swap;
    font-family: editorial new;
    src: url(../fonts/PPEditorialNew-Ultralight.woff2) format("woff2"), url(../fonts/PPEditorialNew-Ultralight.woff) format("woff");
    font-weight: 100;
    font-style: normal
}

html {
    min-height: 100%;
    line-height: 1.5;
    font-family: neue montreal, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
    font-weight: 600;
    color: #221e1d;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@media(max-width:699px) {
    html {
        font-size: 14px
    }
}

@media(min-width:700px) and (max-width:999px) {
    html {
        font-size: 14px
    }
}

@media(min-width:1000px) and (max-width:1199px) {
    html {
        font-size: 15px
    }
}

@media(min-width:1200px) and (max-width:1599px) {
    html {
        font-size: 16px
    }
}

@media(min-width:1600px) and (max-width:1999px) {
    html {
        font-size: 17px
    }
}

@media(min-width:2000px) and (max-width:2399px) {
    html {
        font-size: 18px
    }
}

@media(min-width:2400px) {
    html {
        font-size: 20px
    }
}

html.is-loading {
    cursor: wait
}

html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

body {
    font-size: var(--font-size-body)
}

.has-scroll-smooth body {
    overflow: hidden
}

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

::-moz-selection {
    background-color: #221e1d;
    color: #f5f5f5;
    text-shadow: none
}

::selection {
    background-color: #221e1d;
    color: #f5f5f5;
    text-shadow: none
}

a {
    color: inherit
}

.focus-visible {
    outline-offset: 2px;
    outline: 1px auto var(--color-secondary) !important
}

.o-scroll {
    min-height: 100vh
}

.o-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--grid-margin);
    padding-left: var(--grid-margin)
}

.o-ratio {
    position: relative;
    display: block;
    overflow: hidden
}

.o-ratio:before {
    display: block;
    padding-bottom: 100%;
    width: 100%;
    content: ""
}

.o-ratio_content,
.o-ratio>img,
.o-ratio>iframe,
.o-ratio>embed,
.o-ratio>object {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%
}

.o-icon {
    display: inline-block;
    vertical-align: middle
}

.o-icon svg {
    --icon-height: calc(var(--icon-width) * (1 / (var(--icon-ratio))));
    display: block;
    width: var(--icon-width);
    height: var(--icon-height);
    fill: currentColor
}

.svg-logo {
    --icon-width: 6.25rem;
    --icon-ratio: 199/70
}

.svg-logo-tagline {
    --icon-width: 8.25rem;
    --icon-ratio: 98/33
}

.svg-arrow {
    --icon-width: 1rem;
    --icon-ratio: 42/16
}

.svg-cross {
    --icon-width: 1rem;
    --icon-ratio: 1
}

.svg-cart {
    --icon-width: 1.625rem;
    --icon-ratio: 18/22
}

.o-grid {
    display: grid;
    width: 100%
}

.o-grid:is(ul, ol) {
    margin: 0;
    padding: 0;
    list-style: none
}

.o-grid.-col-12 {
    grid-template-columns: repeat(12, 1fr)
}

.o-grid.-col-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media(min-width:1000px) {
    .o-grid.-col-12\@from-medium {
        grid-template-columns: repeat(12, 1fr)
    }
}

.o-grid.-gutters {
    gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px
}

.o-grid.-full-height {
    height: 100%
}

.o-grid.-top-items {
    align-items: start
}

.o-grid.-right-items {
    justify-items: end
}

.o-grid.-bottom-items {
    align-items: end
}

.o-grid.-left-items {
    justify-items: start
}

.o-grid.-center-items {
    align-items: center;
    justify-items: center
}

.o-grid.-center-items-x {
    justify-items: center
}

.o-grid.-center-items-y {
    align-items: center
}

.o-grid.-stretch-items {
    align-items: stretch;
    justify-items: stretch
}

.o-grid.-top-cells {
    align-content: start
}

.o-grid.-right-cells {
    justify-content: end
}

.o-grid.-bottom-cells {
    align-content: end
}

.o-grid.-left-cells {
    justify-content: start
}

.o-grid.-center-cells {
    align-content: center;
    justify-content: center
}

.o-grid.-center-cells-x {
    justify-content: center
}

.o-grid.-center-cells-y {
    align-content: center
}

.o-grid.-stretch-cells {
    align-content: stretch;
    justify-content: stretch
}

.o-grid.-space-around-cells {
    align-content: space-around;
    justify-content: space-around
}

.o-grid.-space-around-cells-x {
    justify-content: space-around
}

.o-grid.-space-around-cells-y {
    align-content: space-around
}

.o-grid.-space-between-cells {
    justify-content: space-between;
    align-content: space-between
}

.o-grid.-space-between-cells-x {
    justify-content: space-between
}

.o-grid.-space-between-cells-y {
    align-content: space-between
}

.o-grid.-space-evenly-cells {
    justify-content: space-evenly;
    align-content: space-evenly
}

.o-grid.-space-evenly-cells-x {
    justify-content: space-evenly
}

.o-grid.-space-evenly-cells-y {
    align-content: space-evenly
}

.o-grid_item {
    grid-column: 1/-1
}

.o-grid_item.-align-end {
    align-self: end
}

.o-dl {
    --dl-columns: calc(1/3 * 100% - 2/3 * var(--grid-gutter)) auto;
    display: flex;
    flex-direction: column
}

.o-dl_row {
    display: grid;
    grid-column-gap: var(--grid-gutter);
    grid-template-columns: var(--dl-columns)
}

.o-dl.-features .o-dl_row:not(:first-child) {
    margin-top: 3rem
}

.o-dl.-price .o-dl_row {
    align-items: baseline;
    padding-top: .625rem;
    padding-bottom: .625rem
}

.o-dl.-price .o-dl_row:not(:first-child) {
    border-top: 1px solid #ededed
}

.o-dl.-price .o-dl_row.-highlight {
    color: red
}

@media(max-width:699px) {
    .o-dl.-features .o-dl_row {
        --dl-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(min-width:700px) and (max-width:999px) {
    .o-dl_row {
        width: calc(.33333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .33333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

.o-dl_desc {
    display: flex;
    flex-direction: column
}

.o-rail {
    --rail-speed: 10s;
    --rail-translate-x: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: var(--rail-height);
    color: #f5f5f5;
    background-color: #221e1d;
    overflow: hidden;
    transform: translate(0, -100%)
}

html.is-ready .o-rail {
    transform: translate(0);
    transition: transform .6s cubic-bezier(.215, .61, .355, 1)
}

.o-rail_inner {
    display: flex;
    white-space: nowrap;
    will-change: transform
}

.o-wysiwyg h2 {
    margin-bottom: 1em;
    text-transform: none !important
}

.o-wysiwyg p,
.o-wysiwyg ul,
.o-wysiwyg ol,
.o-wysiwyg video,
.o-wysiwyg blockquote {
    line-height: 1.4;
    margin-bottom: 1.5em
}

.o-wysiwyg a {
    font-weight: 700;
    text-decoration: underline
}

.o-wysiwyg *:first-child {
    margin-top: 0 !important
}

.o-wysiwyg *:last-child {
    margin-bottom: 0 !important
}

/*!Flickity v3.0.0
https://flickity.metafizzy.co
----------------------------------------------*/

.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: none
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    touch-action: pan-y
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
}

.flickity-rtl .flickity-slider {
    left: unset;
    right: 0
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-cell {
    position: absolute;
    left: 0
}

.flickity-rtl .flickity-cell {
    left: unset;
    right: 0
}

.flickity-enabled.is-dragging a,
.flickity-enabled.is-dragging button {
    pointer-events: none
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100vh;
    transform-origin: center right;
    transition: transform .3s, opacity .3s;
    opacity: 0
}

.c-scrollbar:hover {
    transform: scaleX(1.45)
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #221e1d;
    opacity: .5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: grab
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: grabbing
}

.c-heading.-h1,
.o-wysiwyg h2.-h1 {
    line-height: .9;
    letter-spacing: -.04em;
    font-size: var(--font-size, var(--font-size-h1));
    font-weight: 600;
    text-transform: uppercase
}

.c-heading.-h2,
.o-wysiwyg h2.-h2 {
    line-height: 1;
    letter-spacing: -.02em;
    font-family: editorial new, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: var(--font-size, var(--font-size-h2));
    font-weight: 100
}

.c-heading.-h3,
.o-wysiwyg h2.-h3 {
    line-height: 1;
    font-family: editorial new, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: var(--font-size, var(--font-size-h3));
    font-weight: 100
}

.c-heading.-h4,
.o-wysiwyg h2 {
    line-height: 1.2;
    font-size: var(--font-size, var(--font-size-h4));
    font-weight: 600;
    text-transform: uppercase
}

.o-body-text {
    line-height: 1.2;
    font-size: var(--font-size, var(--font-size-body))
}

.o-body-text.-caps {
    text-transform: uppercase
}

.o-link {
    display: inline-block;
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1), transform .3s cubic-bezier(.215, .61, .355, 1)
}

.o-link:hover {
    opacity: .7;
    transform: skewX(-10deg)
}

[data-module-link-hover] {
    display: block
}

.c-button {
    --button-color: #221E1D;
    z-index: 0;
    display: block;
    padding: .875rem 2rem;
    color: var(--button-color);
    text-transform: uppercase;
    border: 2px solid var(--button-color);
    white-space: nowrap;
    transition: color .3s cubic-bezier(.215, .61, .355, 1)
}

.c-button:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--button-color);
    transform: scale(1, 0);
    transform-origin: 50% 100%;
    transition: transform .3s cubic-bezier(.215, .61, .355, 1)
}

.c-button.-stretch {
    width: 100%
}

.c-button:hover {
    color: #f5f5f5
}

.c-button:hover:before {
    transform: scale(1)
}

.c-image {
    display: block
}

.c-image.-cover,
.c-image.-contain {
    height: 0;
    padding-top: calc(100% * (1/(var(--image-ratio, 3/4))))
}

.c-image.-cover-all {
    height: 100%;
    width: 100%;
    margin:0;
}

.c-image_button {
    z-index: 1;
    position: absolute;
    inset: 0;
    cursor: zoom-in !important;
	border: none !important;	
}

.c-image_inner {
    display: block
}

.c-image.-cover .c-image_inner,
.c-image.-contain .c-image_inner,
.c-image.-cover-all .c-image_inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.c-image.-lazy-load .c-image_inner {
    overflow: hidden;
    /*background-color: rgba(34, 30, 29, .1)*/
}

.c-image_img {
    width: 100%
}

.c-image.-cover .c-image_img,
.c-image.-contain .c-image_img,
.c-image.-cover-all .c-image_img {
    width: 100%;
    height: 100%;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    border-radius: 0;
}

.c-image.-cover .c-image_img,
.c-image.-cover-all .c-image_img {
    -o-object-fit: cover;
    object-fit: cover
}

.c-image.-contain .c-image_img {
    -o-object-fit: contain;
    object-fit: contain
}

.c-image.-lazy-load .c-image_img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity .6s ease-out, transform .6s cubic-bezier(.215, .61, .355, 1);
    will-change: opacity, transform
}

.c-image.-lazy-load .c-image_img.-lazy-loaded {
    opacity: 1;
    transform: scale(1);
    border-radius: 40px;
    filter: brightness(0.7);
}

.c-header[data-header-scale-logo]+.o-main {
    padding-top: calc(30 * var(--vh, 1vh))
}

html.has-menu-open .c-header {
    color: var(--color-secondary)
}

.c-header_logo,
.c-header_burger {
    z-index: 200;
    position: fixed
}

.c-header[data-header-scale-logo] .c-header_logo,
.c-header[data-header-scale-logo] .c-header_burger {
    transform: translate(0, calc(var(--rail-height) * (1 - var(--header-scroll-progress))))
}

.c-header_logo {
    --header-logo-scale: 1;
    top: var(--header-top);
    left: calc(50% - 3.125rem)
}

.c-header[data-header-scale-logo] .c-header_logo .o-icon {
    transform: translate(0, calc(var(--rail-height) * (1 - var(--header-scroll-progress)))) scale(calc(1 + var(--header-logo-scale) * (1 - var(--header-scroll-progress))));
    transform-origin: 50% 0
}

.c-header_burger {
    top: calc(var(--header-top) - 12px);
    left: calc(var(--grid-margin) - 0.15 * 48px);
    display: block;
    width: 48px;
    height: 48px
}

.c-header_burger span {
    position: absolute;
    left: calc(0.5 * (100% - 70%));
    display: block;
    height: 2px;
    width: 70%;
    background-color: currentColor;
    transition: transform .3s cubic-bezier(.215, .61, .355, 1)
}

.c-header_burger span:nth-child(1) {
    top: calc(50% - 10px);
    transform-origin: 100% 50%
}

.c-header_burger span:nth-child(2) {
    top: calc(50% - 4px)
}

.c-header_burger span:nth-child(3) {
    bottom: calc(50% - 4px)
}

.c-header_burger span:nth-child(4) {
    bottom: calc(50% - 10px);
    transform: scale(.75, 1);
    transform-origin: 0 50%
}

.c-header_burger:hover span:nth-child(1) {
    transform: scale(.75, 1)
}

html.has-menu-open .c-header_burger span:nth-child(1),
html.has-menu-open .c-header_burger span:nth-child(4) {
    transform: scale(0, 1)
}

html.has-menu-open .c-header_burger span:nth-child(2),
html.has-menu-open .c-header_burger span:nth-child(3) {
    transition-delay: .15s
}

html.has-menu-open .c-header_burger span:nth-child(2) {
    transform: translate(0, 3px) rotate(45deg)
}

html.has-menu-open .c-header_burger span:nth-child(3) {
    transform: translate(0, -3px) rotate(-45deg)
}

@media(min-width:1000px) {
    .c-header_burger {
        left: var(--grid-gutter-half)
    }
}

.c-header_menu {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 200vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
    transform: translate(0, -100%);
    transition: left 0s .3s, transform .3s cubic-bezier(.38, .005, .215, 1)
}

.c-header_menu:before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background-color: var(--color-primary)
}

.c-header_menu .c-nav {
    margin-top: auto
}

.c-header_menu .c-nav_item {
    -webkit-clip-path: polygon(0 -10%, 120% -10%, 120% 120%, 0 120%, 0 -10%);
    clip-path: polygon(0 -10%, 120% -10%, 120% 120%, 0 120%, 0 -10%)
}

.c-header_menu .c-nav_item:nth-child(1) {
    --header-nav-label-delay: 0.23333s
}

.c-header_menu .c-nav_item:nth-child(2) {
    --header-nav-label-delay: 0.26667s
}

.c-header_menu .c-nav_item:nth-child(3) {
    --header-nav-label-delay: 0.3s
}

.c-header_menu .c-nav_item:nth-child(4) {
    --header-nav-label-delay: 0.33333s
}

.c-header_menu .c-nav_item:nth-child(5) {
    --header-nav-label-delay: 0.36667s
}

.c-header_menu .c-nav_item:nth-child(6) {
    --header-nav-label-delay: 0.4s
}

.c-header_menu .c-nav_item:nth-child(7) {
    --header-nav-label-delay: 0.43333s
}

.c-header_menu .c-nav_item:nth-child(8) {
    --header-nav-label-delay: 0.46667s
}

.c-header_menu .c-nav_label {
    -webkit-clip-path: polygon(0 -10%, 120% -10%, 120% 120%, 0 120%, 0 -10%);
    clip-path: polygon(0 -10%, 120% -10%, 120% 120%, 0 120%, 0 -10%);
    transform: translate(0, -120%);
    transition: transform .3s cubic-bezier(.38, .005, .215, 1)
}

html.has-menu-open .c-header_menu {
    left: 0;
    transform: translate(0);
    transition: transform .45s cubic-bezier(.38, .005, .215, 1)
}

html.has-menu-open .c-header_menu .c-nav_label {
    transform: translate(0);
    transition: transform .45s cubic-bezier(.38, .005, .215, 1) var(--header-nav-label-delay)
}

.c-header_canvas {
    position: absolute;
    top: 0;
    left: 0
}

.c-header_image {
    z-index: -10;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 20vw;
    height: calc(20vw * 4/3);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%
}

.c-header_submenu {
    margin-bottom: calc(10 * var(--vh, 1vh));
    text-align: center;
    opacity: 0;
    transform: translate(0, -2em);
    transition: opacity .3s cubic-bezier(.38, .005, .215, 1), transform .3s cubic-bezier(.38, .005, .215, 1)
}

html.has-menu-open .c-header_submenu {
    opacity: 1;
    transform: translate(0);
    transition: opacity .45s cubic-bezier(.38, .005, .215, 1) .3s, transform .45s cubic-bezier(.38, .005, .215, 1) .3s
}

.c-footer {
    height: calc(100 * var(--vh, 1vh))
}

.c-footer_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--grid-gutter);
    overflow: hidden
}

.c-footer_bg {
    position: absolute;
    inset: 0;
    transform-origin: 50% 100%;
    transform: scale(clamp(1, calc(1 + var(--progress)), 1.4))
}

.c-footer_bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #221e1d;
    opacity: clamp(0, calc(1 - 3 * var(--progress)), 0.8)
}

.c-footer_video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%
}

.c-footer_inner {
    position: static;
    display: flex;
    flex-direction: column;
    min-height: 100%
}

.c-footer_inner:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(34, 30, 29, 0.25), rgba(34, 30, 29, 0) 10%, rgba(34, 30, 29, 0) 90%, rgba(34, 30, 29, 0.25))
}

.c-footer_center {
    width: 100%;
    max-width: calc(var(--font-size-h1) * 12);
    margin: auto
}

.c-footer_newsletter {
    margin-top: calc(5 * var(--vh, 1vh))
}

.c-footer_newsletter .c-form_inner {
    max-width: 22.5rem;
    margin-right: auto;
    margin-left: auto
}

.c-footer_headline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.c-footer_headline>span:nth-child(2) {
    padding-right: 1em;
    padding-left: 1em
}

.c-footer_headline>span:nth-child(4) {
    min-width: 3em
}

.c-footer_headline>span:last-child {
    text-align: right
}

.c-footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

@media(max-width:699px) {
    .c-footer_bottom {
        flex-wrap: wrap
    }
}

.c-footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.c-footer_logo .o-icon {
    margin-bottom: .625rem
}

@media(max-width:699px) {
    .c-footer_logo {
        order: -1;
        width: 100%;
        margin-bottom: var(--grid-gutter)
    }
}

.c-cart_inner,
.c-cart_overlay {
    z-index: 300;
    position: fixed
}

.c-cart_overlay {
    inset: 0;
    background-color: rgba(0, 0, 0, .85);
    transition: opacity .45s cubic-bezier(.215, .61, .355, 1)
}

html:not(.has-cart-open) .c-cart_overlay {
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1)
}

.c-cart_inner {
    top: 0;
    right: -200vw;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: calc(.5 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .5) * var(--grid-gutter) + 0 * var(--grid-gutter));
    padding: var(--header-space-y) var(--grid-gutter) var(--grid-gutter);
    background-color: #fff;
    overflow: auto;
    transform: translate(100%, 0);
    transition: right 0s .3s, transform .3s cubic-bezier(.38, .005, .215, 1)
}

html.has-cart-open .c-cart_inner {
    right: 0;
    transform: translate(0);
    transition: transform .45s cubic-bezier(.38, .005, .215, 1)
}

@media(max-width:999px) {
    .c-cart_inner {
        width: 100%
    }
}

@media(min-width:1000px) {
    .c-cart_inner {
        width: 50%
    }
}

.c-cart_title {
    max-width: 7em
}

.c-cart_content {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: calc(5 * var(--vh, 1vh));
    padding-bottom: calc(5 * var(--vh, 1vh))
}

.c-cart_text {
    max-width: 26em
}

.c-cart_footer {
    margin-top: calc(5 * var(--vh, 1vh))
}

@media(min-width:500px) {
    .c-cart_footer {
        display: grid;
        grid-column-gap: var(--grid-gutter);
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.c-cart_col {
    display: flex;
    flex-direction: column
}

.c-cart_col.-discount h3 {
    margin-top: 1.25rem;
    margin-bottom: var(--grid-gutter)
}

.c-cart_col.-discount p {
    margin-top: var(--grid-gutter);
    margin-bottom: var(--grid-gutter)
}

.c-cart_col .c-form {
    --form-color: #C4C4C4;
    max-width: 12.5rem
}

.c-cart_price {
    margin-top: 0
}

.c-cart_button {
    margin-top: auto
}

.c-cart_button.-paypal {
    margin-bottom: -42px
}

.c-cart_toggler {
    z-index: 300;
    position: fixed;
    top: calc(var(--header-top) - 8px);
    right: calc(var(--grid-margin) - 0.15 * 48px);
    display: block;
    width: 48px;
    height: 48px;
    transform: translate(0, calc(var(--rail-height) * (1 - var(--header-scroll-progress, 1))))
}

.c-cart_toggler .o-cart-dot {
    position: absolute;
    top: auto;
    bottom: 4px;
    right: 4px;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px
}

.c-cart_toggler .o-cart-dot:not(.is-visible) {
    opacity: 0
}

html.has-menu-open .c-cart_toggler {
    color: var(--color-secondary)
}

@media(min-width:1000px) {
    .c-cart_toggler {
        right: var(--grid-gutter-half)
    }
}

.o-cart-dot {
    z-index: 300;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #f5f5f5;
    background-color: #d34b3b;
    border-radius: 50%
}

.c-cart_item {
    border-top: 1px solid #ededed
}

.c-cart_item:last-child {
    border-bottom: 1px solid #ededed
}

.o-cart-product {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    grid-gap: var(--grid-gutter);
    align-items: flex-end;
    padding-top: var(--grid-gutter);
    padding-bottom: var(--grid-gutter)
}

.o-cart-product_image {
    padding-right: var(--grid-gutter)
}

.o-cart-product_info {
    display: flex;
    flex-direction: column
}

.o-cart-product_quantity {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: var(--grid-gutter)
}

.o-cart-product_quantity input {
    width: 26px;
    text-align: center
}

.o-cart-product_quantity button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #c4c4c4;
    border-radius: 50%
}

.o-cart-product_remove {
    display: flex;
    align-items: center
}

.o-cart-product_remove button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: -14.4px
}

.c-nav {
    margin-top: calc(30 * var(--vh, 1vh));
    padding-bottom: calc(5 * var(--vh, 1vh))
}

@media(max-width:699px) {
    .c-nav {
        text-align: center
    }
}

@media(min-width:700px) {
    .c-nav_list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap
    }
    .c-nav_list:after,
    .c-nav_list:before {
        content: "";
        display: block;
        flex-basis: 1;
        width: 100%
    }
    .c-nav_list:before {
        order: 3
    }
    .c-nav_list:after {
        order: 7
    }
}

@media(min-width:700px) {
    .c-nav_item {
        display: flex
    }
    .c-nav_item:nth-child(2) .c-nav_label:before,
    .c-nav_item:nth-child(4) .c-nav_label:before,
    .c-nav_item:nth-child(5) .c-nav_label:before,
    .c-nav_item:nth-child(7) .c-nav_label:before {
        content: "/";
        display: inline-block;
        margin-right: .2em;
        margin-left: .2em
    }
    .c-nav_item:nth-child(1) {
        order: 1
    }
    .c-nav_item:nth-child(2) {
        order: 2
    }
    .c-nav_item:nth-child(3) {
        order: 4
    }
    .c-nav_item:nth-child(4) {
        order: 5
    }
    .c-nav_item:nth-child(5) {
        order: 6
    }
    .c-nav_item:nth-child(6) {
        order: 8
    }
    .c-nav_item:nth-child(7) {
        order: 9
    }
}

.c-nav_label {
    display: inline-flex
}

@media(min-width:700px) {
    .c-nav_label {
        flex-shrink: 0
    }
}

.c-nav_link {
    display: block
}

@media(min-width:700px) {
    .c-nav_link {
        flex-shrink: 0
    }
}

.c-about {
    display: grid;
    grid-column-gap: var(--grid-gutter);
    padding-top: calc(30 * var(--vh, 1vh))
}

@media(max-width:699px) {
    .c-about {
        grid-row-gap: 3.625rem
    }
}

@media(min-width:700px) {
    .c-about {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-row-gap: calc(15 * var(--vh, 1vh))
    }
}

.c-about_quote blockquote:before {
    content: "\201C"
}

.c-about_quote blockquote:after {
    content: "\201D"
}

.c-about_quote figcaption {
    width: calc(50% - var(--grid-gutter-half));
    margin-left: auto
}

.c-about_quote svg {
    left: -25%;
    display: block;
    fill: none;
    stroke: currentColor
}

.c-about_quote svg[data-scroll] {
    stroke-dasharray: 927;
    stroke-dashoffset: 927
}

.c-about_quote svg[data-scroll].is-inview {
    animation: anim-about-dashoffset 1.5s cubic-bezier(.645, .045, .355, 1) forwards
}

.c-about_quote p {
    position: absolute;
    bottom: 10%;
    left: calc(1/3 * 100% + 1/3 * var(--grid-gutter))
}

.c-about_content {
    display: grid;
    grid-gap: calc(2 * var(--grid-gutter)) var(--grid-gutter)
}

@media(min-width:500px) {
    .c-about_content {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .c-about_content .c-button {
        grid-column-start: 2
    }
}

.c-about_image {
    margin-top: 3rem
}

@keyframes anim-about-dashoffset {
    to {
        stroke-dashoffset: 0
    }
}

.c-product-list {
    --product-list-columns: 2
}

.c-product-list.-feature:not(:first-child) {
    margin-top: 3.625rem
}

@media(max-width:699px) {
    .c-product-list.-feature.o-container {
        padding-left: 0;
        padding-right: 0
    }
}

@media(min-width:700px) {
    .c-product-list {
        --product-list-columns: 3
    }
}

@media(min-width:1000px) {
    .c-product-list {
        --product-list-columns: 4
    }
}

.c-product-list_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.625rem
}

@media(max-width:699px) {
    .c-product-list.-feature.o-container .c-product-list_header {
        padding-right: var(--grid-margin);
        padding-left: var(--grid-margin)
    }
}

@media(min-width:500px) {
    .c-product-list_title {
        padding-right: 1em
    }
}

.c-product-list_button {
    margin-left: calc(2 * var(--grid-gutter))
}

@media(max-width:499px) {
    .c-product-list_button {
        padding: .625rem 1rem
    }
}

@media(min-width:700px) {
    .c-product-list_button {
        min-width: 11.625rem
    }
}

.c-product-list_grid {
    display: grid;
    grid-gap: calc(2 * var(--grid-gutter)) var(--grid-gutter);
    grid-template-columns: repeat(var(--product-list-columns), minmax(0, 1fr))
}

@media(max-width:999px) {
    .c-product-list.-feature .c-product-list_grid {
        width: 100vw;
        left: calc(50% - 50vw);
        display: block
    }
    .c-product-list.-feature .c-product-list_grid:after {
        content: "flickity";
        display: none;
        visibility: hidden
    }
}

@media(max-width:999px) {
    .c-product-list.-feature .c-product-list_item {
        width: calc(.41667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .41667) * var(--grid-gutter) + 0 * var(--grid-gutter));
        flex-shrink: 0;
        padding-right: var(--grid-gutter-half);
        padding-left: var(--grid-gutter-half)
    }
}

@media(max-width:699px) {
    .c-product-list.-feature .c-product-list_item {
        width: calc(.83333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .83333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

.c-product-list_link {
    z-index: 1;
    position: absolute;
    inset: 0;
    display: block
}

.c-product-list_image {
    overflow: hidden
}

.c-product-list_image .c-image_inner {
    transition: transform .3s cubic-bezier(.215, .61, .355, 1)
}

.c-product-list_link:hover~.c-product-list_image .c-image_inner,
.c-product-list_link:focus-within~.c-product-list_image .c-image_inner {
    transform: scale(1.05)
}

.c-product-list_info {
    margin-top: var(--grid-gutter)
}

@media(max-width:499px) {
    .c-product-list:not(.-feature) .c-product-list_info .o-dl_row {
        display: block
    }
    .c-product-list:not(.-feature) .c-product-list_info .o-dl_title {
        display: none
    }
}

.c-product-list_content {
    width: calc(calc(1/var(--product-list-columns)) * (100vw - 2 * var(--grid-margin, 0)) - (1 - calc(1/var(--product-list-columns))) * var(--grid-gutter) + 0 * var(--grid-gutter));
    margin-top: calc(10 * var(--vh, 1vh));
    margin-left: auto
}

.c-filters {
    --filters-width: calc(1 * (100vw - 2 * var(--grid-margin, 0)) - (1 - 1) * var(--grid-gutter) + 0 * var(--grid-gutter));
    display: flex;
    flex-direction: column;
    width: var(--filters-width);
    margin-left: var(--grid-margin)
}

@media(max-width:999px) {
    .c-filters {
        display: none;
        visibility: hidden
    }
}

@media(min-width:375px) {
    .c-filters {
        --filters-width: calc(.5 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .5) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:700px) {
    .c-filters {
        --filters-width: calc(.33333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .33333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:1000px) {
    .c-filters {
        --filters-width: calc(.16667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .16667) * var(--grid-gutter) + 0 * var(--grid-gutter));
        top: calc(var(--header-top) - var(--main-space-top));
        left: calc(.08333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .08333) * var(--grid-gutter) + 1 * var(--grid-gutter))
    }
}

.c-filters_link {
    display: flex;
    justify-content: space-between;
    overflow: hidden
}

.c-filters_link:hover .c-filters_count {
    transform: translate(0)
}

.c-filters_count {
    transform: translate(0, 100%);
    transition: transform .3s cubic-bezier(.215, .61, .355, 1)
}

.c-product {
    display: grid;
    grid-gap: var(--grid-gutter);
    margin-bottom: calc(20 * var(--vh, 1vh))
}

@media(min-width:1000px) {
    .c-product {
        grid-template-columns: calc(.33333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .33333) * var(--grid-gutter) + 0 * var(--grid-gutter)) calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(max-width:999px) {
    .c-product_header {
        margin-bottom: calc(5 * var(--vh, 1vh))
    }
}

@media(min-width:700px) and (max-width:999px) {
    .c-product_header {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between
    }
}

@media(min-width:1000px) {
    .c-product_header {
        position: sticky;
        top: var(--main-space-top);
        display: flex;
        flex-direction: column;
        min-height: calc(calc(100 * var(--vh, 1vh)) - var(--main-space-top));
        align-self: flex-start;
        padding-right: calc(.04167 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .04167) * var(--grid-gutter) + .5 * var(--grid-gutter));
        padding-bottom: var(--grid-gutter)
    }
}

@media(min-width:1200px) {
    .c-product_header {
        padding-right: calc(.08333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .08333) * var(--grid-gutter) + 1 * var(--grid-gutter))
    }
}

.c-product_dl {
    margin-top: 0
}

@media(max-width:999px) {
    .c-product_dl {
        --dl-columns: repeat(2, minmax(0, 1fr))
    }
}

.c-product_cover {
    width: 100%;
    height: calc(calc(100 * var(--vh, 1vh)) - var(--main-space-top) - 4.375rem - var(--grid-gutter))
}

@media(min-width:1000px) {
    .c-product_cover {
        display: none;
        visibility: hidden
    }
}

@media(min-width:500px) and (max-width:699px) {
    .c-product_heading {
        width: calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter));
        margin-right: auto;
        margin-left: auto
    }
}

@media(min-width:700px) and (max-width:999px) {
    .c-product_heading {
        width: calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:1000px) {
    .c-product_heading {
        margin-top: auto
    }
}

.c-product_name {
    margin-top: 1em;
    max-width: 6em
}

.c-product_price {
    margin-top: .5em
}

@media(max-width:699px) {
    .c-product_price {
        margin-bottom: 2em
    }
}

@media(min-width:700px) and (max-width:999px) {
    .c-product_price {
        margin-bottom: 0
    }
}

@media(min-width:1000px) {
    .c-product_price {
        margin-bottom: 2em
    }
}

@media(max-width:499px) {
    .c-product_button {
        width: 100%
    }
}

@media(min-width:500px) and (max-width:699px) {
    .c-product_button {
        width: calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter));
        margin-right: auto;
        margin-left: auto
    }
}

@media(min-width:700px) and (max-width:999px) {
    .c-product_button {
        width: calc(.33333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .33333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:1000px) {
    .c-product_button {
        width: 100%
    }
}

@media(max-width:699px) {
    .c-product_data {
        display: flex;
        flex-direction: column-reverse
    }
}

@media(min-width:700px) {
    .c-product_data {
        display: grid;
        grid-column-gap: var(--grid-gutter)
    }
}

@media(min-width:700px) and (max-width:999px) {
    .c-product_data {
        grid-template-columns: calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter)) calc(.33333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .33333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:1000px) {
    .c-product_data {
        grid-template-columns: calc(.41667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .41667) * var(--grid-gutter) + 0 * var(--grid-gutter)) calc(.25 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .25) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

.c-product_content {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: var(--grid-gutter);
    column-gap: var(--grid-gutter)
}

.c-product_info li {
    padding: .75em 1em;
    border-bottom: 1px solid currentColor
}

@media(max-width:699px) {
    .c-product_info {
        margin-bottom: calc(5 * var(--vh, 1vh))
    }
}

@media(min-width:500px) and (max-width:699px) {
    .c-product_info {
        width: calc(.66667 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .66667) * var(--grid-gutter) + 0 * var(--grid-gutter));
        margin-right: auto;
        margin-left: auto
    }
}

@media(min-width:700px) {
    .c-product_info li:first-child {
        padding-top: 0
    }
}

@media(max-width:999px) {
    .c-product_gallery {
        margin-top: calc(5 * var(--vh, 1vh))
    }
}

@media(min-width:1000px) {
    .c-product_gallery {
        margin-top: calc(2 * var(--grid-gutter))
    }
}

.c-product_image:not(:first-child) {
    margin-top: var(--grid-gutter)
}

.c-slider {
    --slider-content-width: 100%;
    width: 100%;
    margin-bottom: calc(15 * var(--vh, 1vh))
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider {
        height: calc(300 * var(--vh, 1vh))
    }
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider {
        --slider-content-width: calc(6 * var(--font-size-h2))
    }
}

.c-slider_wrapper {
    position: -webkit-sticky;
    position: sticky;
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_wrapper {
        position: -webkit-sticky;
        position: sticky;
        display: flex;
        width: 100%;
        height: calc(100 * var(--vh, 1vh));
        overflow: hidden;
        right: 0;
        margin: 50px 0 0 0;
        top:50px;
    }
}

@media(max-width:999px),
(orientation:portrait) {
    .c-slider_inner:after {
        content: "flickity";
        display: none;
        visibility: hidden
    }
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_inner {
        display: flex;
        /*height: calc(100% - 0.5 * var(--header-space-y));*/
        transform: translate(calc(-1 * var(--progress) * (100% - calc(1 * (100vw - 2 * var(--grid-margin, 0)) - (1 - 1) * var(--grid-gutter) + 0 * var(--grid-gutter)) - var(--grid-gutter))), 0)
    }
}

@media(max-width:999px),
(orientation:portrait) {
    .c-slider_item {
        display: flex;
        flex-direction: column-reverse;
        width: calc(.58333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .58333) * var(--grid-gutter) + 0 * var(--grid-gutter));
        padding-right: var(--grid-gutter-half);
        padding-left: var(--grid-gutter-half)
    }
}

@media(max-width:699px) {
    .c-slider_item {
        width: calc(.83333 * (100vw - 2 * var(--grid-margin, 0)) - (1 - .83333) * var(--grid-gutter) + 0 * var(--grid-gutter))
    }
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_item {
        flex-shrink: 0;
        width: calc(1 * (111vw - 2 * var(--grid-margin, 0)) - (1 - 1) * var(--grid-gutter) + 0 * var(--grid-gutter));
        height: 100%
    }
}

.c-slider_content {
    display: flex;
    flex-direction: column;
}

@media(max-width:999px),
(orientation:portrait) {
    .c-slider_content {
        flex-shrink: 0
    }
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_content {
        position: absolute;
        top: 0;
        right: 0;
        width: var(--slider-content-width);
        height: 100%;
        padding-right: var(--grid-gutter);
        padding-left: var(--grid-gutter);
        display: none;
    }
}

.c-slider_name {
    margin-top: auto;
    padding-top: .5em
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_name {
        padding-right: 20%
    }
}

.c-slider_price {
    padding-top: .5em
}

.c-slider_link {
    position: absolute;
    inset: 0;
    display: block
}

.c-slider_image {
    overflow: hidden
}

.c-slider_image .c-image_inner {
    transition: transform .3s cubic-bezier(.215, .61, .355, 1)
}

.c-slider_content:hover~.c-slider_image .c-image_inner,
.c-slider_content:focus-within~.c-slider_image .c-image_inner {
    transform: scale(1.05)
}

@media(max-width:999px),
(orientation:portrait) {
    .c-slider_image {
        width: 100%;
        height: 0;
        padding-top: calc(4/3 * 100%)
    }
    .c-slider_image .c-image {
        position: absolute;
        inset: 0
    }
}

@media(min-width:1000px) and (orientation:landscape) {
    .c-slider_image {
        /*width: calc(100% - var(--slider-content-width));*/
        width:100%;
        height: 100%;
        padding: 3rem;
    }
}

.c-form {
    --form-color: #221E1D
}

.c-form_inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1)
}

.c-form.is-submitting .c-form_inner {
    pointer-events: none;
    opacity: .5
}

.c-form.has-error .c-form_inner,
.c-form.is-submitted .c-form_inner {
    opacity: 0
}

.c-form_el {
    width: 100%;
    height: 100%;
    color: var(--form-color)
}

.c-form_el input {
    padding: .25em 1em;
    height: 100%;
    border: 2px solid var(--form-color);
    border-right: 0
}

.c-form_el input:focus+label,
.c-form_el input.is-filled+label {
    opacity: 0
}

.c-form_el label {
    position: absolute;
    top: 0;
    left: 1em;
    height: 100%;
    display: flex;
    align-items: center
}

.c-form_button {
    --button-color: #221E1D;
    padding-right: 1rem;
    padding-left: 1rem
}

.c-form_message {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s cubic-bezier(.215, .61, .355, 1) .3s
}

.c-form:not(.has-error) .c-form_message.-error,
.c-form:not(.is-submitted) .c-form_message.-success {
    opacity: 0;
    pointer-events: none;
    transition: none
}

.c-form_message.-success {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: var(--grid-gutter)
}

.c-form_message.-error {
    width: 100%;
    text-align: center
}

.c-image-zoom {
    z-index: 150;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.c-image-zoom:not(.is-open) {
    left: 200vw;
    pointer-events: none
}

.c-image-zoom_inner {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
    background-color: #c4c4c4
}

.c-image-zoom_image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%
}

.u-screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0
}