@charset "UTF-8";
/*==========================================================================*\
  BASE
\*==========================================================================*/
/*==========================================================================*\
  # Functions
\*==========================================================================*/
/*==========================================================================*\
  # Utility
\*==========================================================================*/
.padding {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10% 0 10%;
}

.reverse {
  direction: rtl;
}

.relative {
  position: relative;
}

input:focus {
  outline: none !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cc-link {
  padding: 0 !important;
  display: inline !important;
}

/*==========================================================================*\
  # Animations
\*==========================================================================*/
@-webkit-keyframes scaleInOut {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes scaleInOut {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.scaleInOut {
  -webkit-animation: scaleInOut 3s infinite;
          animation: scaleInOut 3s infinite;
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInOut {
  -webkit-animation: fadeInOut 3s infinite;
          animation: fadeInOut 3s infinite;
}

@-webkit-keyframes positionInOut {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes positionInOut {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.positionInOut {
  -webkit-animation: positionInOut 3s infinite;
          animation: positionInOut 3s infinite;
}

@-webkit-keyframes toSide {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes toSide {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.toSide {
  -webkit-animation: toSide 1s infinite;
          animation: toSide 1s infinite;
}

/*==========================================================================*\
  # Config
\*==========================================================================*/
@font-face {
  font-family: "AvenirNext Medium";
  src: url("../fonts/AvenirNextCyr-Medium.eot"); /* IE9*/
  src: url("../fonts/AvenirNextCyr-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Medium.woff") format("woff"), url("../fonts/AvenirNextCyr-Medium.ttf") format("truetype"); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}
@font-face {
  font-family: "AvenirNext Bold";
  src: url("../fonts/AvenirNextCyr-Bold.eot"); /* IE9*/
  src: url("../fonts/AvenirNextCyr-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Bold.woff") format("woff"), url("../fonts/AvenirNextCyr-Bold.ttf") format("truetype"); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* 1 */
  font-size: 10px;
  line-height: 1; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Form element normalize
   ========================================================================== */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*==========================================================================*\
  # Reset
\*==========================================================================*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
pre,
dl,
dd,
ol,
ul,
form,
fieldset,
label,
legend,
input,
textarea,
select,
option,
button,
table,
th,
td,
caption,
hr {
  margin: 0;
  padding: 0;
}

abbr[title],
dfn[title] {
  cursor: help;
}

a,
ins {
  text-decoration: none;
}

a {
  vertical-align: top;
}

ins {
  border-bottom: 1px solid;
}

figure > a {
  display: inline-block;
}
figure > img {
  display: block;
}

img {
  vertical-align: middle;
  font-style: italic;
}

input,
textarea,
select,
option,
button {
  outline: none;
}

fieldset,
input,
textarea,
button {
  border: none;
}

textarea {
  resize: none;
}

label,
button,
select,
option {
  cursor: pointer;
}

body {
  font-family: "AvenirNext Medium", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 5.6rem;
  background-color: #ffffff;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  color: #000000;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}

p,
ul,
ol,
dl,
table,
blockquote,
pre,
figure {
  margin-bottom: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

blockquote {
  font-style: italic;
}
blockquote p {
  margin: 0;
}

a {
  color: #60dbe8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #4dbcc1;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 100%;
}

.pt-1 {
  padding-top: 2.8rem;
}

.pt-2 {
  padding-top: 5.6rem;
}

.pt-3 {
  padding-top: 8.4rem;
}

.pt-4 {
  padding-top: 11.2rem;
}

.pt-5 {
  padding-top: 14rem;
}

.pt-6 {
  padding-top: 16.8rem;
}

.pt-7 {
  padding-top: 19.6rem;
}

.pt-8 {
  padding-top: 22.4rem;
}

.pt-9 {
  padding-top: 25.2rem;
}

.pt-10 {
  padding-top: 28rem;
}

.pt-11 {
  padding-top: 30.8rem;
}

.pt-12 {
  padding-top: 33.6rem;
}

.pt-13 {
  padding-top: 36.4rem;
}

.pt-14 {
  padding-top: 39.2rem;
}

.pt-15 {
  padding-top: 42rem;
}

.pt-16 {
  padding-top: 44.8rem;
}

.pt-17 {
  padding-top: 47.6rem;
}

.pt-18 {
  padding-top: 50.4rem;
}

.pt-19 {
  padding-top: 53.2rem;
}

.pt-20 {
  padding-top: 56rem;
}

.pt-21 {
  padding-top: 58.8rem;
}

.pt-22 {
  padding-top: 61.6rem;
}

.pt-23 {
  padding-top: 64.4rem;
}

.pt-24 {
  padding-top: 67.2rem;
}

.pt-25 {
  padding-top: 70rem;
}

.pt-26 {
  padding-top: 72.8rem;
}

.pt-27 {
  padding-top: 75.6rem;
}

.pt-28 {
  padding-top: 78.4rem;
}

.pt-29 {
  padding-top: 81.2rem;
}

.pt-30 {
  padding-top: 84rem;
}

.pb-1 {
  padding-bottom: 2.8rem;
}

.pb-2 {
  padding-bottom: 5.6rem;
}

.pb-3 {
  padding-bottom: 8.4rem;
}

.pb-4 {
  padding-bottom: 11.2rem;
}

.pb-5 {
  padding-bottom: 14rem;
}

.pb-6 {
  padding-bottom: 16.8rem;
}

.pb-7 {
  padding-bottom: 19.6rem;
}

.pb-8 {
  padding-bottom: 22.4rem;
}

.pb-9 {
  padding-bottom: 25.2rem;
}

.pb-10 {
  padding-bottom: 28rem;
}

.pb-11 {
  padding-bottom: 30.8rem;
}

.pb-12 {
  padding-bottom: 33.6rem;
}

.pb-13 {
  padding-bottom: 36.4rem;
}

.pb-14 {
  padding-bottom: 39.2rem;
}

.pb-15 {
  padding-bottom: 42rem;
}

.pb-16 {
  padding-bottom: 44.8rem;
}

.pb-17 {
  padding-bottom: 47.6rem;
}

.pb-18 {
  padding-bottom: 50.4rem;
}

.pb-19 {
  padding-bottom: 53.2rem;
}

.pb-20 {
  padding-bottom: 56rem;
}

.pb-21 {
  padding-bottom: 58.8rem;
}

.pb-22 {
  padding-bottom: 61.6rem;
}

.pb-23 {
  padding-bottom: 64.4rem;
}

.pb-24 {
  padding-bottom: 67.2rem;
}

.pb-25 {
  padding-bottom: 70rem;
}

.pb-26 {
  padding-bottom: 72.8rem;
}

.pb-27 {
  padding-bottom: 75.6rem;
}

.pb-28 {
  padding-bottom: 78.4rem;
}

.pb-29 {
  padding-bottom: 81.2rem;
}

.pb-30 {
  padding-bottom: 84rem;
}

.mt-1 {
  margin-top: 2.8rem;
}

.mt-2 {
  margin-top: 5.6rem;
}

.mt-3 {
  margin-top: 8.4rem;
}

.mt-4 {
  margin-top: 11.2rem;
}

.mt-5 {
  margin-top: 14rem;
}

.mt-6 {
  margin-top: 16.8rem;
}

.mt-7 {
  margin-top: 19.6rem;
}

.mt-8 {
  margin-top: 22.4rem;
}

.mt-9 {
  margin-top: 25.2rem;
}

.mt-10 {
  margin-top: 28rem;
}

.mt-11 {
  margin-top: 30.8rem;
}

.mt-12 {
  margin-top: 33.6rem;
}

.mt-13 {
  margin-top: 36.4rem;
}

.mt-14 {
  margin-top: 39.2rem;
}

.mt-15 {
  margin-top: 42rem;
}

.mt-16 {
  margin-top: 44.8rem;
}

.mt-17 {
  margin-top: 47.6rem;
}

.mt-18 {
  margin-top: 50.4rem;
}

.mt-19 {
  margin-top: 53.2rem;
}

.mt-20 {
  margin-top: 56rem;
}

.mt-21 {
  margin-top: 58.8rem;
}

.mt-22 {
  margin-top: 61.6rem;
}

.mt-23 {
  margin-top: 64.4rem;
}

.mt-24 {
  margin-top: 67.2rem;
}

.mt-25 {
  margin-top: 70rem;
}

.mt-26 {
  margin-top: 72.8rem;
}

.mt-27 {
  margin-top: 75.6rem;
}

.mt-28 {
  margin-top: 78.4rem;
}

.mt-29 {
  margin-top: 81.2rem;
}

.mt-30 {
  margin-top: 84rem;
}

.mb-1 {
  margin-bottom: 2.8rem;
}

.mb-2 {
  margin-bottom: 5.6rem;
}

.mb-3 {
  margin-bottom: 8.4rem;
}

.mb-4 {
  margin-bottom: 11.2rem;
}

.mb-5 {
  margin-bottom: 14rem;
}

.mb-6 {
  margin-bottom: 16.8rem;
}

.mb-7 {
  margin-bottom: 19.6rem;
}

.mb-8 {
  margin-bottom: 22.4rem;
}

.mb-9 {
  margin-bottom: 25.2rem;
}

.mb-10 {
  margin-bottom: 28rem;
}

.mb-11 {
  margin-bottom: 30.8rem;
}

.mb-12 {
  margin-bottom: 33.6rem;
}

.mb-13 {
  margin-bottom: 36.4rem;
}

.mb-14 {
  margin-bottom: 39.2rem;
}

.mb-15 {
  margin-bottom: 42rem;
}

.mb-16 {
  margin-bottom: 44.8rem;
}

.mb-17 {
  margin-bottom: 47.6rem;
}

.mb-18 {
  margin-bottom: 50.4rem;
}

.mb-19 {
  margin-bottom: 53.2rem;
}

.mb-20 {
  margin-bottom: 56rem;
}

.mb-21 {
  margin-bottom: 58.8rem;
}

.mb-22 {
  margin-bottom: 61.6rem;
}

.mb-23 {
  margin-bottom: 64.4rem;
}

.mb-24 {
  margin-bottom: 67.2rem;
}

.mb-25 {
  margin-bottom: 70rem;
}

.mb-26 {
  margin-bottom: 72.8rem;
}

.mb-27 {
  margin-bottom: 75.6rem;
}

.mb-28 {
  margin-bottom: 78.4rem;
}

.mb-29 {
  margin-bottom: 81.2rem;
}

.mb-30 {
  margin-bottom: 84rem;
}

/*==========================================================================*\
  COMPONENTS
\*==========================================================================*/
/*==========================================================================*\
  # Typography
\*==========================================================================*/
.uppercase {
  text-transform: uppercase;
}

.highlight {
  color: #60dbe8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

h1 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: 6.2rem;
  line-height: 1.16;
  color: #4c3426;
  padding-bottom: 1.3rem;
}

h2 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: 4.2rem;
  line-height: 1.24;
  color: #4dbcc1;
  padding-bottom: 2.3rem;
}

h3 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: 2.2rem;
  line-height: 1.45;
  color: #ffc700;
}

h4 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: 2rem;
}

h5 {
  font-family: "AvenirNext Medium", sans-serif;
  font-size: 1.8rem;
}

h6 {
  font-family: "AvenirNext Bold", sans-serif;
  font-size: 1.6rem;
}

blockquote {
  font-size: 3rem;
}

p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding-bottom: 2.8rem;
  opacity: 0.7;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  color: #333333;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 5.5rem;
  }
  h2 {
    font-size: 3.7rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.9rem;
  }
  h5 {
    font-size: 1.7rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  blockquote {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
}
/*==========================================================================*\
  # Grid
\*==========================================================================*/
.wrapper {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/*==========================================================================*\
  # Site Header
\*==========================================================================*/
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: transparent;
  padding: 14px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 70px;
}
.header .logo-header {
  background-color: #6d4b35;
  -webkit-mask-image: url("../img/logo.svg");
          mask-image: url("../img/logo.svg");
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 6.8rem;
  height: 7rem;
  z-index: 2;
  position: absolute;
  left: 20px;
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.header .logo-header a {
  text-indent: -9999px;
  display: inline-block;
  width: 6.8rem;
  height: 7rem;
}
.header .logo-header:hover {
  background-color: #60dbe8;
}
.header #nav-header {
  margin-right: 35px;
}
.header .soc-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2.5px;
}
.header .soc-header .button-soc {
  margin: 2.5px;
}
@media screen and (max-width: 1100px) {
  .header .soc-header {
    display: none;
  }
}
.header.scrolled {
  background: #ffffff;
  -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
  padding: 7px 0;
}
.header.scrolled .logo-header {
  width: 5.9rem;
  height: 6rem;
}
.header.scrolled .logo-header a {
  width: 5.9rem;
  height: 6rem;
}

.main {
  margin-top: 98px;
}

/*==========================================================================*\
  # Footer
\*==========================================================================*/
.footer {
  position: relative;
  width: 100%;
  padding: 23px 0;
}
.footer__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner .logo-footer {
  background-color: #6d4b35;
  -webkit-mask-image: url("../img/logo.svg");
          mask-image: url("../img/logo.svg");
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 6.8rem;
  height: 7rem;
  z-index: 2;
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.footer__inner .logo-footer a {
  text-indent: -9999px;
  display: inline-block;
  width: 6.8rem;
  height: 7rem;
}
.footer__inner .logo-footer:hover {
  background-color: #60dbe8;
}
.footer__inner .copy-footer {
  padding: 0;
  opacity: 1;
  color: #6d4b35;
  font-size: 1.6rem;
  margin: 0 27px;
}
.footer__inner .copy-footer a  {
  color: #6d4b35;
}
.footer__inner .soc-footer {
  position: absolute;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2.5px;
}
.footer__inner .soc-footer .button-soc {
  margin: 2.5px;
}
@media screen and (max-width: 950px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner .copy-footer {
    text-align: center;
    margin: 17px auto;
  }
  .footer__inner .copy-footer span  {
    margin-top: 3px;
    display: block;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer__inner .soc-footer {
    position: relative;
    right: auto;
  }
}

/*==========================================================================*\
  # Navigation
\*==========================================================================*/
/* Navigation Header
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
#nav-header .menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  position: relative;
  top: -6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#nav-header .menu .menu-item {
  font-family: "AvenirNext Bold", sans-serif;
  margin-right: 4.1rem;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  color: #6d4b35;
}
#nav-header .menu .menu-item:last-child {
  margin-right: 0;
}
#nav-header .menu .menu-item a {
  color: #6d4b35;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#nav-header .menu .menu-item a:hover, #nav-header .menu .menu-item a--active {
  color: #60dbe8;
  text-decoration: none;
}
#nav-header .menu .menu-item--active a {
  color: #4dbcc1;
}

@media screen and (max-width: 1100px) {
  #nav-header {
    display: none;
  }
}
/* Navigation Mobile
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.nav-icon {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  border: 1px solid #6d4b35;
  border-radius: 100%;
  right: 20px;
  top: 25px;
  z-index: 1000;
  padding: 11px 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.nav-icon.nav-icon:after, .nav-icon.nav-icon:before, .nav-icon.nav-icon div {
  background-color: #6d4b35;
  content: "";
  display: block;
  height: 1px;
  margin: 6px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nav-icon.scrolled  {
  top: 18px;
}

#menu:checked ~ .nav-icon,
#menu:checked ~ .nav-text {
  right: 20px;
  border: 0px;
}

#menu:checked ~ .nav-icon:before {
  -webkit-transform: translateY(7px) rotate(135deg);
          transform: translateY(7px) rotate(135deg);
}

#menu:checked ~ .nav-icon:after {
  -webkit-transform: translateY(-7px) rotate(-135deg);
          transform: translateY(-7px) rotate(-135deg);
}

#menu:checked ~ .nav-icon div {
  -webkit-transform: scale(0);
  transform: scale(0);
}

#menu:checked ~ #nav-mobile {
  opacity: 1;
  right: 0;
}

#menu:checked ~ #page {
  margin-left: -100%;
  margin-right: 100%;
}

body {
  -webkit-animation: bugfix infinite 1s;
  min-height: 100%;
}

@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#menu {
  position: fixed;
  opacity: 0;
}

#page {
  overflow: hidden;
  float: right;
  -webkit-transition: margin 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 3px 0px 9px 0px rgba(50, 50, 50, 0.08);
          box-shadow: 3px 0px 9px 0px rgba(50, 50, 50, 0.08);
}

#nav-mobile {
  position: fixed;
  padding-top: 100px;
  right: -100%;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, #fff1a6, #ffdb5b 120%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#nav-mobile .menu {
  list-style-type: none;
  padding: 0 20px;
  margin-top: 0;
}
#nav-mobile .menu .menu-item {
  font-family: "AvenirNext Bold", sans-serif;
  position: relative;
  display: block;
  text-align: center;
  margin: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  text-decoration: none;
  color: #6d4b35;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.341rem;
  text-transform: uppercase;
}
#nav-mobile .menu .menu-item:last-child {
  margin-right: 0;
}
#nav-mobile .menu .menu-item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #6d4b35;
  padding: 5px 15px;
}
#nav-mobile .menu .menu-item a:hover, #nav-mobile .menu .menu-item a--active {
  color: #60dbe8;
  text-decoration: none;
}
#nav-mobile .menu .menu-item--active a {
  color: #60dbe8;
}
#nav-mobile .menu ul {
  margin: 10px 0 0 0;
  padding: 0;
  display: none;
}
#nav-mobile .menu ul li {
  position: relative;
  padding: 2px 10px;
  color: #666;
  font-size: 1.6rem;
}
#nav-mobile .menu ul li:hover ul, #nav-mobile .menu ul li:focus ul {
  display: block !important;
}
#nav-mobile .menu ul li a {
  color: #666;
}
#nav-mobile .menu ul li ul {
  margin: 0;
  padding: 0;
  position: relative;
  display: none !important;
}
#nav-mobile .menu ul li ul li {
  position: relative;
  padding: 2px 10px;
}
#nav-mobile .menu:hover ul, #nav-mobile .menu:focus ul {
  display: block;
}

.v-scroll {
  height: calc(100% - 10px);
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  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;
}

.soc-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -2.5px -2.5px -2.5px;
}
.soc-nav .button-soc {
  margin: 2.5px;
}

.menu-logo {
  display: block;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: url("../img/logo.svg") left center no-repeat;
  background-size: cover;
}

/* - Smaller screens */
@media screen and (max-width: 1100px) {
  .nav-icon {
    display: block;
  }
}
/*==========================================================================*\
  # Buttons
\*==========================================================================*/
.button {
  font-family: "AvenirNext Bold", sans-serif;
  position: relative;
  color: #000000;
  padding: 9px 27px 9px 28px;
  border-radius: 23px;
  border: 2px solid #60dbe8;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  display: inline-block;
  line-height: normal;
  z-index: 0;
}
.button:hover {
  color: #ffffff;
  text-decoration: unset;
  border: 2px solid #ffc700;
}
.button:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffc700;
  border-radius: 23px;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.button:hover:after {
  width: 100%;
  opacity: 1;
}

.button-primary,
.button.button-primary {
  color: #ffffff;
  -webkit-box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.15);
  font-weight: 600;
}
.button-primary:hover,
.button.button-primary:hover {
  color: #ffffff;
}
.button-primary:before,
.button.button-primary:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #60dbe8;
  border-radius: 23px;
  z-index: -2;
}

/*==========================================================================*\
  # Buttons Socials
\*==========================================================================*/
.button-soc {
  display: block;
  width: 30px;
  height: 30px;
  border: solid 1px #6d4b35;
  border-radius: 100%;
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.button-soc:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 29px;
  height: 29px;
  background-color: #6d4b35;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.button-soc:hover,
.button-soc :focus {
  border-color: #60dbe8;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.button-soc:hover:after,
.button-soc :focus:after {
  background-color: #60dbe8;
}
.button-soc--fb:after {
  -webkit-mask-image: url("../img/social_fb.svg");
          mask-image: url("../img/social_fb.svg");
}
.button-soc--yt:after {
  -webkit-mask-image: url("../img/social_yt.svg");
          mask-image: url("../img/social_yt.svg");
}
.button-soc--in:after {
  -webkit-mask-image: url("../img/social_in.svg");
          mask-image: url("../img/social_in.svg");
}

/*==========================================================================*\
  # Forms
\*==========================================================================*/
form {
  text-align: left;
}
form div {
  line-height: normal;
  margin-top: 9px;
  margin-bottom: 15px;
}
form label {
  margin: 0 0 0 28px;
  font-weight: bold;
  color: #ffffff;
  line-height: normal;
}
form input[type=email], form input[type=number], form input[type=password], form input[type=search], form input[type=tel], form input[type=text], form input[type=url] {
  font-family: "AvenirNext Medium", sans-serif;
  background: #ffffff;
  padding: 16px 28px 16px 28px;
  width: 100%;
  border-radius: 30px;
}
form input[type=email]::-webkit-input-placeholder, form input[type=number]::-webkit-input-placeholder, form input[type=password]::-webkit-input-placeholder, form input[type=search]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form input[type=text]::-webkit-input-placeholder, form input[type=url]::-webkit-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form input[type=email]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=text]::-moz-placeholder, form input[type=url]::-moz-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form input[type=email]:-ms-input-placeholder, form input[type=number]:-ms-input-placeholder, form input[type=password]:-ms-input-placeholder, form input[type=search]:-ms-input-placeholder, form input[type=tel]:-ms-input-placeholder, form input[type=text]:-ms-input-placeholder, form input[type=url]:-ms-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form input[type=email]::-ms-input-placeholder, form input[type=number]::-ms-input-placeholder, form input[type=password]::-ms-input-placeholder, form input[type=search]::-ms-input-placeholder, form input[type=tel]::-ms-input-placeholder, form input[type=text]::-ms-input-placeholder, form input[type=url]::-ms-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form input[type=email]::placeholder, form input[type=number]::placeholder, form input[type=password]::placeholder, form input[type=search]::placeholder, form input[type=tel]::placeholder, form input[type=text]::placeholder, form input[type=url]::placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form textarea {
  padding: 16px 28px 16px 28px;
  width: 100%;
  border-radius: 26px;
}
form textarea::-webkit-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form textarea::-moz-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form textarea:-ms-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form textarea::-ms-input-placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form textarea::placeholder {
  color: #6d4b35;
  opacity: 0.7;
}
form button {
  margin-top: 18px;
}
form img {
  -webkit-filter: invert(1);
          filter: invert(1);
  margin-left: 10px;
}

.validation_error,
.validation_message  {
  display: none;
}

.gfield_error input[type=email], .gfield_error input[type=number], .gfield_error input[type=password], .gfield_error input[type=search], .gfield_error input[type=tel], .gfield_error input[type=text], .gfield_error input[type=url],
.gfield_error textarea {
  padding: 15px 27px;
  border: 1px solid #ff3636;
  -webkit-box-shadow: 0 0 6px 0 #ff3636;
          box-shadow: 0 0 6px 0 #ff3636;
}

@media screen and (max-width: 550px) {
  .gform_footer {
    text-align: center;
  }
}
/*==========================================================================*\
  # Containers
\*==========================================================================*/
.main__container-contact {
  background: #4c3426;
  padding: 106px 0 75px 0;
  color: #ffffff;
}
.main__container-contact ul {
  list-style-type: none;
}
.main__container-contact h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 75px;
}
.main__container-contact .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main__container-contact .container-contact-form {
  width: 50%;
  margin-right: 45px;
}
.main__container-contact .container-contact-info {
  margin-left: 45px;
  width: 50%;
}
.main__container-contact .container-contact-info .adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main__container-contact .container-contact-info .adress span {
  width: 50%;
}
.main__container-contact .container-contact-info .adress span h3 {
  color: #4dbcc1;
  font-size: 1.8rem;
  padding-bottom: 14px;
}
.main__container-contact .container-contact-info .adress span p {
  color: #ffffff;
  opacity: 1;
  line-height: normal;
  padding: 0 0 7px 0;
}
.main__container-contact .container-contact-info .adress span p a {
  color: #ffffff;
}
.main__container-contact .container-contact-info .adress span p a:hover {
  color: #4dbcc1;
}
.main__container-contact .container-contact-info iframe {
  width: 100%;
  height: 336px;
  margin-top: 34px;
}
@media screen and (max-width: 950px) {
  .main__container-contact .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main__container-contact .container-contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .main__container-contact .container-contact-info {
    width: 100%;
    max-width: 600px;
    margin: 60px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main__container-contact .container-contact-info .adress {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -10px;
  }
  .main__container-contact .container-contact-info .adress span {
    width: 200px;
    margin: 10px;
  }
  .main__container-contact .container-contact-info iframe {
    height: 220px;
    margin: 0;
  }
}
@media screen and (max-width: 550px) {
  .main__container-contact .container-contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main__container-contact .container-contact-info .adress {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -20px auto;
  }
  .main__container-contact .container-contact-info .adress span {
    text-align: center;
    width: auto;
    margin: 20px;
  }
  .main__container-contact .container-contact-info iframe {
    height: 220px;
    margin: 50px 0 0 0;
  }
}
.main__container-contact.main__container-contact--ice-cream {
  padding-top: 0;
}
@media screen and (max-width: 540px) {
  .main__container-contact.main__container-contact--ice-cream {
    padding-top: 106px;
  }
}
.main__container-contact.main__container-contact--ice-cream h2 {
  z-index: 1;
  position: relative;
}
.main__container-contact.main__container-contact--ice-cream:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 560px;
  display: block;
  background: url("../img/ice-cream-contact-top.svg") no-repeat top center;
  background-size: 100% 100%;
  margin-top: -440px;
}
@media screen and (max-width: 1920px) {
  .main__container-contact.main__container-contact--ice-cream:before {
    height: 300px;
    margin-top: -280px;
  }
}
@media screen and (max-width: 1441px) {
  .main__container-contact.main__container-contact--ice-cream:before {
    margin-top: -250px;
  }
}
@media screen and (max-width: 540px) {
  .main__container-contact.main__container-contact--ice-cream:before {
    display: none;
  }
}

/*==========================================================================*\
  # Breadcrumbs Menu
\*==========================================================================*/
.breadcrumps {
  padding-top: 25px;
  padding-bottom: 25px;
}
.breadcrumps a {
  color: #60dbe8;
}
.breadcrumps a:hover, .breadcrumps a:focus {
  color: #4dbcc1;
}

/*==========================================================================*\
  # Cursor animation
\*==========================================================================*/
/* hide browser cursor
body,
*,
*:hover {
  cursor: none;
}
*/
.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: translate(-50%, -50%);
  transition: translate(-50%, -50%);
}

.custom-cursor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: fixed;
  z-index: 900;
  top: -15px;
  left: -15px;
  pointer-events: none;
  -webkit-mix-blend-mode: hard-light;
  mix-blend-mode: hard-light;
}

.cursor__small {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4c3426;
  z-index: 5;
  margin: -5px 0 0 -5px;
}

.cursor__big {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: #4c3426 15px solid;
  z-index: 1;
  opacity: 0.3;
  margin: -15px 0 0 -15px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 320ms cubic-bezier(0.26, 0.01, 0.17, 1), border 90ms;
  transition: all 320ms cubic-bezier(0.26, 0.01, 0.17, 1), border 90ms;
}

.touch .custom-cursor {
  display: none;
}

/*==========================================================================*\
  LAYOUT
\*==========================================================================*/
/*==========================================================================*\
  # Homepage
\*==========================================================================*/
.main__home-top {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: linear-gradient(40deg, #ffffff 20%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #ffffff, #e8e8e8 150%);
  margin-bottom: 326px;
}
@media screen and (max-width: 1420px) {
  .main__home-top {
    margin-bottom: 17vw;
  }
}
@media screen and (max-width: 960px) {
  .main__home-top {
    padding-bottom: 10px;
  }
}
.main__home-top:after {
  content: "";
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  width: 100%;
  height: 326px;
  display: block;
  background: url("../img/bg-top.png") no-repeat top center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1420px) {
  .main__home-top:after {
    background-size: contain;
    height: 17.5vw;
  }
}
.main__home-top .wrapper.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .main__home-top .wrapper.first {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 100px;
  }
}
.main__home-top .wrapper.first .text {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1150px) {
  .main__home-top .wrapper.first .text {
    margin-top: 0;
  }
}
@media screen and (max-width: 950px) {
  .main__home-top .wrapper.first .text {
    margin-top: 0;
    margin: 50px auto;
    text-align: center;
  }
}
.main__home-top .wrapper.first .text:after {
  content: "";
  position: absolute;
  top: calc(100% - 40px);
  left: -190px;
  width: 477px;
  height: 426px;
  display: block;
  background: url("../img/gray-1.svg") no-repeat top center;
  z-index: -1;
  background-size: contain;
}
@media screen and (max-width: 1420px) {
  .main__home-top .wrapper.first .text:after {
    width: 390px;
    height: 348px;
  }
}
@media screen and (max-width: 1060px) {
  .main__home-top .wrapper.first .text:after {
    top: calc(100% - 100px);
  }
}
@media screen and (max-width: 960px) {
  .main__home-top .wrapper.first .text:after {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .main__home-top .wrapper.first .text h1 {
    font-size: 5.5rem;
  }
}
.main__home-top .wrapper.first .text p {
  max-width: 450px;
}
@media screen and (max-width: 950px) {
  .main__home-top .wrapper.first .text p {
    margin: 0 auto;
  }
}
.main__home-top .wrapper.first .text .button {
  margin: 10px 0 0 0;
}
.main__home-top .wrapper.first .image {
  position: relative;
  width: 685px;
  margin-top: 45px;
  margin-right: -80px;
}
@media screen and (max-width: 1150px) {
  .main__home-top .wrapper.first .image {
    width: calc(100% - 390px);
  }
}
@media screen and (max-width: 950px) {
  .main__home-top .wrapper.first .image {
    max-width: 685px;
    margin: 0 auto;
    width: 100%;
  }
}
.main__home-top .wrapper.first .image img {
  width: 100%;
}
.main__home-top .wrapper.first .image:after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 206px;
  height: 202px;
  display: block;
  background: url("../img/yellow-1.svg") no-repeat top center;
  background-size: contain;
}
@media screen and (max-width: 950px) {
  .main__home-top .wrapper.first .image:after {
    width: 206px;
    height: 202px;
    left: auto;
    right: calc(80% - 60px);
    bottom: -20px;
  }
}
@media screen and (max-width: 500px) {
  .main__home-top .wrapper.first .image:after {
    width: 152px;
    height: 149px;
    bottom: -40px;
  }
}
.main__home-top .wrapper.second {
  margin-top: 50px;
  text-align: center;
}
.main__home-top .wrapper.second h2 {
  color: #ffc700;
}
.main__home-top .wrapper.second p {
  width: 100%;
  max-width: 540px;
  padding: 0 30px;
  margin: 0 auto 55px auto;
}
.main__home-top .wrapper.second .categories {
  margin: -22px;
}
.main__home-top .wrapper.second .categories .button {
  margin: 11px;
}
@media screen and (max-width: 1150px) {
  .main__home-top .wrapper.second .categories {
    margin: -8px;
  }
  .main__home-top .wrapper.second .categories .button {
    margin: 4px;
  }
}

.main__home-ice .wrapper.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1150px) {
  .main__home-ice .wrapper.first {
    margin-top: 50px;
  }
}
.main__home-ice .wrapper.first .text h2 {
  text-indent: -99999px;
  width: 100%;
  max-width: 369px;
}
.main__home-ice .wrapper.first .text h2 img {
  display: block;
  width: 100%;
}
.main__home-ice .wrapper.first .text p {
  max-width: 442px;
  color: #e8e8e8;
  opacity: 1;
  margin: 31px 31px 36px 0;
}
.main__home-ice .wrapper.first .image {
  width: 756px;
  margin-right: -69px;
}
.main__home-ice .wrapper.first .image img {
  width: 100%;
}
.main__home-ice .wrapper.first .image__text h3 {
  width: 100%;
  max-width: 240px;
  margin: 38px auto 15px auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.19);
  font-size: 2.4rem;
  text-align: center;
  color: #ffffff;
}
.main__home-ice .wrapper.first .image__text h4 {
  font-family: "AvenirNext Medium", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: center;
  color: #e8e8e8;
}
@media screen and (max-width: 950px) {
  .main__home-ice .wrapper.first {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 0;
  }
  .main__home-ice .wrapper.first .text {
    margin: 0 auto;
    text-align: center;
  }
  .main__home-ice .wrapper.first .text h2 {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 280px;
  }
  .main__home-ice .wrapper.first .text p {
    margin: 31px 0 36px 0;
  }
  .main__home-ice .wrapper.first .image {
    width: 500px;
    margin: 70px auto 0 auto;
  }
}
.main__home-ice .wrapper.second {
  margin-top: 150px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main__home-ice .wrapper.second .item {
  z-index: 10;
}
.main__home-ice .wrapper.second .item img {
  width: 261px;
  height: auto;
  margin: 20px auto;
}
.main__home-ice .wrapper.second .item h3 {
  width: 100%;
  max-width: 240px;
  margin: 38px auto 15px auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.19);
  font-size: 2.4rem;
  text-align: center;
  color: #ffffff;
}
.main__home-ice .wrapper.second .item p {
  margin: 0 auto;
  letter-spacing: normal;
  text-align: center;
  color: #e8e8e8;
  opacity: 1;
}
.main__home-ice .wrapper.second .item h4 {
  font-family: "AvenirNext Medium", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: center;
  color: #e8e8e8;
}
@media screen and (max-width: 950px) {
  .main__home-ice .wrapper.second {
    margin-top: 100px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .main__home-ice .wrapper.second .item {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .main__home-ice .wrapper.second .item img {
    width: 220px;
    margin: 10px auto;
  }
}

.main__home-ice--frosi {
  padding-top: 326px;
  margin-top: -326px;
  padding-bottom: 220px;
  background-image: radial-gradient(circle at 66% 33%, #53396f, #2f1c44 85%);
}
@media screen and (max-width: 1420px) {
  .main__home-ice--frosi {
    padding-top: 17vw;
    margin-top: -17vw;
    padding-bottom: 180px;
  }
}
.main__home-ice--frosi .item {
  min-width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main__home-ice--frosi .item p {
  max-width: 208px;
}
.main__home-ice--frosi .item:nth-of-type(2) p {
  max-width: 240px;
}

.main__home-ice--eskymacek {
  background: #8ad0e8;
  position: relative;
  z-index: 2;
}
.main__home-ice--eskymacek:before, .main__home-ice--eskymacek:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 176px;
  display: block;
  background: url("../img/bg-blue.png") no-repeat top center;
  background-size: 100% 100%;
  z-index: -10;
}
.main__home-ice--eskymacek:before {
  top: -176px;
}
@media screen and (max-width: 1420px) {
  .main__home-ice--eskymacek:before {
    background-size: contain;
    height: 9.3vw;
    top: -9vw;
  }
}
.main__home-ice--eskymacek:after {
  bottom: -176px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1420px) {
  .main__home-ice--eskymacek:after {
    background-size: contain;
    height: 9.3vw;
    bottom: -9vw;
  }
}
.main__home-ice--eskymacek .wrapper.first {
  padding-bottom: 50px;
}
@media screen and (max-width: 1150px) {
  .main__home-ice--eskymacek .wrapper.first {
    margin-top: 0px;
  }
}
.main__home-ice--eskymacek .wrapper.first .text {
  margin-top: -60px;
}
.main__home-ice--eskymacek .wrapper.first .text h2 {
  max-width: 489px;
}
.main__home-ice--eskymacek .wrapper.first .text p  {
  max-width: 380px;
  margin-top: 15px;
  color: #333333;
}
.main__home-ice--eskymacek .wrapper.first .image {
  position: relative;
  margin: -60px -120px 0 -280px;
  z-index: -1;
  width: 100%;
}
.main__home-ice--eskymacek .wrapper.first .image img {
  width: calc(100% + 100px);
}
.main__home-ice--eskymacek .wrapper.first .image__text {
  margin-top: -100px;
  position: relative;
  left: 200px;
}
@media screen and (max-width: 1150px) {
  .main__home-ice--eskymacek .wrapper.first .image__text {
    left: 100px;
  }
}
.main__home-ice--eskymacek .wrapper.first .image__text h4 {
  color: #333333;
}
.main__home-ice--eskymacek .wrapper.first .image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateX(-170px);
          transform: translateX(-170px);
  width: 180%;
  height: 180%;
  z-index: -1;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 40%);
}
@media screen and (max-width: 950px) {
  .main__home-ice--eskymacek .wrapper.first .text {
    margin-top: 30px;
  }
  .main__home-ice--eskymacek .wrapper.first .text h2 {
    max-width: 430px;
  }
  .main__home-ice--eskymacek .wrapper.first .text p {
    margin: 50px auto 20px auto;
  }
  .main__home-ice--eskymacek .wrapper.first .image {
    margin: 10px auto;
  }
  .main__home-ice--eskymacek .wrapper.first .image:after {
    -webkit-transform: translateX(-30%) translateY(-200px);
            transform: translateX(-30%) translateY(-200px);
    width: 300%;
    height: 300%;
  }
  .main__home-ice--eskymacek .wrapper.first .image img {
    width: 100%;
  }
  .main__home-ice--eskymacek .wrapper.first .image__text {
    margin-top: 0;
    left: 0;
  }
}

.main__home-ice--lahoda {
  margin-bottom: 280px;
  position: relative;
  padding-top: 176px;
  padding-bottom: 50px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#3f2d26), color-stop(20%, rgba(63, 45, 38, 0))), radial-gradient(circle at 30% 27%, #503e38, #3f2d27 39%, #3f2d26 76%);
  background-image: linear-gradient(0deg, #3f2d26 0%, rgba(63, 45, 38, 0) 20%), radial-gradient(circle at 30% 27%, #503e38, #3f2d27 39%, #3f2d26 76%);
}
@media screen and (max-width: 1420px) {
  .main__home-ice--lahoda {
    margin-bottom: 9vw;
    padding-top: 9vw;
  }
}
.main__home-ice--lahoda:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 280px;
  display: block;
  background: url("../img/bg-brown.png") no-repeat top center;
  background-size: 100% 100%;
  bottom: -280px;
}
@media screen and (max-width: 1420px) {
  .main__home-ice--lahoda:after {
    height: 14.3vw;
    bottom: -14vw;
  }
}
.main__home-ice--lahoda .wrapper.first {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0;
}
.main__home-ice--lahoda .wrapper.first .text h2 {
  max-width: 403px;
}
.main__home-ice--lahoda .wrapper.first .text p  {
  max-width: 370px;
}
.main__home-ice--lahoda .wrapper.first .image {
  width: 592px;
  margin-right: -20px;
}
@media screen and (max-width: 1050px) {
  .main__home-ice--lahoda .wrapper.first .image {
    width: 500px;
  }
}
.main__home-ice--lahoda .wrapper.second {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto;
}
.main__home-ice--lahoda .wrapper.second .item {
  margin: 20px 54px;
  text-align: center;
}
.main__home-ice--lahoda .wrapper.second .item img {
  width: 190px;
}
@media screen and (max-width: 950px) {
  .main__home-ice--lahoda .wrapper.first .text {
    margin-top: 30px;
  }
  .main__home-ice--lahoda .wrapper.first .text h2 {
    max-width: 350px;
  }
  .main__home-ice--lahoda .wrapper.first .text p {
    margin: 50px auto 20px auto;
  }
  .main__home-ice--lahoda .wrapper.first .image {
    width: 100%;
    max-width: 592px;
    margin: 90px auto;
  }
}

.main__offer {
  background-image: radial-gradient(circle at 50% 54%, #60dbe8, #40a3ae 115%);
  padding-top: 270px;
  margin-top: -326px;
  padding-bottom: 270px;
}
@media screen and (max-width: 950px) {
  .main__offer {
    padding-bottom: 130px;
    padding-top: 350px;
  }
}
@media screen and (max-width: 730px) {
  .main__offer {
    padding-bottom: 50px;
  }
}
.main__offer .wrapper {
  max-width: 1225px;
  position: relative;
  z-index: 1;
}
.main__offer .wrapper:before {
  content: "";
  position: absolute;
  bottom: 319px;
  left: -700px;
  width: 584px;
  height: 543px;
  display: block;
  background: url("../img/offer-yellow-1.svg") no-repeat top center;
  background-size: contain;
  z-index: -1;
}
.main__offer .wrapper:after {
  content: "";
  position: absolute;
  bottom: -375px;
  right: -600px;
  width: 468px;
  height: 432px;
  display: block;
  background: url("../img/offer-yellow-2.svg") no-repeat top center;
  background-size: contain;
  z-index: -1;
}
.main__offer .wrapper .main__offer__header {
  text-align: center;
  padding-bottom: 80px;
}
.main__offer .wrapper .main__offer__header h2 {
  font-size: 52px;
  color: #ffffff;
}
.main__offer .wrapper .main__offer__header p {
  color: #ffffff;
  opacity: 0.7;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.main__offer .wrapper .offer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 70px;
}
.main__offer .wrapper .offer-grid .offer-grid__item {
  display: block;
  margin: 7px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.main__offer .wrapper .offer-grid .offer-grid__item:hover {
  opacity: 0.8;
}
.main__offer .wrapper .offer-grid .offer-grid__item img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
}

.main__home-about {
  position: relative;
  padding-top: 30px;
  padding-bottom: 70px;
}
.main__home-about:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 270px;
  display: block;
  background: url("../img/bg-offer-bottom.png") no-repeat top center;
  background-size: 100% 100%;
}
.main__home-about:before {
  top: -215px;
}
@media screen and (max-width: 1420px) {
  .main__home-about:before {
    background-size: contain;
    height: 17.5vw;
    top: -13vw;
  }
}
@media screen and (max-width: 1420px) {
  .main__home-about {
    padding-top: 70px;
  }
}
@media screen and (max-width: 950px) {
  .main__home-about {
    padding-top: 35px;
  }
}
.main__home-about .wrapper.first {
  position: relative;
  text-align: center;
}
.main__home-about .wrapper.first p {
  max-width: 750px;
  margin: 0 auto;
}
.main__home-about .wrapper.second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px auto;
}
.main__home-about .wrapper.second .text {
  max-width: 488px;
}
.main__home-about .wrapper.second .text__box {
  margin-bottom: 10px;
}
.main__home-about .wrapper.second .text__box img {
  width: 100px;
  height: auto;
  margin-right: 60px;
}
@media screen and (max-width: 500px) {
  .main__home-about .wrapper.second .text__box img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.main__home-about .wrapper.second .text__box--second {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main__home-about .wrapper.second .text__box--second p  {
  padding-bottom: 0;
}
@media screen and (max-width: 500px) {
  .main__home-about .wrapper.second .text__box--second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.main__home-about .wrapper.second .image {
  position: relative;
  max-width: 571px;
  margin-right: 60px;
}
.main__home-about .wrapper.second .image img {
  width: 100%;
}
.main__home-about .wrapper.second .image:before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 143px;
  height: 139px;
  display: block;
  background: url("../img/yellow-3.svg") no-repeat top center;
  background-size: contain;
}
@media screen and (max-width: 1050px) {
  .main__home-about .wrapper.second .image:before {
    width: 110px;
    height: 107px;
    top: -55px;
    left: -55px;
  }
}
@media screen and (max-width: 700px) {
  .main__home-about .wrapper.second .image:before {
    width: 85px;
    height: 83px;
    top: -38px;
    left: -38px;
  }
}
.main__home-about .wrapper.second .image:after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: -25px;
  width: 230px;
  height: 212px;
  display: block;
  background: url("../img/yellow-2.svg") no-repeat top center;
  background-size: contain;
}
@media screen and (max-width: 1050px) {
  .main__home-about .wrapper.second .image:after {
    width: 180px;
    height: 166px;
  }
}
@media screen and (max-width: 700px) {
  .main__home-about .wrapper.second .image:after {
    width: 140px;
    height: 129px;
  }
}
@media screen and (max-width: 950px) {
  .main__home-about .wrapper.second {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main__home-about .wrapper.second .image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
  }
  .main__home-about .wrapper.second .text {
    margin-top: 100px;
  }
}

.main__home-shop .wrapper {
  text-align: center;
  padding-bottom: 50px;
}
.main__home-shop .wrapper .logos {
  margin: 40px 0;
}
.main__home-shop .wrapper .shop-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -40px;
}
.main__home-shop .wrapper .shop-logo a {
  opacity: 0.77;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.main__home-shop .wrapper .shop-logo a:hover {
  opacity: 1;
}
.main__home-shop .wrapper .shop-logo img {
  margin: 20px 40px;
}
@media screen and (max-width: 330px) {
  .main__home-shop .wrapper .shop-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*==========================================================================*\
  # SIGNLE TEMPLATE
\*==========================================================================*/
.main__single h1 {
  text-transform: uppercase;
}
.main__single .content {
  padding-left: 65px;
  max-width: 1045px;
  margin: 36px 0 84px 0;
}
.main__single ul, .main__single ol {
  margin: 0 0 20px 30px;
  list-style: none;
}
.main__single ul li, .main__single ol li {
  line-height: 2.8rem;
}
.main__single ul li:before, .main__single ol li:before {
  content: "•";
  color: #60dbe8;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  margin-left: -2em;
}
.main__single .content-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -14px;
  padding-bottom: 60px;
}
.main__single a {
  text-decoration: underline;
}
.main__single img {
  max-width: calc(100% - 14px);
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 14px;
}
.main__single a img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

/*==========================================================================*\
  # PAGE TEMPLATE
\*==========================================================================*/
.main__page h1 {
  text-transform: uppercase;
}
.main__page .content {
  padding-left: 65px;
  max-width: 1045px;
  margin: 36px 0 84px 0;
}
.main__page ul, .main__page ol {
  margin: 0 0 20px 30px;
  list-style: none;
}
.main__page ul li, .main__page ol li {
  line-height: 2.8rem;
}
.main__page ul li:before, .main__page ol li:before {
  content: "•";
  color: #60dbe8;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  margin-left: -2em;
}
.main__page .content-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -14px;
  padding-bottom: 60px;
}
.main__page a {
  text-decoration: underline;
}
.main__page img {
  max-width: calc(100% - 14px);
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 14px;
}
.main__page a img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

/*==========================================================================*\
  # 404
\*==========================================================================*/
.main__404 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#3f2d26), color-stop(20%, rgba(63, 45, 38, 0))), radial-gradient(circle at 30% 27%, #503e38, #3f2d27 39%, #3f2d26 76%);
  background-image: linear-gradient(0deg, #3f2d26 0%, rgba(63, 45, 38, 0) 20%), radial-gradient(circle at 30% 27%, #503e38, #3f2d27 39%, #3f2d26 76%);
  color: #ffffff;
  position: relative;
}
.main__404 .flex {
  min-height: calc(100vh - 445px);
  padding: 100px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main__404 .wrapper {
  position: relative;
  z-index: 10;
}
.main__404 a {
  color: #ffffff;
}
.main__404 h1 {
  color: #ffffff;
  text-transform: uppercase;
}

.ice-cream {
  position: relative;
  padding-bottom: 560px;
}
@media screen and (max-width: 1920px) {
  .ice-cream {
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 1441px) {
  .ice-cream {
    padding-bottom: 250px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream {
    padding-bottom: 100px;
  }
}
.ice-cream.ice-cream--frosi {
  background: url("../img/bg-frosi.svg") center no-repeat;
  background-size: cover;
}
.ice-cream.ice-cream--frosi h1 {
  width: 369px;
  height: 214px;
  background: url("../img/frosi-title.svg") center no-repeat;
  background-size: contain;
}
.ice-cream.ice-cream--frosi:before {
  content: url("../img/frosi-left-ilustration.svg");
  position: absolute;
  left: 70px;
  top: 60px;
}
@media screen and (max-width: 1850px) {
  .ice-cream.ice-cream--frosi:before {
    display: none;
  }
}
.ice-cream.ice-cream--frosi:after {
  content: url("../img/frosi-right-ilustration.svg");
  position: absolute;
  right: 70px;
  bottom: 150px;
}
@media screen and (max-width: 1850px) {
  .ice-cream.ice-cream--frosi:after {
    display: none;
  }
}
.ice-cream.ice-cream--goldy {
  background: url("../img/bg-goldy.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--goldy h1 {
  width: 492px;
  height: 230px;
  background: url("../img/goldy-title.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--goldy h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--goldy h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--goldy:before {
  content: url("../img/goldy-left-ilustration.svg");
  position: absolute;
  left: -253px;
  bottom: 0;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--goldy:before {
    left: -500px;
  }
}
@media screen and (max-width: 1640px) {
  .ice-cream.ice-cream--goldy:before {
    display: none;
  }
}
.ice-cream.ice-cream--goldy:after {
  content: url("../img/goldy-right-ilustration.svg");
  position: absolute;
  right: -385px;
  bottom: -125px;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--goldy:after {
    right: -630px;
  }
}
@media screen and (max-width: 1640px) {
  .ice-cream.ice-cream--goldy:after {
    display: none;
  }
}
.ice-cream.ice-cream--snih {
  background: url("../img/bg-snih.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--snih h1 {
  width: 468.8px;
  height: 258px;
  height: 230px;
  background: url("../img/snih-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--snih h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--snih h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--snih .ice-cream__header .right img {
  max-width: 550px;
  width: 100%;
}
.ice-cream.ice-cream--snih .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--myval {
  background: url("../img/bg-myval.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--myval h1 {
  position: relative;
  left: -25px;
  width: 575px;
  height: 211px;
  background: url("../img/myval-title.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--myval h1 {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--myval h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--myval h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--myval:before {
  content: url("../img/myval-left-ilustration.svg");
  position: absolute;
  left: 73px;
  top: 73px;
}
@media screen and (max-width: 1980px) {
  .ice-cream.ice-cream--myval:before {
    display: none;
  }
}
.ice-cream.ice-cream--myval:after {
  content: url("../img/myval-right-ilustration.svg");
  position: absolute;
  right: 21px;
  top: 53px;
}
@media screen and (max-width: 1980px) {
  .ice-cream.ice-cream--myval:after {
    display: none;
  }
}
.ice-cream.ice-cream--myval .ice-cream__header:before {
  content: url("../img/myval-top-ilustration.svg");
  position: absolute;
  right: 50%;
  top: 53px;
}
@media screen and (max-width: 1980px) {
  .ice-cream.ice-cream--myval .ice-cream__header:before {
    display: none;
  }
}
.ice-cream.ice-cream--myval .ice-cream__header:after {
  content: url("../img/myval-center-ilustration.svg");
  position: absolute;
  right: 33%;
  bottom: 0;
}
@media screen and (max-width: 1980px) {
  .ice-cream.ice-cream--myval .ice-cream__header:after {
    display: none;
  }
}
.ice-cream.ice-cream--myval .ice-cream__header .left p {
  color: #333333;
}
.ice-cream.ice-cream--myval .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--eskymacek {
  background: url("../img/bg-eskymacek.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--eskymacek h1 {
  width: 489px;
  height: 144px;
  background: url("../img/eskymacek-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--eskymacek h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--eskymacek h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--eskymacek .ice-cream__header:after {
  content: "";
  width: 1268px;
  height: 783px;
  background: url("../img/eskymacek-mleko.png") center no-repeat;
  background-size: contain;
  position: absolute;
  right: -170px;
  top: 55px;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--eskymacek .ice-cream__header:after {
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ice-cream.ice-cream--eskymacek .ice-cream__header:after {
    display: none;
  }
}
.ice-cream.ice-cream--eskymacek .ice-cream__header .left {
  position: relative;
  z-index: 1;
}
.ice-cream.ice-cream--eskymacek .ice-cream__header .left p {
  color: #333333;
}
.ice-cream.ice-cream--eskymacek .ice-cream__header .right {
  position: relative;
  z-index: 1;
}
.ice-cream.ice-cream--eskymacek .ice-cream__header .right img {
  max-width: 622px;
  width: 100%;
}
.ice-cream.ice-cream--eskymacek .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--marty {
  background: url("../img/bg-marty.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--marty h1 {
  width: 416px;
  height: 143px;
  background: url("../img/marty-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--marty h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--marty h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--ruska-zmrzlina {
  background: url("../img/bg-ruska-zmrzlina.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--ruska-zmrzlina h1 {
  width: 557px;
  height: 235px;
  background: url("../img/ruska-zmrzlina-title.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--ruska-zmrzlina h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--ruska-zmrzlina h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--ruska-zmrzlina .ice-cream__header .left p {
  opacity: 1;
}
.ice-cream.ice-cream--ruska-zmrzlina .ice-cream__header .right {
  padding-top: 150px;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--ruska-zmrzlina .ice-cream__header .right {
    padding-top: 0;
  }
}
.ice-cream.ice-cream--ruska-zmrzlina .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--pastelka {
  background: url("../img/bg-pastelka.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--pastelka h1 {
  width: 409px;
  height: 161px;
  background: url("../img/pastelka-title.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--pastelka h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--pastelka h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--pastelka .ice-cream__header .right img {
  max-width: 622px;
  width: 100%;
}
.ice-cream.ice-cream--pastelka .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--pastelka .grid .grid__item {
  width: 25%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--pastelka .grid .grid__item {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .ice-cream.ice-cream--pastelka .grid .grid__item {
    width: 100%;
  }
}
.ice-cream.ice-cream--pastelka .grid .grid__item .image img {
  width: initial;
  max-width: 100%;
}
.ice-cream.ice-cream--pastelka .grid .grid__item:nth-child(5) .image img {
  width: 400px;
  max-width: 100%;
}
.ice-cream.ice-cream--rainbow {
  background: url("../img/bg-rainbow.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--rainbow h1 {
  margin-top: 80px;
  width: 513px;
  height: 117px;
  background: url("../img/rainbow-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--rainbow h1 {
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--rainbow h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--rainbow h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--rainbow:before {
  content: url("../img/rainbow-left-ilustration.svg");
  position: absolute;
  left: 240px;
  top: 170px;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--rainbow:before {
    display: none;
  }
}
.ice-cream.ice-cream--rainbow:after {
  content: url("../img/rainbow-right-ilustration.svg");
  position: absolute;
  right: 400px;
  top: 890px;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--rainbow:after {
    display: none;
  }
}
.ice-cream.ice-cream--rainbow .ice-cream__header .left p {
  color: #333333;
}
@media screen and (max-width: 1660px) {
  .ice-cream.ice-cream--rainbow .ice-cream__header .left img:nth-child(4) {
    display: none;
  }
}
.ice-cream.ice-cream--rainbow .ice-cream__header .right img {
  min-width: 900px;
}
@media screen and (max-width: 1900px) {
  .ice-cream.ice-cream--rainbow .ice-cream__header .right img {
    min-width: 750px;
  }
}
@media screen and (max-width: 1660px) {
  .ice-cream.ice-cream--rainbow .ice-cream__header .right img {
    min-width: auto;
  }
}
.ice-cream.ice-cream--smetanovo-ovocne {
  background: url("../img/bg-smetanovo-ovocne.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--smetanovo-ovocne h1 {
  position: relative;
  left: -55px;
  width: 510px;
  height: 174px;
  background: url("../img/smetanovo-ovocne-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .ice-cream.ice-cream--smetanovo-ovocne h1 {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--smetanovo-ovocne h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--smetanovo-ovocne h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--smetanovo-ovocne .ice-cream__header .right {
  /*img {
  	min-width: 900px;
  	@media screen and (max-width: 1900px) {
  		min-width: 750px;
  	}
  	@media screen and (max-width: 1660px) {
  		min-width: auto;
  	}
  }*/
}
.ice-cream.ice-cream--alkoholove-zmrzliny {
  background: url("../img/bg-alkoholove-zmrzliny.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--alkoholove-zmrzliny h1 {
  width: 481px;
  height: 180px;
  background: url("../img/alkoholove-zmrzliny-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--alkoholove-zmrzliny h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--alkoholove-zmrzliny h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--alkoholove-zmrzliny .ice-cream__header .right {
  padding-top: 100px;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--alkoholove-zmrzliny .ice-cream__header .right {
    padding-top: 0;
  }
}
.ice-cream.ice-cream--alkoholove-zmrzliny .grid .grid__item .image img {
  height: 390px;
  width: initial;
  max-width: 100%;
}
.ice-cream.ice-cream--alkoholove-zmrzliny .grid .grid__item h2 {
  height: 79px;
}
@media screen and (max-width: 600px) {
  .ice-cream.ice-cream--alkoholove-zmrzliny .grid .grid__item h2 {
    height: auto;
  }
}
.ice-cream.ice-cream--lahoda {
  background: url("../img/bg-lahoda.svg") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--lahoda h1 {
  width: 403px;
  height: 140px;
  background: url("../img/lahoda-title.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--lahoda h1 {
    width: 355px;
    height: 105px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--lahoda h1 {
    width: 250px;
    height: 74px;
  }
}
.ice-cream.ice-cream--lahoda:before {
  content: url("../img/lahoda-left-ilustration.svg");
  position: absolute;
  left: -790px;
  bottom: 350px;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--lahoda:before {
    display: none;
  }
}
.ice-cream.ice-cream--lahoda:after {
  content: url("../img/lahoda-right-ilustration.svg");
  position: absolute;
  right: -790px;
  top: 860px;
}
@media screen and (max-width: 2150px) {
  .ice-cream.ice-cream--lahoda:after {
    display: none;
  }
}
.ice-cream.ice-cream--lahoda .ice-cream__header .right {
  padding-top: 70px;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--lahoda .ice-cream__header .right {
    padding-top: 0;
  }
}
.ice-cream.ice-cream--lahoda .ice-cream__header .right img {
  max-width: 600px;
}
.ice-cream.ice-cream--lahoda .grid .grid__item {
  width: 25%;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--lahoda .grid .grid__item {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .ice-cream.ice-cream--lahoda .grid .grid__item {
    width: 100%;
  }
}
.ice-cream.ice-cream--lahoda .grid .grid__item .image img {
  height: 310px;
  width: initial;
  max-width: 100%;
}
.ice-cream.ice-cream--lahoda .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--keleemek {
  background: url("../img/bg-keleemek.png") center no-repeat, -webkit-gradient(linear, left top, left bottom, from(rgb(252, 249, 238)), to(rgb(249, 243, 231)));
  background: url("../img/bg-keleemek.png") center no-repeat, linear-gradient(180deg, rgb(252, 249, 238) 0%, rgb(249, 243, 231) 100%);
  background-size: 100% auto;
  background-position: 50% -8vw;
  position: relative;
}
@media screen and (max-width: 1700px) {
  .ice-cream.ice-cream--keleemek {
    background-position: 50% -5vw;
  }
}
@media screen and (max-width: 803px) {
  .ice-cream.ice-cream--keleemek {
    background-position: 50% 0;
  }
}
.ice-cream.ice-cream--keleemek h1 {
  width: 468.8px;
  height: 258px;
  height: 230px;
  background: url("../img/keleemek-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--keleemek h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--keleemek h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--keleemek .ice-cream__header .right img {
  max-width: 800px;
  width: 100%;
  top: 36%;
}
.ice-cream.ice-cream--keleemek .ice-cream__header .left p {
  color: #5e4a3b;
}
.ice-cream.ice-cream--keleemek .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--keleemek .grid .grid__item h2,
.ice-cream.ice-cream--keleemek .grid .grid__item p,
.ice-cream.ice-cream--keleemek .grid .grid__item span {
  color: #5e4a3b;
}
.ice-cream.ice-cream--nekonecno {
  background: url("../img/bg-nekonecno.png") center no-repeat, #ffefdb;
  background-size: 100% auto;
  background-position: 50% -25vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .ice-cream.ice-cream--nekonecno {
    background-position: 50% -10vw;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--nekonecno {
    background-position: 50% -10vw;
    background-size: 150% auto;
  }
}
.ice-cream.ice-cream--nekonecno h1 {
  width: 468.8px;
  height: 140px;
  background: url("../img/nekonecno-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--nekonecno h1 {
    width: 355px;
    height: 120px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--nekonecno h1 {
    width: 250px;
    height: 70px;
  }
}
.ice-cream.ice-cream--nekonecno .ice-cream__header .right img {
  max-width: 800px;
  width: 100%;
  top: 36%;
}
.ice-cream.ice-cream--nekonecno .ice-cream__header .left p {
  color: #3e201e;
}
.ice-cream.ice-cream--nekonecno .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--nekonecno .grid .grid__item h2,
.ice-cream.ice-cream--nekonecno .grid .grid__item p,
.ice-cream.ice-cream--nekonecno .grid .grid__item span {
  color: #3e201e;
}
.ice-cream.ice-cream--coko {
  background: url("../img/bg-coko.png") center no-repeat, #3e2017;
  background-size: min(100%, 2000px) auto;
  background-position: 50% -15vw;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--coko {
    background-size: 200% auto;
    background-position: 50% 20%;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--coko {
    background-position: 50% 20%;
  }
}
.ice-cream.ice-cream--coko h1 {
  width: 400px;
  height: 172px;
  background: url("../img/coko-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--coko h1 {
    width: 355px;
    height: 120px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--coko h1 {
    width: 250px;
    height: 120px;
  }
}
.ice-cream.ice-cream--coko .ice-cream__header .right img {
  max-width: 500px;
  width: 100%;
  top: 15%;
}
.ice-cream.ice-cream--coko .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--pastelka-multipack {
  background: url("../img/bg-pastelka-mtp.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.ice-cream.ice-cream--pastelka-multipack h1 {
  width: 409px;
  height: 161px;
  background: url("../img/pastelka-mtp-title.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--pastelka-multipack h1 {
    width: 438px;
    height: 187px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--pastelka-multipack h1 {
    width: 400px;
    height: 169px;
  }
}
.ice-cream.ice-cream--pastelka-multipack .ice-cream__header .right img {
  max-width: 750px;
  width: 100%;
}
.ice-cream.ice-cream--pastelka-multipack .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--mango {
  background-color: #ffbf0d;
  position: relative;
  overflow: hidden;
}
.ice-cream.ice-cream--mango:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translateX(-53%);
          transform: translateX(-53%);
  width: 100%;
  max-width: 1920px;
  height: 100%;
  background: url("../img/mango-bg.png") no-repeat;
  background-size: contain;
  background-position: top center;
}
@media screen and (max-width: 1680px) {
  .ice-cream.ice-cream--mango:before {
    top: 54%;
    left: 55%;
  }
}
@media screen and (max-width: 1442px) {
  .ice-cream.ice-cream--mango:before {
    top: 59%;
    left: 50%;
  }
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--mango:before {
    top: 40%;
    left: 53%;
  }
}
@media screen and (max-width: 840px) {
  .ice-cream.ice-cream--mango:before {
    top: 76%;
    left: 50%;
  }
}
.ice-cream.ice-cream--mango h1 {
  width: 409px;
  height: 161px;
  background: url("../img/mango-logo.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--mango h1 {
    width: 438px;
    height: 187px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--mango h1 {
    width: 100%;
    height: 120px;
  }
}
.ice-cream.ice-cream--mango .ice-cream__header .right img {
  max-width: 650px;
  width: 100%;
}
.ice-cream.ice-cream--mango .ice-cream__header .left p {
  color: #0d0d0d !important;
  opacity: 1 !important;
  text-shadow: 1px 1px 1px #ffbf0d, -1px 1px 1px #ffbf0d, -1px -1px 1px #ffbf0d, 1px -1px 1px #ffbf0d;
}
.ice-cream.ice-cream--mango .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--merunka {
  background-color: #f08f22;
  position: relative;
  /* background: url("../img/bg-coko.png") center no-repeat, #3e2017;
  background-size: min(100%, 2000px) auto;
  background-position: 50% -15vw;
  position: relative;
  @media screen and (max-width: 1140px) {
    background-size: 200% auto;
    background-position: 50% 20%;
  }
  @media screen and (max-width: 540px) {
    background-position: 50% 20%;
  }*/
}
.ice-cream.ice-cream--merunka h1 {
  position: relative;
  width: 575px;
  height: 211px;
  background: url("../img/merunka-logo.svg") center no-repeat;
  background-size: contain;
  overflow: hidden;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--merunka h1 {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--merunka h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--merunka h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--merunka:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(to left bottom, #48c38a 0%, #48c38a calc(50% - 1px), #f08f22 50%, #f08f22 100%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .ice-cream.ice-cream--merunka:after {
    height: 250px;
  }
}
.ice-cream.ice-cream--merunka:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: url("../img/merunka-poleva.png") center no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.ice-cream.ice-cream--merunka .ice-cream__header {
  z-index: 3;
}
.ice-cream.ice-cream--merunka .ice-cream__header:before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 0%;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  width: 200px;
  height: 550px;
  background: url("../img/merunky-left.png") center no-repeat;
  background-size: contain;
}
.ice-cream.ice-cream--merunka .ice-cream__header:after {
  content: "";
  display: block;
  position: absolute;
  top: 88%;
  left: 38%;
  width: 200px;
  height: 200px;
  background: url("../img/merunka-bottom.png") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1680px) {
  .ice-cream.ice-cream--merunka .ice-cream__header:after {
    display: none;
  }
}
.ice-cream.ice-cream--merunka .ice-cream__header .left p {
  color: #333333;
}
.ice-cream.ice-cream--merunka .buy h2 {
  color: #4c3426;
}
.ice-cream.ice-cream--ice-cone-superhero {
  background: #006184;
  position: relative;
  /*   &:before {
    content: url("../img/myval-left-ilustration.svg");
    position: absolute;
    left: 73px;
    top: 73px;
    @media screen and (max-width: 1980px) {
      display: none;
    }
  }
  &:after {
    content: url("../img/myval-right-ilustration.svg");
    position: absolute;
    right: 21px;
    top: 53px;
    @media screen and (max-width: 1980px) {
      display: none;
    }
  }*/
}
.ice-cream.ice-cream--ice-cone-superhero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/kornout-bg-desktop.png") no-repeat;
  background-size: max(100%, 1920px) 100%;
  background-position: top right;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--ice-cone-superhero:before {
    background: url("../img/kornout-bg-mobile.png") no-repeat;
    background-size: cover;
  }
}
.ice-cream.ice-cream--ice-cone-superhero h1 {
  position: relative;
  width: 450px;
  height: 300px;
  background: url("../img/kornout-logo.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1140px) {
  .ice-cream.ice-cream--ice-cone-superhero h1 {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream.ice-cream--ice-cone-superhero h1 {
    width: 355px;
    height: 166px;
  }
}
@media screen and (max-width: 540px) {
  .ice-cream.ice-cream--ice-cone-superhero h1 {
    width: 250px;
    height: 117px;
  }
}
.ice-cream.ice-cream--ice-cone-superhero .ice-cream__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* &:before {
    content: url("../img/myval-top-ilustration.svg");
    position: absolute;
    right: 50%;
    top: 53px;
    @media screen and (max-width: 1980px) {
      display: none;
    }
  }*/
}
.ice-cream.ice-cream--ice-cone-superhero .ice-cream__header:after {
  content: "";
  width: 200px;
  height: 169px;
  background: url("../img/kornout-cool.png") center no-repeat;
  background-size: contain;
  position: absolute;
  right: -10%;
  bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .ice-cream.ice-cream--ice-cone-superhero .ice-cream__header:after {
    display: none;
  }
}
.ice-cream.ice-cream--ice-cone-superhero .ice-cream__header .left p {
  color: white;
  opacity: 1 !important;
}
.ice-cream.ice-cream--ice-cone-superhero .ice-cream__header .left img {
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .ice-cream.ice-cream--ice-cone-superhero .ice-cream__header .left img {
    max-width: 100%;
  }
}
.ice-cream.ice-cream--ice-cone-superhero .ice-cream__header .right img {
  -webkit-transform: translateX(23%);
          transform: translateX(23%);
}
@media screen and (max-width: 1600px) {
  .ice-cream.ice-cream--ice-cone-superhero .ice-cream__header .right img {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.ice-cream.ice-cream--ice-cone-superhero .buy h2 {
  color: #4c3426;
}
.ice-cream .ice-cream__header {
  position: relative;
  max-width: 1260px;
  padding: 100px 20px 130px 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1140px) {
  .ice-cream .ice-cream__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .ice-cream .ice-cream__header {
    padding: 100px 20px;
  }
}
.ice-cream .ice-cream__header .left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media screen and (max-width: 1140px) {
  .ice-cream .ice-cream__header .left {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}
.ice-cream .ice-cream__header .left .arrows {
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .ice-cream .ice-cream__header .left .arrows {
    padding-bottom: 35px;
  }
}
.ice-cream .ice-cream__header .left .arrows .prev {
  text-decoration: none;
  margin-right: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.ice-cream .ice-cream__header .left .arrows .prev:hover {
  opacity: 0.75;
}
.ice-cream .ice-cream__header .left .arrows .next {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.ice-cream .ice-cream__header .left .arrows .next:hover {
  opacity: 0.75;
}
.ice-cream .ice-cream__header .left h1 {
  position: relative;
  z-index: 1;
  color: transparent;
  margin-bottom: 30px;
}
@media screen and (max-width: 1140px) {
  .ice-cream .ice-cream__header .left h1 {
    margin: 0 auto 30px;
  }
}
.ice-cream .ice-cream__header .left p {
  max-width: 442px;
  width: 100%;
  margin-bottom: 30px;
  color: #ffffff;
  padding-bottom: 0;
}
@media screen and (max-width: 1140px) {
  .ice-cream .ice-cream__header .left p {
    margin: 0 auto 30px;
    max-width: 600px;
  }
}
@media screen and (max-width: 1140px) {
  .ice-cream .ice-cream__header .right {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.ice-cream .ice-cream__header .right img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}
.ice-cream .grid {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .ice-cream .grid {
    max-width: 600px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 260px) {
  .ice-cream .grid {
    max-width: 260px;
  }
}
.ice-cream .grid .grid__item {
  text-align: center;
  width: 33.333333333%;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .ice-cream .grid .grid__item {
    width: 50%;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 600px) {
  .ice-cream .grid .grid__item {
    width: 100%;
  }
}
.ice-cream .grid .grid__item .image {
  margin-bottom: 40px;
}
.ice-cream .grid .grid__item .image img {
  max-width: 100%;
  height: auto;
}
.ice-cream .grid .grid__item h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
  width: 100%;
  margin: 0 auto;
}
.ice-cream .grid .grid__item p {
  max-width: 261px;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  padding-bottom: 10px;
}
.ice-cream .grid .grid__item span {
  color: #ffffff;
  line-height: 1.4;
  display: inline-block;
  padding-bottom: 10px;
}
.ice-cream .buy {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.ice-cream .buy h2 {
  text-align: center;
  color: #60dbe8;
  padding-bottom: 70px;
}
.ice-cream .buy .logos .shop-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -40px;
}
.ice-cream .buy .logos .shop-logo img {
  margin: 20px 40px;
}
.ice-cream .buy .logos .shop-logo a {
  opacity: 0.77;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.ice-cream .buy .logos .shop-logo a:hover {
  opacity: 1;
}
@media screen and (max-width: 330px) {
  .ice-cream .buy .logos .shop-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*==========================================================================*\
  EXTERNALS
\*==========================================================================*/
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  -webkit-transition-duration: 50ms;
          transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  -webkit-transition-duration: 0.45s;
          transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  -webkit-transition-duration: 0.55s;
          transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  -webkit-transition-duration: 0.65s;
          transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  -webkit-transition-duration: 0.85s;
          transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  -webkit-transition-duration: 0.95s;
          transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  -webkit-transition-duration: 1.05s;
          transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  -webkit-transition-duration: 1.15s;
          transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  -webkit-transition-duration: 1.25s;
          transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  -webkit-transition-duration: 1.3s;
          transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  -webkit-transition-duration: 1.35s;
          transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  -webkit-transition-duration: 1.45s;
          transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  -webkit-transition-duration: 1.55s;
          transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.55s;
          transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  -webkit-transition-duration: 1.65s;
          transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  -webkit-transition-duration: 1.7s;
          transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  -webkit-transition-duration: 1.75s;
          transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.75s;
          transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  -webkit-transition-duration: 1.85s;
          transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.85s;
          transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  -webkit-transition-duration: 1.9s;
          transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  -webkit-transition-duration: 1.95s;
          transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.95s;
          transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  -webkit-transition-duration: 2.05s;
          transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.05s;
          transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  -webkit-transition-duration: 2.1s;
          transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  -webkit-transition-duration: 2.15s;
          transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.15s;
          transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  -webkit-transition-duration: 2.2s;
          transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  -webkit-transition-duration: 2.25s;
          transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  -webkit-transition-duration: 2.3s;
          transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  -webkit-transition-duration: 2.35s;
          transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.35s;
          transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  -webkit-transition-duration: 2.4s;
          transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  -webkit-transition-duration: 2.45s;
          transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.45s;
          transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  -webkit-transition-duration: 2.5s;
          transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  -webkit-transition-duration: 2.55s;
          transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.55s;
          transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  -webkit-transition-duration: 2.6s;
          transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  -webkit-transition-duration: 2.65s;
          transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.65s;
          transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  -webkit-transition-duration: 2.7s;
          transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  -webkit-transition-duration: 2.75s;
          transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.75s;
          transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  -webkit-transition-duration: 2.8s;
          transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  -webkit-transition-duration: 2.85s;
          transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.85s;
          transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  -webkit-transition-duration: 2.9s;
          transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  -webkit-transition-duration: 2.95s;
          transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.95s;
          transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  -webkit-transition-duration: 3s;
          transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
          transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
          transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  -webkit-transform: translate3d(0, -100px, 0);
          transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-100px, 0, 0);
          transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(100px, 0, 0);
          transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  -webkit-transform: translate3d(-100px, 100px, 0);
          transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  -webkit-transform: translate3d(100px, 100px, 0);
          transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  -webkit-transform: translate3d(-100px, -100px, 0);
          transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  -webkit-transform: translate3d(100px, -100px, 0);
          transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
          transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
          transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
          transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
          transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
          transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
          transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
          transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
          transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

[data-aos=slide-up] {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
          transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
          transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
          transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
          transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*==========================================================================*\
  TEMPLATES
\*==========================================================================*/