/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/
html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; /* 1 */
  line-height: 1.15; /* 2 */
  -webkit-text-size-adjust: 100%; /* 3 */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 4 */
}

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

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, 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;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

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

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

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

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

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 Chrome and Safari.
*/
summary {
  display: list-item;
}

* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--color-regular);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#offer:target {
  scroll-margin-top: 200px;
}

.icon {
  height: var(--fs-base);
  width: var(--fs-base);
}
.icon--md {
  height: calc(var(--fs-base) * 1.5);
  width: calc(var(--fs-base) * 1.5);
}

h1,
h2,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}
.flex--column {
  flex-direction: column;
}
.flex--inline {
  display: inline-flex;
}

@media (max-width: 1024px) {
  .center-mobile {
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

.inline-center {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.link {
  display: inline-flex;
  gap: var(--gap-sm);
  font-size: var(--fs-base);
  align-items: center;
  color: var(--color-blue-main);
}

.logo {
  line-height: 0;
}

.margin-top-xs {
  margin-top: 40px;
}

.margin-top-sm {
  margin-top: 80px;
}

.margin-top-md {
  margin-top: 160px;
}

.margin-top-lg {
  margin-top: 240px;
}

.margin-bottom-sm {
  margin-bottom: 80px;
}

.margin-bottom-md {
  margin-bottom: 160px;
}

.margin-bottom-lg {
  margin-bottom: 240px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: clamp(320px, 100%, 500px);
  gap: var(--gap-lg);
  align-items: center;
  transform: translateY(var(--translate-y, 0));
}

.note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-grey);
}
.note--main {
  color: var(--color-regular);
}
.note--left {
  text-align: left;
}

.poligon {
  position: absolute;
  left: var(--left, auto);
  top: var(--top, auto);
  width: var(--width, auto);
  height: var(--height, auto);
  z-index: 0;
}
@media (max-width: 767px) {
  .poligon {
    display: none;
  }
}

.poligon-bg {
  position: relative;
  z-index: 0;
  color: var(--color-white);
}
.poligon-bg::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  border-radius: var(--radius-sm);
  transform: skew(-20deg);
  background: linear-gradient(90deg, var(--color-blue-main) 0%, var(--color-blue-second) 100%);
  z-index: -1;
}

.headline {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-blue-main);
  position: relative;
  margin-bottom: 60px;
}
.headline--margin-sm {
  margin-bottom: 30px;
}
.headline::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: var(--color-orange);
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
}
.headline--center::after {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .headline {
    text-align: center;
  }
  .headline::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.paragraph {
  line-height: var(--lh-lg);
  font-size: var(--fs-sm);
}

.container {
  display: flex;
  justify-content: center;
}

.content {
  max-width: var(--max-size) !important;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding: var(--padding-base);
}
.content--column {
  flex-direction: column;
}

:root {
  --color-blue-main: #005baa;
  --color-blue-second: #1a7bbf;
  --color-orange: #f27028;
  --color-orange-second: #f59324;
  --color-regular: #333;
  --color-grey: #888;
  --color-grey-light: #f6f6f6;
  --color-white: #fff;
  --gap-xl: 80px;
  --gap-lg: 40px;
  --gap-md: 20px;
  --gap-sm: 10px;
  --padding-xl: 80px;
  --padding-lg: 40px;
  --padding-md: 20px;
  --padding-base: 10px 20px;
  --padding-sm: 10px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --fs-xl: 3rem;
  --fs-lg: 2.5rem;
  --fs-md: 2rem;
  --fs-base: 1.5rem;
  --fs-sm: 1rem;
  --fs-xs: 0.75rem;
  --fs-xxs: 0.6rem;
  --lh-lg: 2;
  --lh-md: 1.6;
  --max-size: 1440px;
  --border-h-lg: 4px;
  --border-h-md: 2px;
}

@media (min-width: 768px) {
  :root {
    --fs-xl: 3rem;
    --fs-lg: 2.5rem;
    --fs-md: 2rem;
    --fs-base: 1.5rem;
    --fs-sm: 1rem;
    --fs-xs: 0.75rem;
    --fs-xxs: 0.6rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-xl: 4rem;
    --fs-lg: 2.5rem;
    --fs-md: 2.25rem;
    --fs-base: 1.5rem;
    --fs-sm: 1.25rem;
    --fs-xs: 1;
    --fs-xxs: 0.6rem;
  }
}
.orange {
  color: var(--color-orange);
}

.white {
  color: var(--color-white);
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Bold.woff2") format("woff2"), url("./fonts/Montserrat-Bold.woff") format("woff"), url("./fonts/Montserrat-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.woff2") format("woff2"), url("./fonts/Montserrat-Medium.woff") format("woff"), url("./fonts/Montserrat-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.woff2") format("woff2"), url("./fonts/Montserrat-SemiBold.woff") format("woff"), url("./fonts/Montserrat-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.button {
  display: inline-flex;
  gap: var(--gap-sm);
  width: -moz-max-content;
  width: max-content;
  padding: var(--padding-base);
  border-radius: 10pc;
  background: linear-gradient(90deg, var(--color-blue-main) 0%, var(--color-blue-second) 100%);
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button--sm {
  font-size: var(--fs-sm);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.button:active {
  transform: translateY(0);
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.button:focus:not(:active)::after {
  animation: ripple 0.6s ease-out forwards;
}
@media (max-width: 1023px) {
  .button {
    font-size: var(--fs-sm);
  }
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}
* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--color-regular);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#offer:target {
  scroll-margin-top: 200px;
}

.icon {
  height: var(--fs-base);
  width: var(--fs-base);
}
.icon--md {
  height: calc(var(--fs-base) * 1.5);
  width: calc(var(--fs-base) * 1.5);
}

h1,
h2,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}
.flex--column {
  flex-direction: column;
}
.flex--inline {
  display: inline-flex;
}

@media (max-width: 1024px) {
  .center-mobile {
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

.inline-center {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.link {
  display: inline-flex;
  gap: var(--gap-sm);
  font-size: var(--fs-base);
  align-items: center;
  color: var(--color-blue-main);
}

.logo {
  line-height: 0;
}

.margin-top-xs {
  margin-top: 40px;
}

.margin-top-sm {
  margin-top: 80px;
}

.margin-top-md {
  margin-top: 160px;
}

.margin-top-lg {
  margin-top: 240px;
}

.margin-bottom-sm {
  margin-bottom: 80px;
}

.margin-bottom-md {
  margin-bottom: 160px;
}

.margin-bottom-lg {
  margin-bottom: 240px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: clamp(320px, 100%, 500px);
  gap: var(--gap-lg);
  align-items: center;
  transform: translateY(var(--translate-y, 0));
}

.note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-grey);
}
.note--main {
  color: var(--color-regular);
}
.note--left {
  text-align: left;
}

.poligon {
  position: absolute;
  left: var(--left, auto);
  top: var(--top, auto);
  width: var(--width, auto);
  height: var(--height, auto);
  z-index: 0;
}
@media (max-width: 767px) {
  .poligon {
    display: none;
  }
}

.poligon-bg {
  position: relative;
  z-index: 0;
  color: var(--color-white);
}
.poligon-bg::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  border-radius: var(--radius-sm);
  transform: skew(-20deg);
  background: linear-gradient(90deg, var(--color-blue-main) 0%, var(--color-blue-second) 100%);
  z-index: -1;
}

.headline {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-blue-main);
  position: relative;
  margin-bottom: 60px;
}
.headline--margin-sm {
  margin-bottom: 30px;
}
.headline::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: var(--color-orange);
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
}
.headline--center::after {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .headline {
    text-align: center;
  }
  .headline::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.paragraph {
  line-height: var(--lh-lg);
  font-size: var(--fs-sm);
}

.container {
  display: flex;
  justify-content: center;
}

.content {
  max-width: var(--max-size) !important;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding: var(--padding-base);
}
.content--column {
  flex-direction: column;
}

:root {
  --color-blue-main: #005baa;
  --color-blue-second: #1a7bbf;
  --color-orange: #f27028;
  --color-orange-second: #f59324;
  --color-regular: #333;
  --color-grey: #888;
  --color-grey-light: #f6f6f6;
  --color-white: #fff;
  --gap-xl: 80px;
  --gap-lg: 40px;
  --gap-md: 20px;
  --gap-sm: 10px;
  --padding-xl: 80px;
  --padding-lg: 40px;
  --padding-md: 20px;
  --padding-base: 10px 20px;
  --padding-sm: 10px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --fs-xl: 3rem;
  --fs-lg: 2.5rem;
  --fs-md: 2rem;
  --fs-base: 1.5rem;
  --fs-sm: 1rem;
  --fs-xs: 0.75rem;
  --fs-xxs: 0.6rem;
  --lh-lg: 2;
  --lh-md: 1.6;
  --max-size: 1440px;
  --border-h-lg: 4px;
  --border-h-md: 2px;
}

@media (min-width: 768px) {
  :root {
    --fs-xl: 3rem;
    --fs-lg: 2.5rem;
    --fs-md: 2rem;
    --fs-base: 1.5rem;
    --fs-sm: 1rem;
    --fs-xs: 0.75rem;
    --fs-xxs: 0.6rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-xl: 4rem;
    --fs-lg: 2.5rem;
    --fs-md: 2.25rem;
    --fs-base: 1.5rem;
    --fs-sm: 1.25rem;
    --fs-xs: 1;
    --fs-xxs: 0.6rem;
  }
}
.orange {
  color: var(--color-orange);
}

.white {
  color: var(--color-white);
}

.group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}
.group__item {
  flex: 1 1 33%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.group--center {
  align-items: center;
  justify-content: center;
}
.group--mobile {
  flex-direction: column;
  gap: var(--gap-sm);
}
@media (min-width: 576px) {
  .group--mobile {
    flex-direction: row;
    gap: var(--gap-lg);
  }
}

.header {
  border-bottom: var(--border-h-md) solid var(--color-blue-main);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-direction: row;
}
.header__item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}
.header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  z-index: 8;
  border-bottom: var(--border-h-md) solid var(--color-blue-main);
}
.header__menu.active {
  display: flex;
}
.header__link {
  color: var(--color-regular);
  font-size: var(--fs-base);
  text-align: left;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header__link:hover {
  color: var(--color-blue-main);
  background-color: rgba(0, 0, 0, 0.02);
}
.header__link:last-child {
  border-bottom: none;
}
.header__link--main {
  color: var(--color-orange);
  font-weight: 600;
}
.header__link--main:hover {
  color: var(--color-orange-dark);
}
.header__button {
  font-size: var(--fs-base);
  transition: transform 0.2s ease;
}
.header__button:hover {
  transform: scale(1.05);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue-main);
  transition: all 0.3s ease;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .header__button {
    font-size: var(--fs-sx);
  }
  .header__content {
    flex-direction: row;
  }
  .header__item {
    gap: var(--gap-lg);
  }
  .header__item:first-child {
    flex-grow: 1;
  }
  .header__menu {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    box-shadow: none;
    border-bottom: none;
    gap: var(--gap-md);
  }
  .header__link {
    font-size: var(--fs-xs);
    padding: 0;
    border-bottom: none;
    text-align: center;
  }
  .header__link:hover {
    background-color: transparent;
  }
  .header__hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__button {
    font-size: var(--fs-xs) !important;
  }
}

.collage {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.collage__bg {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  min-height: 400px;
  min-width: 650px;
}
.collage__comp {
  top: 30px;
  width: 536px;
  max-width: 120vw;
}
.collage__background {
  position: relative;
  margin-top: 40px;
  z-index: 1;
  max-width: 150vw;
}
.collage__computer {
  position: absolute;
  top: 0;
  right: 50px;
  max-width: 100%;
}
.collage__item {
  position: absolute;
  top: var(--top, 0);
  left: var(--left, 0);
  right: var(--right, auto);
  bottom: var(--bottom, auto);
  width: var(--width, auto);
  height: var(--height, auto);
  z-index: var(--z-idx, 0);
}
.collage__shadow {
  position: absolute;
  top: 80%;
  left: 25%;
  z-index: 1;
  max-width: 100%;
}
.collage__comp {
  position: relative;
  z-index: 1;
}
.collage--mobile {
  display: none !important;
}
@media (max-width: 1023px) {
  .collage--full {
    display: none !important;
  }
  .collage--mobile {
    display: flex !important;
  }
  .collage--mobile .collage__bg {
    transform: translateX(50%);
    left: -50%;
  }
  .collage--mobile .collage__computer {
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 500px) {
  .collage--mobile .collage__comp {
    right: 20%;
  }
}

.offer {
  background-color: var(--color-grey-light);
  overflow: hidden;
  padding: var(--padding-md) 0;
  text-align: center;
}
.offer--main {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.offer--without-bg {
  background-color: var(--color-white);
}
.offer__content {
  display: flex;
  grid-template-columns: 60% 60%;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
}
.offer__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  order: 1;
}
.offer__headline {
  font-size: var(--fs-lg);
  color: var(--color-blue-main);
  margin-bottom: var(--gap-md);
}
.offer__logo {
  display: inline-block;
  position: relative;
  top: calc(var(--fs-lg) / 3.5);
  height: calc(var(--fs-lg) * 1.25);
  max-height: calc(var(--fs-lg) * 1.25);
}
.offer__papagraph {
  font-size: var(--fs-base);
  color: var(--color-regular);
  order: 3;
}
@media (max-width: 767px) {
  .offer__papagraph {
    font-size: var(--fs-sm);
  }
}
.offer__image {
  order: 2;
  margin: var(--gap-md) 0;
}
.offer__image .collage {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .offer {
    text-align: left;
    padding-top: var(--padding-lg);
    padding-bottom: var(--padding-lg);
  }
  .offer__content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--gap-xl);
    height: 100%;
  }
  .offer__text {
    order: initial;
    justify-content: center;
  }
  .offer__headline {
    font-size: var(--fs-lg);
    margin-bottom: 40px;
  }
  .offer__logo:not(.offer__logo--sm) {
    top: calc(var(--fs-lg) / 3.5);
    height: calc(var(--fs-lg) * 1.25);
    max-height: calc(var(--fs-lg) * 1.25);
  }
  .offer__papagraph {
    order: initial;
    display: inline-flex;
    gap: var(--gap-sm);
  }
  .offer__image {
    order: initial;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .offer__content {
    gap: var(--gap-lg);
    grid-template-columns: 40% 60%;
  }
}

.bullets__content {
  padding-top: var(--padding-xl);
}
.bullets__content--extra-padding {
  padding-bottom: var(--padding-xl);
}
.bullets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md) var(--gap-lg);
}
.bullets__grid--sm {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 1023px) {
  .bullets__grid {
    grid-template-columns: 1fr;
  }
}
.bullets__item {
  border-radius: var(--radius-lg);
  border: var(--border-h-md) solid var(--color-blue-main);
  padding: var(--padding-lg);
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}
.bullets__item--sm {
  font-size: var(--fs-sm);
}
.bullets__item--variant {
  display: flex;
  gap: var(--padding-md);
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--padding-md);
  background-color: var(--color-grey-light);
  line-height: var(--lh-md);
}
.bullets__item--column {
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
}
.bullets__icon {
  width: var(--fs-md);
  height: var(--fs-md);
}

.tagline {
  position: relative;
  background: var(--img-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: clamp(500px, 700px, 100vh);
}
.tagline::after {
  content: "";
  position: absolute;
  height: 300px;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 0;
  transform: rotateX(180deg);
}
.tagline--gradient-bottom::after {
  bottom: 0;
  transform: rotateX(0);
}
.tagline__content {
  display: flex;
  height: auto;
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.tagline__text {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  line-height: var(--lh-md);
}
.tagline--left-bottom .tagline__content {
  margin-top: auto;
}
.tagline--left-bottom .tagline__text {
  text-align: left;
}

.goods__content {
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.goods__grid {
  display: grid;
  gap: var(--gap-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.goods__headline {
  margin-top: 20px;
}
.goods__headline::after {
  width: 100%;
  height: 2px;
}
@media (max-width: 1023px) {
  .goods__headline {
    font-size: var(--fs-md);
  }
}
.goods__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--padding-lg);
  border-radius: var(--radius-sm);
  border: var(--border-h-md) solid var(--color-grey-light);
}
.goods__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
}
.goods__text {
  margin-bottom: 10px;
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}

.info__content {
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.info__text {
  line-height: var(--lh-lg);
  font-size: var(--fs-sm);
  margin-bottom: 20px;
}
.info__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md) var(--gap-md);
}

.block {
  background: var(--img-url, "");
  background-color: var(--bg-color, var(--color-blue-second));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.block__content {
  display: flex;
  align-items: center;
  height: var(--height, auto);
  width: 100%;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(360px, 100%, 500px);
  gap: var(--gap-md);
  position: relative;
  z-index: 0;
  padding: var(--padding-xl) var(--padding-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-grey-light);
  transform: translateY(-10%);
}
.form__item {
  position: relative;
  width: 100%;
}
.form__item:focus-within .form__label {
  top: -8px;
  font-size: 0.8em;
}
.form__item:has(.form__input:not(:-moz-placeholder-shown)) .form__label {
  top: -8px;
  font-size: 0.8em;
}
.form__item:has(.form__input:not(:placeholder-shown)) .form__label {
  top: -8px;
  font-size: 0.8em;
}
.form__item--not-valid .form__input {
  border-color: #ff0000;
}
.form__item .error-message {
  position: absolute;
  top: 90%;
  color: #ff0000;
  font-size: var(--fs-xxs);
  margin-top: 5px;
}
.form__label {
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
  color: var(--color-grey);
  transition: all 0.3s;
}
.form__input {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid var(--color-grey);
  padding: var(--padding-sm);
  width: 100%;
}
.form__input:focus {
  outline: none;
  border-bottom-color: var(--color-blue-main);
}
.form__button {
  margin-top: var(--padding-md);
  width: -moz-max-content;
  width: max-content;
}

.modal {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.modal__window {
  padding: var(--padding-xl) var(--padding-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 350px;
  position: relative;
}
.modal__window--content {
  padding: var(--padding-md) var(--padding-sm);
  max-width: -moz-max-content;
  max-width: max-content;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
  margin-left: auto;
}
.modal__close span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue-main);
  transition: all 0.3s ease;
}
.modal__close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.modal__close span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}
.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  color: var(--color-regular);
  text-align: center;
}
.modal__headline {
  font-size: var(--fs-md);
  color: var(--color-orange);
  font-weight: 600;
}
.modal__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}
.modal__button {
  width: -moz-max-content;
  width: max-content;
}

.footer {
  border-top: var(--border-h-md) solid var(--color-regular);
  background-color: var(--color-white);
  padding-top: var(--padding-lg);
  scroll-padding-bottom: var(--padding-lg);
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer__item {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__item:first-child {
    width: 100%;
  }
}
.footer__menu {
  display: flex;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__menu {
    width: 100%;
    order: 1;
  }
}
.footer__link {
  color: var(--color-regular);
  text-align: center;
  display: flex;
  align-items: center;
}
.footer__link--main {
  color: var(--color-orange);
  font-weight: 600;
}
.footer__button {
  font-size: var(--fs-xs);
}
.footer__button img {
  width: var(--fs-xs);
}
@media (max-width: 767px) {
  .footer__button {
    font-size: var(--fs-xs);
  }
  .footer__button img {
    width: var(--fs-xs);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */