/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Box sizing normalization */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
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 {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

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

ol,
ul {
  list-style: none;
}

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

/**
 * Input Reset
 */
input:required,
input {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

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;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

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

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  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.
 */
[hidden] {
  display: none;
}

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

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * 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;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

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

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 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;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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;
}

button {
  border: 0;
  background: transparent;
}

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

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

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

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

/**
 * 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: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 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;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 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 in Chrome and Safari on macOS.
 */
[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 all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
template {
  display: none;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular-410e8ce8312a3fb546bfe095ba929f92.eot");
  src: url("../fonts/BebasNeue-Regular-410e8ce8312a3fb546bfe095ba929f92.eot") format("embedded-opentype"), url("../fonts/BebasNeue-Regular-9ab0e4d2bce41d15eed44aff0bbb28ff.woff2") format("woff2"), url("../fonts/BebasNeue-Regular-edd6091fd29cd0d99bd0e9ef6d1aa657.woff") format("woff"), url("../fonts/BebasNeue-Regular-b000da1bb6fac5299f88edc053e308f6.ttf") format("truetype"), url("../fonts/BebasNeue-Regular-3fcec6a17da1782e31ab2892ec97ad1a.svg") format("svg");
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFontwght-0d7dd795f02502fd5369a9cf3b14a41c.eot");
  src: url("../fonts/Manrope-VariableFontwght-0d7dd795f02502fd5369a9cf3b14a41c.eot") format("embedded-opentype"), url("../fonts/Manrope-VariableFontwght-97d9fcccb25bbb1d52456a1e12d0a938.woff2") format("woff2"), url("../fonts/Manrope-VariableFontwght-96d30b54e8a350180408cacbc549f483.woff") format("woff"), url("../fonts/Manrope-VariableFontwght-7ac9e67514105158a82efa0d494c7d99.ttf") format("truetype"), url("../fonts/Manrope-VariableFontwght-40b53266d731b1ed28341a565ec2b54d.svg") format("svg");
}
.btn {
  padding: 8px 25px;
  border-radius: 30px;
  min-width: 106px;
  transition: 0.2s;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}
.btn-black:hover {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.btn-yellow {
  background: #C89C2A;
  color: #ffffff;
}
.btn-yellow:hover {
  background: transparent;
  color: #000000;
  border: 1px solid #C89C2A;
}

.header {
  height: 127px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: fixed;
  width: 100%;
  z-index: 10;
  box-shadow: 0 0 10px #e5e5e5;
  transition: background 0.3s ease-in-out, boxShadow 0.3s ease-in-out;
}
.header.scrolled {
  transition: background 0.3s ease-in-out, boxShadow 0.5s 2s ease-in-out;
  box-shadow: 0 0 10px #bebebe;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  font-size: 16px;
}
.header__menu.light a {
  color: #ffffff;
}
.header__menu-item {
  opacity: 0.6;
}
.header__menu-item.no-opacity {
  opacity: 1;
}
.header__menu-item.active {
  opacity: 1;
  border-bottom: 2px solid #0092BC;
}
.header summary {
  padding-left: 0;
  background-image: none;
  -webkit-appearance: none;
}
@media (max-width: 1200px) {
  .header {
    height: 100px;
  }
  .header__menu {
    display: none;
  }
}

details {
  position: relative;
}
details summary::marker {
  content: "";
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 30px;
  padding: 10px;
  background: #ffffff;
  width: 130px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.dropdown-menu li {
  padding: 4px 10px;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
}
.dropdown-menu li a img {
  width: 25px;
  height: 25px;
  display: block;
}

.footer {
  height: 188px;
  background: #000000;
  padding-top: 35px;
  padding-bottom: 73px;
}
.footer .container {
  display: flex;
}
.footer-menu-wrap {
  flex-grow: 1;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 12px;
  color: #ffffff;
  padding-top: 30px;
}
.footer-menu__item {
  color: #ffffff;
}
.footer .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  padding-top: 14px;
}
.footer__logo {
  padding-right: 68px;
}
.footer-socials {
  display: flex;
  column-gap: 9px;
  align-items: center;
}
.footer-socials__item {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #C89C2A;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-socials__item.fb {
  background-image: url("../img/fb-cbb5c6895e38bda894bc946caa27ec01.svg");
}
.footer-socials__item.inst {
  background-image: url("../img/inst-a268c0bdec9183fce4bae3c4e620cbe0.svg");
}
.footer-socials__item.x {
  background-image: url("../img/x-1c54c46c47491f5cf877aa2948b15f1e.svg");
}
@media (max-width: 768px) {
  .footer {
    height: auto;
    padding-bottom: 20px;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer-socials {
    width: 100%;
    justify-content: center;
    padding-top: 30px;
  }
  .footer .copyright {
    text-align: center;
  }
  .footer .footer-menu {
    display: grid;
    grid-template-columns: 6fr 6fr;
    text-align: center;
    padding-top: 50px;
  }
  .footer__logo {
    padding-right: 0;
  }
}

html {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
}

.container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1720px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 780px) {
  .container {
    padding: 0 20px;
  }
}

.page {
  min-height: 100vh;
}

a {
  color: #000000;
  text-decoration: none;
}

h1 {
  font-size: 75px;
  line-height: 75px;
}

.pretitle {
  font-size: 16px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 12px;
}

.posttitle {
  margin-top: 9px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.block {
  padding-top: 180px;
  padding-bottom: 180px;
}

.block {
  padding-bottom: 230px;
  padding-top: 100px;
}
.block__header {
  text-align: center;
}
.block h1 {
  font-size: 65px;
}
.block h2 {
  font-size: 65px;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 56px;
  padding-top: 30px;
}
.block .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.block .float {
  position: absolute;
}
.block__images {
  position: relative;
  flex-shrink: 0;
}
.block__images img {
  border-radius: 15px;
}
.block__images .float {
  border-radius: 15px;
  position: absolute;
  right: -255px;
  bottom: -170px;
}
.block__content {
  padding-left: 140px;
  padding-top: 50px;
}
.block__text {
  padding-left: 230px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  padding-top: 130px;
}
.block__text p {
  margin-bottom: 20px;
}
.block__text .btn {
  margin-top: 30px;
  font-size: 20px;
  font-family: "Bebas Neue", sans-serif;
}
.block.cabinet {
  background: url("../img/block-banner-1-6970999dd4ae982cb0ab70e56294adf2.jpg") center no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}
.block.camping {
  padding-top: 90px;
  padding-bottom: 90px;
  background: url("../img/block-banner-2-76b6b0baccb55319570a6f5d8f0d0bb8.jpg") center no-repeat;
  background-size: cover;
}
.block.camping .container {
  display: flex;
  justify-content: flex-end;
}
.block.camping .form-block {
  padding-bottom: 80px;
}
.block.camping .form-block__title {
  padding-bottom: 30px;
}
.block.camping .form-block__btn {
  margin-top: 5px;
}
.block.design .block__content {
  padding-left: 0;
}
.block.design .block__text {
  padding: 0;
}
.block.design .block__images {
  width: calc(52% + 87px);
  padding-left: 87px;
  flex-shrink: 0;
}
.block.shop {
  padding-top: 113px;
  padding-bottom: 0;
}
.block.shop h2 {
  padding-top: 0;
}
.block.shop .gallery {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
}
.block.shop .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block.choose {
  padding-top: 100px;
  padding-bottom: 70px;
}
.block.choose .block__images.left {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 1/1;
}
.block.choose .block__images.left > img {
  position: absolute;
  top: 0;
  left: 0;
}
.block.choose .block__images.left .img-1 {
  position: absolute;
  width: 32%;
  transform: translate(34%, 0);
}
.block.choose .block__images.left .img-2 {
  width: 44%;
  transform: translate(110%, 37%);
}
.block.choose .block__images.left .img-3 {
  position: absolute;
  width: 44%;
  transform: translate(0, 85%);
}
.block.choose .block__images.right {
  align-self: stretch;
  width: 19%;
  flex-shrink: 0;
}
.block.choose .block__images.right img {
  position: absolute;
  right: 0;
  top: 40%;
  width: 90%;
}
.block.choose .block__content {
  flex-grow: 1;
  padding: 90px 50px 0 10px;
}
.block.choose h2 {
  padding-top: 40px;
}
.block.choose .block__text {
  padding-left: 0;
  padding-top: 0;
}
.block.form {
  padding-top: 100px;
  padding-bottom: 130px;
  background: url("../img/block-banner-3-cbbda8a61283992a4674a22110ac8c6f.jpg") center no-repeat;
  background-size: cover;
}
.block.form .form-block {
  padding: 45px;
}
.block.form .form-block__title {
  padding-top: 0;
}
.block.features {
  background: #F6F0E8;
  padding-bottom: 20vw;
  margin-bottom: 15vw;
  width: 100%;
  position: relative;
}
.block.features .block__content {
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  column-gap: 60px;
}
.block.features .list-item__title {
  font-size: 32px;
  padding-bottom: 20px;
}
.block.features .list-item__text {
  font-family: "Manrope", sans-serif;
}
.block.features .gallery-wrap {
  position: absolute;
  width: 100%;
  overflow-x: hidden;
}
.block.features .gallery {
  width: 114%;
  margin-top: 80px;
  margin-left: -7%;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.block.features .gallery > img {
  display: block;
  flex-basis: 25%;
  width: 25vw;
  max-width: 533px;
}
@media (max-width: 1200px) {
  .block .block__content {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    text-align: center;
  }
  .block .block__list-item {
    flex-basis: calc(45% - 10px);
  }
}
@media (max-width: 768px) {
  .block .block__content {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .block .block__list-item {
    width: 80%;
  }
}

.uber-page {
  padding-top: 100px;
}
.uber-page .design {
  padding-bottom: 100px;
}
.uber-page .design.v2 {
  background: #F6F0E8;
  padding-bottom: 100px;
}
.uber-page .design.v2 .block__images {
  padding-left: 0;
  display: flex;
  justify-content: center;
}

.form-block {
  width: 505px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  position: relative;
  color: #ffffff;
  padding: 55px;
}
.form-block p {
  padding-bottom: 20px;
  line-height: 1.2;
}
.form-block:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2509803922);
  border-radius: inherit;
  backdrop-filter: blur(10px);
  z-index: 0;
}
.form-block__content {
  position: relative;
  z-index: 1;
}
.form-block__pretitle {
  margin-bottom: 0;
}
.form-block__title {
  padding-top: 33px;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 0;
  padding-bottom: 40px;
}
.form-block__text {
  letter-spacing: 0;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  padding-bottom: 10px;
}
.form-block__list {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.form-block__list-item {
  padding: 10px 10px 10px 0px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  letter-spacing: 0;
  min-width: 45%;
}
.form-block__list-item .round-icon {
  margin-right: 12px;
  display: block;
  width: 44px;
  height: 44px;
  background: url("../img/circle-397195f9b6160e4bc6035f51a33702de.svg") center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-block__list-item .round-icon span {
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.form-block__list-item:first-child .round-icon span {
  width: 20px;
  height: 20px;
  background-image: url("../img/comfort-b35712c2dbf771a4286c359528f06db9.svg");
}
.form-block__list-item:nth-child(2) .round-icon span {
  background-image: url("../img/wardrobe-052233dd186c35b258f33c390175ac9f.svg");
}
.form-block__list-item:nth-child(3) .round-icon span {
  background-image: url("../img/architecture-cd663238312681be5c248345cc1a8c60.svg");
}
.form-block__list-item:last-child .round-icon span {
  background-image: url("../img/heart-e6702e8ccab83625c7897744d07d8bb4.svg");
}
.form-block__btn {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.fade-enter-active {
  animation: fade 0.25s;
}

.fade-leave-active {
  animation: fade 0.25s reverse;
}

@keyframes fade {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
@media (max-width: 1200px) {
  .block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .block .container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .block__content {
    padding: 0 0 60px 0;
  }
  .block__text {
    padding: 0;
  }
  .block__images {
    width: 60vw;
    height: 60vw;
    margin-bottom: 5vw;
  }
  .block__images img {
    width: 70%;
  }
  .block__images .float {
    position: absolute;
    right: auto;
    left: 28vw;
    bottom: auto;
    top: 25vw;
    width: 55%;
  }
  .block.choose {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .block.choose .container {
    flex-direction: column;
  }
  .block.choose .block__images.left {
    width: 60vw;
    height: 50vw;
  }
  .block.choose .block__images.right {
    width: 30%;
    margin: 0 auto 30px;
    padding-top: 30px;
    height: auto;
    text-align: center;
  }
  .block.choose .block__images.right img {
    position: static;
  }
  .block.design {
    padding-top: 50px;
  }
  .block.design .block__images {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .block.features .gallery {
    margin-top: 30px;
  }
  .uber-page .block.design {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 55px;
    line-height: 55px;
  }
  h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .block h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .block p {
    font-size: 14px;
    text-align: left;
  }
  .block.choose .block__images.left {
    width: 80vw;
    height: 60vw;
    margin-bottom: 10vw;
  }
  .block.choose .block__images.right {
    width: 50vw;
    height: 50vw;
    margin-bottom: 10vw;
  }
  .block.shop .gallery {
    grid-template-columns: 6fr 6fr;
  }
  .posttitle {
    font-size: 16px;
  }
  .form-block {
    max-width: 100%;
    padding: 60px 30px;
  }
  .form-block .form-group {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .block.form .form-block {
    padding: 50px 20px;
  }
}
.home-page__banner {
  position: relative;
  max-width: 1920px;
  height: 46.875vw;
  min-height: 600px;
  background-image: url("../img/home-page-banner-68d17bfdafc765b2b0fb505a13ee2e15.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-page__banner:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  height: 100%;
  background: linear-gradient(359.25deg, rgba(0, 0, 0, 0.54) 0.59%, rgba(48, 23, 10, 0) 99.3%);
}
.home-page__banner .container {
  position: relative;
  height: 100%;
}
.home-page__banner-content {
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 114px;
  z-index: 2;
  font-weight: 400;
  padding-left: inherit;
  margin: 0 auto;
}
.home-page__banner-btn {
  padding: 15px 25px !important;
  font-size: 20px;
  margin-top: 30px;
}

.basket {
  background: url("../img/basket-020290c6455abde115786b9acee5f4aa.svg") center #C89C2A no-repeat;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  position: relative;
}
.basket span {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -2px;
  top: -2px;
  font-size: 10px;
  padding-left: 1px;
}

.mobile-menu-btn {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  row-gap: 4px;
}
.mobile-menu-btn > div {
  width: 100%;
  height: 2px;
  background: black;
  border: 2px solid transparent;
}
.mobile-menu-btn.active {
  position: relative;
}
.mobile-menu-btn.active > div {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  transform-origin: 50% 50%;
}
.mobile-menu-btn.active > div:first-child {
  transform: rotate(45deg);
}
.mobile-menu-btn.active > div:last-child {
  transform: rotate(-45deg);
}
.mobile-menu-btn.active > div:nth-child(2) {
  display: none;
}
@media (max-width: 1200px) {
  .mobile-menu-btn {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  transform: translateX(-110%);
  transition: 0.3s;
  flex-direction: column;
  row-gap: 15px;
  background: #ffffff;
  padding: 20px 80px 80px;
  text-align: center;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 0 20px 20px 0;
  align-items: center;
}
.mobile-menu .dropdown-menu {
  top: auto;
  bottom: 35px;
  left: auto;
  right: 22px;
  transform: translateX(50%);
}
.mobile-menu__logo {
  margin-bottom: 30px;
}
.mobile-menu__basket {
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .mobile-menu {
    display: flex;
  }
}
.mobile-menu.active {
  transform: translateX(0);
}

.uber-page__banner {
  position: relative;
  max-width: 1920px;
  height: 27.8125vw;
  min-height: 300px;
  background-image: url("../img/uber-page-banner-130d109f33634781fd7b9e4c5afe6298.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}
.uber-page__banner:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.527) 0%, rgba(0, 0, 0, 0) 100%);
}
.uber-page__banner .container {
  position: relative;
  height: 100%;
}
.uber-page__banner-content {
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 114px;
  z-index: 2;
  font-weight: 400;
  padding-left: inherit;
}

.contacts-page__banner {
  min-height: 100vh;
}
.contacts-page__banner .container {
  position: relative;
  height: 100%;
}
.contacts-page__banner .posttitle {
  margin-top: 0;
  margin-bottom: 36px;
}
.contacts-page__banner .form-block {
  flex-shrink: 0;
}
.contacts-page__banner .form-block__title {
  padding-top: 0;
}
.contacts-page__banner-content {
  height: 100%;
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
  padding-top: 200px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .contacts-page__banner-content {
    flex-direction: column;
    row-gap: 100px;
    text-align: center;
    align-items: center;
    padding-bottom: 100px;
  }
  .contacts-page .form-block {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .contacts-page__banner-content {
    row-gap: 50px;
  }
}

label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  padding-bottom: 8px;
}

.form-group {
  display: flex;
  justify-content: space-between;
  column-gap: 9px;
}

.input-wrap {
  width: 100%;
  flex-grow: 1;
  padding-top: 10px;
}

.input, .textarea {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  color: #ffffff;
}
.input.error, .textarea.error {
  border: 1px solid red;
}

.textarea {
  min-height: 96px;
  max-height: 96px;
}

*::-webkit-input-placeholder {
  color: #ffffff !important;
}

*::-moz-placeholder {
  color: #ffffff !important;
}

*:-ms-input-placeholder {
  color: #ffffff !important;
}

.form-block__btn {
  margin-top: 20px;
}

.blank-page {
  height: calc(100vh - 100px);
}

.legal-notice {
  font-family: Manrope;
  font-size: 14px;
  padding: 172px 100px 180px 100px;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
.legal-notice h1 {
  font-family: Bebas Neue;
  font-size: 40px;
  font-weight: 400;
  line-height: 35px;
  padding-bottom: 15px;
}
.legal-notice-header {
  font-family: Bebas Neue;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 0 10px 0 !important;
  display: block;
}
.legal-notice p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  line-height: 21.6px;
  letter-spacing: normal;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/app.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGN;EACI;EACA;;AAEA;EACI;EACA;EACA;;;AAIR;EACI;EACA;;AAGA;EACI;EACA;EACA;;;AAMR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGI;EACI;;AAIR;EACI;;AAEA;EACI;;AAEJ;EACI;EACd;;AAIE;EACI;EACA;EACA;;AAGJ;EAvDJ;IAwDQ;;EACA;IACI;;;;AAOZ;EACI;;AACA;EACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEA;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;;;AAMhB;EACI;EACA;EACA;EACA;;AACA;EACI;;AAGJ;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAKZ;EA7DJ;IA+DQ;IACA;;EACA;IACI;IACA;;EAEJ;IACI;IACA;IACA;;EAEJ;IACI;;EAGJ;IACI;IACA;IACA;IACA;;EAGJ;IACI;;;;AAMZ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EAVJ;IAWQ;;;;AAIR;EACI;;;AAGJ;EACI;EACA;;;AAIJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAIJ;EACI;EACA;;AACA;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;;AAEJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAEJ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;;AAGJ;EACI;;AACA;EACI;;AAEJ;EACI;;AAMR;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;;AAIR;EACI;EACA;;AACA;EACI;;AAGJ;EACI;EACA;;AACA;EACI;EACA;EACA;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAGR;EACI;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;;AAGJ;EACI;;AAEJ;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAMZ;EACI;IACI;IACA;IACA;IACA;;EAGJ;IACI;;;AAIR;EACI;IACI;IACA;IACA;;EAEJ;IACI;;;;AAKZ;EACI;;AACA;EACI;;AAEJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;;AAKJ;EACI;;AAIJ;EACI;;AAIJ;EACI;;AAKhB;EACI;EACA;;;AAIR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;IACA;;EACA;IACI;IACA;;EAEJ;IACI;;EAGJ;IACI;;EAEJ;IACI;IACA;IACA;;EACA;IACI;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA;;EAIR;IACI;IACA;;EACA;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;IACA;IACA;;EAEA;IACI;;EAKZ;IACI;;EAEA;IACI;IACA;IACA;IACA;IACA;;EAKJ;IACI;;EAOZ;IACI;IACA;;;AAIR;EAEI;IACI;IACA;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;;EAEJ;IACI;IACA;;EAKA;IACI;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EAKJ;IACI;;EAKZ;IACI;;EAGJ;IACI;IACA;;EACA;IACI;;;AAKZ;EAGY;IACI;;;AASZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AACA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEJ;EACI;;AAIZ;EAjCJ;IAkCQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEJ;EACI;;AAGJ;EAhCJ;IAiCQ;;;AAGJ;EACI;;;AAMJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOR;EAGI;;AAoBA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAEJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;IACI;IACA;IACA;IACA;IACA;;EAGJ;IACI;;;AAIR;EACI;IACI;;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACC;EACA;EACA;EACA;EACA;EACA;;AACA;EACC;EACA;EACA;EACA;EACA;;AAGA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACK;EACA;EACJ;EACA;EACA;EACA%22,%22file%22:%22app.output.css%22%7D */
