/**
 * Reflow optimization styles
 * Uses transform and opacity for animations to avoid forced reflow
 */

.reflow-optimized.slide-in-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reflow-optimized.slide-in-left.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.reflow-optimized.slide-in-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reflow-optimized.slide-in-right.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.reflow-optimized.slide-in-up {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reflow-optimized.slide-in-up.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.reflow-optimized.slide-in-down {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reflow-optimized.slide-in-down.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.reflow-optimized.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.reflow-optimized.fade-in.active {
  opacity: 1;
}

.reflow-optimized.scale-in {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reflow-optimized.scale-in.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.slider-optimized .slider-container {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-optimized .slider-item {
  contain: layout style paint;
}

.modal-optimized .modal-backdrop {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.modal-optimized .modal-backdrop.active {
  opacity: 1;
}

.modal-optimized .modal-content {
  -webkit-transform: translateY(-50px) scale(0.95);
  -ms-transform: translateY(-50px) scale(0.95);
  transform: translateY(-50px) scale(0.95);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform, opacity;
}

.modal-optimized .modal-content.active {
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  opacity: 1;
}

.scroll-optimized.parallax {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.scroll-optimized.sticky {
  position: sticky;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.will-change-scroll {
  will-change: scroll-position;
}

.contain-layout {
  contain: layout;
}

.contain-style {
  contain: style;
}

.contain-paint {
  contain: paint;
}

.contain-all {
  contain: layout style paint;
}

.gpu-accelerated {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.no-reflow-transition {
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: transform, opacity, filter;
  transition-property: transform, opacity, filter, -webkit-transform, -webkit-filter;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  text-wrap: balance;
}

.Main__container {
  padding-top: 90px;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  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
   ========================================================================== */

/**
 * 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
   ========================================================================== */

/**
 * 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;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 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 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
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 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;
}

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

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

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

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 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 Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  width: 100%;
  margin: 8px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__header {
  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;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "X";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

html {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.125rem;
  font-optical-sizing: auto;
  line-height: 1.4;
  color: #000000;
  scroll-behavior: smooth;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  margin-bottom: 48px;
}

a {
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}

.input {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 1.125rem;
  height: 56px;
  width: 100%;
}

.errorCaption {
  font-size: 0.875rem;
  color: #ff2b2b;
  margin-top: 8px;
}

.icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 1350px;
}

.pageOffset {
  margin-top: 100px;
}

.section {
  background-color: #ffffff;
  padding: 100px 0;
}

.sectionTitle {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.IframeWrapper {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.IframeWrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Picture {
  height: 0;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.Picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-container::before {
  content: "";
  display: block;
  padding-bottom: var(--aspect-ratio);
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.Modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  font-family: "Montserrat", sans-serif;
}

.Modal__wrapper {
  top: 20%;
  left: 35%;
  width: 40%;
  background-color: #ffffff;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  overflow: auto;
  height: auto;
  max-width: 500px;
  max-height: 700px;
}

.Modal__closeWrapper {
  text-align: right;
}

.Modal__title {
  font-size: 30px;
  margin: 0 0 20px;
  color: #000000;
}

.Modal__inputItem {
  border: 2px solid #ff596b;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 30px;
}

.Modal__privacyField {
  margin: 10px 0;
}

.Modal__checkbox {
  margin-right: 10px;
}

.Modal__licenseLink {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.Modal__licenseLink:hover {
  color: #ff596b;
}

.Modal__checkboxLabel {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.Modal__label {
  margin: 10px 0 5px;
  font-size: 18px;
}

.Modal__button {
  font-size: 20px;
  border: 2px solid #ff596b;
  background-color: #ff596b;
  color: #ffffff;
  padding: 10px 20px;
  width: 100%;
  margin-top: 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 30px;
}

.Modal__button:hover {
  background-color: transparent;
  color: #ff596b;
}

.Modal__error {
  display: none;
  color: #ff2b2b;
  font-size: 16px;
}

.Modal__error--server {
  display: none;
}

.Modal__successTitle {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.Modal__successDescription {
  color: #ff596b;
  margin-bottom: 16px;
}

.Modal__number {
  display: inline-block;
}

.MessengerButtons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.MessengerButtons__button {
  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;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  height: 64px;
  border-radius: 14px;
}

.MessengerButtons__button span {
  display: none;
}

.MessengerButtons__button--max {
  background: linear-gradient(45deg, #44ccff, #5533ee, #9933ee);
}

.MessengerButtons__button--max:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(76, 117, 163, 0.25);
  box-shadow: 0 8px 16px rgba(76, 117, 163, 0.25);
}

.MessengerButtons__button--vk {
  background-color: #4c75a3;
}

.MessengerButtons__button--vk:hover {
  background-color: #3a5a7d;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(76, 117, 163, 0.25);
  box-shadow: 0 8px 16px rgba(76, 117, 163, 0.25);
}

.MessengerButtons__button--telegram {
  background-color: #0088cc;
}

.MessengerButtons__button--telegram:hover {
  background-color: #0077b5;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 136, 204, 0.25);
  box-shadow: 0 8px 16px rgba(0, 136, 204, 0.25);
}

.MessengerButtons__icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.MessengerButtons__icon--max {
  width: 32px;
  height: 28px;
}

.MessengerButtons__icon--vk {
  width: 30px;
  height: 26px;
}

.MessengerButtons__icon--telegram {
  width: 24px;
  height: 20px;
}

.Header {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ff596b;
  position: fixed;
  z-index: 10000;
  /* MAX icon size */
  /* Telegram icon size */
  /* VK icon size */
  /* Phone icon size */
}

.Header__menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.Header__menuList > li {
  position: relative;
}

.Header__menuList .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1001;
}

.Header__menuList .sub-menu li {
  margin: 0;
  padding: 0;
}

.Header__menuList .sub-menu a {
  display: block;
  padding: 8px 20px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.Header__menuList .sub-menu a:hover {
  background: #f0f0f0;
}

.Header__menuList > li:hover .sub-menu {
  display: block;
}

.Header__menuList a {
  color: white;
  font-size: 18px;
}

.Header__headerWrapper {
  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: 20px 0;
}

.Header__contactsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.Header__logoLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

.Header__logoLink svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Header__logoTextMain {
  font-size: 18px;
}

.Header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 18px;
}

.Header__link {
  color: #ffffff;
}

.Header__contactsColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.Header__feedbackButtonColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.Header__feedbackButton {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
  border-radius: 30px;
}

.Header__feedbackButton:hover {
  background-color: transparent;
  color: #ffffff;
}

.Header__contactsLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.Header__contactsLink {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  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;
}

.Header__contactsLink svg {
  fill: currentColor;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  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;
}

.Header__contactsLink svg:hover {
  fill: #ffffff;
}

.Header__contactsLink--icon {
  color: #ffffff;
  width: var(--header-icon-width, 30px);
  height: var(--header-icon-height, 30px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 var(--header-icon-width, 30px);
  flex: 0 0 var(--header-icon-width, 30px);
  line-height: 0;
}

.Header__contactsLink--icon svg,
.Header__contactsLink--icon svg use {
  width: var(--header-icon-width, 30px);
  height: var(--header-icon-height, 30px);
}

.Header__contactsLink--iconMax {
  --header-icon-width: 24px;
  --header-icon-height: 24px;
}

.Header__contactsLink--iconTelegram {
  --header-icon-width: 26px;
  --header-icon-height: 26px;
}

.Header__contactsLink--iconVk {
  --header-icon-width: 34px;
  --header-icon-height: 34px;
}

.Header__contactsLink--iconPhone {
  --header-icon-width: 28px;
  --header-icon-height: 28px;
}

.Header__burgerButton {
  font-size: 50px;
  color: #ffffff;
  display: none;
  margin-left: 16px;
}

.Header__burgerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.Header__burgerNav li {
  margin-bottom: 20px;
}

.Header__burgerNav a {
  color: #ffffff;
  font-size: 23px;
}

.Header__burgerMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ff596b;
  z-index: 10000;
  display: none;
}

.Header__burgerMenu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 50px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.Header__burgerMenu.active .Header__burgerNav {
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 10px;
  -webkit-overflow-scrolling: touch;
}

.Header__burgerMenu .burger-submenu {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.Header__burgerMenu .burger-submenu.active {
  display: block;
}

.Header__burgerMenu .burger-submenu .Header__burgerLink {
  font-size: 20px;
  opacity: 0.9;
  display: block;
  margin-bottom: 24px;
}

.Header__burgerMenu .burger-submenu .Header__burgerLink:last-child {
  margin-bottom: 0;
}

.Header__burgerMenu .burger-submenu .Header__burgerLink:hover {
  opacity: 1;
}

.Header__burgerClose {
  position: fixed;
  right: 16px;
  top: 16px;
  font-size: 50px;
  color: #ffffff;
}

.Landing {
  padding-top: 0;
  height: calc(100vh - 30px);
  min-height: calc(100vh - 30px);
  position: relative;
  background-color: #fbfbfb;
}

.Landing .Landing__title {
  color: #ff596b;
}

.Landing > .container {
  max-width: 1420px;
  height: 100%;
}

.Landing__wrapper {
  position: relative;
  height: 100%;
  min-height: inherit;
  max-width: 1420px;
  margin: 0 auto;
}

.Landing__bannerText {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 620px;
  z-index: 1000;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}

.Landing__title {
  font-size: 45px;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.Landing__desc {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: -12px;
  text-align: left;
  font-weight: 500;
  color: #B3B3B3;
}

.Landing__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 70%;
}

.Landing__feedbackButton {
  color: #ffffff;
  background-color: #ff596b;
  padding: 10px 30px;
  border-radius: 30px;
  width: 400px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 2px solid #ff596b;
}

.Landing__feedbackButton:hover {
  color: #ff596b;
  background-color: transparent;
}

.Landing__image {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 450px;
  z-index: 1;
}

/* Very tall desktop screens only */

.head__form {
  margin-top: 40px;
  width: 100%;
  max-width: 70%;
}

.head__form .Modal__button {
  font-size: 17px;
}

.head__form .Modal__inputItem {
  padding: 8px 0;
  margin-bottom: 25px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #b3b3b3;
  border-radius: 0;
}

.head__form .Modal__inputItem:focus-within {
  border-bottom-color: #ff596b;
}

.head__form .Modal__input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: #000000;
  padding: 0;
  font-size: 16px;
}

.head__form .Modal__input::-webkit-input-placeholder {
  color: #b3b3b3;
}

.head__form .Modal__input::-moz-placeholder {
  color: #b3b3b3;
}

.head__form .Modal__input:-ms-input-placeholder {
  color: #b3b3b3;
}

.head__form .Modal__input::-ms-input-placeholder {
  color: #b3b3b3;
}

.head__form .Modal__input::placeholder {
  color: #b3b3b3;
}

.head__form .Modal__input[name=name] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='17' viewBox='0 0 14 17' fill='none'%3E%3Cpath d='M8.5 10.0938C11.5312 10.0938 14 12.7169 14 15.9375C14 16.5352 13.5312 17 13 17H1C0.4375 17 0 16.5352 0 15.9375C0 12.7169 2.4375 10.0938 5.5 10.0938H8.5ZM1.5 15.4062H12.4688C12.2188 13.3144 10.5312 11.6875 8.5 11.6875H5.5C3.4375 11.6875 1.75 13.3144 1.5 15.4062ZM7 8.5C4.78125 8.5 3 6.60742 3 4.25C3 1.92578 4.78125 0 7 0C9.1875 0 11 1.92578 11 4.25C11 6.60742 9.1875 8.5 7 8.5ZM7 1.59375C5.59375 1.59375 4.5 2.78906 4.5 4.25C4.5 5.74414 5.59375 6.90625 7 6.90625C8.375 6.90625 9.5 5.74414 9.5 4.25C9.5 2.78906 8.375 1.59375 7 1.59375Z' fill='%23ADADAD'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 14px 17px;
  padding-left: 36px;
}

.head__form .Modal__input[name=phone] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='17' viewBox='0 0 14 17' fill='none'%3E%3Cpath d='M13.113 10.4939C13.7414 10.8213 14.0965 11.6399 13.9052 12.4586L13.3315 15.4385C13.2223 16.2244 12.6486 16.7484 11.9656 16.7484C5.35447 16.7484 0 10.3301 0 2.4055C0 1.58684 0.437099 0.899171 1.09275 0.735439L3.57875 0.0477649C4.26172 -0.148713 4.94469 0.27699 5.21787 1.03016L6.39258 4.30479C6.63845 4.99247 6.44721 5.81113 5.9828 6.30232L5.05396 7.18648C5.76425 8.62732 6.77504 9.83893 8.00438 10.6903L8.74199 9.60971C9.15181 9.02027 9.83473 8.79105 10.4357 9.11851L13.113 10.4939ZM12.6486 12.0984C12.6759 12.0329 12.6486 11.9674 12.5939 11.9019L9.91673 10.5266C9.86201 10.4939 9.80746 10.5266 9.7801 10.5594L8.68735 12.1639C8.49612 12.4586 8.14097 12.5241 7.86779 12.3603C6.03743 11.2798 4.53491 9.47872 3.63339 7.28471C3.49679 6.95725 3.57875 6.56429 3.7973 6.33507L5.13592 5.02521C5.19055 4.99247 5.19055 4.92698 5.16324 4.86148L4.01585 1.65234C3.98853 1.61959 3.96121 1.5541 3.90657 1.5541L3.87926 1.58684L1.39325 2.27452C1.33862 2.27452 1.28398 2.34001 1.28398 2.4055C1.28398 9.44598 6.09207 15.1765 11.9656 15.1765C12.0202 15.1765 12.0749 15.111 12.0749 15.0784L12.6486 12.0984Z' fill='%23ADADAD'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 14px 17px;
  padding-left: 36px;
}

.head__form .Modal__licenseText {
  text-align: left;
}

.head__form .Main__button {
  font-size: 20px;
  border: 2px solid #ff596b;
  background-color: #ff596b;
  color: #ffffff;
  padding: 0 20px;
  width: 100%;
  height: 64px;
  margin-top: 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 14px;
  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;
}

.head__form .Main__button:hover {
  background-color: transparent;
  color: #ff596b;
}

.head__form .Main__consentText {
  margin: 6px 0 0;
  font-size: 10px;
  line-height: 1.25;
  color: #b3b3b3;
  text-align: center;
  width: 100%;
  max-width: 100%;
  text-wrap: normal;
}

.head__form .Main__consentLink {
  color: #ff596b;
  text-decoration: underline;
}

.Form {
  padding: 60px 0;
}

.Form__wrapper {
  width: 40%;
  max-width: 600px;
  margin: 0 auto;
}

.Form__title {
  font-size: 40px;
  margin: 0 0 10px;
}

.Form__titleSecond {
  font-size: 20px;
  margin: 0 0 30px;
}

.Form__inputItem {
  border: 2px solid #C8AA74;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.Form__privacyField {
  margin-top: 10px;
}

.Form__checkbox {
  margin-right: 10px;
}

.Form__licenseLink {
  color: #826126;
}

.Form__licenseLink:hover {
  color: #C8AA74;
}

.Form__label {
  margin: 10px 0 5px;
}

.Form__button {
  font-size: 20px;
  border: 2px solid #C8AA74;
  background-color: #C8AA74;
  color: #000000;
  padding: 10px 20px;
  width: 100%;
  margin-top: 10px;
}

.Form__button:hover {
  background-color: transparent;
  color: #C8AA74;
}

.Form__error {
  display: none;
  color: #ff2b2b;
  font-size: 16px;
}

.Form__error--server {
  display: none;
}

.Form__successTitle {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.Form__successDescription {
  color: #C8AA74;
  margin-bottom: 16px;
}

.Form__number {
  display: inline-block;
}

.Sale {
  padding: 0 0 60px;
}

.Sale__wrapper {
  border: 3px solid #ff596b;
  border-radius: 20px;
  padding: 60px;
  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;
}

.Sale__title {
  font-size: 35px;
  margin-bottom: 10px;
}

.Sale__desc {
  font-size: 35px;
  font-weight: 600;
  color: #ff596b;
  margin-bottom: 40px;
}

.Sale__messengers {
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
}

.Sale__button {
  color: #ffffff;
  background-color: #ff596b;
  border: 2px solid #ff596b;
  border-radius: 30px;
  padding: 10px 30px;
  margin-bottom: 30px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  text-align: center;
}

.Sale__button:hover {
  color: #ff596b;
  background-color: transparent;
}

.Sale__text {
  line-height: 1.5;
	margin-top:20px
}

.Steps {
  padding: 60px 0;
}

.Steps__title {
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
}

.Steps__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: center;
  color: #7a7a7a;
}

.Steps__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  margin: 40px auto 0;
}

.Steps__infoText {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[4];
  grid-template-rows: repeat(4, 1fr);
  gap: 20px;
}

.Steps__infoIcon {
  width: 40px;
  height: 40px;
}

.Steps__infoIcon svg {
  width: 40px;
  height: 40px;
  stroke: #ff596b;
  fill: #ff596b;
}

.Steps__infoStep {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13fr;
  grid-template-columns: 1fr 13fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Steps__infoImage {
  width: 350px;
  height: 350px;
  border-radius: 200px;
}

.Price {
  padding: 60px 0;
}

.Price__title {
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
}

.Price__desc {
  font-size: 18px;
  text-align: center;
  color: #ff596b;
  margin-bottom: 40px;
}

.Price__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.Price__card {
  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;
  gap: 10px;
}

.Price__cardLong {
  color: #ff596b;
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.Price__factors {
  font-family: "Montserrat", sans-serif;
  margin: 40px 0;
  color: #7a7a7a;
}

.Price__factorsTitle {
  margin-bottom: 10px;
  font-size: 16px;
}

.Price__ul {
  padding-left: 30px;
  font-size: 16px;
}

.Price__li {
  list-style: disc;
}

.Price__text {
  color: #7a7a7a;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.MaxPrice {
  padding: 0 0 60px;
}

.MaxPrice__wrapper {
  border: 3px solid #ff596b;
  border-radius: 20px;
  padding: 60px;
  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;
}

.MaxPrice__title {
  font-size: 35px;
  margin-bottom: 10px;
  text-align: center;
}

.MaxPrice__desc {
  font-size: 18px;
  color: #ff596b;
  margin-bottom: 40px;
  text-align: center;
}

.MaxPrice__button {
  color: #ffffff;
  background-color: #ff596b;
  border: 2px solid #ff596b;
  border-radius: 30px;
  padding: 10px 30px;
  margin-bottom: 30px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  text-align: center;
}

.MaxPrice__button:hover {
  color: #ff596b;
  background-color: transparent;
}

.About {
  padding: 60px 0;
  background-color: #F5F5F5;
}

.About__title {
  font-size: 40px;
  margin: 0 0 40px;
}

.About__text {
  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;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
  font-size: 20px;
}

.Preim {
  padding: 60px 0;
}

.Preim__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.Preim__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.Preim__desc {
  color: #ff596b;
  font-size: 20px;
}

.Preim__image {
  border: 2px solid #ff596b;
  border-radius: 60px;
  padding: 15px 20px;
}

.Preim__image svg {
  fill: #ff596b;
  width: 60px;
  height: 60px;
}

.Info {
  padding: 60px 0;
}

.Info__title {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.Info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 16px;
}

.Info__textWrapper {
  font-family: "Montserrat", sans-serif;
  color: #7a7a7a;
}

.Info__textTitle {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.Info__text {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 16px;
}

.Info__ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.Info__li {
  list-style: decimal;
}

.Info__image {
  width: 400px;
  height: 400px;
}

.Info__continuation {
  color: #7a7a7a;
  font-family: "Montserrat", sans-serif;
}

.Faq {
  padding-bottom: 60px;
}

.Faq__title {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.Faq__wrapper {
  width: 80%;
  margin: 0 auto;
}

.Faq__itemWrapper {
  font-size: 18px;
  color: #ff596b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 10px 0;
}

.Faq__icon {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Faq__answer {
  color: #7a7a7a;
  font-size: 16px;
  overflow: hidden;
  height: 0;
  padding-left: 20px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Faq__hr {
  height: 1px;
  background-color: #7a7a7a;
}

.Child {
  padding: 60px 0;
}

.Child__title {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.Child__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 16px;
}

.Child__textWrapper {
  font-family: "Montserrat", sans-serif;
  color: #7a7a7a;
}

.Child__text {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 16px;
}

.Child__ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.Child__li {
  list-style: disc;
}

.Child__image {
  width: 400px;
  height: 400px;
}

.Contacts {
  padding: 60px 0;
}

.Contacts__title {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.Contacts__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.Contacts__card {
  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;
  gap: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Contacts__card:hover .Contacts__text {
  color: #ff596b;
}

.Contacts__icon {
  width: 80px;
  height: 80px;
  background-color: #ff596b;
  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;
  border-radius: 50px;
}

.Contacts__icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
  fill: #ffffff;
}

.Contacts__text {
  color: #7a7a7a;
}

.Contacts__map {
  text-align: center;
}

.Contacts__map iframe {
  width: 100%;
  aspect-ratio: 10/4;
}

.AboutPage {
  padding: 60px 0;
}

.AboutPage h1 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 40px;
}

.AboutPage h2 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 25px;
}

.AboutPage h3 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 20px;
}

.AboutPage h4,
.AboutPage h5,
.AboutPage h6 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 18px;
}

.AboutPage p {
  margin: 30px auto;
  font-size: 20px;
  width: 100%;
}

.AboutPage ul,
.AboutPage ol {
  margin: 20px auto;
  width: 85%;
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
}

.AboutPage li {
  margin-bottom: 12px;
}

.AboutPage li:last-child {
  margin-bottom: 0;
}

.AboutPage ul ul,
.AboutPage ol ol,
.AboutPage ul ol,
.AboutPage ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 0.95em;
}

.AboutPage a {
  color: #C8AA74;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.AboutPage a:hover {
  color: #826126;
}

.AboutPage blockquote {
  margin: 40px auto;
  padding: 10px 20px;
  width: 85%;
  font-style: italic;
  border-left: 3px solid #C8AA74;
  background-color: rgba(200, 170, 116, 0.05);
  text-align: left;
}

.AboutPage__breadCrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  color: #C8AA74;
  margin-bottom: 10px;
}

.AboutPage__title {
  font-size: 40px;
  margin: 0 0 20px;
}

.AboutPage__image {
  width: 100%;
  height: 400px;
}

.AboutPage__block {
  background-color: #F5F5F5;
  padding: 20px 0;
}

.AboutPage__text {
  text-align: center;
  margin: 60px auto;
  font-size: 20px;
  width: 70%;
}

.AboutPage__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 100px;
  font-size: 20px;
}

.AboutPage__image2 {
  width: 500px;
  height: 500px;
}

.AboutPage__infoTitle {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}

.AboutPage__infoText {
  font-size: 18px;
}

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

.wp-block-group img {
  max-width: 700px;
}

.BlogPage {
  padding: 60px 0;
}

.BlogPage__breadCrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  color: #7a7a7a;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.BlogPage__breadLink {
  color: #7a7a7a;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.BlogPage__title {
  font-size: 40px;
  margin: 0 0 40px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.BlogPage__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.BlogPage__feedbackButton {
  color: #ffffff;
  background-color: #ff596b;
  border: 1px solid #ff596b;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 16px;
}

.BlogPage__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.BlogPage__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  width: 400px;
}

.BlogPage__image {
  width: 400px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.BlogPage__date {
  color: #7a7a7a;
  font-size: 12px;
}

.BlogPage__cardText {
  font-size: 18px;
  color: #000000;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.BlogPage__cardText:hover {
  color: #ff596b;
}

.BlogPage__pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 30px 0;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.BlogPage__pagination a,
.BlogPage__pagination span {
  padding: 10px 20px;
  border: 1px solid #7a7a7a;
  text-decoration: none;
  color: #000000;
}

.BlogPage__pagination .current {
  background-color: #7a7a7a;
  color: #000000;
}

.Article {
  padding: 60px 0;
}

.Article__wrapper {
  position: relative;
}

.Article__imageWrapper {
  position: sticky;
  top: 30px;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

.Article__image {
  width: 600px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.Article__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.Article__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.Article__button {
  color: #ffffff;
  background-color: #ff596b;
  border: 1px solid #ff596b;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 16px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Article__button:hover {
  color: #ff596b;
  background-color: transparent;
}

.Article h1 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 30px;
}

.Article h2 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 25px;
}

.Article h3 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 20px;
}

.Article h4,
.Article h5,
.Article h6 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 18px;
}

.Article p {
  margin: 30px auto;
  font-size: 20px;
  width: 100%;
}

.Article ul,
.Article ol {
  margin: 20px auto;
  width: 85%;
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
}

.Article li {
  margin-bottom: 12px;
}

.Article li:last-child {
  margin-bottom: 0;
}

.Article ul ul,
.Article ol ol,
.Article ul ol,
.Article ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 0.95em;
}

.Article a {
  color: #C8AA74;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Article a:hover {
  color: #826126;
}

.Article blockquote {
  margin: 40px auto;
  padding: 10px 20px;
  width: 85%;
  font-style: italic;
  border-left: 3px solid #C8AA74;
  background-color: rgba(200, 170, 116, 0.05);
  text-align: left;
}

.Article__related {
  margin-top: 20px;
}

.Article__relatedLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
}

.Cities {
  padding: 60px 0;
}

.Cities__title {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.Cities__blockWrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-left: 50px;
  margin: 0 auto;
}

.Cities__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.Cities__item {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.Cities__item span {
  color: #ff596b;
}

.CitiesPage {
  padding: 60px 0;
}

.CitiesPage__title {
  font-size: 40px;
  margin: 0 0 40px;
  color: #C8AA74;
}

.CitiesPage__text {
  color: #000000;
  font-size: 20px;
}

.CitiesPage p {
  color: #000000;
  font-size: 20px;
}

.CitiesPage__letter {
  font-size: 30px;
  color: #c8aa74;
  margin: 20px 0 10px 0;
  font-weight: bold;
}

.CitiesPage__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.CitiesPage__cityItem {
  position: relative;
  padding-left: 20px;
}

.CitiesPage__cityItem::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}

.CitiesPage__blockLink {
  color: #000000;
}

.CitiesPage__breadCrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  color: #C8AA74;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.CitiesPage__breadLink {
  color: #C8AA74;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.CitiesPage__breadLink:hover {
  color: #826126;
}

.PageServices {
  padding: 60px 0;
}

.PageServices__title {
  font-size: 40px;
  margin: 0 0 40px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.PageServices__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.PageServices__card {
  padding: 20px;
  border: 2px solid #ff596b;
  border-radius: 30px;
  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;
  gap: 20px;
  color: #000000;
}

.simplePage {
  padding: 60px 0;
}

.simplePage h1 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 35px;
  line-height: 1.5;
}

.simplePage h2 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 25px;
}

.simplePage h3 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 20px;
}

.simplePage h4,
.simplePage h5,
.simplePage h6 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 18px;
}

.simplePage p {
  margin: 30px auto;
  font-size: 18px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.simplePage ol {
  margin: 20px auto;
  padding: 0;
  max-width: 85%;
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 40px;
  font-family: "Montserrat", sans-serif;
}

.simplePage ul {
  margin: 20px auto;
  padding: 0;
  max-width: 85%;
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 40px;
  list-style: disc;
  font-family: "Montserrat", sans-serif;
}

.simplePage ol li {
  margin-bottom: 12px;
}

.simplePage ol li:last-child {
  margin-bottom: 0;
}

.simplePage ul li {
  margin-bottom: 12px;
  list-style: disc;
}

.simplePage ul li:last-child {
  margin-bottom: 0;
}

.simplePage ul ul,
.simplePage ol ol,
.simplePage ul ol,
.simplePage ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 0.95em;
  padding-left: 30px;
}

.simplePage a {
  color: #ff596b;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.simplePage blockquote {
  margin: 40px auto;
  padding: 10px 20px;
  width: 85%;
  font-style: italic;
  border-left: 3px solid #7a7a7a;
  background-color: rgba(122, 122, 122, 0.05);
  text-align: left;
}

.simplePage image {
  width: 400px;
  height: 400px;
}

.simplePage__breadCrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.simplePage__title {
  font-size: 40px;
  margin: 0 0 20px;
}

.simplePage__image {
  width: 400px;
  height: 400px;
}

.simplePage__block {
  background-color: #F5F5F5;
  padding: 20px 0;
}

.simplePage__text {
  text-align: center;
  margin: 60px auto;
  font-size: 20px;
  width: 70%;
}

.simplePage__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 100px;
  font-size: 20px;
}

.simplePage__image2 {
  width: 500px;
  height: 500px;
}

.simplePage__infoTitle {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}

.simplePage__infoText {
  font-size: 18px;
}

.Page404 {
  padding: 100px 0;
}

.Page404__title {
  font-size: 80px;
  margin: 0 0 60px;
  text-align: center;
  color: #ff596b;
}

.Page404__text {
  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;
  gap: 20px;
}

.Page404__textMain {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
}

.Page404__textDesc {
  text-align: center;
}

.Page404__link {
  color: #7a7a7a;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Page404__link:hover {
  color: #ff596b;
}

.ContactsPage {
  padding: 60px 0;
}

.Footer {
  padding: 40px 0;
  background-color: #ff596b;
}

.Footer__wrapper {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  font-size: 16px;
}

.Footer__info {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.Footer__contactsColumn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.Footer__logoLink {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}

.Footer__logoLink svg {
  width: 50px;
  height: 50px;
  fill: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Footer__logoTextMain {
  font-size: 20px;
}

.Footer__logoTextSecond {
  font-size: 16px;
}

.Footer__link svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  color: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Footer__work {
  color: #ffffff;
}

.Footer__workLink {
  color: #F5F5F5;
}

.Footer__menuTitle {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.Footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.Footer__navLink {
  color: #ffffff;
}

.Footer__bottom {
  margin: 40px auto 0;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

.about {
  padding: 60px 0;
}

@media (min-width: 900px) {
  .sectionTitle {
    margin-bottom: 64px;
  }

  .MessengerButtons__icon--max {
    width: 42px;
    height: 36px;
  }

  .MessengerButtons__icon--vk {
    width: 38px;
    height: 33px;
  }

  .MessengerButtons__icon--telegram {
    width: 32px;
    height: 27px;
  }
}

@media (min-width: 1200px) {
  .MessengerButtons__button {
    height: 68px;
  }

  .MessengerButtons__icon--max {
    width: 46px;
    height: 40px;
  }

  .MessengerButtons__icon--vk {
    width: 42px;
    height: 36px;
  }

  .MessengerButtons__icon--telegram {
    width: 36px;
    height: 30px;
  }

  .Header__contactsLink--iconPhone {
    display: none;
  }

  .Landing__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }

  .Landing__bannerText {
    position: static;
    top: auto;
    left: auto;
  }

  .Landing__imageWrapper {
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .Landing__image {
    position: static;
    right: auto;
    bottom: auto;
    margin: 0;
  }

  .head__form .Main__button {
    height: 68px;
  }
}

@media (min-width: 1200px) and (min-height: 1100px) {
  .Landing {
    height: min(100vh - 30px, 980px);
    min-height: min(100vh - 30px, 980px);
  }
}

@media (max-width: 1199px) {
  .Main__container {
    padding-top: 20px;
  }

  .Header__contactsWrapper {
    gap: 18px;
  }

  .Header__menu {
    display: none;
  }

  .Header__feedbackButton {
    display: none;
  }

  .Header__contactsLink--phoneText {
    display: none;
  }

  .Header__contactsLinks {
    gap: 12px;
  }

  .Header__contactsLink--icon {
    color: #ffffff;
  }

  .Header__contactsLink--icon svg,
  .Header__contactsLink--icon svg path {
    fill: #ffffff;
  }

  .Header__burgerButton {
    display: block;
  }

  .Landing__bannerText {
    max-width: 560px;
    margin-top: 50px;
  }

  .Landing__buttons {
    max-width: 100%;
  }

  .Landing__image {
    right: 0;
  }

  .head__form {
    max-width: 100%;
  }

  .Form__wrapper {
    width: 60%;
  }

  .AboutPage__info {
    gap: 50px;
  }

  .AboutPage__image2 {
    height: 350px;
    width: 350px;
  }

  .BlogPage__card {
    width: 350px;
  }

  .BlogPage__image {
    width: 350px;
    height: 250px;
  }

  .Article__image {
    width: 400px;
    height: 300px;
  }

  .simplePage__info {
    gap: 50px;
  }

  .simplePage__image2 {
    height: 350px;
    width: 350px;
  }

  .Footer__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 899px) {
  .sectionTitle {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 36px;
    text-transform: uppercase;
    font-size: 1.625rem;
  }

  .Modal__wrapper {
    width: 70%;
    left: 20%;
    padding: 20px 25px;
  }

  .Modal__title {
    font-size: 20px;
  }

  .Modal__checkboxLabel {
    font-size: 16px;
  }

  .Modal__label {
    font-size: 16px;
  }

  .Modal__error {
    font-size: 14px;
  }

  .MessengerButtons__button {
    height: 58px;
    border-radius: 12px;
  }

  .MessengerButtons__icon--max {
    width: 38px;
    height: 32px;
  }

  .MessengerButtons__icon--vk {
    width: 32px;
    height: 30px;
  }

  .MessengerButtons__icon--telegram {
    width: 26px;
    height: 22px;
  }

  .Header__logoLink svg {
    width: 40px;
    height: 40px;
  }

  .Header__logoTextMain {
    font-size: 14px;
  }

  .Header__contactsLink {
    font-size: 18px;
  }

  .head__form .Main__button {
    height: 58px;
  }

  .Form__wrapper {
    width: 80%;
  }

  .Form__title {
    font-size: 30px;
  }

  .Sale__wrapper {
    padding: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .Sale__title {
    font-size: 30px;
  }

  .Sale__desc {
    font-size: 25px;
  }

  .Steps__title {
    font-size: 25px;
  }

  .Steps__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .Price__title {
    font-size: 25px;
  }

  .Price__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .MaxPrice__wrapper {
    padding: 40px 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .MaxPrice__title {
    font-size: 30px;
  }

  .Preim__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .Preim__desc {
    font-size: 16px;
  }

  .Info__title {
    font-size: 30px;
    text-align: left;
  }

  .Info__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }

  .Faq__title {
    font-size: 30px;
    text-align: left;
  }

  .Faq__wrapper {
    width: 100%;
  }

  .Child__title {
    font-size: 30px;
  }

  .Child__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }

  .Contacts__title {
    font-size: 30px;
  }

  .Contacts__cards {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .Contacts__text {
    font-size: 16px;
  }

  .AboutPage p {
    font-size: 18px;
  }

  .AboutPage ul,
  .AboutPage ol {
    width: 100%;
    font-size: 18px;
  }

  .AboutPage blockquote {
    width: 100%;
    padding: 7px 15px;
  }

  .AboutPage__text {
    width: 100%;
    text-align: left;
    font-size: 18px;
  }

  .AboutPage__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
  }

  .AboutPage__image2 {
    height: 250px;
    width: 250px;
  }

  .wp-block-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .Article__imageWrapper {
    position: static;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .Article__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .Article__button {
    width: 80%;
  }

  .Article p {
    font-size: 18px;
  }

  .Article ul,
  .Article ol {
    width: 100%;
    font-size: 18px;
  }

  .Article blockquote {
    width: 100%;
    padding: 7px 15px;
  }

  .Article__relatedLinks {
    gap: 20px;
  }

  .Cities__title {
    font-size: 30px;
    text-align: left;
  }

  .Cities__blockWrapper {
    width: 100%;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
    gap: 10px;
  }

  .CitiesPage__block {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .simplePage p {
    font-size: 18px;
  }

  .simplePage blockquote {
    width: 100%;
    padding: 7px 15px;
  }

  .simplePage__text {
    width: 100%;
    text-align: left;
    font-size: 18px;
  }

  .simplePage__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
  }

  .simplePage__image2 {
    height: 250px;
    width: 250px;
  }

  .Page404 {
    padding: 40px 0;
  }
}

@media (max-width: 639px) {
  h1 {
    font-size: 2.875rem;
  }

  .container {
    padding: 0 16px;
  }

  .Modal__wrapper {
    width: 90%;
    left: 5%;
    padding: 20px 25px;
  }

  .Modal__inputItem {
    padding: 5px 10px;
  }

  .Header__contactsWrapper {
    gap: 16px;
  }

  .Header__feedbackButton {
    font-size: 14px;
    padding: 5px;
  }

  .Header__burgerButton {
    margin: 0;
  }

  .Landing__bannerText {
    max-width: 100%;
    margin-top: 120px;
    position: relative;
    left: auto;
    top: auto;
  }

  .Landing__title {
    font-size: 30px;
  }

  .Landing__desc {
    font-size: 21px;
    margin-top: -5px;
    margin-bottom: 30px;
  }

  .Landing__feedbackButton {
    width: 300px;
  }

  .Landing__image {
    position: static;
    right: auto;
    bottom: auto;
    width: min(100%, 400px);
    margin: 30px auto 0;
  }

  .Landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .Landing {
    height: auto;
    min-height: auto;
  }

  .Landing > .container {
    height: auto;
  }

  .Landing__wrapper {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
  }

  .Landing__bannerText {
    margin: 100px 0 0;
    width: 100%;
    z-index: 2;
  }

  .Landing__imageWrapper {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
  }

  .head__form .Modal__label label,
  .head__form .Modal__licenseText,
  .head__form .Modal__licenseLink {
    color: #ffffff;
  }

  .head__form .Main__button {
    font-size: 17px;
    border-radius: 12px;
  }

  .head__form .Main__consentText {
    font-size: 9px;
    line-height: 1.3;
  }

  .Form__inputItem {
    padding: 5px 10px;
  }

  .Info__image {
    width: 350px;
    height: 350px;
  }

  .Child__image {
    width: 350px;
    height: 350px;
  }

  .BlogPage__title {
    font-size: 30px;
  }

  .BlogPage__buttons {
    -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;
  }

  .BlogPage__card {
    width: 100%;
  }

  .BlogPage__image {
    width: 100%;
    aspect-ratio: 4/3;
  }

  .BlogPage__cardText {
    font-size: 18px;
  }

  .Article__image {
    width: 350px;
    height: 250px;
  }

  .PageServices__title {
    font-size: 30px;
  }

  .PageServices__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .simplePage h1 {
    font-size: 30px;
  }

  .simplePage h2 {
    font-size: 20px;
  }

  .simplePage ol {
    padding-left: 20px;
    max-width: 95%;
  }

  .simplePage ul {
    padding-left: 20px;
    max-width: 95%;
  }

  .Footer__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 424px) {
  .Landing__title {
    margin-bottom: 10px;
  }

  .Landing__desc {
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .Header__logoTextMain {
    font-size: 12px;
  }

  .Header__contactsLink {
    font-size: 14px;
  }
}

@media (max-width: 374px) {
  .Landing__image {
    width: 350px;
  }
}

@media (max-width: 899px) and (min-width: 900px) {
  .sectionTitle {
    margin-bottom: 64px;
  }
}
/*# sourceMappingURL=maps/main.css.map */
