html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}
body.mobile {
  -webkit-text-size-adjust: none;
}
body.mobile input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body, html {
  min-width: 300px;
  overflow-x: clip;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.cf:before, .cf:after {
  content: ".";
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.cf:after {
  clear: both;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@font-face {
  font-family: "Fb Ezmel";
  src: url("../fonts/FbEzmel-Light.woff2") format("woff2"), url("../fonts/FbEzmel-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Fb Ezmel";
  src: url("../fonts/FbEzmel-Regular.woff2") format("woff2"), url("../fonts/FbEzmel-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Fb Ezmel";
  src: url("../fonts/FbEzmel-Bold.woff2") format("woff2"), url("../fonts/FbEzmel-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --color-primary: #7D2E3A;
  --color-primary-light: #D1A8A8;
  --color-primary-hover: #6a2731;
  --textcolor: #151616;
  --page-bg: #F5F5F5;
  --color-white: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-text-secondary: #7b8a9e;
  --bordercolor:#E2E4E5;
  --radius-pill: 999px;
  --radius-card: 10px;
  --radius-badge: 6px;
  --radius-content-card: 25px;
  --font-family: 'Fb Ezmel', sans-serif;
  --font-family-assistant: 'Assistant', sans-serif;
  --shadow-header: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-card: 0px 1.51px 4.53px rgba(0, 0, 0, 0.10), 0px 1.51px 3.02px rgba(0, 0, 0, 0.10);
  --hero-height: clamp(220px, 28.333vw, 850px);
  --hero-height-mobile: 230px;
  --header-height: var(--size-80);
  --category-bar-height: clamp(56.533px, 7.36vw, 220.833px);
  --size-4: clamp(2.13px, 0.278vw, 8.33px);
  --size-6: clamp(3.20px, 0.417vw, 12.50px);
  --size-8: clamp(4.27px, 0.556vw, 16.67px);
  --size-10: clamp(5.33px, 0.694vw, 20.83px);
  --size-11: clamp(5.87px, 0.764vw, 22.92px);
  --size-12: clamp(6.40px, 0.833vw, 25.00px);
  --size-14: clamp(7.47px, 0.972vw, 29.17px);
  --size-16: clamp(8.53px, 1.111vw, 33.33px);
  --size-18: clamp(9.60px, 1.25vw, 37.50px);
  --size-20: clamp(10.67px, 1.389vw, 41.67px);
  --size-21: clamp(11.20px, 1.458vw, 43.75px);
  --size-22: clamp(11.73px, 1.528vw, 45.83px);
  --size-23: clamp(12.27px, 1.597vw, 47.92px);
  --size-24: clamp(12.80px, 1.667vw, 50.00px);
  --size-26: clamp(13.87px, 1.819vw, 56.25px);
  --size-28: clamp(15.07px, 1.953vw, 58.33px);
  --size-30: clamp(16.13px, 2.097vw, 62.50px);
  --size-31: clamp(16.53px, 2.153vw, 64.58px);
  --size-32: clamp(17.07px, 2.222vw, 66.67px);
  --size-33: clamp(17.60px, 2.292vw, 68.75px);
  --size-34: clamp(18.27px, 2.396vw, 70.83px);
  --size-36: clamp(19.20px, 2.5vw, 75.00px);
  --size-38: clamp(20.27px, 2.639vw, 79.17px);
  --size-40: clamp(21.33px, 2.778vw, 83.33px);
  --size-42: clamp(22.67px, 2.917vw, 87.50px);
  --size-44: clamp(23.33px, 3.05vw, 91.67px);
  --size-46: clamp(24.27px, 3.181vw, 93.75px);
  --size-48: clamp(25.60px, 3.333vw, 100.00px);
  --size-50: clamp(26.67px, 3.472vw, 104.17px);
  --size-52: clamp(27.67px, 3.583vw, 108.33px);
  --size-53: clamp(28.27px, 3.681vw, 110.42px);
  --size-54: clamp(28.80px, 3.750vw, 102.08px);
  --size-56: clamp(29.87px, 3.875vw, 116.67px);
  --size-60: clamp(32.27px, 4.198vw, 125.00px);
  --size-64: clamp(34.13px, 4.444vw, 133.33px);
  --size-68: clamp(36.27px, 4.722vw, 141.67px);
  --size-75: clamp(40.00px, 5.208vw, 156.25px);
  --size-78: clamp(42.27px, 5.472vw, 158.33px);
  --size-80: clamp(42.67px, 5.556vw, 166.67px);
  --size-90: clamp(48.27px, 6.302vw, 187.50px);
  --size-110: clamp(59.27px, 7.698vw, 225.00px);
  --size-115: clamp(61.33px, 7.986vw, 239.58px);
  --size-200: clamp(109.33px, 14.319vw, 400.00px);
}

html, body {
  direction: rtl;
  font-family: var(--font-family);
  font-size: var(--size-16);
  color: var(--textcolor);
  background-color: var(--page-bg);
}

.page-template-template-about-us, .page-template-template-contact-us {
  background-color: #fff;
}
.page-template-template-about-us .page-main, .page-template-template-contact-us .page-main {
  background-color: #fff;
}

.icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
}

.icon-back {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-back.svg");
  mask-image: url("../images/icons/icon-back.svg");
}

.icon-beef {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-beef.svg");
  mask-image: url("../images/icons/icon-beef.svg");
}

.icon-close {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-close.svg");
  mask-image: url("../images/icons/icon-close.svg");
}

.icon-facebook {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-facebook.svg");
  mask-image: url("../images/icons/icon-facebook.svg");
}

.icon-fish {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-fish.svg");
  mask-image: url("../images/icons/icon-fish.svg");
}

.icon-hamburger-menu {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-hamburger-menu.svg");
  mask-image: url("../images/icons/icon-hamburger-menu.svg");
}

.icon-heart {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-heart.svg");
  mask-image: url("../images/icons/icon-heart.svg");
}

.icon-instagram {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-instagram.svg");
  mask-image: url("../images/icons/icon-instagram.svg");
}

.icon-meat {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-meat.svg");
  mask-image: url("../images/icons/icon-meat.svg");
}

.icon-phone {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-phone.svg");
  mask-image: url("../images/icons/icon-phone.svg");
}

.icon-phone2 {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-phone2.svg");
  mask-image: url("../images/icons/icon-phone2.svg");
}

.icon-poultry {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-poultry.svg");
  mask-image: url("../images/icons/icon-poultry.svg");
}

.icon-raw-materials {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-raw-materials.svg");
  mask-image: url("../images/icons/icon-raw-materials.svg");
}

.icon-restaurant {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-restaurant.svg");
  mask-image: url("../images/icons/icon-restaurant.svg");
}

.icon-search {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-search.svg");
  mask-image: url("../images/icons/icon-search.svg");
}

.icon-shop {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-shop.svg");
  mask-image: url("../images/icons/icon-shop.svg");
}

.icon-star {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-star.svg");
  mask-image: url("../images/icons/icon-star.svg");
}

.icon-whatsapp {
  display: inline-block;
  -webkit-mask-image: url("../images/icons/icon-whatsapp.svg");
  mask-image: url("../images/icons/icon-whatsapp.svg");
}

@media all and (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wrap {
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--size-64);
  box-sizing: border-box;
}

.category-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 99;
}

.header {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-header);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--size-50);
  margin: 0 auto;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.header__logo-img {
  height: var(--size-36);
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav .nav-list {
  display: flex;
  align-items: center;
  gap: var(--size-75);
  list-style: none;
}
.header__nav .nav-list > li a {
  color: var(--color-white);
  font-size: var(--size-20);
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header__nav .nav-list > li a:hover {
  opacity: 0.8;
}
.header__nav .nav-list > li.current-menu-item a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 89%;
  max-width: 360px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-overlay.is-open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav__header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 42px 50px;
  border-block-end: 1px solid var(--bordercolor);
  margin-bottom: 24px;
}
.mobile-nav__close {
  position: absolute;
  left: 20px;
  top: 24px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mobile-nav__close-icon {
  width: 24px;
  height: 24px;
  color: var(--textcolor);
}
.mobile-nav__logo-link {
  display: block;
}
.mobile-nav__logo {
  height: 42px;
  width: auto;
}
.mobile-nav__list {
  list-style: none;
  flex: 1;
  padding: 0;
}
.mobile-nav__list li:not(:last-child) {
  margin-bottom: 14px;
}
.mobile-nav__list li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  font-size: 18px;
  color: var(--textcolor);
  text-decoration: none;
}
.mobile-nav__list li > a .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-nav__footer {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.mobile-nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--textcolor);
}
.mobile-nav__social-link .icon {
  width: 24px;
  height: 24px;
}
.mobile-nav__legal {
  display: flex;
  gap: 20px;
}
.mobile-nav__legal a {
  font-size: 16px;
  color: var(--textcolor);
  font-family: var(--font-family-assistant);
}

.footer {
  background-color: var(--color-primary);
  text-align: center;
  padding: var(--size-36) 0 var(--size-42);
  font-family: var(--font-family-assistant);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: var(--size-28);
}
.footer__logo {
  height: var(--size-52);
  width: auto;
  display: block;
}
.footer__nav {
  margin-bottom: var(--size-28);
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--size-115);
  list-style: none;
  flex-wrap: wrap;
}
.footer__links li > a {
  color: var(--color-white);
  font-size: var(--size-22);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__links li > a:hover {
  text-decoration: underline;
}
.footer__copy {
  color: var(--color-text-muted);
  font-size: var(--size-18);
  font-weight: 400;
}

@media all and (max-width: 768px) {
  .wrap {
    padding: 0 18px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-8);
  font-family: var(--font-family);
  font-size: var(--size-18);
  font-weight: 400;
  border-radius: var(--radius-pill);
  padding: var(--size-12) var(--size-30);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn__icon {
  width: var(--size-20);
  height: var(--size-20);
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-section {
  padding: var(--size-110) 0;
  flex: 1;
}
.about-section__inner {
  display: flex;
  align-items: center;
  gap: var(--size-48);
}
.about-section__image-wrap {
  flex-shrink: 0;
  width: clamp(300px, 45.76vw, 659px);
}
.about-section__image-wrap--mobile {
  width: 100%;
  padding: 0;
}
.about-section__image {
  width: 100%;
  height: auto;
  display: block;
}
.about-section__content {
  flex: 1;
  min-width: 0;
}
.about-section__title {
  font-size: var(--size-42);
  font-weight: 400;
  color: var(--textcolor);
  margin-bottom: var(--size-30);
}
.about-section__text {
  font-size: var(--size-20);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.contact-section {
  padding: var(--size-60) 0;
  flex: 1;
}
.contact-section__card-wrapper {
  padding: 0 var(--size-60);
  margin-bottom: var(--size-110);
}
.contact-section__cols {
  display: flex;
  align-items: center;
  gap: var(--size-200);
}
.contact-section__col--store {
  flex-shrink: 0;
  width: clamp(260px, 27.99vw, 403px);
}
.contact-section__col--store .contact-info-row {
  justify-content: flex-start;
}
.contact-section__col--hours {
  flex-shrink: 0;
  width: clamp(260px, 28.82vw, 415px);
}
.contact-section__col-title {
  font-size: var(--size-24);
  font-weight: 400;
  margin-bottom: var(--size-16);
}

.contact-info-card {
  background-color: var(--page-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: var(--size-20);
}
.contact-info-card__cta {
  padding: var(--size-10) 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--size-16) 0;
  gap: var(--size-10);
}
.contact-info-row:not(:first-child) {
  border-top: 1px solid var(--bordercolor);
}
.contact-info-row:last-of-type {
  border-bottom: none;
}
.contact-info-row__text {
  display: flex;
  flex-direction: column;
  gap: var(--size-4);
  text-align: right;
}
.contact-info-row__label {
  font-size: var(--size-18);
  font-weight: 300;
}
.contact-info-row__value {
  font-size: var(--size-18);
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  color: var(--textcolor);
}
.contact-info-row__value--phone {
  direction: ltr;
}
.contact-info-row__icon {
  width: var(--size-24);
  height: var(--size-24);
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--size-12) 0;
  gap: var(--size-8);
  border-bottom: 1px solid var(--bordercolor);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row__label {
  font-size: var(--size-18);
}
.hours-row__time {
  font-size: var(--size-22);
  direction: ltr;
  white-space: nowrap;
}

.contact-cta-btn {
  display: block;
  width: 100%;
  padding: var(--size-14) var(--size-20);
  background-color: var(--textcolor);
  border-radius: var(--radius-card);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--size-18);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.3px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}
.contact-cta-btn:hover {
  background-color: #2d2d2d;
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-90);
  direction: ltr;
}
.contact-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--textcolor);
}
.contact-social__link:hover {
  opacity: 0.75;
  transform: scale(1.1);
}
.contact-social__icon {
  width: var(--size-46);
  height: var(--size-46);
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-back {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 34px;
  left: 30px;
  z-index: 101;
  text-decoration: none;
  color: var(--textcolor);
}
.contact-back__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.admin-bar .contact-back {
  top: 80px;
}

.hero {
  height: var(--hero-height);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 20, 20, 0.35);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--size-20);
  width: 100%;
}
.hero__title {
  font-size: var(--size-53);
  margin-bottom: var(--size-10);
}
.hero__subtitle {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--size-16);
  font-weight: 300;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
}
.category-bar__inner {
  display: flex;
  align-items: center;
  height: var(--category-bar-height);
  padding: 0 var(--size-50);
  margin: 0 auto;
  gap: var(--size-16);
}
.category-bar__search {
  background: transparent;
  border: none;
  padding: var(--size-6);
  flex-shrink: 0;
}
.category-bar__search-icon {
  width: var(--size-18);
  height: var(--size-18);
}

.category-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  gap: var(--size-18);
}

.category-item {
  display: flex;
  align-items: center;
  gap: var(--size-10);
  cursor: pointer;
  font-size: var(--size-30);
  font-weight: 400;
  white-space: nowrap;
  padding: var(--size-8) var(--size-16);
  border-radius: var(--radius-pill);
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.category-item__icon {
  width: var(--size-34);
  height: var(--size-34);
  flex-shrink: 0;
}
.category-item:hover:not(.category-item--active) {
  opacity: 0.7;
}
.category-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.category-item--active {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--size-12) var(--size-26);
}
.category-item--active .category-item__icon {
  color: var(--color-primary-light);
}

.is-scrolled .category-bar {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.products {
  padding: var(--size-90) 0 var(--size-110);
  background-color: var(--page-bg);
}
.products__inner {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--size-22);
}

.products-empty {
  text-align: center;
  padding: var(--size-60) var(--size-20);
  font-size: var(--size-24);
  color: #888;
  grid-column: 1/span 5;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.13), 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 245/216;
  overflow: hidden;
  background-color: #1a2a3a;
}
.product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.03);
}
.product-card__badges {
  position: absolute;
  top: var(--size-10);
  right: var(--size-10);
  left: var(--size-10);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--size-4);
  align-items: flex-start;
}
.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--size-4);
  color: var(--color-white);
  font-size: var(--size-18);
  font-weight: 400;
  padding: var(--size-6) var(--size-10) var(--size-6) var(--size-8);
  border-radius: var(--radius-badge);
  white-space: nowrap;
}
.product-card__badge--category {
  background-color: var(--color-primary);
}
.product-card__badge--tag {
  background-color: #959292;
}
.product-card__badge .badge__icon {
  width: var(--size-21);
  height: var(--size-21);
  flex-shrink: 0;
}
.product-card__info {
  padding: var(--size-14) var(--size-16);
  text-align: center;
  background-color: var(--color-white);
  min-height: var(--size-78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-4);
  font-size: var(--size-21);
}
.product-card__name {
  font-weight: 400;
  line-height: 1.3;
}
.product-card__subtitle {
  font-weight: 300;
}

.text-page {
  padding: var(--size-48) 0 var(--size-60);
}
.text-page__inner {
  max-width: 60%;
}

.text-content {
  background-color: var(--color-white);
  border-radius: var(--radius-content-card);
  padding: var(--size-48) var(--size-60);
}
.text-content__title {
  font-size: var(--size-32);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--size-28);
  padding-bottom: var(--size-16);
  border-bottom: 1px solid var(--bordercolor);
}
.text-content__body {
  font-size: var(--size-18);
  line-height: 1.8;
  color: var(--textcolor);
}
.text-content__body h2 {
  font-size: var(--size-24);
  font-weight: 700;
  margin-top: var(--size-36);
  margin-bottom: var(--size-14);
  color: var(--textcolor);
}
.text-content__body h3 {
  font-size: var(--size-20);
  font-weight: 700;
  margin-top: var(--size-28);
  margin-bottom: var(--size-10);
}
.text-content__body p {
  margin-bottom: var(--size-16);
}
.text-content__body ul, .text-content__body ol {
  margin-bottom: var(--size-16);
  padding-inline-start: var(--size-24);
}
.text-content__body ul li, .text-content__body ol li {
  margin-bottom: var(--size-8);
}
.text-content__body a {
  color: var(--color-primary);
  text-decoration: underline;
}
.text-content__body a:hover {
  color: var(--color-primary-hover);
}
.text-content__body strong {
  font-weight: 700;
}
.text-content__body hr {
  border: none;
  border-top: 1px solid var(--bordercolor);
  margin: var(--size-28) 0;
}

@media all and (max-width: 768px) {
  .header {
    height: 92px;
    background-color: transparent;
    box-shadow: none;
  }
  .header__logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__logo-img {
    height: 47px;
  }
  .header .btn-menu {
    background: #EBEBEB;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .btn-menu__icon {
    width: 14px;
    height: 14px;
    color: var(--textcolor);
  }
  body.is-scrolled .header {
    background-color: var(--color-primary);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  body.is-scrolled .header .header__logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.is-scrolled .header .btn-menu__icon {
    color: var(--color-primary);
  }
  .category-bar {
    top: 92px;
  }
  .hero {
    height: calc(var(--hero-height-mobile) + 92px);
    margin-top: -92px;
    background-position: center center;
    align-items: center;
    justify-content: center;
  }
  .hero__mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 2;
    height: 100%;
    width: 100%;
  }
  .herohero__mobile-logo {
    margin-top: -20px;
  }
  .hero__mobile-logo img {
    height: 47px;
    width: auto;
  }
  .hero-text {
    background-color: var(--color-white);
    text-align: center;
    padding: 14px 16px 28px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
  }
  .hero-text::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    width: 180vw;
    height: 100vw;
    border-radius: 50%;
    background-color: var(--color-white);
    z-index: -1;
  }
  .hero-text__title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .hero-text__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 100%;
    color: var(--color-text-secondary);
  }
  .main-content {
    position: relative;
    z-index: 2;
  }
  .category-bar {
    border-bottom: none;
  }
  .category-bar__inner {
    height: auto;
    padding: 12px 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
  }
  .category-bar__inner::-webkit-scrollbar {
    display: none;
  }
  .category-list {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .category-item {
    font-size: 16px;
    gap: 6px;
    padding: 6px 10px;
  }
  .category-item__icon {
    width: 18px;
    height: 18px;
  }
  .category-item--active {
    padding: 8px 16px;
    gap: 6px;
    font-size: 16px;
  }
  .products {
    padding: 40px 0;
    background-color: #fff;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-card__badges {
    top: 5px;
    right: 5px;
    left: 5px;
    gap: 3px;
  }
  .product-card__badge {
    font-size: 12px;
    padding: 4px 6px;
    gap: 2px;
  }
  .product-card__badge .badge__icon {
    width: 12px;
    height: 12px;
  }
  .product-card__info {
    padding: 10px;
    min-height: 52px;
  }
  .product-card__name, .product-card__subtitle {
    font-size: 14px;
  }
  .contact-section {
    padding: 24px 0 80px;
  }
  .contact-section__card-wrapper {
    border-radius: var(--radius-card);
    padding: 20px 0;
    margin-bottom: 10px;
  }
  .contact-section__cols {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .contact-section__col--store, .contact-section__col--hours {
    width: 100%;
  }
  .contact-section__col-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contact-info-card {
    padding: 16px;
  }
  .contact-info-row {
    padding: 14px 0;
  }
  .contact-info-row__label, .contact-info-row__value {
    font-size: 16px;
  }
  .contact-info-row__icon {
    width: 24px;
    height: 24px;
  }
  .hours-row {
    padding: 12px 0;
  }
  .hours-row__label, .hours-row__value {
    font-size: 16px;
  }
  .hours-row__time {
    font-size: 18px;
  }
  .contact-social {
    gap: 62px;
    margin-bottom: 60px;
  }
  .contact-social__icon {
    width: 32px;
    height: 32px;
  }
  .contact-mobile-cta .contact-cta-btn {
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 12px;
  }
  .about-section {
    padding: 40px 32px;
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }
  .about-section__inner {
    flex-direction: column;
    gap: 28px;
    padding: 0;
  }
  .about-section__title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
  .about-section__text {
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
  }
  .about-section__image-wrap--mobile {
    width: 100%;
    margin-top: 8px;
  }
  .btn {
    font-size: 16px;
  }
  .footer {
    padding: 40px 0 32px;
    position: relative;
    z-index: 2;
  }
  .footer__logo-link {
    margin-bottom: 29px;
  }
  .footer__logo {
    height: 51px;
  }
  .footer__nav {
    margin-bottom: 37px;
  }
  .footer__links {
    gap: 19px;
  }
  .footer__links li > a {
    font-size: 16px;
  }
  .footer__copy {
    font-size: 14px;
  }
  .products-empty {
    font-size: 24px;
    grid-column: 1/span 2;
  }
  .text-page {
    padding: 24px 0 40px;
  }
  .text-page__inner {
    max-width: 100%;
  }
  .text-content {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .text-content__title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .text-content__body {
    font-size: 16px;
    line-height: 1.7;
  }
  .text-content__body h2 {
    font-size: 18px;
    margin-top: 24px;
  }
  .text-content__body h3 {
    font-size: 16px;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */