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

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

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

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

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

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

ol,
ul {
  list-style: none;
}

li {
  list-style-type: none;
}

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

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

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

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

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

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

input:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

[disabled] {
  pointer-events: none;
}

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

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

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

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

button {
  border: 0;
  background: transparent;
}

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

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

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

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

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

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

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

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

fieldset {
  min-width: 0;
}

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

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

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
} /* 2 */
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
} /* 2 */
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

:root {
  --color-accent: orange;
  --bg-dark: #1A1A1A;
  --bg-middle: #D0CCC1;
  --text-white: #FFFFFF;
  --text-main: #D0CCC1;
  --text-light: #828181;
  --text-dark: #383838;
}

@font-face {
  font-family: "gotham-pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gotham-pro-regular.ttf") format("woff2");
}
@font-face {
  font-family: "gotham-pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gotham-pro-bold.ttf") format("woff2");
}
body {
  font-family: gotham-pro, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  min-width: 360px;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--text-main);
}
a:hover {
  color: var(--text-main);
}

[class*="--m-container"] {
  width: 100%;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media screen and (max-width: 1359px) {
  [class*="--m-container"] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  [class*="--m-container"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.about-benefits {
  padding: 80px 0;
}
@media (max-width: 1359px) {
  .about-benefits {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .about-benefits {
    padding: 40px 0 20px 0;
  }
}
.about-benefits__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 1359px) {
  .about-benefits__wrapper {
    gap: 40px;
  }
}
.about-benefits__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .about-benefits__label {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.about-benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1359px) {
  .about-benefits__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 41px;
  }
}
@media (max-width: 767px) {
  .about-benefits__list {
    gap: 20px;
  }
}
.about-benefits__card {
  width: 282px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding-left: 24px;
  padding-bottom: 16px;
  border-left: 1px solid #282828;
}
@media (max-width: 1359px) {
  .about-benefits__card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-benefits__card {
    gap: 10px;
    padding-bottom: 26px;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #282828;
  }
}
.about-benefits__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1359px) {
  .about-benefits__row {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .about-benefits__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.about-benefits__row:last-child .benefits__card:last-child {
  padding-bottom: 70px;
}
.about-benefits__card-name {
  font-size: 24px;
  font-weight: bold;
  line-height: 28.8px;
}
@media (max-width: 1359px) {
  .about-benefits__card-name {
    font-size: 18px;
    line-height: 23.4px;
  }
}
.about-benefits__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .about-benefits__card-text {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.about-hero {
  height: 308px;
}
@media (max-width: 1359px) {
  .about-hero {
    height: 184px;
  }
}
@media (max-width: 767px) {
  .about-hero {
    height: 140px;
  }
}
.about-hero__bg {
  height: 100%;
  background-image: url("../images/dist/about-hero.png");
  background-size: cover;
  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;
}
@media (max-width: 767px) {
  .about-hero__bg {
    background-position: 74%;
  }
}
.about-hero__title {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: bold;
  line-height: 80px;
  text-align: center;
  color: var(--text-white);
}
@media (max-width: 1359px) {
  .about-hero__title {
    font-size: 52px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .about-hero__title {
    font-size: 30px;
    line-height: 33px;
  }
}

.about-images {
  padding: 40px 0;
}
@media (max-width: 1359px) {
  .about-images {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .about-images {
    padding: 40px 0;
  }
}
.about-images__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .about-images__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-images__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .about-images__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.about-images__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1359px) {
  .about-images__col {
    gap: 6px;
  }
}
.about-images__col--1 {
  margin-top: 38px;
}
@media (max-width: 1359px) {
  .about-images__col--1 {
    margin-top: 18px;
  }
}
@media (max-width: 767px) {
  .about-images__col--1 {
    margin-top: 0;
  }
}
.about-images__col--2 {
  margin-top: 114px;
}
@media (max-width: 1359px) {
  .about-images__col--2 {
    margin-top: 74px;
  }
}
@media (max-width: 767px) {
  .about-images__col--2 {
    margin-top: 28px;
  }
}
.about-images__col--4 {
  margin-top: 80px;
}
@media (max-width: 1359px) {
  .about-images__col--4 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .about-images__col--4 {
    margin-top: 28px;
  }
}
.about-images__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 15.6px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .about-images__text {
    font-size: 12px;
    line-height: 18px;
  }
}

.about-info {
  padding: 100px 100px 100px 0;
}
@media (max-width: 1359px) {
  .about-info {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .about-info {
    padding: 40px 0;
  }
}
.about-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .about-info__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.about-info__title {
  width: 100%;
  max-width: 433px;
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
  text-align: left;
}
@media (max-width: 1359px) {
  .about-info__title {
    min-width: 280px;
    font-size: 18px;
    line-height: 23.4px;
  }
}
@media (max-width: 767px) {
  .about-info__title {
    min-width: 100%;
    max-width: 100%;
  }
}
.about-info__content {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 1359px) {
  .about-info__content {
    font-size: 15px;
    line-height: 23.1px;
  }
}
@media (max-width: 767px) {
  .about-info__content {
    gap: 20px;
    max-width: 100%;
  }
}

.about-text {
  padding: 80px 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
  text-align: center;
}
@media (max-width: 1359px) {
  .about-text {
    padding: 40px 0;
    font-size: 26px;
    line-height: 33.8px;
  }
}
@media (max-width: 767px) {
  .about-text {
    font-size: 18px;
    line-height: 23.4px;
    text-align: left;
  }
}

.about-values {
  padding: 60px 0 40px;
}
@media (max-width: 1359px) {
  .about-values {
    padding: 40px 0 20px 0;
  }
}
@media (max-width: 767px) {
  .about-values {
    padding: 40px 0;
    border-bottom: 1px solid #282828;
  }
}
.about-values__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .about-values__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-values__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 0 0 16px 24px;
  border-left: 1px solid #282828;
}
@media (max-width: 1359px) {
  .about-values__col {
    padding: 0 0 16px 16px;
  }
}
@media (max-width: 767px) {
  .about-values__col {
    gap: 4px;
    border-left: none;
    padding: 0;
  }
}
.about-values__name {
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 1359px) {
  .about-values__name {
    font-size: 26px;
    line-height: 33.8px;
  }
}
.about-values__text {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 1359px) {
  .about-values__text {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 43px;
}
@media (max-width: 1359px) {
  .about__wrapper {
    gap: 80px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.about__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}
@media (max-width: 1359px) {
  .about__label {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.about__main {
  max-width: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 51px;
}
@media (max-width: 767px) {
  .about__main {
    gap: 25px;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 72px;
}
.about__description {
  font-size: 36px;
  font-weight: bold;
  line-height: 42.2px;
}
@media (max-width: 1359px) {
  .about__description {
    font-size: 26px;
    line-height: 33.8px;
  }
}
@media (max-width: 767px) {
  .about__description {
    font-size: 18px;
    line-height: 23.4px;
  }
}
.about__description-small {
  max-width: 400px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .about__description-small {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media (max-width: 767px) {
  .about__description-small {
    display: none;
  }
}
.about__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-transform: uppercase;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
  cursor: pointer;
}
.about__button:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-main);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.about__button:hover::after {
  width: 1px;
  left: 4px;
  opacity: 0;
}

.app__section {
  padding: 100px 0;
  border-bottom: 1px solid #282828;
}
@media (max-width: 1359px) {
  .app__section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .app__section {
    padding: 40px 0;
  }
}

.benefits__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 1359px) {
  .benefits__wrapper {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .benefits__wrapper {
    gap: 30px;
  }
}
.benefits__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .benefits__label {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1359px) {
  .benefits__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 37px;
  }
}
@media (max-width: 767px) {
  .benefits__list {
    gap: 20px;
  }
}
.benefits__card {
  width: 282px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding-left: 24px;
  padding-bottom: 16px;
  border-left: 1px solid #282828;
}
@media (max-width: 1359px) {
  .benefits__card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .benefits__card {
    gap: 16px;
    padding-left: 0;
    border-left: none;
  }
}
.benefits__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1359px) {
  .benefits__row {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .benefits__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.benefits__row:last-child .benefits__card:last-child {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .benefits__row:last-child .benefits__card:last-child {
    padding-bottom: 0;
  }
}
.benefits__card-img {
  height: 64px;
  width: 64px;
}
@media (max-width: 767px) {
  .benefits__card-img {
    height: 40px;
    width: 40px;
  }
}
.benefits__card-name {
  font-size: 24px;
  font-weight: bold;
  line-height: 28.8px;
}
@media (max-width: 1359px) {
  .benefits__card-name {
    font-size: 18px;
    line-height: 23.4px;
  }
}
.benefits__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .benefits__card-text {
    font-size: 15px;
    line-height: 22.5px;
  }
}

.button-line {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-transform: uppercase;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
  cursor: pointer;
}
.button-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-main);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.button-line:hover::after {
  width: 1px;
  left: 4px;
  opacity: 0;
}

.button {
  height: 40px;
  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;
  padding: 0 16px;
  border: 1px solid #D0CCC1;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.button span {
  position: relative;
  z-index: 2;
}
.button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.button:hover {
  color: var(--text-dark);
}
.button:hover:after {
  width: 100%;
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 101;
}
.contact-modal__content {
  background-color: var(--bg-dark);
  padding: 100px 80px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -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;
}
@media (max-width: 1359px) {
  .contact-modal__content {
    height: 100vh;
    width: 100%;
    padding: 100px 60px;
  }
  .contact-modal__content .form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-modal__content .form__button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-modal__content {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: scroll;
  }
  .contact-modal__content .form {
    width: 100%;
    max-width: 100%;
  }
}
.contact-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.contact-modal--active {
  opacity: 1;
  visibility: visible;
}
.contact-modal--active .contact-modal__content {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.contact-modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 1359px) {
  .contact-modal__wrapper {
    -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: 40px;
  }
}
@media (max-width: 767px) {
  .contact-modal__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 37px;
    width: 100%;
  }
}
.contact-modal__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1359px) {
  .contact-modal__images {
    min-width: 280px;
    max-height: 420px;
  }
}
@media (max-width: 767px) {
  .contact-modal__images {
    width: 100%;
    max-height: 150px;
    max-width: none;
  }
}
.contact-modal__images img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .contact-modal__images img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-modal__image-2 {
    display: none;
  }
}

.contacts-page__title {
  padding: 60px 0;
  font-size: 80px;
  font-weight: bold;
  line-height: 80px;
  text-align: left;
  text-transform: uppercase;
  color: var(--text-white);
}
@media (max-width: 1359px) {
  .contacts-page__title {
    padding: 40px 0;
    font-size: 52px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .contacts-page__title {
    font-size: 30px;
    line-height: 33px;
  }
}
.contacts-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1359px) {
  .contacts-page__wrapper {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contacts-page__wrapper {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .contacts-page__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.contacts-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 24px 10px;
  border-bottom: 1px solid #282828;
}
.contacts-page__item:first-child {
  border-top: 1px solid #282828;
}
.contacts-page__name {
  font-size: 13px;
  line-height: 15.6px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 767px) {
  .contacts-page__name {
    font-size: 12px;
    line-height: 18px;
  }
}
.contacts-page__value {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .contacts-page__value {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.contacts-page__map {
  width: 600px;
  height: 392px;
}
@media (max-width: 767px) {
  .contacts-page__map {
    width: auto;
    height: 220px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 1359px) {
  .contacts__wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contacts__wrapper {
    gap: 37px;
  }
}
.contacts__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1359px) {
  .contacts__images {
    min-width: 280px;
    max-height: 420px;
  }
}
@media (max-width: 767px) {
  .contacts__images {
    width: 100%;
    max-height: 150px;
    max-width: none;
  }
}
.contacts__images img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .contacts__images img {
    width: 100%;
  }
}
@media (max-width: 1229px) {
  .contacts__image-2 {
    display: none;
  }
}

.footer {
  padding: 60px 0 40px 0;
}
@media (max-width: 1359px) {
  .footer {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 88px;
}
.footer__top {
  height: 191px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1359px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 41px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 150px;
  }
}
.footer__links {
  width: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .footer__links {
    font-size: 15px;
  }
}
.footer__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .footer__text {
    color: var(--text-light);
  }
}
.footer__contacts {
  width: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .footer__contacts {
    font-size: 15px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 176px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .footer__bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.footer__bottom a {
  color: var(--text-light);
}
.footer__parent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 24px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 24px;
}
.footer__parent > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.footer__parent > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.footer__parent > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.footer__parent > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.footer__parent > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.footer__parent > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.footer__parent > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.footer__parent > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.footer__div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.footer__div2 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.footer__div3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/3/4;
}
.footer__div4 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/3/5;
}
.footer__copy, .footer__politic {
  margin-top: 54px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .footer__copy, .footer__politic {
    white-space: nowrap;
  }
}
@media (max-width: 1359px) {
  .footer .footer__parent {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 24px;
    -ms-grid-rows: auto 24px auto 24px auto;
    grid-template-rows: auto auto auto;
  }
  .footer .footer__parent > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer .footer__parent > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .footer .footer__parent > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .footer .footer__parent > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .footer .footer__parent > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .footer .footer__parent > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .footer .footer__div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .footer .footer__div2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .footer .footer__div3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .footer .footer__div4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 767px) {
  .footer .footer__parent {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-row-gap: 25px;
  }
  .footer .footer__parent > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer .footer__div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .footer .footer__div2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .footer .footer__div3 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .footer .footer__div4 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/5/2;
  }
}

.form {
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  height: 56px;
  border-bottom: 1px solid #484848;
}
.form__field input {
  width: 100%;
  height: 24px;
  background-color: var(--bg-dark);
  border: none;
  color: var(--text-white);
}
.form__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
}
@media (max-width: 1359px) {
  .form__title {
    font-size: 26px;
    line-height: 33.8px;
  }
}
.form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.form__bottom a {
  border-bottom: 1px solid #D0CCC1;
}
@media (max-width: 767px) {
  .form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .form__button {
    width: 100%;
  }
}
.form__politic {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
}
@media (max-width: 1359px) {
  .form__politic {
    font-size: 12px;
    line-height: 18px;
  }
}
.form .form__field {
  position: relative;
  padding: 0 10px;
  height: 56px;
  border-bottom: 1px solid #484848;
}
.form .form__field input {
  width: 100%;
  height: 24px;
  background-color: var(--bg-dark);
  border: none;
  color: var(--text-white);
}
.form .form__field label {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--bg-dark);
  padding: 0;
  font-size: 16px;
  color: #aaa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.form .form__field input:not(:-moz-placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: var(--text-light);
}
.form .form__field input:not(:-ms-input-placeholder) + label {
  top: 0;
  font-size: 12px;
  color: var(--text-light);
}
.form .form__field input:focus + label,
.form .form__field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: var(--text-light);
}

.header {
  position: relative;
  padding: 16px 0;
  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;
}
@media (max-width: 1359px) {
  .header__left img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .header__left img {
    width: 150px;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media (max-width: 1359px) {
  .header__right {
    gap: 32px;
  }
}
.header__phone {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .header__phone {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__button {
    display: none;
  }
}
.header__menu {
  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;
  width: 36px;
  height: 36px;
  gap: 8px;
  cursor: pointer;
}
.header__menu span {
  width: 32px;
  height: 2px;
  background-color: #D0CCC1;
}

.hero {
  height: 608px;
}
@media (min-width: 1780px) {
  .hero {
    height: 800px;
  }
}
@media (max-width: 1359px) {
  .hero {
    height: 363px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 350px;
  }
}
.hero__bg {
  height: 100%;
  background-image: url("../images/dist/main-banner.png");
  background-size: cover;
  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;
}
@media (min-width: 1780px) {
  .hero__bg {
    margin: 0 -280px;
  }
}
@media (max-width: 767px) {
  .hero__bg {
    background-position: 87%;
  }
}
.hero__title {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 80px;
  font-weight: bold;
  line-height: 80px;
  text-align: center;
  color: var(--text-white);
}
@media (max-width: 1359px) {
  .hero__title {
    margin-top: -12px;
    font-size: 52px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    margin-top: 22px;
    font-size: 30px;
    line-height: 33px;
  }
}

.menu-modal {
  position: absolute;
  right: -20px;
  top: -1000%;
  background-color: var(--bg-middle);
  color: var(--text-dark);
  padding: 60px 40px;
  width: 540px;
  height: 478px;
  z-index: 100;
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}
@media (max-width: 1359px) {
  .menu-modal {
    width: 479px;
    height: 422px;
  }
}
@media (max-width: 767px) {
  .menu-modal {
    position: fixed;
    padding: 16px;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
  }
}
.menu-modal__container {
  height: 100%;
  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;
}
@media (max-width: 767px) {
  .menu-modal__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
.menu-modal--active {
  top: 8px;
}
@media (max-width: 767px) {
  .menu-modal--active {
    top: 0;
    height: 100dvh;
  }
}
.menu-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.menu-modal__logo {
  display: none;
}
@media (max-width: 767px) {
  .menu-modal__logo {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
.menu-modal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 66px;
  font-weight: bold;
  line-height: 66px;
}
@media (max-width: 1359px) {
  .menu-modal__list {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .menu-modal__list {
    font-size: 48px;
    line-height: 48px;
    gap: 24px;
  }
}
.menu-modal__link {
  color: var(--text-dark);
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.menu-modal__link--active {
  color: var(--text-light);
}
.menu-modal__link:hover {
  color: var(--text-light);
}
.menu-modal__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .menu-modal__contacts {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.menu-modal__contacts a {
  color: var(--text-dark);
  cursor: pointer;
}

.project-page__top {
  padding: 30px 0;
}
@media (max-width: 1359px) {
  .project-page__top {
    padding: 20px 0 18px;
  }
}
.project-page__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .project-page__back {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.project-page__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
  text-align: left;
}
@media (max-width: 1359px) {
  .project-page__title {
    font-size: 26px;
    line-height: 33.8px;
  }
}
.project-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 60px;
}
@media (max-width: 1359px) {
  .project-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .project-page__wrapper {
    gap: 30px;
  }
}
.project-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 477px;
  height: 580px;
}
@media (max-width: 1359px) {
  .project-page__container {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    gap: 40px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .project-page__container {
    gap: 33px;
  }
}
.project-page__block {
  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;
  height: 100%;
}
@media (max-width: 1359px) {
  .project-page__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .project-page__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .project-page__block {
    gap: 30px;
  }
}
.project-page__description {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 1359px) {
  .project-page__description {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 15px;
    line-height: 22.5px;
  }
}
.project-page__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1359px) {
  .project-page__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.project-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #282828;
}
.project-page__item:first-child {
  border-top: 1px solid #282828;
}
@media (max-width: 767px) {
  .project-page__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }
}
.project-page__name {
  min-width: 120px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .project-page__name {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media (max-width: 767px) {
  .project-page__name {
    font-size: 12px;
    line-height: 18px;
  }
}
.project-page__value {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 1359px) {
  .project-page__value {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.project-page__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-right: -80px;
}
@media (max-width: 1359px) {
  .project-page__images {
    margin-right: 0;
  }
}
.project-page__images img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 580px;
}
@media (max-width: 1359px) {
  .project-page__images img {
    max-height: 500px;
  }
}
@media (max-width: 767px) {
  .project-page__images img {
    height: 250px;
  }
}

.projects-page__title {
  padding: 60px 0;
  font-size: 80px;
  font-weight: bold;
  line-height: 80px;
  text-align: left;
  text-transform: uppercase;
  color: var(--text-white);
}
@media (max-width: 1359px) {
  .projects-page__title {
    font-size: 52px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .projects-page__title {
    padding: 40px 0;
    font-size: 30px;
    line-height: 33px;
  }
}
.projects-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1359px) {
  .projects-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.projects-page__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1359px) {
  .projects-page__filter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .projects-page__filter {
    gap: 20px;
    margin: 0 -16px;
    padding: 0 16px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.projects-page__filter::-webkit-scrollbar {
  display: none;
}
.projects-page__option {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--text-light);
  white-space: nowrap;
  cursor: pointer;
}
.projects-page__option--active {
  color: var(--text-white);
}
.projects-page__result {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.projects-page__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.projects-page__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  min-height: 146px;
  border-bottom: 1px solid #484848;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.projects-page__item:hover {
  border-bottom: 1px solid #D0CCC1;
  color: var(--text-white);
}
.projects-page__item:first-child {
  border-top: 1px solid #484848;
}
@media (max-width: 1359px) {
  .projects-page__item {
    padding: 0 5px;
    min-height: 190px;
  }
}
@media (max-width: 767px) {
  .projects-page__item {
    padding: 20px 5px 24px 5px;
    min-height: auto;
    -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;
    gap: 8px;
  }
}
@media (min-width: 1359px) {
  .projects-page__item:hover .projects-page__img {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.projects-page__number {
  width: 100%;
  max-width: 205px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .projects-page__number {
    display: none;
  }
}
.projects-page__img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (min-width: 1359px) {
  .projects-page__img {
    position: absolute;
    top: 50%;
    left: 13%;
    width: 100%;
    height: auto;
    max-width: 250px; /* Максимальный размер изображения */
    max-height: 250px;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
        -ms-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1;
  }
}
@media (max-width: 1359px) {
  .projects-page__img {
    display: block;
  }
}
@media (max-width: 767px) {
  .projects-page__img {
    width: 100%;
    height: 150px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 12px;
  }
}
.projects-page__name {
  width: 100%;
  max-width: 486px;
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
  text-align: left;
}
@media (max-width: 1359px) {
  .projects-page__name {
    max-width: none;
    font-size: 26px;
    line-height: 33.8px;
  }
}
@media (max-width: 959px) {
  .projects-page__name {
    max-width: 300px;
  }
}
.projects-page__type {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 1359px) {
  .projects-page__type {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.projects-page__button {
  margin-bottom: 40px;
}
.projects-page__button img {
  display: none;
}
@media (max-width: 1359px) {
  .projects-page__button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.projects__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 94px;
}
@media (max-width: 1359px) {
  .projects__wrapper {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .projects__wrapper {
    gap: 30px;
  }
}
.projects__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 338px;
}
@media (max-width: 1359px) {
  .projects__top {
    gap: 105px;
  }
}
.projects__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .projects__label {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.projects__description {
  width: 420px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .projects__description {
    font-size: 15px;
    line-height: 22.5px;
  }
}
@media (max-width: 767px) {
  .projects__description {
    display: none;
  }
}
.projects__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 16px;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
  padding: 0 100px;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (max-width: 1359px) {
  .projects__list {
    display: none;
  }
}
.projects__list.dimmed .projects__item {
  opacity: 0.2;
}
.projects__list.dimmed .projects__item.active {
  opacity: 1;
  z-index: 3;
  color: var(--text-white);
}
.projects__hover-image {
  position: absolute;
  width: 250px;
  height: 250px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.5) translate(-50%, -50%);
      -ms-transform: scale(0.5) translate(-50%, -50%);
          transform: scale(0.5) translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, -webkit-transform 0.4s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.projects__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-size: 66px;
  font-weight: bold;
  line-height: 66px;
  white-space: nowrap;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.projects__item span {
  font-family: Inner;
  height: 72px;
  color: #484848;
  font-size: 48px;
  font-weight: 100;
  line-height: 72px;
}
.projects__container {
  display: none;
}
@media (max-width: 1359px) {
  .projects__container {
    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;
  }
}
.projects__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.projects__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;
  gap: 40px;
  padding: 19px 5px;
  border-bottom: 1px solid #484848;
}
@media (max-width: 767px) {
  .projects__block {
    -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;
    gap: 10px;
    padding: 21px 5px;
  }
}
.projects__block-img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .projects__block-img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    height: 150px;
    margin-top: 10px;
  }
}
.projects__block-name {
  width: 300px;
  font-size: 26px;
  font-weight: bold;
  line-height: 33.8px;
  text-align: left;
}
@media (max-width: 767px) {
  .projects__block-name {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.projects__block-text {
  width: 180px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: left;
  color: var(--text-light);
}
@media (max-width: 767px) {
  .projects__block-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.projects__button {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .projects__button {
    margin-bottom: 0;
  }
}

.services__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 1359px) {
  .services__wrapper {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .services__wrapper {
    gap: 20px;
  }
}
.services__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1359px) {
  .services__label {
    font-size: 15px;
    line-height: 22.5px;
  }
}
.services__cards {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .services__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.services__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: 16px;
}
.services__card img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .services__card img {
    height: 156px;
  }
}
.services__card-name {
  font-size: 26px;
  font-weight: 700;
  line-height: 33.8px;
}
.services__card-text {
  margin-top: 4px;
  font-size: 15px;
  line-height: 22.5px;
}
.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1359px) {
  .services__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .services__list {
    display: none;
  }
}
.services__item {
  position: relative;
  width: 50%;
  height: 440px;
  overflow: hidden;
}
.services__item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1359px) {
  .services__item {
    width: 100%;
    height: 380px;
  }
}
.services__item:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.services__item-content {
  position: relative;
  padding: 20px 42px;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  -webkit-transform: translateY(-94px);
      -ms-transform: translateY(-94px);
          transform: translateY(-94px);
  z-index: 1;
}
.services__item-content-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 43.2px;
}
@media (max-width: 1359px) {
  .services__item-content-title {
    font-size: 26px;
    line-height: 33.8px;
  }
}
.services__item-content-desk {
  margin-top: 20px;
  color: var(--text-dark);
  opacity: 0;
  font-size: 16px;
  line-height: 24px;
}
.services__item:hover .services__item-content {
  height: 100%;
  background-color: var(--text-main);
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  color: var(--text-dark);
}
.services__item:hover .services__item-content-desk {
  opacity: 1;
}


/* Custom styles */
.form__error {
  color: red;
  font-size: 14px;
  margin-top: -16px;
  padding: 0 10px;
}

.form--success {
  text-align: center;
  padding: 40px;
}

.form--success .form__title {
  color: #27ae60;
  margin-bottom: 20px;
}

.form--success .form__message {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.form--success .form__bottom {
  justify-content: center;
}

.projects-page__pagination {
  margin-bottom: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__item {
  display: flex;
  align-items: center;
}

.pagination__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination__item--active .pagination__link {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.pagination__link {
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-color);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.pagination__link:hover {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.button-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-color);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
}

.button-line:hover {
  color: var(--accent-color);
}

.button-line img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.button-line:hover img {
  transform: translateX(5px);
}

.button-line:hover img[src*="arrow-left"] {
  transform: translateX(-5px);
}