@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,500;0,600;1,300;1,500&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Open Sans', sans-serif;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

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

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

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.footer {
  background-color: blue;
}

.footer__text {
  color: purple;
  font-size: 18px;
}

.header {
  position: absolute;
  max-width: 1920px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}

@media screen and (max-width: 1000px) {
  .header {
    display: none;
  }
}

.header-wrapper {
  padding-inline: 70px;
}

@media screen and (max-width: 1200px) {
  .header-wrapper {
    padding-inline: 50px;
  }
}

.header-logo {
  width: 215px;
}

@media screen and (max-width: 1700px) {
  .header-logo {
    width: 150px;
  }
}

@media screen and (max-width: 1200px) {
  .header-logo {
    width: 130px;
  }
}

.header-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 70px;
}

@media screen and (max-width: 1700px) {
  .header-social {
    padding-inline: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .header-social {
    padding-inline: 40px;
  }
}

.header-social__text {
  margin-right: 50px;
}

@media screen and (max-width: 1700px) {
  .header-social__text {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .header-social__text {
    margin-right: 30px;
  }
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 65px;
}

@media screen and (max-width: 1700px) {
  .header-top {
    height: 45px;
  }
}

.header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 85px;
  background-color: #624d42;
}

@media screen and (max-width: 1700px) {
  .header-bottom {
    padding: 15px 50px;
  }
}

.header-social-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-social-item {
  margin-right: 50px;
}

.header-social-item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1700px) {
  .header-social-item {
    margin-right: 30px;
  }
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu__item {
  margin-left: 110px;
  font-size: 21px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}

@media screen and (max-width: 1700px) {
  .header-menu__item {
    margin-left: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .header-menu__item {
    margin-left: 30px;
    font-size: 18px;
  }
}

/** @group colors */
.text-primary {
  color: #FFBE21;
}

html {
  scroll-behavior: smooth;
}

.custom-container {
  max-width: calc(100% - 40px);
  margin-inline: auto;
}

@media screen and (min-width: 820px) {
  .custom-container {
    max-width: 700px;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .custom-container {
    max-width: 980px;
    width: 100%;
  }
}

@media screen and (min-width: 1366px) {
  .custom-container {
    max-width: 1300px;
    width: 100%;
  }
}

@media screen and (min-width: 1560px) {
  .custom-container {
    max-width: 1500px;
  }
}

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

.hero {
  position: relative;
  width: 100vw;
  height: auto;
}

.hero-background {
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -2;
}

.hero-background__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-content {
  height: 100%;
  position: relative;
  top: 125px;
}

@media screen and (max-width: 1700px) {
  .hero-content {
    top: 90px;
  }
}

@media screen and (max-width: 1000px) {
  .hero-content {
    top: 70px;
  }
}

@media screen and (max-width: 562px) {
  .hero-content {
    top: 50px;
  }
}

.hero-content__message-box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero-content__message {
  padding: 30px 70px;
  background-color: #624d42;
  display: table-cell;
  position: relative;
  right: -45px;
  top: -30px;
}

@media screen and (max-width: 1200px) {
  .hero-content__message {
    right: 0;
    top: 0;
  }
}

@media screen and (max-width: 1000px) {
  .hero-content__message {
    padding: 0;
  }
}

.hero-content__message-title {
  font-size: 42px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

.hero-content__message-title strong {
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .hero-content__message-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .hero-content__message-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 1000px) {
  .hero-content__message-title {
    padding: 18px 36px;
    display: block;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .hero-content__message-title {
    padding: 12px 24px;
    font-size: 18px;
  }
}

@media screen and (max-width: 562px) {
  .hero-content__message-title {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.hero-content__message-title strong {
  font-weight: 900;
}

.hero-content__message-shape {
  position: absolute;
  left: -35px;
  bottom: -45px;
  width: 100%;
  height: 100%;
  border: 3px solid #937a60;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: -1;
}

@media screen and (max-width: 1000px) {
  .hero-content__message-shape {
    left: -24px;
    bottom: -24px;
  }
}

@media screen and (max-width: 768px) {
  .hero-content__message-shape {
    left: -18px;
    bottom: -18px;
  }
}

@media screen and (max-width: 562px) {
  .hero-content__message-shape {
    left: -10px;
    bottom: -10px;
    border: 2px solid #937a60;
  }
}

.section {
  position: relative;
}

.section-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-content {
  position: relative;
}

.section__message {
  background-color: #e7e7e7;
  margin-top: 125px;
}

@media screen and (max-width: 1700px) {
  .section__message {
    margin-top: 90px;
  }
}

@media screen and (max-width: 1000px) {
  .section__message {
    margin-top: 70px;
  }
}

@media screen and (max-width: 562px) {
  .section__message {
    margin-top: 50px;
  }
}

.section__message-text {
  font-size: 30px;
  color: #624d42;
  text-align: center;
  padding: 120px 20px;
  line-height: 1.3;
}

@media screen and (max-width: 1700px) {
  .section__message-text {
    font-size: 25px;
    padding: 100px 0px;
  }
}

@media screen and (max-width: 1200px) {
  .section__message-text {
    font-size: 18px;
    padding: 64px 0px;
  }
}

@media screen and (max-width: 1000px) {
  .section__message-text {
    font-size: 16px;
    padding: 34px 0px;
  }
}

@media screen and (max-width: 562px) {
  .section__message-text {
    font-size: 14px;
    padding: 21px 0px;
  }
}

.section__about-us {
  padding-top: 100px;
  padding-bottom: 200px;
  text-align: right;
}

.section__about-us:before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 60%;
  height: 6px;
  background-color: #624d42;
}

@media screen and (max-width: 562px) {
  .section__about-us:before {
    top: -3px;
    height: 3px;
  }
}

@media screen and (max-width: 1200px) {
  .section__about-us {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 1200px) {
  .section__about-us {
    padding-top: 42px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 562px) {
  .section__about-us {
    padding-top: 26px;
    padding-bottom: 65px;
  }
}

.about-us__title {
  font-size: 95px;
  color: #624d42;
  margin-bottom: 45px;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .about-us__title {
    font-size: 64px;
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 1000px) {
  .about-us__title {
    font-size: 46px;
    margin-bottom: 24px;
    text-align: center;
  }
}

@media screen and (max-width: 562px) {
  .about-us__title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

.about-us__description {
  font-size: 30px;
  line-height: 1.2;
}

@media screen and (max-width: 1700px) {
  .about-us__description {
    font-size: 25px;
  }
}

@media screen and (max-width: 1000px) {
  .about-us__description {
    font-size: 18px;
    text-align: center;
  }
}

@media screen and (max-width: 562px) {
  .about-us__description {
    font-size: 14px;
    font-weight: 300;
  }
}

.about-us__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 60px;
}

@media screen and (max-width: 1700px) {
  .about-us__image {
    margin-top: 45px;
  }
}

@media screen and (max-width: 768px) {
  .about-us__image {
    padding-inline: 12px;
  }
}

.section-intro-list {
  text-align: center;
}

.section-intro__title {
  font-size: 96px;
  color: #fff;
  background-color: #624d42;
  padding: 45px 92px;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (max-width: 1700px) {
  .section-intro__title {
    font-size: 64px;
  }
}

@media screen and (max-width: 1200px) {
  .section-intro__title {
    font-size: 48px;
    padding: 32px 72px;
  }
}

@media screen and (max-width: 1000px) {
  .section-intro__title {
    font-size: 36px;
    padding: 18px 42px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 562px) {
  .section-intro__title {
    font-size: 24px;
    padding: 12px 32px;
  }
}

.intro {
  position: relative;
  margin-bottom: 12px;
}

.intro__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 562px) {
  .intro__image {
    min-height: 180px;
  }
}

.intro__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  z-index: 0;
}

.intro__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro__icon {
  width: 115px;
  height: 115px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1700px) {
  .intro__icon {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .intro__icon {
    width: 72px;
    height: 72px;
  }
}

@media screen and (max-width: 1000px) {
  .intro__icon {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 562px) {
  .intro__icon {
    width: 32px;
    height: 32px;
  }
}

.intro__description {
  font-size: 30px;
  color: #fff;
  margin-top: 25px;
  max-width: 1090px;
  width: 100%;
  line-height: 1.2;
}

@media screen and (max-width: 1700px) {
  .intro__description {
    font-size: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .intro__description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1000px) {
  .intro__description {
    font-size: 16px;
    max-width: 600px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 562px) {
  .intro__description {
    font-size: 14px;
    max-width: 350px;
    margin-top: 8px;
  }
}

.section-product__title {
  font-size: 95px;
  text-align: center;
  margin-top: 75px;
  position: relative;
  left: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #624d42;
}

@media screen and (max-width: 1700px) {
  .section-product__title {
    font-size: 64px;
    margin-top: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .section-product__title {
    font-size: 48px;
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  .section-product__title {
    font-size: 28px;
    margin-top: 28px;
  }
}

@media screen and (max-width: 562px) {
  .section-product__title {
    font-size: 26px;
  }
}

.section-product__title::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 8px;
  top: 50%;
  left: -210px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #624d42;
}

@media screen and (max-width: 1700px) {
  .section-product__title::before {
    left: -160px;
  }
}

@media screen and (max-width: 768px) {
  .section-product__title::before {
    left: -70px;
    width: 90px;
    height: 4px;
  }
}

.section-product__title::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 8px;
  top: 50%;
  right: -410px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #624d42;
}

@media screen and (max-width: 1700px) {
  .section-product__title::after {
    right: -360px;
  }
}

@media screen and (max-width: 768px) {
  .section-product__title::after {
    right: -160px;
    width: 90px;
    height: 4px;
  }
}

.section-product__content .product {
  background-color: #eeecea;
}

.section-product__content .product:nth-child(2n + 2) {
  background-color: transparent;
}

.product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 90px;
}

@media screen and (max-width: 768px) {
  .product-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-block: 60px;
  }
}

.product-wrapper.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .product-wrapper.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.product-wrapper.right .product-line__first {
  right: -8%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-wrapper.right .product-line__first {
    position: inherit;
    right: inherit;
  }
}

.product-wrapper.right .product-line__second {
  right: -24%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-wrapper.right .product-line__second {
    position: inherit;
    right: inherit;
  }
}

.product-wrapper.right .product-name {
  text-align: left;
  margin-left: 110px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .product-wrapper.right .product-name {
    margin-left: 60px;
  }
}

@media screen and (max-width: 768px) {
  .product-wrapper.right .product-name {
    right: inherit;
    position: absolute;
    margin-left: 0;
  }
}

.product-wrapper.right .product-image {
  padding-right: 0;
  padding-left: 15px;
}

.product-image {
  width: 65%;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .product-image {
    width: 100%;
    margin-top: 30px;
    padding-inline: 20px;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-head {
  width: 35%;
}

@media screen and (max-width: 768px) {
  .product-head {
    position: relative;
    width: 100%;
  }
}

.product-name {
  font-size: 80px;
  color: #624d42;
  margin-bottom: 60px;
  text-align: right;
  margin-right: 130px;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .product-name {
    font-size: 64px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .product-name {
    margin-right: 60px;
    font-size: 48px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .product-name {
    display: inline-block;
    font-size: 32px;
    margin-bottom: 0;
    position: absolute;
    top: -18px;
    left: 32%;
  }
}

@media screen and (max-width: 576px) {
  .product-name {
    left: 34%;
    font-size: 24px;
    top: -12px;
  }
}

.product-line__first {
  width: 92%;
  height: 40px;
  margin-bottom: 25px;
  background-color: #9e8469;
}

@media screen and (max-width: 1200px) {
  .product-line__first {
    height: 26px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 768px) {
  .product-line__first {
    height: 12px;
    margin-bottom: 6px;
    width: 30%;
  }
}

@media screen and (max-width: 562px) {
  .product-line__first {
    height: 8px;
    margin-bottom: 4px;
  }
}

.product-line__second {
  width: 76%;
  height: 40px;
  background-color: #624d42;
}

@media screen and (max-width: 1200px) {
  .product-line__second {
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .product-line__second {
    height: 12px;
    width: 20%;
  }
}

@media screen and (max-width: 562px) {
  .product-line__second {
    height: 8px;
  }
}

.section-old-tree {
  position: relative;
}

.old-tree__title {
  font-size: 95px;
  padding-top: 70px;
  padding-bottom: 50px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .old-tree__title {
    font-size: 64px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree__title {
    font-size: 48px;
    padding-top: 36px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .old-tree__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree__title {
    font-size: 26px;
  }
}

.old-tree__description {
  font-size: 33px;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 80px;
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 1700px) {
  .old-tree__description {
    font-size: 25px;
    padding-bottom: 65px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree__description {
    font-size: 18px;
    padding-bottom: 42px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree__description {
    font-size: 14px;
    padding-bottom: 36px;
  }
}

.old-tree__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.old-tree__bg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #000;
  opacity: 0.6;
}

.section-old-tree-second {
  background-color: #e7e7e7;
}

.old-tree-second__list {
  padding-bottom: 130px;
}

@media screen and (max-width: 1000px) {
  .old-tree-second__list {
    padding-bottom: 60px;
  }
}

.old-tree-second__title {
  padding-top: 90px;
  font-size: 83px;
  padding-bottom: 65px;
  color: #624d42;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .old-tree-second__title {
    padding-top: 70px;
    font-size: 64px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree-second__title {
    padding-top: 48px;
    font-size: 48px;
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 1000px) {
  .old-tree-second__title {
    padding-top: 30px;
    font-size: 36px;
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree-second__title {
    padding-top: 26px;
    font-size: 26px;
    padding-bottom: 16px;
  }
}

.old-tree-second__subtitle {
  font-size: 31px;
  color: #000;
}

@media screen and (max-width: 1700px) {
  .old-tree-second__subtitle {
    font-size: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree-second__subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree-second__subtitle {
    font-size: 14px;
  }
}

.old-tree-second__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 55px;
}

@media screen and (max-width: 1700px) {
  .old-tree-second__item {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree-second__item {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .old-tree-second__item {
    margin-top: 25px;
  }
}

.old-tree-second__item-icon {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1700px) {
  .old-tree-second__item-icon {
    width: 52px;
    height: 52px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree-second__item-icon {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree-second__item-icon {
    width: 32px;
    height: 32px;
  }
}

.old-tree-second__item-text {
  font-size: 31px;
  line-height: 1.2;
  padding-left: 12px;
}

@media screen and (max-width: 1700px) {
  .old-tree-second__item-text {
    font-size: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .old-tree-second__item-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 562px) {
  .old-tree-second__item-text {
    font-size: 14px;
  }
}

.section-our-goals:before {
  content: "";
  position: absolute;
  right: 0;
  top: -6px;
  width: 60%;
  height: 6px;
  background-color: #624d42;
}

@media screen and (max-width: 562px) {
  .section-our-goals:before {
    top: -3px;
    height: 3px;
  }
}

.our-goals__title {
  color: #624d42;
  font-size: 95px;
  padding-top: 75px;
  padding-bottom: 55px;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .our-goals__title {
    padding-top: 60px;
    padding-bottom: 45px;
    font-size: 70px;
  }
}

@media screen and (max-width: 1200px) {
  .our-goals__title {
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 48px;
  }
}

@media screen and (max-width: 1000px) {
  .our-goals__title {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 36px;
    text-align: center;
  }
}

@media screen and (max-width: 562px) {
  .our-goals__title {
    font-size: 26px;
    padding-bottom: 12px;
  }
}

.our-goals__description {
  font-size: 33px;
  line-height: 1.2;
  padding-bottom: 85px;
}

@media screen and (max-width: 1700px) {
  .our-goals__description {
    padding-bottom: 70px;
    font-size: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .our-goals__description {
    padding-bottom: 48px;
    font-size: 18px;
  }
}

@media screen and (max-width: 562px) {
  .our-goals__description {
    padding-bottom: 36px;
    font-size: 16px;
    font-weight: 300;
  }
}

.our-goals__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-title {
  font-size: 95px;
  padding-block: 95px;
  text-align: center;
  color: #624d42;
  font-weight: 600;
}

@media screen and (max-width: 1700px) {
  .footer-title {
    font-size: 64px;
    padding-block: 75px;
  }
}

@media screen and (max-width: 1200px) {
  .footer-title {
    font-size: 48px;
    padding-block: 60px;
  }
}

@media screen and (max-width: 1000px) {
  .footer-title {
    font-size: 36px;
    padding-block: 40px;
  }
}

@media screen and (max-width: 562px) {
  .footer-title {
    font-size: 26px;
    padding-block: 30px;
  }
}

.contact {
  width: 100%;
  background-color: #624d42;
}

.contact__icon {
  width: 68px;
  height: 68px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}

@media screen and (max-width: 1200px) {
  .contact__icon {
    width: 38px;
    height: 38px;
  }
}

@media screen and (max-width: 768px) {
  .contact__icon {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 560px) {
  .contact__icon {
    margin-bottom: 16px;
    width: 26px;
    height: 26px;
  }
}

.contact__text {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 1200px) {
  .contact__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 562px) {
  .contact__text {
    font-size: 14px;
  }
}

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.contact-item {
  width: calc(100% / 3);
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .contact-item {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .contact-item {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}

.company {
  background-color: #e7e7e7;
}

.company-wrapper {
  height: 145px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .company-wrapper {
    height: 110px;
  }
}

@media screen and (max-width: 1000px) {
  .company-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company-logo {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 210px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .company-logo {
    width: 130px;
  }
}

@media screen and (max-width: 1000px) {
  .company-logo {
    width: 100px;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.copy-text {
  text-align: right;
  padding-top: 60px;
  color: #624d42;
}

@media screen and (max-width: 1200px) {
  .copy-text {
    font-size: 14px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .copy-text {
    padding-top: 12px;
  }
}

@media screen and (max-width: 562px) {
  .copy-text {
    font-size: 12px;
  }
}

.footer-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30px;
  width: 100%;
  background-color: #624d42;
}

@media screen and (max-width: 1200px) {
  .footer-shape {
    height: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .footer-shape {
    height: 12px;
  }
}

.header-mobile {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 12;
  display: none;
}

@media screen and (max-width: 1000px) {
  .header-mobile {
    display: block;
  }
}

.header-mobile__menu-list {
  margin-top: 18vh;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-mobile__menu-item {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-block: 20px;
  text-decoration: none;
  font-weight: 500;
}

@media screen and (max-width: 562px) {
  .header-mobile__menu-item {
    font-size: 16px;
    padding-block: 16px;
  }
}

.header-mobile__menu-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: #fff;
}

.header-mobile__menu-item:last-child::before {
  display: none;
}

.header-mobile__social {
  text-align: center;
  margin-top: 40px;
}

.header-stick {
  width: calc(100% - 40px);
  background: #624d42;
  margin-inline: auto;
  margin-top: 20px;
}

@media screen and (max-width: 562px) {
  .header-stick {
    width: calc(100% - 20px);
    margin-top: 10px;
  }
}

.header-stick__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 16px;
}

.header-stick__burger {
  width: 48px;
  height: 48px;
}

@media screen and (max-width: 562px) {
  .header-stick__burger {
    width: 32px;
    height: 32px;
  }
}

.header-stick__burger img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-stick__logo {
  width: 150px;
}

@media screen and (max-width: 560px) {
  .header-stick__logo {
    width: 100px;
  }
}

.mobile-menu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.open {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

.mobile-menu__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.close-button {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 562px) {
  .close-button {
    right: 24px;
    top: 24px;
    width: 32px;
    height: 32px;
  }
}

.close-button img {
  width: 100%;
}

.social-item {
  padding-inline: 25px;
  display: inline-block;
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 562px) {
  .social-item {
    width: 24px;
    height: 24px;
  }
}

.social-item__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.back-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(98, 77, 66, 0.7);
          box-shadow: 0px 0px 8px 0px rgba(98, 77, 66, 0.7);
  cursor: pointer;
}

.back-to-top img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 992px) {
  .language {
    margin-top: 60px;
    text-align: center;
    width: 100%;
  }
}

.language-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.language-box:hover .language-key {
  color: #624d42;
}

@media screen and (max-width: 992px) {
  .language-box:hover .language-key {
    color: #fff;
  }
}

.language-icon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.language-key {
  font-weight: 800;
  font-size: 18px;
  margin-right: 8px;
  color: #000;
  -webkit-transition: color .3s;
  transition: color .3s;
}

@media screen and (max-width: 992px) {
  .language-key {
    color: #fff;
  }
}
/*# sourceMappingURL=main.css.map */