@charset "UTF-8";

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

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

.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: "AlumniSans";
  src: url("/fonts/AlumniSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "AlumniSans";
  src: url("/fonts/AlumniSans-SemiBold.woff2") format("woff2");
  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: "AlumniSans", sans-serif;
  font-size: 1.125rem;
  font-optical-sizing: auto;
  line-height: 1.4;
  color: #394047;
  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(57, 64, 71, 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;
}

.Header {
  position: absolute;
  z-index: 1001;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.Header__wrapper {
  padding: 35px 0;
}

.Header__logo {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.Header__logo:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.Header__image {
  width: 145px;
  height: 65px;
}

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

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

.Header__nav.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.Header__link {
  color: white;
  font-family: "Montserrat", sans-serif;
}

.Header__link:hover {
  color: #EED9B8;
}

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

.Header__phone {
  color: #ffffff;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: #848D94;
  text-align: center;
  padding: 10px;
  width: 260px;
  height: 50px;
  border-radius: 50px;
}

.Header__phone:hover {
  color: #EED9B8;
}

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

.Header__icon {
  width: 50px;
  height: 50px;
}

.Header__burger {
  display: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

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

.Landing__wrapper {
  background-image: url(../../../img/background.webp);
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 100;
  overflow: hidden;
}

.Landing__videoWrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.Landing__videoWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 101;
  pointer-events: none;
}

.Landing__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  z-index: 100;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Landing__image {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 100;
  -o-object-fit: cover;
  object-fit: cover;
}

.Landing__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 101;
  pointer-events: none;
}

.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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1000;
  padding-top: 100px;
}

.Landing__bannerTitle {
  color: #EED9B8;
  text-align: center;
  margin: 10px 0 80px;
  font-size: 5.625rem;
  font-weight: 600;
}

.Landing__bannerButton {
  color: #676664;
  background-color: #EED9B8;
  border: 1px solid #EED9B8;
  border-radius: 50px;
  width: 400px;
  height: 60px;
  padding: 10px;
  text-align: center;
  font-size: 1.5625rem;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Landing__bannerButton:hover {
  color: #EED9B8;
  background-color: transparent;
}

.warning {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #676664;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  z-index: 10000;
}

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

.cookieLink {
  color: #EED9B8;
  font-weight: 600;
  text-decoration: underline;
}

.cookieLink:hover {
  color: #ffffff;
}

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

.warning__apply {
  padding: 5px 20px;
  background-color: #EED9B8;
  color: #293036;
  border-radius: 20px;
  margin-left: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.warning__apply:hover {
  background-color: #ffffff;
}

.Preim {
  padding: 80px 0;
  background-color: #fbfbfb;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

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

.Preim__animate {
  opacity: 0;
  will-change: opacity, transform;
}

.Preim__animate.Preim__animate__active {
  opacity: 1;
  -webkit-animation: fadeInUp 1s ease-out forwards;
  animation: fadeInUp 1s ease-out forwards;
}

.Preim__titleBlock {
  width: 850px;
}

.Preim__titleFirst {
  font-size: 3.125rem;
  color: #394047;
  font-weight: 600;
}

.Preim__titleSecond {
  font-size: 3.125rem;
  text-align: right;
  color: #645B56;
  font-weight: 600;
}

.Preim__image {
  width: 300px;
  height: 450px;
  border-radius: 20px;
}

.Preim__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  grid-gap: 80px;
}

.Preim__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.Preim__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  width: 700px;
  color: #645B56;
}

.Preim__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}

.Preim__card {
  width: 280px;
  height: 200px;
  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;
  border-radius: 20px;
}

.Preim__card.Preim__animate__active {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.Preim__card:nth-child(1).Preim__animate_active {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.Preim__card:nth-child(2).Preim__animate_active {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.Preim__card:nth-child(3).Preim__animate_active {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.Preim__card:nth-child(1) {
  background-color: #645B56;
}

.Preim__card:nth-child(2) {
  background-color: #676664;
}

.Preim__card:nth-child(3) {
  background-color: #848D94;
}

.Preim__cardImage {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.Preim__cardText {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
}

.Preim__fish {
  width: 350px;
  height: 350px;
  opacity: 0.1;
  position: absolute;
  right: 10px;
}

.Houses {
  padding: 80px 0;
  background-color: #293036;
}

.Houses__title {
  color: #EED9B8;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 40px;
}

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

.Houses__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 100px;
}

.Houses__cardText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 500px;
}

.Houses__textBold {
  font-weight: 600;
}

.Houses__cardItem {
  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;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.Houses__line {
  background-color: #ffffff;
  height: 0.5px;
  width: 100%;
}

.Houses__image {
  width: 550px;
  height: 300px;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.Houses__cardSlider {
  position: relative;
  width: 650px;
  height: 450px;
  overflow: hidden;
  padding-bottom: 40px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.Houses__sliderImages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  /* Важно: разрешаем скролл страницы, блокируем только X */
  will-change: transform;
}

.Houses__sliderItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.Houses__sliderDots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 20px;
}

.Houses__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1000;
}

.Houses__dot:hover,
.Houses__dot.Houses__dot--active {
  opacity: 1;
  background-color: #EED9B8;
}

.Price {
  padding: 80px 0;
  background-color: #fbfbfb;
  position: relative;
  min-height: 600px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

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

.Price__animate {
  opacity: 0;
  will-change: opacity, transform;
}

.Price__animate.Price__animate__active {
  opacity: 1;
  -webkit-animation: fadeInUp 1s ease-out forwards;
  animation: fadeInUp 1s ease-out forwards;
}

.Price__titleBlock {
  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;
  width: 850px;
}

.Price__titleFirst {
  font-size: 3.125rem;
  color: #394047;
  font-weight: 600;
  margin: 10px 0;
}

.Price__titleSecond {
  font-size: 3.125rem;
  color: #645B56;
  font-weight: 600;
  text-align: right;
  margin: 10px 0;
  margin-bottom: 40px;
}

.Price__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 30px;
  font-family: "Montserrat", sans-serif;
}

.Price__card {
  width: 415px;
  height: 300px;
  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;
  border-radius: 30px;
}

.Price__card.Price__animate__active {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.Price__card:nth-child(1).Price__animate_active {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.Price__card:nth-child(2).Price__animate_active {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.Price__card:nth-child(3).Price__animate_active {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.Price__cardTitle {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.Price__card:nth-child(1) {
  background-color: #645B56;
}

.Price__card:nth-child(2) {
  background-color: #676664;
}

.Price__card:nth-child(3) {
  background-color: #848D94;
}

.Price__cardItem {
  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;
  width: 80%;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.Price__line {
  background-color: #ffffff;
  height: 0.5px;
  width: 80%;
}

.Price__cardDescription {
  color: #ffffff;
  font-size: 0.75rem;
}

.Price__image {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 20px;
  opacity: 0.1;
  z-index: 1;
  margin-top: -250px;
}

.Price__imageBirds {
  position: absolute;
  width: 350px;
  height: 150px;
  right: 10px;
}

.Price__text {
  font-size: 1rem;
}

.Faq {
  padding: 80px 0;
  background-color: #293036;
  color: #ffffff;
}

.Faq__title {
  color: #EED9B8;
  text-align: center;
  font-size: 3.75rem;
}

.Faq__list {
  max-width: 900px;
  margin: 0 auto;
}

.Faq__itemWrapper {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.Faq__item {
  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;
  gap: 10px;
  width: 100%;
  padding: 20px 0 10px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.Faq__item:hover {
  color: #EED9B8;
}

.Faq__icon {
  font-size: 1.5625rem;
  color: #EED9B8;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.Faq__itemWrapper.active .Faq__icon {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.Faq__content {
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 20px;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.Faq__itemWrapper.active .Faq__content {
  max-height: 1000px;
  opacity: 1;
}

.Faq__line {
  background-color: #ffffff;
  height: 0.5px;
  width: 100%;
  margin: 0;
}

.Fishing {
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.Fishing__fish {
  width: 300px;
  height: 300px;
  position: absolute;
  left: 10px;
}

.Fishing__people {
  width: 300px;
  height: 300px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.Fishing__title {
  color: #645B56;
  text-align: center;
}

.Fishing__sliderBody {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.Fishing__sliderArrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #ffffff;
  z-index: 100;
  text-align: center;
  font-size: 1.25rem;
  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;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.Fishing__sliderArrow:hover .Fishing__slide--default {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.Fishing__sliderArrow:hover .Fishing__slide--hover {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.Fishing__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.Fishing__slide--default {
  opacity: 1;
}

.Fishing__slide--hover {
  opacity: 0;
}

.Fishing__left {
  left: 15px;
}

.Fishing__right {
  right: 15px;
}

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

.Fishing__sliderItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  min-width: 50%;
  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;
}

.Fishing__image {
  width: 500px;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.Fishing__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  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;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.Fishing__modal.active {
  opacity: 1;
  visibility: visible;
}

.Fishing__modalContent {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.Fishing__modalImage {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}

.Fishing__modalClose {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 40px;
  height: 40px;
  color: #EED9B8;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
}

.Fishing__modalClose:hover {
  color: #645B56;
}

.Fishing__video {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 60px;
  border-radius: 10px;
}

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

.Footer__wrapper {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.Footer__info {
  margin-top: 50px;
  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;
}

.Footer__image {
  width: 189px;
  height: 85px;
  margin-bottom: 60px;
}

.Footer__workTIme {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 600;
}

.Footer__phone {
  color: #EED9B8;
  font-size: 3.125rem;
  font-weight: 600;
}

.Footer__phone:hover {
  color: #848D94;
}

.Footer__email,
.Footer__whatsApp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #EED9B8;
}

.Footer__email:hover,
.Footer__whatsApp:hover {
  color: #848D94;
}

.Footer__whatsApp {
  margin-bottom: 30px;
}

.Footer__emailText,
.Footer__whatsAppText {
  font-size: 1.375rem;
  font-weight: 600;
}

.Footer__icon {
  width: 30px;
  height: 30px;
}

.Footer__link {
  color: #ffffff;
  font-size: 1.125rem;
}

.Footer__link:hover {
  color: #848D94;
}

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

.Footer__mapWrapper iframe {
  width: 700px;
  height: 400px;
}

.Footer__mapText {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.Footer__company {
  color: #EED9B8;
  font-size: 1.5625rem;
}

.Footer__company a {
  color: #ffffff;
}

.Footer__company a:hover {
  color: #848D94;
}

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

@media (max-width: 1439px) {
  .Preim__titleBlock {
    width: 700px;
  }

  .Preim__titleFirst {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .Preim__titleSecond {
    font-size: 2.5rem;
  }

  .Preim__text {
    width: 500px;
    font-size: 1rem;
  }

  .Preim__card {
    width: 250px;
    height: 180px;
  }

  .Preim__cardText {
    font-size: 1rem;
  }
}

@media (max-width: 1199px) {
  .Header__icon {
    width: 30px;
    height: 30px;
  }

  .Landing__bannerTitle {
    font-size: 4.375rem;
  }

  .Preim__image {
    width: 250px;
    height: 400px;
  }

  .Preim__wrapper {
    grid-gap: 30px;
  }

  .Preim__card {
    width: 170px;
    height: 150px;
  }

  .Preim__cardImage {
    width: 70px;
    height: 70px;
  }

  .Preim__cardText {
    font-size: 0.9375rem;
    text-align: center;
  }

  .Preim__fish {
    width: 250px;
    height: 250px;
    margin-top: -60px;
  }

  .Fishing__fish {
    width: 200px;
    height: 200px;
    margin-top: -40px;
  }

  .Fishing__title {
    font-size: 3.125rem;
  }
}

@media (max-width: 1099px) {
  .Price__titleBlock {
    width: 80%;
  }

  .Price__titleFirst {
    font-size: 2.5rem;
  }

  .Price__titleSecond {
    font-size: 2.5rem;
  }

  .Price__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Price__text {
    font-size: 0.875rem;
  }

  .Fishing__sliderItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .Footer__wrapper {
    margin-bottom: 40px;
  }

  .Footer__image {
    width: 145px;
    height: 65px;
    margin-bottom: 30px;
  }

  .Footer__workTIme {
    font-size: 1.125rem;
  }

  .Footer__phone {
    font-size: 2.5rem;
  }

  .Footer__mapWrapper iframe {
    width: 550px;
    height: 300px;
  }

  .Footer__mapText {
    font-size: 1rem;
  }

  .Footer__company {
    font-size: 1.25rem;
  }
}

@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;
  }

  .Header__wrapper {
    padding: 25px 0;
  }

  .Header__image {
    width: 122px;
    height: 56px;
  }

  .Header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: #293036;
    backdrop-filter: blur(10px);
    padding: 120px 20px 20px;
    -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: 30px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .Header__phone {
    background-color: transparent;
    font-size: 0.9375rem;
    width: 200px;
    height: 40px;
  }

  .Header__burger {
    display: block;
  }

  .Landing__bannerTitle {
    font-size: 3.125rem;
  }

  .Preim__titleBlock {
    width: 600px;
  }

  .Preim__titleFirst {
    font-size: 2.1875rem;
  }

  .Preim__titleSecond {
    font-size: 2.1875rem;
  }

  .Preim__image {
    width: 200px;
    height: 300px;
  }

  .Preim__wrapper {
    grid-gap: 20px;
  }

  .Preim__description {
    gap: 20px;
  }

  .Preim__text {
    width: 100%;
  }

  .Preim__cards {
    grid-gap: 10px;
  }

  .Preim__card {
    width: 130px;
    height: 130px;
  }

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

  .Houses {
    padding: 60px 0;
  }

  .Houses__title {
    font-size: 2.5rem;
  }

  .Houses__card {
    -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: 50px;
  }

  .Houses__card:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .Houses__cardText {
    width: 90%;
  }

  .Houses__cardItem {
    margin: 10px 0;
  }

  .Houses__cardSlider {
    width: 90%;
    height: auto;
    padding-bottom: 0;
  }

  .Price {
    padding: 60px 0;
  }

  .Price__titleBlock {
    gap: 10px;
  }

  .Price__titleFirst {
    font-size: 2.1875rem;
    margin-bottom: 0;
  }

  .Price__titleSecond {
    font-size: 2.1875rem;
  }

  .Price__imageBirds {
    margin-top: -50px;
    margin-right: -10px;
  }

  .Faq {
    padding: 60px 0;
  }

  .Faq__title {
    font-size: 3.125rem;
  }

  .Faq__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .Fishing {
    padding: 60px 0 120px;
  }

  .Fishing__people {
    width: 200px;
    height: 200px;
  }

  .Fishing__title {
    font-size: 2.5rem;
  }

  .Fishing__modalClose {
    top: -100px;
    right: -10px;
  }

  .Fishing__video {
    width: 100%;
  }

  .Footer {
    padding: 10px 0 80px;
  }

  .Footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .Footer__link {
    color: #848D94;
  }

  .Footer__map {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

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

  .container {
    padding: 0 16px;
  }

  .Header__icon {
    display: none;
  }

  .Landing__bannerTitle {
    font-size: 2.5rem;
  }

  .Landing__bannerButton {
    width: 380px;
  }

  .Preim__titleBlock {
    width: 90%;
  }

  .Preim__titleFirst {
    font-size: 1.875rem;
  }

  .Preim__titleSecond {
    font-size: 1.875rem;
  }

  .Preim__image {
    display: none;
  }

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

  .Preim__text {
    width: 90%;
  }

  .Houses__dot {
    width: 16px;
    height: 16px;
  }

  .Faq__item {
    font-size: 1rem;
  }

  .Faq__content {
    font-size: 0.875rem;
  }

  .Fishing__fish {
    width: 150px;
    height: 150px;
  }

  .Fishing__people {
    width: 150px;
    height: 150px;
  }

  .Fishing__sliderArrow .Fishing__slide--default {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .Fishing__sliderArrow .Fishing__slide--hover {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .Fishing__image {
    width: 400px;
    height: 280px;
  }

  .Footer__mapWrapper iframe {
    width: 400px;
    height: 250px;
  }
}

@media (max-width: 424px) {
  .Header__image {
    width: 92px;
    height: 42px;
  }

  .Landing__bannerButton {
    width: 300px;
    font-size: 1.4375rem;
  }

  .warning__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .Preim {
    padding: 60px 0;
  }

  .Preim__cards {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .Preim__card {
    width: 150px;
  }

  .Preim__cardText {
    padding: 7px;
  }

  .Preim__fish {
    width: 150px;
    height: 150px;
    margin-top: -30px;
  }

  .Fishing__title {
    font-size: 2.1875rem;
  }

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

  .Footer__mapWrapper iframe {
    width: 355px;
    height: 250px;
  }
}

@media (max-width: 374px) {
  .Footer__mapWrapper iframe {
    width: 340px;
    height: 220px;
  }
}

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