/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss ***!
  \******************************************************************************************************************************************************/
/* By Athlon Front-End Team */
/* Core tools */
/* Pixel to rem */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

/* Core variables */
/**
 * Variables
*/
/*
 * Responsive
 */
/*
 * VARS
 */
/* Typography */
/**
 * Colors
 */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-green-drak: #3a371e;
  --color-green: #88854b;
  --color-green-light: #cac797;
  --color-orange: #ea894e;
  --color-orange-light: #e39464;
}

/* CSS Reset */
/*
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,
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,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
*/

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type='search'] {
  -webkit-appearance: textfield;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* CSS print */
/**
 * Print Stylesheet
*/
@media print {
  @page {
    margin: 1cm;
  }
  a {
    page-break-inside: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }

  table,
  pre {
    page-break-inside: avoid;
  }

  ul,
  ol,
  dl {
    page-break-before: avoid;
  }
}
/* Fonts */
/* Grid */
/*
 * WRAPPER
 */
.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 0px;
  }
}
.wrapper--full {
  max-width: none;
  padding: 0;
}

/*
 * ROW
 */
.row {
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.row--h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.row--h-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.row--h-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.row--h-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.row--v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row--v-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.row--v-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.row--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row--nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*
 * COLS
 */
.col-1 {
  padding-left: 12px;
  padding-right: 12px;
  width: 8.3333333333%;
}
.ie .col-1 {
  width: 8%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}
.ie .offset-1 {
  margin-left: 8%;
}

.col-2 {
  padding-left: 12px;
  padding-right: 12px;
  width: 16.6666666667%;
}
.ie .col-2 {
  width: 17%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}
.ie .offset-2 {
  margin-left: 17%;
}

.col-3 {
  padding-left: 12px;
  padding-right: 12px;
  width: 25%;
}
.ie .col-3 {
  width: 25%;
}

.offset-3 {
  margin-left: 25%;
}
.ie .offset-3 {
  margin-left: 25%;
}

.col-4 {
  padding-left: 12px;
  padding-right: 12px;
  width: 33.3333333333%;
}
.ie .col-4 {
  width: 33%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}
.ie .offset-4 {
  margin-left: 33%;
}

.col-5 {
  padding-left: 12px;
  padding-right: 12px;
  width: 41.6666666667%;
}
.ie .col-5 {
  width: 42%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}
.ie .offset-5 {
  margin-left: 42%;
}

.col-6 {
  padding-left: 12px;
  padding-right: 12px;
  width: 50%;
}
.ie .col-6 {
  width: 50%;
}

.offset-6 {
  margin-left: 50%;
}
.ie .offset-6 {
  margin-left: 50%;
}

.col-7 {
  padding-left: 12px;
  padding-right: 12px;
  width: 58.3333333333%;
}
.ie .col-7 {
  width: 58%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}
.ie .offset-7 {
  margin-left: 58%;
}

.col-8 {
  padding-left: 12px;
  padding-right: 12px;
  width: 66.6666666667%;
}
.ie .col-8 {
  width: 67%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}
.ie .offset-8 {
  margin-left: 67%;
}

.col-9 {
  padding-left: 12px;
  padding-right: 12px;
  width: 75%;
}
.ie .col-9 {
  width: 75%;
}

.offset-9 {
  margin-left: 75%;
}
.ie .offset-9 {
  margin-left: 75%;
}

.col-10 {
  padding-left: 12px;
  padding-right: 12px;
  width: 83.3333333333%;
}
.ie .col-10 {
  width: 83%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}
.ie .offset-10 {
  margin-left: 83%;
}

.col-11 {
  padding-left: 12px;
  padding-right: 12px;
  width: 91.6666666667%;
}
.ie .col-11 {
  width: 92%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}
.ie .offset-11 {
  margin-left: 92%;
}

.col-12 {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.ie .col-12 {
  width: 100%;
}

.offset-12 {
  margin-left: 100%;
}
.ie .offset-12 {
  margin-left: 100%;
}

@media screen and (max-width: 1280px) {
  .col-desktop-1 {
    width: 8.3333333333%;
  }
  .ie .col-desktop-1 {
    width: 8%;
  }

  .offset-desktop-1 {
    margin-left: 8.3333333333%;
  }
  .ie .offset-desktop-1 {
    margin-left: 8%;
  }

  .col-desktop-2 {
    width: 16.6666666667%;
  }
  .ie .col-desktop-2 {
    width: 17%;
  }

  .offset-desktop-2 {
    margin-left: 16.6666666667%;
  }
  .ie .offset-desktop-2 {
    margin-left: 17%;
  }

  .col-desktop-3 {
    width: 25%;
  }
  .ie .col-desktop-3 {
    width: 25%;
  }

  .offset-desktop-3 {
    margin-left: 25%;
  }
  .ie .offset-desktop-3 {
    margin-left: 25%;
  }

  .col-desktop-4 {
    width: 33.3333333333%;
  }
  .ie .col-desktop-4 {
    width: 33%;
  }

  .offset-desktop-4 {
    margin-left: 33.3333333333%;
  }
  .ie .offset-desktop-4 {
    margin-left: 33%;
  }

  .col-desktop-5 {
    width: 41.6666666667%;
  }
  .ie .col-desktop-5 {
    width: 42%;
  }

  .offset-desktop-5 {
    margin-left: 41.6666666667%;
  }
  .ie .offset-desktop-5 {
    margin-left: 42%;
  }

  .col-desktop-6 {
    width: 50%;
  }
  .ie .col-desktop-6 {
    width: 50%;
  }

  .offset-desktop-6 {
    margin-left: 50%;
  }
  .ie .offset-desktop-6 {
    margin-left: 50%;
  }

  .col-desktop-7 {
    width: 58.3333333333%;
  }
  .ie .col-desktop-7 {
    width: 58%;
  }

  .offset-desktop-7 {
    margin-left: 58.3333333333%;
  }
  .ie .offset-desktop-7 {
    margin-left: 58%;
  }

  .col-desktop-8 {
    width: 66.6666666667%;
  }
  .ie .col-desktop-8 {
    width: 67%;
  }

  .offset-desktop-8 {
    margin-left: 66.6666666667%;
  }
  .ie .offset-desktop-8 {
    margin-left: 67%;
  }

  .col-desktop-9 {
    width: 75%;
  }
  .ie .col-desktop-9 {
    width: 75%;
  }

  .offset-desktop-9 {
    margin-left: 75%;
  }
  .ie .offset-desktop-9 {
    margin-left: 75%;
  }

  .col-desktop-10 {
    width: 83.3333333333%;
  }
  .ie .col-desktop-10 {
    width: 83%;
  }

  .offset-desktop-10 {
    margin-left: 83.3333333333%;
  }
  .ie .offset-desktop-10 {
    margin-left: 83%;
  }

  .col-desktop-11 {
    width: 91.6666666667%;
  }
  .ie .col-desktop-11 {
    width: 92%;
  }

  .offset-desktop-11 {
    margin-left: 91.6666666667%;
  }
  .ie .offset-desktop-11 {
    margin-left: 92%;
  }

  .col-desktop-12 {
    width: 100%;
  }
  .ie .col-desktop-12 {
    width: 100%;
  }

  .offset-desktop-12 {
    margin-left: 100%;
  }
  .ie .offset-desktop-12 {
    margin-left: 100%;
  }

  .offset-desktop-0 {
    margin-left: 0;
  }
}
@media screen and (max-width: 1190px) {
  .col-tabletH-1 {
    width: 8.3333333333%;
  }
  .ie .col-tabletH-1 {
    width: 8%;
  }

  .offset-tabletH-1 {
    margin-left: 8.3333333333%;
  }
  .ie .offset-tabletH-1 {
    margin-left: 8%;
  }

  .col-tabletH-2 {
    width: 16.6666666667%;
  }
  .ie .col-tabletH-2 {
    width: 17%;
  }

  .offset-tabletH-2 {
    margin-left: 16.6666666667%;
  }
  .ie .offset-tabletH-2 {
    margin-left: 17%;
  }

  .col-tabletH-3 {
    width: 25%;
  }
  .ie .col-tabletH-3 {
    width: 25%;
  }

  .offset-tabletH-3 {
    margin-left: 25%;
  }
  .ie .offset-tabletH-3 {
    margin-left: 25%;
  }

  .col-tabletH-4 {
    width: 33.3333333333%;
  }
  .ie .col-tabletH-4 {
    width: 33%;
  }

  .offset-tabletH-4 {
    margin-left: 33.3333333333%;
  }
  .ie .offset-tabletH-4 {
    margin-left: 33%;
  }

  .col-tabletH-5 {
    width: 41.6666666667%;
  }
  .ie .col-tabletH-5 {
    width: 42%;
  }

  .offset-tabletH-5 {
    margin-left: 41.6666666667%;
  }
  .ie .offset-tabletH-5 {
    margin-left: 42%;
  }

  .col-tabletH-6 {
    width: 50%;
  }
  .ie .col-tabletH-6 {
    width: 50%;
  }

  .offset-tabletH-6 {
    margin-left: 50%;
  }
  .ie .offset-tabletH-6 {
    margin-left: 50%;
  }

  .col-tabletH-7 {
    width: 58.3333333333%;
  }
  .ie .col-tabletH-7 {
    width: 58%;
  }

  .offset-tabletH-7 {
    margin-left: 58.3333333333%;
  }
  .ie .offset-tabletH-7 {
    margin-left: 58%;
  }

  .col-tabletH-8 {
    width: 66.6666666667%;
  }
  .ie .col-tabletH-8 {
    width: 67%;
  }

  .offset-tabletH-8 {
    margin-left: 66.6666666667%;
  }
  .ie .offset-tabletH-8 {
    margin-left: 67%;
  }

  .col-tabletH-9 {
    width: 75%;
  }
  .ie .col-tabletH-9 {
    width: 75%;
  }

  .offset-tabletH-9 {
    margin-left: 75%;
  }
  .ie .offset-tabletH-9 {
    margin-left: 75%;
  }

  .col-tabletH-10 {
    width: 83.3333333333%;
  }
  .ie .col-tabletH-10 {
    width: 83%;
  }

  .offset-tabletH-10 {
    margin-left: 83.3333333333%;
  }
  .ie .offset-tabletH-10 {
    margin-left: 83%;
  }

  .col-tabletH-11 {
    width: 91.6666666667%;
  }
  .ie .col-tabletH-11 {
    width: 92%;
  }

  .offset-tabletH-11 {
    margin-left: 91.6666666667%;
  }
  .ie .offset-tabletH-11 {
    margin-left: 92%;
  }

  .col-tabletH-12 {
    width: 100%;
  }
  .ie .col-tabletH-12 {
    width: 100%;
  }

  .offset-tabletH-12 {
    margin-left: 100%;
  }
  .ie .offset-tabletH-12 {
    margin-left: 100%;
  }

  .offset-tabletH-0 {
    margin-left: 0;
  }
}
@media screen and (max-width: 979px) {
  .col-tablet-1 {
    width: 8.3333333333%;
  }
  .ie .col-tablet-1 {
    width: 8%;
  }

  .offset-tablet-1 {
    margin-left: 8.3333333333%;
  }
  .ie .offset-tablet-1 {
    margin-left: 8%;
  }

  .col-tablet-2 {
    width: 16.6666666667%;
  }
  .ie .col-tablet-2 {
    width: 17%;
  }

  .offset-tablet-2 {
    margin-left: 16.6666666667%;
  }
  .ie .offset-tablet-2 {
    margin-left: 17%;
  }

  .col-tablet-3 {
    width: 25%;
  }
  .ie .col-tablet-3 {
    width: 25%;
  }

  .offset-tablet-3 {
    margin-left: 25%;
  }
  .ie .offset-tablet-3 {
    margin-left: 25%;
  }

  .col-tablet-4 {
    width: 33.3333333333%;
  }
  .ie .col-tablet-4 {
    width: 33%;
  }

  .offset-tablet-4 {
    margin-left: 33.3333333333%;
  }
  .ie .offset-tablet-4 {
    margin-left: 33%;
  }

  .col-tablet-5 {
    width: 41.6666666667%;
  }
  .ie .col-tablet-5 {
    width: 42%;
  }

  .offset-tablet-5 {
    margin-left: 41.6666666667%;
  }
  .ie .offset-tablet-5 {
    margin-left: 42%;
  }

  .col-tablet-6 {
    width: 50%;
  }
  .ie .col-tablet-6 {
    width: 50%;
  }

  .offset-tablet-6 {
    margin-left: 50%;
  }
  .ie .offset-tablet-6 {
    margin-left: 50%;
  }

  .col-tablet-7 {
    width: 58.3333333333%;
  }
  .ie .col-tablet-7 {
    width: 58%;
  }

  .offset-tablet-7 {
    margin-left: 58.3333333333%;
  }
  .ie .offset-tablet-7 {
    margin-left: 58%;
  }

  .col-tablet-8 {
    width: 66.6666666667%;
  }
  .ie .col-tablet-8 {
    width: 67%;
  }

  .offset-tablet-8 {
    margin-left: 66.6666666667%;
  }
  .ie .offset-tablet-8 {
    margin-left: 67%;
  }

  .col-tablet-9 {
    width: 75%;
  }
  .ie .col-tablet-9 {
    width: 75%;
  }

  .offset-tablet-9 {
    margin-left: 75%;
  }
  .ie .offset-tablet-9 {
    margin-left: 75%;
  }

  .col-tablet-10 {
    width: 83.3333333333%;
  }
  .ie .col-tablet-10 {
    width: 83%;
  }

  .offset-tablet-10 {
    margin-left: 83.3333333333%;
  }
  .ie .offset-tablet-10 {
    margin-left: 83%;
  }

  .col-tablet-11 {
    width: 91.6666666667%;
  }
  .ie .col-tablet-11 {
    width: 92%;
  }

  .offset-tablet-11 {
    margin-left: 91.6666666667%;
  }
  .ie .offset-tablet-11 {
    margin-left: 92%;
  }

  .col-tablet-12 {
    width: 100%;
  }
  .ie .col-tablet-12 {
    width: 100%;
  }

  .offset-tablet-12 {
    margin-left: 100%;
  }
  .ie .offset-tablet-12 {
    margin-left: 100%;
  }

  .offset-tablet-0 {
    margin-left: 0;
  }
}
@media screen and (max-width: 830px) {
  .col-tabletW-1 {
    width: 8.3333333333%;
  }
  .ie .col-tabletW-1 {
    width: 8%;
  }

  .offset-tabletW-1 {
    margin-left: 8.3333333333%;
  }
  .ie .offset-tabletW-1 {
    margin-left: 8%;
  }

  .col-tabletW-2 {
    width: 16.6666666667%;
  }
  .ie .col-tabletW-2 {
    width: 17%;
  }

  .offset-tabletW-2 {
    margin-left: 16.6666666667%;
  }
  .ie .offset-tabletW-2 {
    margin-left: 17%;
  }

  .col-tabletW-3 {
    width: 25%;
  }
  .ie .col-tabletW-3 {
    width: 25%;
  }

  .offset-tabletW-3 {
    margin-left: 25%;
  }
  .ie .offset-tabletW-3 {
    margin-left: 25%;
  }

  .col-tabletW-4 {
    width: 33.3333333333%;
  }
  .ie .col-tabletW-4 {
    width: 33%;
  }

  .offset-tabletW-4 {
    margin-left: 33.3333333333%;
  }
  .ie .offset-tabletW-4 {
    margin-left: 33%;
  }

  .col-tabletW-5 {
    width: 41.6666666667%;
  }
  .ie .col-tabletW-5 {
    width: 42%;
  }

  .offset-tabletW-5 {
    margin-left: 41.6666666667%;
  }
  .ie .offset-tabletW-5 {
    margin-left: 42%;
  }

  .col-tabletW-6 {
    width: 50%;
  }
  .ie .col-tabletW-6 {
    width: 50%;
  }

  .offset-tabletW-6 {
    margin-left: 50%;
  }
  .ie .offset-tabletW-6 {
    margin-left: 50%;
  }

  .col-tabletW-7 {
    width: 58.3333333333%;
  }
  .ie .col-tabletW-7 {
    width: 58%;
  }

  .offset-tabletW-7 {
    margin-left: 58.3333333333%;
  }
  .ie .offset-tabletW-7 {
    margin-left: 58%;
  }

  .col-tabletW-8 {
    width: 66.6666666667%;
  }
  .ie .col-tabletW-8 {
    width: 67%;
  }

  .offset-tabletW-8 {
    margin-left: 66.6666666667%;
  }
  .ie .offset-tabletW-8 {
    margin-left: 67%;
  }

  .col-tabletW-9 {
    width: 75%;
  }
  .ie .col-tabletW-9 {
    width: 75%;
  }

  .offset-tabletW-9 {
    margin-left: 75%;
  }
  .ie .offset-tabletW-9 {
    margin-left: 75%;
  }

  .col-tabletW-10 {
    width: 83.3333333333%;
  }
  .ie .col-tabletW-10 {
    width: 83%;
  }

  .offset-tabletW-10 {
    margin-left: 83.3333333333%;
  }
  .ie .offset-tabletW-10 {
    margin-left: 83%;
  }

  .col-tabletW-11 {
    width: 91.6666666667%;
  }
  .ie .col-tabletW-11 {
    width: 92%;
  }

  .offset-tabletW-11 {
    margin-left: 91.6666666667%;
  }
  .ie .offset-tabletW-11 {
    margin-left: 92%;
  }

  .col-tabletW-12 {
    width: 100%;
  }
  .ie .col-tabletW-12 {
    width: 100%;
  }

  .offset-tabletW-12 {
    margin-left: 100%;
  }
  .ie .offset-tabletW-12 {
    margin-left: 100%;
  }

  .offset-tabletW-0 {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .col-mobile-1 {
    width: 8.3333333333%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-1 {
    width: 8%;
  }

  .offset-mobile-1 {
    margin-left: 8.3333333333%;
  }
  .ie .offset-mobile-1 {
    margin-left: 8%;
  }

  .col-mobile-2 {
    width: 16.6666666667%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-2 {
    width: 17%;
  }

  .offset-mobile-2 {
    margin-left: 16.6666666667%;
  }
  .ie .offset-mobile-2 {
    margin-left: 17%;
  }

  .col-mobile-3 {
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-3 {
    width: 25%;
  }

  .offset-mobile-3 {
    margin-left: 25%;
  }
  .ie .offset-mobile-3 {
    margin-left: 25%;
  }

  .col-mobile-4 {
    width: 33.3333333333%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-4 {
    width: 33%;
  }

  .offset-mobile-4 {
    margin-left: 33.3333333333%;
  }
  .ie .offset-mobile-4 {
    margin-left: 33%;
  }

  .col-mobile-5 {
    width: 41.6666666667%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-5 {
    width: 42%;
  }

  .offset-mobile-5 {
    margin-left: 41.6666666667%;
  }
  .ie .offset-mobile-5 {
    margin-left: 42%;
  }

  .col-mobile-6 {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-6 {
    width: 50%;
  }

  .offset-mobile-6 {
    margin-left: 50%;
  }
  .ie .offset-mobile-6 {
    margin-left: 50%;
  }

  .col-mobile-7 {
    width: 58.3333333333%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-7 {
    width: 58%;
  }

  .offset-mobile-7 {
    margin-left: 58.3333333333%;
  }
  .ie .offset-mobile-7 {
    margin-left: 58%;
  }

  .col-mobile-8 {
    width: 66.6666666667%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-8 {
    width: 67%;
  }

  .offset-mobile-8 {
    margin-left: 66.6666666667%;
  }
  .ie .offset-mobile-8 {
    margin-left: 67%;
  }

  .col-mobile-9 {
    width: 75%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-9 {
    width: 75%;
  }

  .offset-mobile-9 {
    margin-left: 75%;
  }
  .ie .offset-mobile-9 {
    margin-left: 75%;
  }

  .col-mobile-10 {
    width: 83.3333333333%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-10 {
    width: 83%;
  }

  .offset-mobile-10 {
    margin-left: 83.3333333333%;
  }
  .ie .offset-mobile-10 {
    margin-left: 83%;
  }

  .col-mobile-11 {
    width: 91.6666666667%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-11 {
    width: 92%;
  }

  .offset-mobile-11 {
    margin-left: 91.6666666667%;
  }
  .ie .offset-mobile-11 {
    margin-left: 92%;
  }

  .col-mobile-12 {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .ie .col-mobile-12 {
    width: 100%;
  }

  .offset-mobile-12 {
    margin-left: 100%;
  }
  .ie .offset-mobile-12 {
    margin-left: 100%;
  }

  .offset-mobile-0 {
    margin-left: 0;
  }
}
/* Mixins, helpers and functions */
/**
 * Helper mixins
*/
/* Vendor */
/* Components */
/* Browser specific styles */
/**
 * Dirty hacks, yes internet explorer, we are looking at you
*/
/* Component */
.header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 77px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 830px) {
  .header {
    position: fixed;
    top: 0;
  }
}
.header__logo-mobile {
  display: none;
}
@media screen and (max-width: 830px) {
  .header__logo-mobile {
    display: block;
    position: absolute;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 12;
  }
  .header__logo-mobile img {
    height: 35px;
  }
}
.header__toggle-menu {
  width: 68px;
  height: 52px;
  position: absolute;
  display: none;
  top: 12px;
  right: 12px;
  z-index: 13;
}
@media screen and (max-width: 830px) {
  .header__toggle-menu {
    display: block;
  }
  .header__toggle-menu:after,
  .header__toggle-menu:before {
    content: '';
    position: absolute;
    right: 20px;
    height: 3px;
    width: 28px;
    background-color: var(--color-green-light);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .header__toggle-menu:before {
    -webkit-transform: scaleX(1) rotateZ(0deg);
    transform: scaleX(1) rotateZ(0deg);
    top: 20px;
  }
  .is-open .header__toggle-menu:before {
    -webkit-transform: scaleX(1) translateX(3px) rotateZ(-37deg);
    transform: scaleX(1) translateX(3px) rotateZ(-37deg);
  }
  .header__toggle-menu:after {
    -webkit-transform-origin: right;
    transform-origin: right;
    bottom: 20px;
    -webkit-transform: scaleX(0.666) rotateZ(0deg);
    transform: scaleX(0.666) rotateZ(0deg);
  }
  .is-open .header__toggle-menu:after {
    -webkit-transform: scaleX(1) translateX(1px) rotateZ(36deg);
    transform: scaleX(1) translateX(1px) rotateZ(36deg);
  }
}
.header__texture {
  display: none;
}
@media screen and (max-width: 830px) {
  .header__texture {
    display: block;
    mix-blend-mode: overlay;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: unset;
    height: 100%;
    z-index: -1;
  }
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu-wrapper {
  width: 100%;
}
@media screen and (max-width: 830px) {
  .header__menu-wrapper::after {
    content: '';
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 77px;
    z-index: 11;
  }
}
@media screen and (max-width: 480px) {
  .header {
    width: 100vw;
    overflow: hidden;
  }
}
@media screen and (max-width: 830px) {
  .header__container {
    z-index: 10;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 30px 107px;
    background-color: var(--color-green-light);
    -webkit-transform: translateY(calc(-100% - 77px));
    transform: translateY(calc(-100% - 77px));
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }
  .is-open .header__container {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.c-menu-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 830px) {
  .c-menu-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.c-menu-main__link {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  color: var(--color-black);
  padding: 30px 16px;
  display: inline-block;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.c-menu-main__link:hover img {
  opacity: 0.5;
}
@media screen and (max-width: 830px) {
  .c-menu-main__link {
    font-size: 1.0625rem;
    line-height: 1.375rem;
    padding: 20px;
  }
}
.c-menu-main__link img {
  opacity: 1;
  height: 35px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.c-menu-main__item--active-trail .c-menu-main__link,
.c-menu-main__link:hover {
  color: var(--color-orange);
}
.c-menu-main__item:first-of-type .c-menu-main__link {
  padding: 0;
  position: absolute;
  left: 4vw;
  top: 20px;
}
@media screen and (max-width: 830px) {
  .c-menu-main__item:first-of-type {
    display: none;
  }
}

.search-header-from {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 4vw;
  top: -3px;
}
@media screen and (max-width: 830px) {
  .search-header-from {
    bottom: 30px;
    top: unset;
    left: 30px;
    right: 30px;
    width: 100%;
    -ms-flex-item-align: end;
    align-self: flex-end;
    height: 77px;
    width: calc(100% - 60px);
    background-color: var(--color-white);
    border: 1px solid #3a371e;
    padding: 26px 93px 33px 33px;
  }
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 830px) {
  .search-form {
    width: 100%;
  }
}
.search-form input[type='text'] {
  margin-right: 0px;
  border: none;
  border-bottom: 2px solid var(--color-orange);
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
  text-transform: uppercase;
  padding: 0;
}
@media screen and (max-width: 830px) {
  .search-form input[type='text'] {
    width: 100%;
    border-bottom: 2px solid var(--color-green);
    color: var(--color-green);
  }
}
.search-form input[type='text']::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
}
.search-form input[type='text']::-moz-placeholder {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
}
.search-form input[type='text']:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
}
.search-form input[type='text']::-ms-input-placeholder {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
}
.search-form input[type='text']::placeholder {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--color-orange);
}
@media screen and (max-width: 830px) {
  .search-form input[type='text']::-webkit-input-placeholder {
    color: var(--color-green);
  }
  .search-form input[type='text']::-moz-placeholder {
    color: var(--color-green);
  }
  .search-form input[type='text']:-ms-input-placeholder {
    color: var(--color-green);
  }
  .search-form input[type='text']::-ms-input-placeholder {
    color: var(--color-green);
  }
  .search-form input[type='text']::placeholder {
    color: var(--color-green);
  }
}
@media screen and (max-width: 830px) {
  .search-form .form-item {
    width: 100%;
  }
}
.search-form input[type='submit'] {
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
}
@media screen and (max-width: 830px) {
  .search-form input[type='submit'] {
    width: 93px;
    position: absolute;
  }
}

.search-open {
  cursor: pointer;
  pointer-events: none;
  font-size: 1.1rem;
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
  position: absolute;
  right: 0;
  color: var(--color-orange);
}
@media screen and (max-width: 830px) {
  .search-open {
    position: absolute;
    color: var(--color-green);
    right: 40px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}

.mobile-menu-trigger,
.mobile-menu {
  display: none;
}

.three-bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 4px solid var(--color-green-drak);
  position: relative;
}
@media screen and (max-width: 830px) {
  .three-bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border: none;
  }
}
.three-bloc__bloc {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc {
    border: 4px solid var(--color-green-drak);
  }
}
.three-bloc__bloc--big {
  width: 37.5vw;
  border-right: 4px solid var(--color-green-drak);
}
@supports (aspect-ratio: auto) {
  .three-bloc__bloc--big {
    aspect-ratio: 540/493;
  }
}
@supports not (aspect-ratio: auto) {
  .three-bloc__bloc--big {
    height: 0;
    padding-top: 92%;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc--big {
    width: 100vw;
  }
}
.three-bloc__bloc--small {
  width: 25vw;
}
@supports (aspect-ratio: auto) {
  .three-bloc__bloc--small {
    aspect-ratio: 361/493;
  }
}
@supports not (aspect-ratio: auto) {
  .three-bloc__bloc--small {
    height: 0;
    padding-top: 73%;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc--small {
    width: 100vw;
    border-bottom: none;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc--img {
    overflow: hidden;
  }
  @supports (aspect-ratio: auto) {
    .three-bloc__bloc--img {
      aspect-ratio: 16/12;
    }
  }
  @supports not (aspect-ratio: auto) {
    .three-bloc__bloc--img {
      height: 0;
      padding-top: 56%;
    }
  }
}
@media screen and (max-width: 480px) {
  .three-bloc__bloc--img {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  @supports (aspect-ratio: auto) {
    .three-bloc__bloc--img {
      aspect-ratio: 390/422;
    }
  }
  @supports not (aspect-ratio: auto) {
    .three-bloc__bloc--img {
      height: 0;
      padding-top: 108%;
    }
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc--content {
    z-index: 1;
    background-color: var(--color-white);
    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  @supports (aspect-ratio: auto) {
    .three-bloc__bloc--content {
      aspect-ratio: 330/250;
    }
  }
  @supports not (aspect-ratio: auto) {
    .three-bloc__bloc--content {
      height: 0;
      padding-top: 90%;
    }
  }
}
@media screen and (max-width: 480px) {
  @supports (aspect-ratio: auto) {
    .three-bloc__bloc--content {
      aspect-ratio: 330/300;
    }
  }
  @supports not (aspect-ratio: auto) {
    .three-bloc__bloc--content {
      height: 0;
      padding-top: 90%;
    }
  }
}
.three-bloc__bloc-content {
  padding: 7vw 6vw;
}
@media screen and (max-width: 1190px) {
  .three-bloc__bloc-content {
    padding: 6vw 5vw;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__bloc-content {
    padding: 15vw 10vw 10vw;
  }
}
@media screen and (max-width: 480px) {
  .three-bloc__bloc-content {
    padding: 70px 40px 40px;
    position: absolute;
    top: 0;
  }
}
.three-bloc__img-container {
  width: 100%;
  height: 100%;
}
.three-bloc__img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@supports not (aspect-ratio: auto) {
  .three-bloc__img-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.three-bloc__logo {
  position: absolute;
  right: 0vw;
  top: 6vw;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 2;
  width: 7.5vw;
  height: auto;
}
@media screen and (max-width: 1190px) {
  .three-bloc__logo {
    width: 11vw;
    top: 4vw;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__logo {
    width: 22vw;
    right: unset;
    left: 5vw;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 480px) {
  .three-bloc__logo {
    width: 31vw;
  }
}
.three-bloc__title {
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1190px) {
  .three-bloc__title {
    font-size: 3em;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 830px) {
  .three-bloc__title {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 480px) {
  .three-bloc__title {
    font-size: 1.875rem;
    line-height: 120%;
  }
}
.three-bloc__text {
  margin-bottom: 70px;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .three-bloc__text {
    margin-bottom: 40px;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

.button {
  padding: 14px 17px;
  border: 2px solid;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.0625rem;
  letter-spacing: 0.3em;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transform: all 0.6s ease-in-out;
  transform: all 0.6s ease-in-out;
}
@media screen and (max-width: 480px) {
  .button {
    padding: 9px 11px;
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}
.button--stroke-green {
  border-color: var(--color-green);
  color: var(--color-green);
  background-color: var(--color-white);
}
.button--stroke-green:hover,
.button--stroke-green:focus {
  background-color: var(--color-green);
  color: var(--color-white);
}
.button--stroke-orange {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background-color: transparent;
}
.button--stroke-orange:hover,
.button--stroke-orange:focus {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.button--stroke-white {
  border-color: var(--color-white);
  color: var(--color-white);
  background-color: transparent;
}
.button--stroke-white:hover,
.button--stroke-white:focus {
  background-color: var(--color-white);
  color: var(--color-orange);
}
.button--fill-white {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-orange);
}
.button--fill-white:hover,
.button--fill-white:focus {
  color: var(--color-white);
  background-color: transparent;
}
.button--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.button--product .button__icon {
  position: relative;
  height: 14px;
  width: 0px;
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
  margin-right: 8px;
  -webkit-transition: all 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.button--product .button__icon:before,
.button--product .button__icon:after {
  -webkit-transition: backgroundColor 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition: backgroundColor 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition: backgroundColor 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: backgroundColor 0.3s ease-in-out, transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.button--product .button__icon:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #88854b;
  -webkit-transform: translateY(-3px) rotate(-90deg) scale(0);
  transform: translateY(-3px) rotate(-90deg) scale(0);
}
.button--product .button__icon:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: #88854b;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.button--product:hover .button__icon {
  width: 10px;
}
.button--product:hover .button__icon:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.button--product:hover .button__icon:after {
  -webkit-transform: translateY(-3px) rotate(-90deg) scale(1);
  transform: translateY(-3px) rotate(-90deg) scale(1);
}
.button--product:focus .button__icon:before,
.button--product:focus .button__icon:after,
.button--product:hover .button__icon:before,
.button--product:hover .button__icon:after {
  background: white;
}
.button--product:focus .button__icon:before {
  -webkit-transform: rotate(-45deg) translate(0px, 2px);
  transform: rotate(-45deg) translate(0px, 2px);
}
.button--product:focus .button__icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.social-button {
  width: 52px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  display: inline-block;
  font-size: 1.1rem;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: '\f09a';
}

.fa-instagram:before {
  content: '\f16d';
}

.fa-twitter:before {
  content: '\f099';
}

.fa-youtube:before {
  content: '\f167';
}

.footer {
  color: var(--color-white);
}
.footer__main {
  padding: 48px;
  background-color: var(--color-green-drak);
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 63px;
}
.footer__logo .logo {
  mix-blend-mode: screen;
}
.footer__nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .footer__nav div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer__nav-col,
#block-shoppolicies,
#block-internationalshipping,
#block-contactmenu {
  width: 23vw;
  text-align: center;
}
@media screen and (max-width: 1190px) {
  .footer__nav-col,
  #block-shoppolicies,
  #block-internationalshipping,
  #block-contactmenu {
    width: 26vw;
  }
}
@media screen and (max-width: 480px) {
  .footer__nav-col,
  #block-shoppolicies,
  #block-internationalshipping,
  #block-contactmenu {
    width: 90%;
    margin-bottom: 55px;
  }
}
.footer__nav-item,
.footer__nav li {
  padding: 10px 20px;
}
.footer__nav-title,
.footer__nav h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1875rem;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--color-white);
}
#block-contactmenu > h2 {
  display: none;
}

.footer__nav-link,
.footer__nav a {
  position: relative;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0em;
}
.footer__nav-link:focus,
.footer__nav a:focus {
  color: var(--color-white);
}
.footer__nav-link:after,
.footer__nav a:after {
  content: '';
  position: absolute;
  top: 101%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.footer__nav-link:hover:after,
.footer__nav a:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.footer__bottom {
  color: var(--color-white);
  font-size: 1.125rem;
  background-color: black;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.125rem;
  letter-spacing: 0em;
  text-align: center;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}
.footer__social {
  color: var(--color-white);
}

.hero {
  position: relative;
  padding: 0px 0 100px;
}
@media screen and (max-width: 1190px) {
  .hero {
    padding: 0px 0 80px;
  }
}
@media screen and (max-width: 830px) {
  .hero {
    z-index: 1;
    padding: 0px 0 100px;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    padding: 0px 0 80px;
  }
}
.hero__header {
  position: relative;
  padding: 80px 0 100px;
  margin-top: 77px;
}
@media screen and (max-width: 1190px) {
  .hero__header {
    padding: 60px 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .hero__header {
    padding: 48px 0 48px;
  }
}
.hero__header-bg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-green-light);
  overflow: hidden;
}

@supports (aspect-ratio: auto) {
  .hero__header-bg {
    aspect-ratio: 1440/575;
  }
  @media screen and (max-width: 830px) {
    .hero__header-bg {
      height: 165vw;
      aspect-ratio: unset;
    }
  }
}
@supports not (aspect-ratio: auto) {
  .hero__header-bg {
    height: 0;
    padding-top: 40%;
  }
}
.hero__texture {
  mix-blend-mode: overlay;
  z-index: 0;
  position: absolute;
}
@supports (aspect-ratio: auto) {
  .hero__texture {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@supports not (aspect-ratio: auto) {
  .hero__texture {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.hero__title {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-family: 'PT Sans', sans-serif;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .hero__title {
    width: calc(100vw - 66px);
    font-size: 1.875rem;
    line-height: 108%;
  }
}
.hero__stamp {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10%;
  height: auto;
  mix-blend-mode: overlay;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .hero__stamp {
    width: 23%;
    -webkit-transform: translate(-50%, -48px);
    transform: translate(-50%, -48px);
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0vw 0 7.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 830px) {
  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
.hero__main {
  width: 63.5%;
}
@media screen and (max-width: 830px) {
  .hero__main {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    /* order: 2; */
    width: 100%;
    text-align: center;
  }
}
.hero__big-img {
  position: relative;
  width: 100%;
  border: 2px solid white;
  overflow: hidden;
  z-index: 0;
}
.hero__big-img img {
  z-index: 1;
}
@supports (aspect-ratio: auto) {
  .hero__big-img {
    aspect-ratio: 840/545;
  }
}
@supports not (aspect-ratio: auto) {
  .hero__big-img {
    height: 0;
    padding-top: 64%;
  }
}
@media screen and (max-width: 830px) {
  .hero__big-img {
    /* position: absolute;
    -webkit-transform: translateY(-157vw);
    transform: translateY(-157vw); */
  }
}
.hero__big-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero__text {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: 0em;
  margin: 50px 36% 0 7%;
}
@media screen and (max-width: 1190px) {
  .hero__text {
    margin: 50px 16% 0 7%;
  }
}
@media screen and (max-width: 830px) {
  .hero__text {
    width: 60%;
    margin: 90px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .hero__text {
    width: calc(100vw - 66px);
  }
}
.hero__text:after {
  content: '';
  position: absolute;
  left: 0;
  height: 50px;
  width: 1px;
  background-color: var(--color-green-light);
  bottom: calc(100% + 25px);
}
@media screen and (max-width: 830px) {
  .hero__text:after {
    left: 50%;
  }
}
.hero__product {
  width: 31.5%;
  -webkit-transform: translate(-3.5vw, 3.5vw);
  transform: translate(-3.5vw, 3.5vw);
  position: relative;
  border: 2px solid white;
}
@supports (aspect-ratio: auto) {
  .hero__product {
    aspect-ratio: 420/545;
  }
}
@supports not (aspect-ratio: auto) {
  .hero__product {
    height: 0;
    padding-top: 77%;
  }
}
@media screen and (max-width: 830px) {
  .hero__product {
    -webkit-transform: translate(0vw, 3.5vw);
    transform: translate(0vw, 3.5vw);
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 57vw auto 0;
    width: 80vw;
    position: relative;
  }
}
.hero__product-img {
  overflow: hidden;
}
@supports (aspect-ratio: auto) {
  .hero__product-img {
    aspect-ratio: 545/420;
  }
}
@supports not (aspect-ratio: auto) {
  .hero__product-img {
    height: 0;
    padding-top: 77%;
  }
}
.hero__product-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero__product-img-bottle {
  position: absolute;
  width: calc(100% - 42px);
  height: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
  transform: translate(-50%, -25%);
}
@media screen and (max-width: 830px) {
  .hero__product-img-bottle {
    position: absolute;
    top: -72vw;
    left: 0vw;
    right: 2vw;
    bottom: 3vw;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hero__product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(24.14%, rgba(36, 32, 31, 0.7)),
    color-stop(64.88%, rgba(36, 32, 31, 0))
  );
  background: linear-gradient(
    0deg,
    rgba(36, 32, 31, 0.7) 24.14%,
    rgba(36, 32, 31, 0) 64.88%
  );
}
.hero__product-shadow {
  position: absolute;
  top: 4vw;
  left: 2vw;
  right: 2vw;
  bottom: 3vw;
}
.hero__product-shadow img {
  width: auto;
  max-width: unset;
  height: 100%;
}
.hero__product-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 3;
  padding: 0 0 40px;
}
@media screen and (max-width: 830px) {
  .hero__product-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32vw;
  }
}
@media screen and (max-width: 480px) {
  .hero__product-info {
    margin-top: 21vw;
  }
}
.hero__product-surtitle {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 10px;
}
.hero__product-title {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  margin: 0 70px 40px;
}
@media screen and (max-width: 480px) {
  .hero__product-title {
    font-size: 1.75rem;
    line-height: 1.875rem;
    margin: 0 25px 40px;
  }
}
@media screen and (max-width: 830px) {
  .hero__product-button {
    position: absolute;
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .hero__product-button {
    bottom: 30px;
  }
}

.grid-desctructured {
  padding: 100px 7.5vw 0 7.5vw;
}
@media screen and (max-width: 1190px) {
  .grid-desctructured {
    padding: 100px 7.5vw 7.5vw;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured {
    padding: 80px 30px 36px;
  }
}
.grid-desctructured__title-container {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__title-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 45px;
  }
}
.grid-desctructured__title {
  max-width: 20vw;
  margin-right: 45px;
  font-family: 'PT Sans', sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1190px) {
  .grid-desctructured__title {
    max-width: 26vw;
  }
}
@media screen and (max-width: 830px) {
  .grid-desctructured__title {
    max-width: 34vw;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured__title {
    max-width: 100%;
    margin-right: 0;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 47px;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured .button {
    padding: 17px 50px;
  }
}
.grid-desctructured__item-container {
  display: inline-block;
}
.grid-desctructured__item-container--right {
  float: right;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-container--right {
    float: none;
  }
}
.grid-desctructured__item-container--left {
  float: left;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-container--left {
    float: none;
  }
}
.grid-desctructured__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
.grid-desctructured__item--horizontal {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 54vw;
  margin-right: 1.95vw;
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 45vw;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item--horizontal {
    width: 100%;
  }
}
.grid-desctructured__item--vertical {
  float: right;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25vw;
  margin-left: 1.95vw;
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--vertical {
    width: 35vw;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item--vertical {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
.grid-desctructured__item--vertical .grid-desctructured__item-infos {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.grid-desctructured__item--vertical__item-infos {
  padding: 40px 0px 0px 0;
}
.grid-desctructured__item--vertical .grid-desctructured__item-img-container {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
@supports (aspect-ratio: auto) {
  .grid-desctructured__item--vertical .grid-desctructured__item-img-container {
    aspect-ratio: 360/410;
  }
}
@supports not (aspect-ratio: auto) {
  .grid-desctructured__item--vertical .grid-desctructured__item-img-container {
    height: 0;
    padding-top: 113%;
  }
}
.grid-desctructured__item--big .grid-desctructured__item-infos {
  width: 25vw;
  min-width: 25vw;
  max-width: 25vw;
  -ms-flex-preferred-size: 25vw;
  flex-basis: 25vw;
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--big .grid-desctructured__item-infos {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 0;
  }
}
.grid-desctructured__item--big .grid-desctructured__item-img-container {
  width: 29.7vw;
  min-width: 29.7vw;
  max-width: 29.7vw;
  -ms-flex-preferred-size: 29.7vw;
  flex-basis: 29.7vw;
}
@supports (aspect-ratio: auto) {
  .grid-desctructured__item--big .grid-desctructured__item-img-container {
    aspect-ratio: 420/530;
  }
}
@supports not (aspect-ratio: auto) {
  .grid-desctructured__item--big .grid-desctructured__item-img-container {
    height: 0;
    padding-top: 80%;
  }
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--big .grid-desctructured__item-img-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.grid-desctructured__item--medium {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 10vw;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item--medium {
    padding-left: 0vw;
  }
}
.grid-desctructured__item--medium .grid-desctructured__item-infos {
  width: 27vw;
  min-width: 27vw;
  max-width: 27vw;
  -ms-flex-preferred-size: 27vw;
  flex-basis: 27vw;
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--medium .grid-desctructured__item-infos {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.grid-desctructured__item--medium .grid-desctructured__item-img-container {
  width: 25vw;
  min-width: 25vw;
  max-width: 25vw;
  -ms-flex-preferred-size: 25vw;
  flex-basis: 25vw;
}
@supports (aspect-ratio: auto) {
  .grid-desctructured__item--medium .grid-desctructured__item-img-container {
    aspect-ratio: 360/436;
  }
}
@supports not (aspect-ratio: auto) {
  .grid-desctructured__item--medium .grid-desctructured__item-img-container {
    height: 0;
    padding-top: 121%;
  }
}
@media screen and (max-width: 830px) {
  .grid-desctructured__item--medium .grid-desctructured__item-img-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.grid-desctructured__item-title {
  margin-bottom: 10px;
  font-family: 'PT Sans', sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.8125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
}
@media screen and (max-width: 1190px) {
  .grid-desctructured__item-title {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-title {
    font-size: 2.5rem;
    line-height: 2.8125rem;
  }
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-text {
    font-size: 0.8125rem;
    line-height: 1.375rem;
    padding-right: 30px;
  }
}
.grid-desctructured__item-infos {
  padding: 40px 20px 40px 0;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-infos {
    padding: 50px 0px 0px 0;
  }
}
.grid-desctructured__item-button.button {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .grid-desctructured__item-button.button {
    padding: 13px 17px;
  }
}
.grid-desctructured__item-img-container {
  position: relative;
}
.grid-desctructured__item-img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.grid-desctructured__text {
  width: 85%;
}

.clear-both {
  clear: both;
}

.slider {
  position: relative;
  overflow: visible !important;
}
@media screen and (max-width: 480px) {
  .slider {
    margin-left: 40px !important;
  }
}
.slider__section {
  width: 100%;
  overflow: hidden;
  border-top: 4px solid var(--color-black);
  padding: 80px 0 120px 12.5vw;
  position: relative;
}
@media screen and (max-width: 1190px) {
  .slider__section {
    padding: 70px 0 100px 12.5vw;
  }
}
@media screen and (max-width: 480px) {
  .slider__section {
    padding: 58px 0 70px 30px;
    text-align: center;
  }
}
.slider__rec {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 92.5vw;
  width: 7.5vw;
  height: 100%;
  background: var(--color-green-light);
  border-left: 1px solid var(--color-black);
}
@media screen and (max-width: 1190px) {
  .slider__rec {
    left: 91.5vw;
    width: 12vw;
  }
}
@media screen and (max-width: 480px) {
  .slider__rec {
    display: none;
  }
}
.slider__texture {
  height: 100%;
  max-width: unset;
  mix-blend-mode: overlay;
}
.slider__title {
  margin-bottom: 20px;
  width: 45vw;
  font-family: 'PT Sans', sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 4.0625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.slider__title.other-whiskies {
  margin: 10px 20px 30px 20px;
  width: 50vw;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 480px) {
  .slider__title.other-whiskies {
    width: 100%;
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .slider__title {
    width: calc(100% - 30px);
    font-size: 1.7rem;
    line-height: 2rem;
    margin-right: 30px;
    text-align: center;
    letter-spacing: 0.3em;
  }
}
.slider__text {
  width: 25vw;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0em;
}
@media screen and (max-width: 1190px) {
  .slider__text {
    width: 33vw;
  }
}
@media screen and (max-width: 830px) {
  .slider__text {
    width: 45vw;
  }
}
@media screen and (max-width: 480px) {
  .slider__text {
    width: calc(100% - 30px);
    text-align: center;
  }
}
.slider.swiper-horizontal > .swiper-pagination-progressbar {
  top: calc(100% + 60px);
  left: 37.443vw;
  width: 20vw;
  background: transparent;
}
.slider.swiper-horizontal > .swiper-pagination-progressbar:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1px;
  background: #d0d0d0;
}
.slider.swiper-horizontal
  > .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: var(--color-orange);
}
@media screen and (max-width: 480px) {
  .slider.swiper-horizontal > .swiper-pagination-progressbar {
    display: none;
  }
}
.slider .swiper-button {
  position: absolute;
  top: calc(100% + 60px);
}
.slider .swiper-button:after {
  content: none;
}
@media screen and (max-width: 480px) {
  .slider .swiper-button {
    display: none;
  }
}
.slider .swiper-button-prev {
  left: 60.5vw;
  top: calc(100% + 64px);
}
.slider .swiper-button-next {
  left: calc(60.5vw + 42px);
  top: calc(100% + 64px);
  -webkit-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}
.slider__slide {
  width: 33.333vw !important;
  padding-right: 4.11vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1190px) {
  .slider__slide {
    width: 50vw !important;
  }
}
@media screen and (max-width: 830px) {
  .slider__slide {
    width: 75vw !important;
  }
}
@media screen and (max-width: 480px) {
  .slider__slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(100vw - 140px) !important;
    padding-right: 30px;
  }
}
.slider__slide:hover .slider__slide-img img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}
.slider__slide:hover .slider__slide-title {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.slider__slide:hover .slider__slide-text {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.2s ease-out,
    -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, transform 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
}
.slider__slide:hover .slider__slide-buttons {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.2s ease-out,
    -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, transform 0.6s ease-out;
  transition: opacity 0.2s 0.2s ease-out, transform 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
}
.slider__slide:hover .slider__slide-price {
  font-size: 1rem;
}
.slider__slide-bloc {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
@media screen and (max-width: 480px) {
  .slider__slide-bloc {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.slider__slide-container {
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .slider__slide-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.slider__slide-img {
  overflow: hidden;
  border: 1px solid var(--color-black);
  position: relative;
}
.slider__slide-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
@supports (aspect-ratio: auto) {
  .slider__slide-img {
    aspect-ratio: 240/334;
  }
}
@supports not (aspect-ratio: auto) {
  .slider__slide-img {
    height: 0;
    padding-top: 140%;
  }
}
.slider__slide-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 21px 50px 31px;
}
@media screen and (max-width: 480px) {
  .slider__slide-infos {
    padding: 26px 13px;
  }
}
.slider__slide-title {
  width: 100%;
  margin: 0 auto 20px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.3em;
  text-align: center;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
@media screen and (max-width: 1190px) {
  .slider__slide-title {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (max-width: 480px) {
  .slider__slide-title {
    font-size: 1.25rem;
    line-height: 1.3125rem;
    margin: 0 auto 6px;
  }
}
.slider__slide-text {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1rem;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 26px;
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: opacity 0.2s 0s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, transform 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
}
@media screen and (max-width: 1190px) {
  .slider__slide-text {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (max-width: 480px) {
  .slider__slide-text {
    margin-bottom: 17px;
  }
}
.slider__slide-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1875rem;
  letter-spacing: 0em;
  -webkit-transition: font-size 0.6s ease-in-out;
  transition: font-size 0.6s ease-in-out;
}
@media screen and (max-width: 1190px) {
  .slider__slide-price {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media screen and (max-width: 480px) {
  .slider__slide-price {
    -webkit-transform: scale(1);
    transform: scale(1);
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.slider__slide-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 26px 0 0;
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: opacity 0.2s 0s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, transform 0.6s ease-out;
  transition: opacity 0.2s 0s ease-out, transform 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
}
@media screen and (max-width: 1190px) {
  .slider__slide-buttons {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (max-width: 480px) {
  .slider__slide-buttons {
    margin: 17px 0 0;
  }
}
.slider__slide-button {
  white-space: nowrap;
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .slider__slide-button {
    font-size: 0.5rem;
    line-height: 0.6875rem;
  }
}
.slider__slide-link {
  text-transform: uppercase;
  position: relative;
  font-family: 'PT Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-green);
}
.slider__slide-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background-color: var(--color-green);
}
@media screen and (max-width: 480px) {
  .slider__slide-link {
    font-size: 0.5625rem;
    line-height: 0.75rem;
  }
}
.slider__button {
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .slider__button {
    margin-top: 62px;
  }
}

.bloc-img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e39464;
  position: relative;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 830px) {
  .bloc-img-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    overflow: hidden;
  }
}
.bloc-img-text__bloc {
  position: relative;
}
.bloc-img-text__bloc--content {
  z-index: 2;
  position: relative;
  color: var(--color-white);
  -ms-flex-preferred-size: 54vw;
  flex-basis: 54vw;
  width: 54vw;
}
@media screen and (max-width: 830px) {
  .bloc-img-text__bloc--content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 100vw;
    flex-basis: 100vw;
    width: 100vw;
  }
}
.bloc-img-text__bloc--img {
  z-index: 1;
  -ms-flex-preferred-size: 46vw;
  flex-basis: 46vw;
  width: 46vw;
  border-left: 1px solid var(--color-black);
}
@media screen and (max-width: 830px) {
  .bloc-img-text__bloc--img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 100vw;
    flex-basis: 100vw;
    width: 100vw;
  }
}
.bloc-img-text__content {
  height: 100%;
  padding: 7vw 0vw;
  -webkit-transform: translateX(7.5vw);
  transform: translateX(7.5vw);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 830px) {
  .bloc-img-text__content {
    padding: 10vw 60px 9.5vw;
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
}
@media screen and (max-width: 1190px) {
  .bloc-img-text__content {
    padding: 8vw 30px;
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
}
@media screen and (max-width: 480px) {
  .bloc-img-text__content {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    padding: 65px 28px 50px 34px;
  }
}
.bloc-img-text__stamp-container {
  position: absolute;
  z-index: 1;
  top: 0vw;
  left: 20vw;
  width: 40vw;
  height: calc(35vw + 2px);
  overflow: hidden;
  mix-blend-mode: unset;
}
@media screen and (max-width: 830px) {
  .bloc-img-text__stamp-container {
    top: 100vw;
    left: 55px;
    width: calc(100vw - 120px);
    height: calc(100vw - 120px);
  }
}
@media screen and (max-width: 480px) {
  .bloc-img-text__stamp-container {
    width: calc(100vw - 60px);
    left: 26px;
    top: 108vw;
  }
}
.bloc-img-text__stamp {
  position: absolute;
  z-index: 1;
  top: -5vw;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
@media screen and (max-width: 830px) {
  .bloc-img-text__stamp {
    top: 0vw;
    width: 100%;
  }
}
.bloc-img-text__badges {
  position: absolute;
  width: 17vw;
  top: -10px;
  left: 7vw;
  z-index: 1;
}
@media screen and (max-width: 1190px) {
  .bloc-img-text__badges {
    width: 23vw;
    top: -39px;
  }
}
@media screen and (max-width: 830px) {
  .bloc-img-text__badges {
    width: 36vw;
    left: unset;
    right: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .bloc-img-text__badges {
    width: 48vw;
    right: 30px;
  }
}
.bloc-img-text__texture {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 54vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 830px) {
  .bloc-img-text__texture {
    width: 100%;
  }
}
.bloc-img-text__title {
  position: relative;
  z-index: 3;
  font-family: 'PT Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 1190px) {
  .bloc-img-text__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 830px) {
  .bloc-img-text__title {
    margin-bottom: 30px;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .bloc-img-text__title {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.bloc-img-text__text {
  width: 30vw;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 1190px) {
  .bloc-img-text__text {
    width: 45vw;
  }
}
@media screen and (max-width: 830px) {
  .bloc-img-text__text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .bloc-img-text__text {
    width: 100%;
  }
}
.bloc-img-text__button {
  display: inline-block;
  margin-right: 15px;
}
.bloc-img-text__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.bloc-img-text__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@supports (aspect-ratio: auto) {
  .bloc-img-text__img {
    aspect-ratio: 655/715;
  }
}
@supports not (aspect-ratio: auto) {
  .bloc-img-text__img {
    height: 0;
    padding-top: 92%;
  }
}

@media screen and (max-width: 830px) {
  .bloc-img-text__img {
    height: auto;
    padding-top: 0;
  }
}

body {
  color: var(--color-black);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

.texture {
  background: url(../images2/texture-bloc.30e802.png) repeat;
}

/*!***********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/swiper.min.css ***!
  \***********************************************************************************************************************************************************************/
/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: var(--color-white);
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/navigation/navigation.min.css ***!
  \**********************************************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}
/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/pagination/pagination.min.css ***!
  \**********************************************************************************************************************************************************************************************/
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* COMMITTEE */

.commitee-hero {
  padding: 0;
}

.commitee-hero .hero__header-bg {
  background-color: var(--color-orange-light);
}
@media screen and (max-width: 830px) {
  .commitee-hero .hero__header-bg {
    height: auto;
    bottom: 0;
  }
}
.commitee-hero .hero__title {
  color: #fff;
}

.commitee-hero .hero__text {
  margin: 50px 26% 0 17%;
}
@media screen and (max-width: 830px) {
  .commitee-hero .hero__text {
    margin: 44px auto 0;
  }
}
.hero__content.commitee-herocontent {
  position: relative;
  z-index: 2;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
}
/* img {
  border: 1px solid #fff;
} */
@media screen and (max-width: 830px) {
  .hero__content.commitee-herocontent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}

.whisky-product {
  margin-top: 75px;
}


/* BIZARRE BBQ */
.bizarrebbq-page .hero__texture.texture {
  background: url(../images/bbq/braise.jpg) repeat;
  background-size: cover;
}
.bizarrebbq-page .hero__header-bg {
  background:#7E0800;
}
