@charset "UTF-8";

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

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Josefin Sans";
  font-display: swap;
  src: url("../fonts/JosefinSans-Bold.woff2") format("woff2"), url("../fonts/JosefinSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Josefin Sans";
  font-display: swap;
  src: url("../fonts/JosefinSans-Regular.woff2") format("woff2"), url("../fonts/JosefinSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Inter";
  --heading-font-family: "Josefin Sans";
  --sp: 70px;
  --accent: #00D8BB;
  --green: #00D8BB;
  --white: #fff;
  --marsh: #3A4644;
  --bg: #161616;
  --text-color: #fff;
  --fz-default: 16px;
  --h1: 170px;
  --h2: 90px;
  --h3: 60px;
  --h4: 35px;
  --h5: 20px;
  --m: 20px;
  --s: 12px;
}

body {
  font: 300 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  min-width: 360px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page {
  background: var(--bg);
  color: var(--text-color);
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border-bottom: 1px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border-bottom: 1px solid #99FF99 !important;
}

.wrapper .single-page__wrap {
  padding: 120px 0;
}

.wrapper .single-page__content h1,
.wrapper .single-page__content h2,
.wrapper .single-page__content h3,
.wrapper .single-page__content h4,
.wrapper .single-page__content h5 {
  margin-top: 1em;
}

.wrapper .single-page__content p {
  margin-top: 1em;
}

.wrapper .single-page__content h2 {
  font-size: 40px;
}

.main-content h1,
.main-content ._h1 {
  font: 700 var(--h1)/90% var(--heading-font-family);
  text-transform: uppercase;
}

.main-content h2,
.main-content ._h2 {
  font: 700 var(--h2)/90% var(--heading-font-family);
  /* 81px */
  text-transform: uppercase;
}

.main-content h3,
.main-content ._h3 {
  font: 700 var(--h3) var(--heading-font-family);
  text-transform: uppercase;
}

.main-content h4,
.main-content ._h4 {
  font: 700 var(--h4) var(--heading-font-family);
}

.main-content h5,
.main-content ._h5 {
  font: 700 var(--h5) var(--heading-font-family);
  text-transform: uppercase;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._m {
  font-size: var(--m);
  line-height: 160%;
}

._s {
  font-size: var(--s);
  line-height: 90%;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  display: inline-flex;
  background: var(--green, #00D8BB);
  font-weight: 700;
  color: var(--161616, #161616);
  transition: 0.3s ease;
  border: 1px solid var(--green, #00D8BB);
  min-width: 260px;
  text-decoration: none;
}

.btn:hover {
  background: #0FD;
  transform: scale(1.05);
  border: 1px solid var(--green, #0FD);
}

.btn--bordered {
  background: transparent;
  color: var(--accent);
  border: 2px solid #00D8BB;
}

.btn--bordered:hover {
  background: transparent;
  color: #0FD;
  border: 2px solid var(--green, #0FD);
}

.btn--pulse {
  position: relative;
  -webkit-animation: pulse 2.5s infinite;
  box-shadow: 0 0 0 0 rgba(0, 216, 187, 0.5);
}

.btn--pulse:hover {
  animation: none;
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(0, 216, 187, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 216, 187, 0);
  }
}



.subm {
  cursor: pointer;
  border: none;
}

.form {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.form .input {
  font: 400 16px/1 Inter;
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--3-a-4644, #3A4644);
  background: var(--1-a-1-b-1-b, #1A1B1B);
  border-radius: 3px;
  padding-left: 15px;
  display: block;
  color: #fff;
  padding-left: 50px;
}

.form .input[name=name] {
  background: var(--1-a-1-b-1-b, #1A1B1B) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2219%22%20viewBox%3D%220%200%2018%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M8.9998%209.50039C10.091%209.50039%2011.1375%209.0737%2011.909%208.31417C12.6806%207.55465%2013.1141%206.52452%2013.1141%205.45039C13.1141%204.37626%2012.6806%203.34613%2011.909%202.58661C11.1375%201.82709%2010.091%201.40039%208.9998%201.40039C7.90863%201.40039%206.86214%201.82709%206.09057%202.58661C5.31899%203.34613%204.88552%204.37626%204.88552%205.45039C4.88552%206.52452%205.31899%207.55465%206.09057%208.31417C6.86214%209.0737%207.90863%209.50039%208.9998%209.50039ZM7.53088%2011.0191C4.3648%2011.0191%201.7998%2013.5441%201.7998%2016.6607C1.7998%2017.1796%202.2273%2017.6004%202.75445%2017.6004H15.2452C15.7723%2017.6004%2016.1998%2017.1796%2016.1998%2016.6607C16.1998%2013.5441%2013.6348%2011.0191%2010.4687%2011.0191H7.53088Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 20px 50% no-repeat;
}

.form .input[name=email] {
  background: var(--1-a-1-b-1-b, #1A1B1B) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M16.3125%202.8125H1.6875C1.53832%202.8125%201.39524%202.87176%201.28975%202.97725C1.18426%203.08274%201.125%203.22582%201.125%203.375V14.625C1.125%2014.7742%201.18426%2014.9173%201.28975%2015.0227C1.39524%2015.1282%201.53832%2015.1875%201.6875%2015.1875H16.3125C16.4617%2015.1875%2016.6048%2015.1282%2016.7102%2015.0227C16.8157%2014.9173%2016.875%2014.7742%2016.875%2014.625V3.375C16.875%203.22582%2016.8157%203.08274%2016.7102%202.97725C16.6048%202.87176%2016.4617%202.8125%2016.3125%202.8125ZM9.34523%2010.0065C9.24652%2010.0833%209.12504%2010.1249%209%2010.1249C8.87496%2010.1249%208.75348%2010.0833%208.65477%2010.0065L3.14824%205.72379L3.83871%204.83574L9%208.84988L14.1613%204.83574L14.8518%205.72379L9.34523%2010.0065Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 20px 50% no-repeat;
}

.form .input[name=phone] {
  background: var(--1-a-1-b-1-b, #1A1B1B) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.52793%207.53921C4.20681%2011.1975%207.18995%2014.0969%2010.8932%2015.6698L11.4879%2015.935C12.1464%2016.2284%2012.8873%2016.2798%2013.58%2016.0802C14.2727%2015.8806%2014.8727%2015.4427%2015.2744%2014.8438L16.0518%2013.6853C16.1735%2013.5036%2016.2227%2013.2829%2016.1899%2013.0667C16.157%2012.8505%2016.0444%2012.6545%2015.8743%2012.5172L13.2404%2010.3909C13.1486%2010.3169%2013.0429%2010.2622%2012.9295%2010.2301C12.8161%2010.198%2012.6974%2010.1892%2012.5806%2010.2041C12.4637%2010.2191%2012.351%2010.2575%2012.2494%2010.3171C12.1477%2010.3767%2012.0591%2010.4563%2011.989%2010.551L11.1739%2011.6509C9.08184%2010.617%207.38842%208.92227%206.35554%206.8287L7.4539%206.01319C7.54855%205.94298%207.62806%205.85435%207.68763%205.75263C7.7472%205.65091%207.78561%205.53819%207.80056%205.42124C7.81551%205.30429%207.80668%205.18553%207.77461%205.07208C7.74254%204.95863%207.68788%204.85283%207.61393%204.76105L5.48893%202.12551C5.35172%201.95528%205.15578%201.84263%204.9397%201.80975C4.72362%201.77687%204.50307%201.82615%204.32149%201.94788L3.15581%202.73014C2.55364%203.1342%202.11438%203.73904%201.91627%204.43691C1.71817%205.13478%201.77409%205.88036%202.07407%206.54082L2.52793%207.53921Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 20px 50% no-repeat;
}

.form .input::-moz-placeholder {
  font-family: Inter;
  color: var(--3-a-4644, #3A4644);
}

.form .input:-ms-input-placeholder {
  font-family: Inter;
  color: var(--3-a-4644, #3A4644);
}

.form .input::placeholder {
  font-family: Inter;
  color: var(--3-a-4644, #3A4644);
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat; */
  background: #1616166b url(../img/loading-w.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.form__btn {
  margin-top: auto;
  margin-left: auto;
  display: flex;
  font-family: Inter;
  font-weight: 700;
}

.header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: var(--161616, #161616);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  background: url(../img/header__logo.svg) 50%/contain no-repeat;
  width: 160px;
  flex-shrink: 0;
}

.header__logo:after {
  content: "";
  display: block;
  padding-bottom: 25%;
}

.header__menu {
  display: flex;
  gap: 40px;
  margin: 0 auto;
}

.header__menu li {
  overflow: hidden;
}

.header__menu .sub-menu {
  display: none;
  background-color: #161616;
  padding: 8px 8px 20px;
}

.header__menu li:hover .sub-menu .menu-item a{
  font-size: 90%;
  line-height: 1.4;
}

.header__menu li:hover .sub-menu,
.header__menu li:focus .sub-menu {
  display: block;
  position: absolute;
}

.header__menu a {
  font: 700 16px "Josefin Sans";
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 0;
  display: block;
  position: relative;
}

.header__menu a:after {
  content: "";
  display: block;
  height: 2px;
  width: 110%;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-110%);
  transition: 0.3s ease;
}

.header__menu a:hover:after {
  transform: translateX(0);
}

.header__phone {
    position: relative;
    margin-left: auto;
    text-decoration: none;
}

.header__phone:before {
    content: '';
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 22px;
    width: 22px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.52813 7.53946C4.20701 11.1977 7.19015 14.0972 10.8934 15.6701L11.4881 15.9352C12.1466 16.2286 12.8875 16.28 13.5802 16.0804C14.2729 15.8808 14.8729 15.443 15.2746 14.8441L16.052 13.6855C16.1737 13.5039 16.2229 13.2832 16.1901 13.067C16.1572 12.8508 16.0446 12.6547 15.8745 12.5174L13.2406 10.3911C13.1488 10.3171 13.0431 10.2624 12.9297 10.2303C12.8163 10.1983 12.6976 10.1894 12.5808 10.2044C12.4639 10.2193 12.3512 10.2578 12.2496 10.3174C12.1479 10.377 12.0593 10.4565 11.9892 10.5513L11.1741 11.6511C9.08204 10.6173 7.38862 8.92251 6.35574 6.82895L7.45409 6.01343C7.54875 5.94322 7.62825 5.8546 7.68783 5.75287C7.7474 5.65115 7.78581 5.53843 7.80076 5.42148C7.8157 5.30453 7.80688 5.18577 7.77481 5.07232C7.74273 4.95887 7.68808 4.85308 7.61412 4.76129L5.48913 2.12575C5.35192 1.95552 5.15598 1.84287 4.9399 1.81C4.72382 1.77712 4.50327 1.8264 4.32169 1.94812L3.15601 2.73039C2.55384 3.13445 2.11457 3.73929 1.91647 4.43716C1.71837 5.13503 1.77429 5.8806 2.07427 6.54107L2.52813 7.53946Z' fill='%23009384'/%3E%3C/svg%3E%0A");
}

.header__burger {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  display: none;
}

.header__burger span {
  height: 6px;
  background: var(--3-a-4644, #3A4644);
  transition: 0.3s ease;
}

.header__btn {
  min-width: auto;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 122px 0;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__container {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 30px;
  position: relative;
}

.hero__title {
  max-width: 640px;
}

.hero__title span {
  display: block;
  line-height: 1;
}

.hero__title span._hidden {
  overflow: hidden;
}

.hero__title span._text {
  transform: translateY(120%);
  transition: transform 1s;
}

.hero__title span._text.animate {
  transform: translateY(0);
}

.hero__list {
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: 250px;
}

.hero__list li {
  position: relative;
  padding-left: 32px;
}

.hero__list li:before {
  content: "";
  width: 12px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2216%22%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.13375%208.66536L5.13375%208.61061L-1.41326e-09%205.99096L5.13375%203.38921L5.13375%203.33203L5.13375%208.66536Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M15.1044%206.50375C15.4029%206.33276%2015.7014%206.16177%2016%205.99078L15.1044%205.49607L5.13379%200L5.13379%203.38939C6.84492%204.2626%208.55623%205.13582%2010.2675%206.00904C8.55623%206.87635%206.84492%207.74366%205.13379%208.61079L5.13379%2012L15.1044%206.50375Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  left: 0;
  top: 8px;
  position: absolute;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 37px;
  left: 400px;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.5s ease;
}

.hero__buttons.animate {
  transform: translateY(0);
  opacity: 1;
}

.hero__scroll {
  position: absolute;
  right: 10px;
  bottom: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.hero__scroll_text {
  font: normal 400 12px/90% "Josefin Sans";
  color: var(--dce-4-e-3, #DCE4E3);
  /* 10.8px */
  text-transform: uppercase;
}

.hero__scroll_line {
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 120px;
  overflow: hidden;
  position: relative;
}

.hero__scroll_line_bar {
  background: var(--dce-4-e-3, #DCE4E3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  -webkit-animation: 3s linear 1s scroll forwards infinite;
  animation: 3s linear 1s scroll forwards infinite;
}

.hero.animate ._text {
  transform: translateY(0);
}

.what {
  background: var(--1-a-1-b-1-b, #1A1B1B);
  min-height: 1300px;
  overflow: hidden;
  display: flex;
  position: relative;
  padding: 275px 0;
}

.what__bg {
  position: absolute;
  left: 0;
  top: -310px;
  width: 100%;
  height: calc(100% + 500px);
  background: url(../img/what__bg3.svg) 50% 0 repeat-x;
  z-index: 1;
  will-change: transform;
}

.what__image {
  position: absolute;
  width: 900px;
  left: calc(50% - 120px);
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../img/what__image2.webp) 50% 0/contain no-repeat;
  transform: translate3d(0, 0, 0);
}

.what__content {
  display: flex;
  flex-flow: column;
  gap: 40px;
  max-width: 500px;
  color: var(--dce-4-e-3, #DCE4E3);
  position: relative;
  z-index: 2;
}

.values {
  background: var(--1-a-1-b-1-b, #1A1B1B);
  padding: 340px 0 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.values__bg {
  position: absolute;
  left: 0;
  top: -300px;
  width: 100%;
  height: calc(100% + 500px);
  background: url(../img/values__bg.svg) 50% repeat-x;
  z-index: 1;
  will-change: transform;
}

.values__image {
  position: absolute;
  left: 50%;
  top: 0;
  width: 610px;
  height: 100%;
  background: url(../img/values__image2.webp) 0 0/contain no-repeat;
}

.values__content {
  width: 100%;
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.values__text {
  margin-top: 40px;
  max-width: 500px;
}

.values__btn {
  margin-top: 100px;
}

.project-header {
  padding-top: 200px;
  padding-bottom: 100px;
  background: var(--161616, #161616);
  position: relative;
  overflow: hidden;
  background: var(--161616, #161616) url(../img/decor-pattern.svg) 50% 0 no-repeat;
}

.project-header__decor {
  background: url(../img/decor-pattern.svg) 50% 0 no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 650px;
  z-index: -1;
}

.project-header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-header__text {
  max-width: 610px;
}

.project-nav {
  background: var(--161616, #161616);
  position: relative;
  z-index: 80;
  padding: 20px 0;
}

.project-nav__bar {
  background: var(--3-a-4644, #3A4644);
  height: 4px;
  margin-top: 20px;
  position: relative;
}

.project-nav__bar_progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 0;
  transition: 0.3s ease;
  background: var(--accent);
}

.project-nav__labels {
  font: 700 20px Josefin Sans;
  display: flex;
  justify-content: center;
  gap: 90px;
  text-transform: uppercase;
}

.project-nav__labels span {
  color: var(--3-a-4644, #3A4644);
  transition: 0.3s ease;
}

.project-nav__labels span.active {
  color: #fff;
}

.projects {
  background: var(--161616, #161616);
  position: relative;
}

.projects__items {
  display: flex;
  flex-flow: column;
}

.projects .item {
  width: 100%;
  flex-shrink: 0;
  background: var(--161616, #161616);
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
  z-index: 3;
}

.projects .item:not(:first-child) {
  position: relative;
}

.projects .item:not(:first-child):before {
  position: absolute;
  content:'';
  background: var(--accent);
  height: 2px;
  width: calc(var( --container-width) - 20px);
  left:50%;
  top: 0;
  transform: translateX(-50%);
}

.projects .item__container {
  display: flex;
  justify-content: space-between;
  display: flex;
  margin: 0;
}

.projects .item__content {
  display: flex;
  flex-flow: column;
  gap: 80px;
  width: 100%;
  max-width: 540px;
}

.projects .item__info {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.projects .item__title {
  text-transform: uppercase;

}

.projects .item__price {
  position: relative;
  padding-left: 30px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.projects .item__price:before {
  content: "";
  position: absolute;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2236%22%20viewBox%3D%220%200%2018%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13%2018H5V9.21951H13V18Z%22%20fill%3D%22%233A4644%22%2F%3E%0A%3Cpath%20d%3D%22M13%2026.7803H5V17.9998H13V26.7803Z%22%20fill%3D%22%2300D8BB%22%2F%3E%0A%3Cpath%20d%3D%22M9.7556%201.48357C9.49911%200.989143%209.24263%200.49472%208.98614%200L8.24408%201.48357L0%2018H5.08406C6.39389%2015.1655%207.70371%2012.3307%209.01353%209.4959C10.3145%2012.3307%2011.6155%2015.1655%2012.9162%2018H17.9999L9.7556%201.48357Z%22%20fill%3D%22%2300D8BB%22%2F%3E%0A%3Cpath%20d%3D%22M8.2444%2034.5164C8.50089%2035.0109%208.75737%2035.5053%209.01386%2036L9.75592%2034.5164L18%2018H12.9159C11.6061%2020.8345%2010.2963%2023.6693%208.98647%2026.5041C7.6855%2023.6693%206.38454%2020.8345%205.08385%2018H5.72205e-05L8.2444%2034.5164Z%22%20fill%3D%22%233A4644%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 18px;
  height: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.projects .item__price_text {
  font: var(--s)/90% "Josefin Sans";
  /* 10.8px */
  text-transform: uppercase;
}

.projects .item__text {
  display: inline-flex;
  padding: 17px 70px 17px 34px;
  background: var(--3-a-4644, #3A4644);
  position: relative;
  line-height: 90%;
}

.projects .item__text:after {
  content: "";
  display: block;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2236%22%20height%3D%2266%22%20viewBox%3D%220%200%2036%2066%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M18%200L36%2033L18%2066L0%2033L18%200Z%22%20fill%3D%22%2300D8BB%22%2F%3E%0A%3Cpath%20d%3D%22M15.5926%2016.5H20.2222V39.387H15.5926V16.5ZM18.037%2048C17.1481%2048%2016.4198%2047.7439%2015.8519%2047.2317C15.284%2046.6926%2015%2045.9917%2015%2045.129C15%2044.2933%2015.284%2043.5924%2015.8519%2043.0263C16.4444%2042.4602%2017.1728%2042.1771%2018.037%2042.1771C18.9012%2042.1771%2019.6049%2042.4602%2020.1481%2043.0263C20.716%2043.5924%2021%2044.2933%2021%2045.129C21%2045.9917%2020.7284%2046.6926%2020.1852%2047.2317C19.642%2047.7439%2018.9259%2048%2018.037%2048Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 36px;
  height: 66px;
}

.projects .item__buttons {
  display: flex;
  gap: 20px;
}

.projects .item__gallery {
  width: 100%;
  max-width: 635px;
  display: flex;
  gap: 20px;
  position: relative;
}

.projects .item__gallery_main {
  width: 100%;
  max-width: 530px;
}

.projects .item__gallery_thumbs {
  height: 530px;
}

.projects .item__gallery_thumbs .swiper-slide {
  border: 2px solid transparent;
  transition: 0.3s ease;
  width: 85px;
  max-height: 85px;
}

.projects .item__gallery_thumbs .swiper-slide .item__thumb {
  opacity: 0.5;
}

.projects .item__gallery_thumbs .swiper-slide.swiper-slide-thumb-active .item__thumb {
  opacity: 1;
}

.projects .item__gallery_thumbs .swiper-slide:hover {
  border: 2px solid var(--accent);
}

.projects .item__gallery .swiper-button-prev,
.projects .item__gallery .swiper-button-next {
  width: 59px;
  height: 59px;
  position: absolute;
}

.projects .item__gallery .swiper-button-prev:after,
.projects .item__gallery .swiper-button-next:after {
  display: none;
}

.projects .item__gallery .swiper-button-prev {
  left: auto;
  bottom: 64px;
  right: 0;
  top: auto;
  background: var(--3-a-4644, #3A4644) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2215%22%20viewBox%3D%220%200%2019%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12.7247%2010.4984L12.7247%2010.4368L18.5%207.48976L12.7247%204.56286L12.7247%204.49854L12.7247%2010.4984Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M1.50789%208.06656C1.17211%207.8742%200.836336%207.68184%200.500359%207.48948L1.50789%206.93294L12.7246%200.75L12.7246%204.56297C10.7996%205.54532%208.87445%206.52767%206.94927%207.51002C8.87445%208.48572%2010.7996%209.46143%2012.7246%2010.4369L12.7246%2014.2497L1.50789%208.06656Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50% no-repeat;
}

.projects .item__gallery .swiper-button-next {
  bottom: 0;
  right: 0;
  top: auto;
  background: var(--3-a-4644, #3A4644) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2215%22%20viewBox%3D%220%200%2019%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.27534%2010.4984L6.27534%2010.4368L0.5%207.48976L6.27534%204.56286L6.27534%204.49854L6.27534%2010.4984Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M17.4921%208.06656C17.8279%207.8742%2018.1637%207.68184%2018.4996%207.48948L17.4921%206.93294L6.27539%200.75L6.27539%204.56297C8.20037%205.54532%2010.1256%206.52767%2012.0507%207.51002C10.1256%208.48572%208.20037%209.46143%206.27539%2010.4369L6.27539%2014.2497L17.4921%208.06656Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50% no-repeat;
}

.projects .item__image {
  width: 100%;
  height: 530px;
  flex-shrink: 0;
  position: relative;
  background: 50%/cover no-repeat;
  overflow: hidden;
}

.projects .item__image:before,
.projects .item__image:after {
  content: "";
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2290%22%20height%3D%22162%22%20viewBox%3D%220%200%2090%20162%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M44.9318%200.027832C46.1905%202.25331%2047.4492%204.47746%2048.7079%206.7016L89.1663%2081.0001L45.0676%20161.972C43.8089%20159.747%2042.5502%20157.523%2041.2915%20155.298L0.833008%2081.0001L44.9318%200.027832Z%22%20fill%3D%22%23161616%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 101.667px;
  height: 186.389px;
  flex-shrink: 0;
  position: absolute;
}

.projects .item__image:before {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.projects .item__image:after {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.projects .item__thumb {
  width: 100%;
  height: 100%;
  background: 50%/cover no-repeat;
  transition: 0.3s ease;
}

.gallery {
  position: relative;
  padding: 200px 0;
  background: var(--1-a-1-b-1-b, #1A1B1B) url(../img/decor-pattern2.svg) 50% 0 no-repeat;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery__buttons {
  display: flex;
}

.gallery__button {
  min-width: auto;
}

.gallery__button.active {
  background: var(--accent);
  color: var(--161616, #161616);
}

.gallery__items {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 100px;
}

.gallery .item {
  width: calc(50% - 10px);
  position: relative;
  overflow: hidden;
  display: none;
}

.gallery .item.active {
  display: block;
}

.gallery .item--photo:before,
.gallery .item--photo:after {
  content: "";
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2290%22%20height%3D%22162%22%20viewBox%3D%220%200%2090%20162%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M44.9318%200.027832C46.1905%202.25331%2047.4492%204.47746%2048.7079%206.7016L89.1663%2081.0001L45.0676%20161.972C43.8089%20159.747%2042.5502%20157.523%2041.2915%20155.298L0.833008%2081.0001L44.9318%200.027832Z%22%20fill%3D%22%23161616%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 101.667px;
  height: 186.389px;
  flex-shrink: 0;
  position: absolute;
  z-index: 10;
}

.gallery .item--photo:before {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.gallery .item--photo:after {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.gallery .item--video .item__video {
  height: 610px;
  display: block;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery .item--video .item__video:hover .item__video_decor {
  opacity: 1;
}

.gallery .item--video .item__video_decor {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(26, 27, 27, 0.8);
  z-index: 2;
  transition: 0.3s ease;
  opacity: 0;
}

.gallery .item--video .item__video_icon {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: relative;
}

.gallery .item--video .item__video_icon:before {
  content: "";
  background: var(--white, #FFF);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s ease;
  z-index: -1;
}

.gallery .item--video .item__video_icon:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2222%22%20viewBox%3D%220%200%2018%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M18%2011L2.8359e-06%2021.3923L3.74442e-06%200.607695L18%2011Z%22%20fill%3D%22%23161616%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50% no-repeat;
}

.gallery .item--video .item__video_icon:hover:before {
  transform: rotate(45deg);
}

.gallery .item--video .item__video:before,
.gallery .item--video .item__video:after {
  content: "";
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2290%22%20height%3D%22162%22%20viewBox%3D%220%200%2090%20162%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M44.9318%200.027832C46.1905%202.25331%2047.4492%204.47746%2048.7079%206.7016L89.1663%2081.0001L45.0676%20161.972C43.8089%20159.747%2042.5502%20157.523%2041.2915%20155.298L0.833008%2081.0001L44.9318%200.027832Z%22%20fill%3D%22%23161616%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 101.667px;
  height: 186.389px;
  flex-shrink: 0;
  position: absolute;
  z-index: 10;
}

.gallery .item--video .item__video:before {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.gallery .item--video .item__video:after {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.gallery .item__image,
.gallery .item__video {
  background: 50%/cover no-repeat;
  transition: 0.3s ease;
}

.gallery .item__image:after,
.gallery .item__video:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.gallery .item__text {
  font: 700 var(--m) Josefin Sans;
  text-transform: uppercase;
  margin-top: 15px;
}

.gallery .item:hover .item__image {
  transform: scale(1.1);
}

.gallery__more {
  margin: 40px auto 0;
  display: flex;
  max-width: 200px;
}

.contact {
  padding: 120px 0;
  background: url(../img/contacts-pattern.svg) 50% 0 repeat;
}

.contact__inner {
  background: var(--161616, #161616);
  padding: 120px 105px;
  display: flex;
  gap: 20px;
}

.contact__content {
  max-width: 505px;
  width: 100%;
}

.contact__title {
  line-height: 75%;
}

.contact__title span {
  display: block;
  transform: translateX(215px);
}

.contact__text {
  margin-top: 60px;
}

.contact__form {
  max-width: 505px;
}

.map {
  padding: 100px 0 200px;
  background: var(--161616, #161616);
  position: relative;
}

.map__frame {
  height: 640px;
}

.subscribe {
  background: var(--1-a-1-b-1-b, #1A1B1B);
  padding: 60px 0;
  position: relative;
  margin-top: auto;
}

.subscribe__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscribe__title {
  font: 700 34px Josefin Sans;
  text-transform: uppercase;
}

.subscribe__form {
  max-width: 610px;
  display: flex;
  flex-flow: row;
}

.subscribe__form_btn {
  min-width: 120px;
  flex-shrink: 0;
}

.success {
  padding: 320px 0 200px;
  background: var(--161616, #161616) url(../img/success__pattern.svg) 50% 0 no-repeat;
  background-size: 100%;
  text-align: center;
}

.success__subtitle {
  text-transform: uppercase;
  margin: 30px 0 40px;
}

.page-thanks .header__btn {
  display: none;
}

.footer {
  margin-top: auto;
  background: var(--161616, #161616);
  position: relative;
}

.footer a {
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer__container {
  display: flex;
  justify-content: space-between;
}

.footer__body {
  padding: 100px 0 110px;
}

.footer__row_title {
  margin-bottom: 50px;
}

.footer ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.footer__contacts a {
  padding-left: 30px;
}

.footer__contacts_location {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_126_38415)%22%3E%0A%3Cpath%20d%3D%22M9%208.25C9.62132%208.25%2010.125%207.74632%2010.125%207.125C10.125%206.50368%209.62132%206%209%206C8.37868%206%207.875%206.50368%207.875%207.125C7.875%207.74632%208.37868%208.25%209%208.25Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3Cpath%20d%3D%22M9%201.5C7.41904%201.49992%205.90194%202.12382%204.77843%203.23609C3.65492%204.34837%203.01581%205.85912%203%207.44C3%2011.55%208.2875%2016.125%208.5125%2016.32C8.64835%2016.4362%208.82124%2016.5%209%2016.5C9.17876%2016.5%209.35165%2016.4362%209.4875%2016.32C9.75%2016.125%2015%2011.55%2015%207.44C14.9842%205.85912%2014.3451%204.34837%2013.2216%203.23609C12.0981%202.12382%2010.581%201.49992%209%201.5ZM9%209.75C8.48082%209.75%207.97331%209.59605%207.54163%209.30761C7.10995%209.01917%206.7735%208.6092%206.57482%208.12954C6.37614%207.64989%206.32415%207.12209%206.42544%206.61289C6.52672%206.10369%206.77673%205.63596%207.14384%205.26884C7.51096%204.90173%207.97869%204.65172%208.48789%204.55044C8.99709%204.44915%209.52489%204.50114%2010.0045%204.69982C10.4842%204.8985%2010.8942%205.23495%2011.1826%205.66663C11.471%206.09831%2011.625%206.60582%2011.625%207.125C11.625%207.82119%2011.3484%208.48887%2010.8562%208.98115C10.3639%209.47344%209.69619%209.75%209%209.75Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_126_38415%22%3E%0A%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.footer__contacts_email {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M19.0312%203.28125H1.96875C1.7947%203.28125%201.62778%203.35039%201.50471%203.47346C1.38164%203.59653%201.3125%203.76345%201.3125%203.9375V17.0625C1.3125%2017.2365%201.38164%2017.4035%201.50471%2017.5265C1.62778%2017.6496%201.7947%2017.7188%201.96875%2017.7188H19.0312C19.2053%2017.7188%2019.3722%2017.6496%2019.4953%2017.5265C19.6184%2017.4035%2019.6875%2017.2365%2019.6875%2017.0625V3.9375C19.6875%203.76345%2019.6184%203.59653%2019.4953%203.47346C19.3722%203.35039%2019.2053%203.28125%2019.0312%203.28125ZM10.9028%2011.6743C10.7876%2011.7638%2010.6459%2011.8124%2010.5%2011.8124C10.3541%2011.8124%2010.2124%2011.7638%2010.0972%2011.6743L3.67295%206.67775L4.4785%205.6417L10.5%2010.3249L16.5215%205.6417L17.3271%206.67775L10.9028%2011.6743Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.footer__contacts_phone {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.94909%208.79559C4.90778%2013.0636%208.38812%2016.4463%2012.7086%2018.2813L13.4024%2018.5906C14.1706%2018.9329%2015.035%2018.9929%2015.8431%2018.7601C16.6513%2018.5272%2017.3513%2018.0164%2017.82%2017.3176L18.727%2015.966C18.8689%2015.7541%2018.9263%2015.4966%2018.888%2015.2443C18.8497%2014.9921%2018.7183%2014.7634%2018.5198%2014.6032L15.4469%2012.1225C15.3399%2012.0362%2015.2165%2011.9724%2015.0843%2011.935C14.952%2011.8975%2014.8135%2011.8872%2014.6772%2011.9047C14.5408%2011.9221%2014.4094%2011.9669%2014.2908%2012.0365C14.1722%2012.106%2014.0688%2012.1988%2013.987%2012.3093L13.0361%2013.5926C10.5953%2012.3864%208.61966%2010.4091%207.41464%207.96666L8.69605%207.01523C8.80648%206.93331%208.89924%206.82992%208.96874%206.71124C9.03824%206.59256%209.08305%206.46106%209.10049%206.32462C9.11793%206.18818%209.10763%206.04962%209.07021%205.91726C9.03279%205.7849%208.96903%205.66148%208.88275%205.55439L6.40359%202.4796C6.24351%202.28099%206.01491%202.14957%205.76282%202.11121C5.51073%202.07286%205.25342%202.13035%205.04158%202.27236L3.68161%203.185C2.97908%203.65641%202.46661%204.36205%202.23549%205.17623C2.00437%205.99041%202.06961%206.86025%202.41959%207.6308L2.94909%208.79559Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.footer__bottom {
  font: 400 12px Josefin Sans;
  background: var(--1-a-1-b-1-b, #1A1B1B);
  padding: 30px 0;
  text-transform: uppercase;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-van {
  /* background: var(--dce-4-e-3, #DCE4E3); */
  z-index: 100;
  /* color: var(--161616, #161616); */
}

/* .modal-van__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 50px;
  border-top: 1px solid var(--3-a-4644, #3A4644);

} */

.modal-van .close-button:before,
.modal-van .close-button:after {
  background: #3A4644;
}

.modal-van__content {
  display: flex;
  flex-flow: column;
  gap: 40px;
  width: 100%;
  max-width: 680px;
  border: 1px solid var(--green, #00D8BB);
  background: var(--161616, #161616);
  padding: 80px 100px;
  position: relative;
}

.modal-van__title br {
  display: none;
}

.modal-van__text {
  margin-top: auto;
  max-width: 500px;
}

.modal-van__image {
  width: 100%;
  background: 50%/cover no-repeat;
}

.modal-van__image:after {
  content: "";
  display: block;
  padding-bottom: calc(280/480*100%);
}

.modal-van__button {
  max-width: 260px;
  margin: 0 auto;
}

.modal-menu {
  background: var(--161616, #161616) url(../img/modal-menu__bg.svg) 50%/cover no-repeat;
}

.modal-menu__links {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.modal-menu__links a {
  font: 700 var(--h2) var(--heading-font-family);
  text-decoration: none;
  text-transform: uppercase;
}

.modal-menu__contacts {
  background: var(--1-a-1-b-1-b, #1A1B1B);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  margin-top: 40px;
}

.modal-menu__contacts_link {
  position: relative;
  padding-left: 30px;
  text-decoration: none;
}

.modal-menu__contacts_link--location {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_126_38415)%22%3E%0A%3Cpath%20d%3D%22M9%208.25C9.62132%208.25%2010.125%207.74632%2010.125%207.125C10.125%206.50368%209.62132%206%209%206C8.37868%206%207.875%206.50368%207.875%207.125C7.875%207.74632%208.37868%208.25%209%208.25Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3Cpath%20d%3D%22M9%201.5C7.41904%201.49992%205.90194%202.12382%204.77843%203.23609C3.65492%204.34837%203.01581%205.85912%203%207.44C3%2011.55%208.2875%2016.125%208.5125%2016.32C8.64835%2016.4362%208.82124%2016.5%209%2016.5C9.17876%2016.5%209.35165%2016.4362%209.4875%2016.32C9.75%2016.125%2015%2011.55%2015%207.44C14.9842%205.85912%2014.3451%204.34837%2013.2216%203.23609C12.0981%202.12382%2010.581%201.49992%209%201.5ZM9%209.75C8.48082%209.75%207.97331%209.59605%207.54163%209.30761C7.10995%209.01917%206.7735%208.6092%206.57482%208.12954C6.37614%207.64989%206.32415%207.12209%206.42544%206.61289C6.52672%206.10369%206.77673%205.63596%207.14384%205.26884C7.51096%204.90173%207.97869%204.65172%208.48789%204.55044C8.99709%204.44915%209.52489%204.50114%2010.0045%204.69982C10.4842%204.8985%2010.8942%205.23495%2011.1826%205.66663C11.471%206.09831%2011.625%206.60582%2011.625%207.125C11.625%207.82119%2011.3484%208.48887%2010.8562%208.98115C10.3639%209.47344%209.69619%209.75%209%209.75Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_126_38415%22%3E%0A%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.modal-menu__contacts_link--email {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M19.0312%203.28125H1.96875C1.7947%203.28125%201.62778%203.35039%201.50471%203.47346C1.38164%203.59653%201.3125%203.76345%201.3125%203.9375V17.0625C1.3125%2017.2365%201.38164%2017.4035%201.50471%2017.5265C1.62778%2017.6496%201.7947%2017.7188%201.96875%2017.7188H19.0312C19.2053%2017.7188%2019.3722%2017.6496%2019.4953%2017.5265C19.6184%2017.4035%2019.6875%2017.2365%2019.6875%2017.0625V3.9375C19.6875%203.76345%2019.6184%203.59653%2019.4953%203.47346C19.3722%203.35039%2019.2053%203.28125%2019.0312%203.28125ZM10.9028%2011.6743C10.7876%2011.7638%2010.6459%2011.8124%2010.5%2011.8124C10.3541%2011.8124%2010.2124%2011.7638%2010.0972%2011.6743L3.67295%206.67775L4.4785%205.6417L10.5%2010.3249L16.5215%205.6417L17.3271%206.67775L10.9028%2011.6743Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.modal-menu__contacts_link--phone {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.94909%208.79559C4.90778%2013.0636%208.38812%2016.4463%2012.7086%2018.2813L13.4024%2018.5906C14.1706%2018.9329%2015.035%2018.9929%2015.8431%2018.7601C16.6513%2018.5272%2017.3513%2018.0164%2017.82%2017.3176L18.727%2015.966C18.8689%2015.7541%2018.9263%2015.4966%2018.888%2015.2443C18.8497%2014.9921%2018.7183%2014.7634%2018.5198%2014.6032L15.4469%2012.1225C15.3399%2012.0362%2015.2165%2011.9724%2015.0843%2011.935C14.952%2011.8975%2014.8135%2011.8872%2014.6772%2011.9047C14.5408%2011.9221%2014.4094%2011.9669%2014.2908%2012.0365C14.1722%2012.106%2014.0688%2012.1988%2013.987%2012.3093L13.0361%2013.5926C10.5953%2012.3864%208.61966%2010.4091%207.41464%207.96666L8.69605%207.01523C8.80648%206.93331%208.89924%206.82992%208.96874%206.71124C9.03824%206.59256%209.08305%206.46106%209.10049%206.32462C9.11793%206.18818%209.10763%206.04962%209.07021%205.91726C9.03279%205.7849%208.96903%205.66148%208.88275%205.55439L6.40359%202.4796C6.24351%202.28099%206.01491%202.14957%205.76282%202.11121C5.51073%202.07286%205.25342%202.13035%205.04158%202.27236L3.68161%203.185C2.97908%203.65641%202.46661%204.36205%202.23549%205.17623C2.00437%205.99041%202.06961%206.86025%202.41959%207.6308L2.94909%208.79559Z%22%20fill%3D%22%23009384%22%2F%3E%0A%3C%2Fsvg%3E%0A') 0 50% no-repeat;
}

.modal-more {
  background: var(--dce-4-e-3, #DCE4E3);
  z-index: 100;
  color: var(--161616, #161616);
}

.modal-more .close-button {
  z-index: 100;
}

.modal-more .close-button:before,
.modal-more .close-button:after {
  background: #3A4644;
}

.modal-more__items {
  padding-bottom: 60px;
}

.modal-more .item {
  display: flex;
  gap: 20px;
}

.modal-more .item__content {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.modal-more .item__text {
  margin-top: auto;
  max-height: 300px;
  overflow: auto;
}

.modal-more .item__text p:not(:last-child) {
  margin-bottom: 1em;
}

.modal-more .item__image {
  width: 100%;
  background: 50%/cover no-repeat;
}

.modal-more .item__image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.modal-more .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 20px;
  border-radius: 5px;
}

.modal-more .swiper-button-prev,
.modal-more .swiper-button-next {
  width: 59px;
  height: 59px;
  position: absolute;
  top: auto;
  bottom: 0;
  transform: none;
  margin-top: 0;
}

.modal-more .swiper-button-prev:after,
.modal-more .swiper-button-next:after {
  display: none;
}

.modal-more .swiper-button-prev {
  background: var(--3-a-4644, #3A4644) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2215%22%20viewBox%3D%220%200%2019%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12.7247%2010.4984L12.7247%2010.4368L18.5%207.48976L12.7247%204.56286L12.7247%204.49854L12.7247%2010.4984Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M1.50789%208.06656C1.17211%207.8742%200.836336%207.68184%200.500359%207.48948L1.50789%206.93294L12.7246%200.75L12.7246%204.56297C10.7996%205.54532%208.87445%206.52767%206.94927%207.51002C8.87445%208.48572%2010.7996%209.46143%2012.7246%2010.4369L12.7246%2014.2497L1.50789%208.06656Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50% no-repeat;
  left: auto;
  right: 70px;
}

.modal-more .swiper-button-next {
  background: var(--3-a-4644, #3A4644) url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2215%22%20viewBox%3D%220%200%2019%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.27534%2010.4984L6.27534%2010.4368L0.5%207.48976L6.27534%204.56286L6.27534%204.49854L6.27534%2010.4984Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M17.4921%208.06656C17.8279%207.8742%2018.1637%207.68184%2018.4996%207.48948L17.4921%206.93294L6.27539%200.75L6.27539%204.56297C8.20037%205.54532%2010.1256%206.52767%2012.0507%207.51002C10.1256%208.48572%208.20037%209.46143%206.27539%2010.4369L6.27539%2014.2497L17.4921%208.06656Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50% no-repeat;
  right: 0;
}

.modal-more .swiper-pagination {
  bottom: 20px;
}

.modal-form__inner {
  border: 1px solid var(--green, #00D8BB);
  background: var(--161616, #161616);
  padding: 80px 100px;
  position: relative;
}

.modal-form .form {
  text-align: center;
}

.modal-form .form__inputs {
  margin: 60px 0;
  margin: 60px 0 20px;
}

.modal-form .form__btn {
  margin: 0 auto;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Gilroy, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}




/* Catalog */
.catalog {
  background: var(--161616, #161616) url(../img/success__pattern.svg) 50% 0 no-repeat;
  background-size: 100%;
}

.catalog__head {
  padding: 170px 0 100px;
}

.catalog .breadcrumbs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
  text-transform: uppercase;
}

.catalog .breadcrumbs span {
  color: var(--accent);
}

.catalog .breadcrumbs p > span > span {
  margin: 0 5px;
}

.catalog .breadcrumbs a {
  text-decoration: none;
}

.catalog .breadcrumbs a:hover {
  text-decoration: underline;
}

.catalog .breadcrumbs .breadcrumb_last {
  color: var(--marsh);
}

.catalog__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.main-content .catalog__title{
  font-size: var(--h2);
}

.catalog__body {
  padding-bottom: 200px;
}

.catalog__list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}

.catalog__list-item {
  flex: 0 0 100%;
  padding: 20px;
}

.catalog .product {
  display: flex;
  min-height: 323px;
}

.catalog .product__visual {
  width: 260px;
  margin-right: 40px;
}

.catalog .product__visual-preview img {
  height: 260px;
  width: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
  clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.catalog .product__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  gap: 0px;
  flex-wrap: wrap;
}

.catalog .product__title {
  flex: 0 0 100%;
  text-transform: uppercase;
  line-height: 1.2;
}

.catalog .product__title_mob {
  display: none;
  margin-bottom: 20px;
}

.catalog .product__description {
  flex: 0 0 100%;
  line-height: 1.6;
}

.catalog .product .single-page__content *:first-child {
  margin-top: 0;
}

.catalog .product-slider-thumb {
  overflow: hidden;
  padding: 10px 2px 1px;
}

.catalog .product-slider-thumb__slide {
  height: 50px;
  width: 50px;
  background: center/cover no-repeat;
  cursor: pointer;
}

.catalog .product-slider-thumb__slide._active {
  outline: 1px solid var(--accent);
}

.catalog .product-slider-preview {
  overflow: hidden;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
  clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.catalog .product-slider-preview__slide {
  background: center/cover no-repeat;
  height: 260px;
  width: 260px;
}

.catalog .product__features {
  /*background: #0a7aff;*/
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.catalog .product__features_param {
  font-weight: bold;
  margin: 10px 0;
}

.catalog .product__price {
  /*background: #0e7b17;*/
  flex: 0 0 33.33333%;
  max-width: 33.33333%;

  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
}


.catalog .product__price .product__price_value {
  font: 700 var(--h4) var(--heading-font-family);
}

.catalog .product__price::before {
  content: "";
  position: absolute;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2218%22%20height%3D%2236%22%20viewBox%3D%220%200%2018%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13%2018H5V9.21951H13V18Z%22%20fill%3D%22%233A4644%22%2F%3E%0A%3Cpath%20d%3D%22M13%2026.7803H5V17.9998H13V26.7803Z%22%20fill%3D%22%2300D8BB%22%2F%3E%0A%3Cpath%20d%3D%22M9.7556%201.48357C9.49911%200.989143%209.24263%200.49472%208.98614%200L8.24408%201.48357L0%2018H5.08406C6.39389%2015.1655%207.70371%2012.3307%209.01353%209.4959C10.3145%2012.3307%2011.6155%2015.1655%2012.9162%2018H17.9999L9.7556%201.48357Z%22%20fill%3D%22%2300D8BB%22%2F%3E%0A%3Cpath%20d%3D%22M8.2444%2034.5164C8.50089%2035.0109%208.75737%2035.5053%209.01386%2036L9.75592%2034.5164L18%2018H12.9159C11.6061%2020.8345%2010.2963%2023.6693%208.98647%2026.5041C7.6855%2023.6693%206.38454%2020.8345%205.08385%2018H5.72205e-05L8.2444%2034.5164Z%22%20fill%3D%22%233A4644%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  width: 18px;
  height: 36px;
  transform: translateY(-8%);
  left: 40px;
}

.catalog .product .btn {
  flex: 0 0 100%;
}




/* Accessories */
.accessories {
    background: var(--161616, #161616) url(../img/success__pattern.svg) 50% 0 no-repeat;
    background-size: 100%;
  }
  
  .accessories__head {
    padding: 170px 0 100px;
  }
  
  .accessories .breadcrumbs {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 100px;
    text-transform: uppercase;
  }
  
  .accessories .breadcrumbs span {
    color: var(--accent);
  }
  
  .accessories .breadcrumbs p > span > span {
    margin: 0 5px;
  }
  
  .accessories .breadcrumbs a {
    text-decoration: none;
  }
  
  .accessories .breadcrumbs a:hover {
    text-decoration: underline;
  }
  
  .accessories .breadcrumbs .breadcrumb_last {
    color: var(--marsh);
  }
  
  .accessories__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }

  .main-content .accessories__title{
    font-size: var(--h2);
  }

  .accessories__body {
    padding-bottom: 200px;
  }
  
  .accessories__list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
  }
  
  .accessories__list-item {
    flex: 0 0 50%;
    padding: 20px;
  }
  
  .accessories .product {
    display: flex;
    min-height: 323px;
  }
  
  .accessories .product__visual {
    width: 260px;
    margin-right: 40px;
  }
  
  .accessories .product__visual-preview img {
    height: 260px;
    width: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
  }
  
  .accessories .product__info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  
  .accessories .product__title {
    flex: 0 0 auto;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  .accessories .product__title_mob {
    display: none;
    margin-bottom: 20px;
  }
  
  .accessories .product__description {
    flex: 1 1 auto;
    line-height: 1.6;
  }
  
  .accessories .product .single-page__content *:first-child {
    margin-top: 0;
  }
  
  .accessories .product-slider-thumb {
    overflow: hidden;
    padding: 10px 2px 1px;
  }
  
  .accessories .product-slider-thumb__slide {
    height: 50px;
    width: 50px;
    background: center/cover no-repeat;
    cursor: pointer;
  }
  
  .accessories .product-slider-thumb__slide._active {
    outline: 1px solid var(--accent);
  }
  
  .accessories .product-slider-preview {
    overflow: hidden;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
  }
  
  .accessories .product-slider-preview__slide {
    background: center/cover no-repeat;
    height: 260px;
    width: 260px;
  }








  .contacts__form .recaptcha {
    margin-top: 20px;
  }

  #formModal .recaptcha {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .recaptcha {
    display: flex;
  }

  #recaptcha1 {
    justify-content: flex-end;
  }

  #recaptcha2 {
    justify-content: center;
  }

@media (min-width: 1260px) {
  .projects .item__title {
    font-size: 53px;
  }

  .projects .item__content {
    gap: 20px;
  }

  .projects .item__more_text {
    font-size: 14px;
    color: #dce4e3;
  }
  .projects .item__btn--more {
    display: none;
  }

  .projects .item__btn {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 70px;
    --h2: 60px;
    --h3: 34px;
    --h4: 24px;
    --h5: 16px;
    --m: 16px;
    --fz-default: 14px;
    --s: 10px;
  }

  .wrapper .single-page__content h2 {
    font-size: 20px;
  }

  .btn {
    padding: 16px;
    min-width: 175px;
  }

  .form__inputs {
    gap: 10px;
  }

  .form .input {
    height: 50px;
  }

  .header__logo {
    width: 107px;
  }

  .header__menu {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__phone:before {
    height: 18px;
    width: 18px;
  }

  .hero__title {
    max-width: 320px;
  }

  .hero__list {
    width: 100%;
    max-width: 320px;
  }

  .hero__buttons {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .hero__scroll {
    transform: translateY(100%);
  }

  .what {
    padding: 100px 0;
    min-height: 1000px;
  }

  .what__bg {
    background-size: 1240px;
    top: -200px;
  }

  .what__image {
    width: 700px;
    left: calc(50% - 140px);
  }

  .what__content {
    max-width: 360px;
  }

  .values__bg {
    background-size: 1240px;
    top: -300px;
  }

  .values__image {
    height: 600px;
    top: 0;
    width: 600px;
  }

  .values__text {
    max-width: 360px;
  }

  .project-header {
    padding-top: 120px;
  }

  .project-header__text {
    max-width: 360px;
  }

  .project-nav__labels {
    gap: 20px;
    justify-content: space-between;
    font-size: 15px;
  }

  .projects .item__content {
    max-width: 360px;
    gap: 40px;
  }

  .projects .item__more_text {
    display: none;
  }

  .projects .item__text {
    padding: 10px 15px;
    padding-right: 30px;
    width: 170px;
  }

  .projects .item__text:after {
    right: 5px;
    width: 24px;
    height: 44px;
  }

  .projects .item__gallery {
    max-width: 360px;
    gap: 10px;
  }

  .projects .item__gallery_main {
    max-width: 290px;
    flex-shrink: 0;
    margin: 0;
  }

  .projects .item__gallery_thumbs {
    height: 290px;
  }

  .projects .item__gallery_thumbs .swiper-slide {
    width: 40px;
    height: 40px !important;
  }

  .projects .item__gallery .swiper-button-prev,
  .projects .item__gallery .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .projects .item__gallery .swiper-button-prev {
    bottom: 45px;
  }

  .projects .item__image {
    height: 290px;
  }

  .projects .item__image:before,
  .projects .item__image:after {
    width: 51.667px;
    height: 94.722px;
  }

  .gallery {
    padding: 120px 0;
  }

  .gallery__button {
    min-width: 100px;
  }

  .gallery .item--photo:before,
  .gallery .item--photo:after {
    width: 60px;
    height: 110px;
  }

  .gallery .item--video .item__video {
    height: 360px;
  }

  .gallery .item--video .item__video_icon {
    width: 36px;
    height: 36px;
  }

  .gallery .item--video .item__video_icon:after {
    width: 12px;
    height: 12px;
    background-size: contain;
  }

  .gallery .item--video .item__video:before,
  .gallery .item--video .item__video:after {
    width: 60px;
    height: 110px;
  }

  .contact__inner {
    padding: 40px 20px;
  }

  .contact__title span {
    transform: translateX(89px);
  }

  .contact .form__btn {
    margin-top: 20px;
  }

  .contacts__form .recaptcha {
    margin-top: 10px;
  }

  .footer__container {
    flex-wrap: wrap;
    justify-content: start;
    gap: 60px 20px;
  }

  .footer__body {
    padding: 60px 0;
  }

  .footer__row {
    width: 30%;
  }

  .footer__row:last-child {
    width: 60%;
  }

  .footer__row_title {
    margin-bottom: 30px;
  }

  .footer__bottom .footer__container {
    justify-content: space-between;
    gap: 20px;
  }

  .modal-more .item__text {
    max-height: 200px;
  }

  .modal-more .swiper-button-prev,
  .modal-more .swiper-button-next {
    display: none;
  }

  .modal-form__inner {
    padding: 60px 20px;
    width: 100%;
    max-width: 340px;
  }

  .modal-form .form__inputs {
    /* margin: 20px 0; */
    margin: 20px 0 10px;
  }

  #formModal .recaptcha {
    margin-bottom: 20px;
  }

  .modal-van {
    padding-top: 0;
  }

  .modal-van__content {
    padding: 60px 20px;
    padding-bottom: 20px;
    max-width: 360px;
  }




  /* Catalog */
  .catalog__head {
    padding-top: 158px;
  }

  .catalog .breadcrumbs {
    margin-bottom: 60px;
  }

  .catalog__list-item {
    flex: 0 0 100%;
  }

  .catalog__list-item {
    padding: 50px;
  }

  .catalog .product__visual {
    width: 300px;
  }

  .catalog .product__visual-preview img {
    width: 300px;
    height: 300px;
  }

  .catalog .product-slider-preview__slide {
    width: 300px;
    height: 300px;
  }

  .catalog product__features,
  .catalog .product__price {
    flex: 0 0 100%;
    max-width: 100%;
  }


  /* Accessories */
  .accessories__head {
    padding-top: 158px;
  }

  .accessories .breadcrumbs {
    margin-bottom: 60px;
  }

  .accessories__list-item {
    flex: 0 0 100%;
  }

  .accessories__list-item {
    padding: 50px;
  }

  .accessories .product__visual {
    width: 300px;
  }

  .accessories .product__visual-preview img {
    width: 300px;
    height: 300px;
  }

  .accessories .product-slider-preview__slide {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
  }

  [class*=__container] {
    flex-wrap: wrap;
  }

  .btn {
    min-width: 160px;
  }

  .header {
    padding: 10px 0;
  }

  .header__container {
    gap: 20px;
  }

  .header__btn {
    display: none;
  }

  .hero {
    padding: 40px 0;
    align-items: flex-start;
  }

  .hero__container {
    position: initial;
    gap: 20px;
  }

  .hero__list {
    max-width: 100%;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__list li {
    width: calc(50% - 5px);
    padding-left: 14px;
    font-size: 14px;
  }

  .hero__list li:before {
    width: 6px;
    height: 8px;
  }

  .hero__buttons {
    gap: 10px;
  }

  .hero__scroll {
    transform: translateY(0);
  }

  .hero__scroll_line {
    height: 40px;
  }

  .what {
    align-items: flex-start;
    padding: 300px 0 400px;
    min-height: 150vh;
  }

  .what__bg {
    background-size: 760px;
    background: url(../img/what__bg_mob.svg) 50% 0 repeat-x;
    transition: 0.3s linear;
  }

  .what__image {
    width: 600px;
    left: calc(50% - 200px);
    top: 0;
  }

  .what__content {
    position: relative;
    max-width: 310px;
  }

  .values {
    padding-top: 300px;
    min-height: 100vh;
    align-items: flex-start;
  }

  .values__bg {
    background-size: 760px;
    background: url(../img/values__bg_mob.svg) 50% 0 repeat-x;
    top: -500px;
  }

  .values__image {
    left: 0;
    width: 100%;
    background: url(../img/values__image2.webp) 50% 70px/340px no-repeat;
    height: 340px;
  }

  .values__text {
    max-width: 310px;
    margin-top: 20px;
  }

  .values__btn {
    margin-top: 20px;
    margin-left: auto;
    display: flex;
    max-width: 175px;
  }

  .project-header {
    padding-top: 60px;
  }

  .project-header__decor {
    background: url(../img/decor-patter__mob.svg) 50% 0/contain no-repeat;
    height: 446px;
    top: -175px;
  }

  .project-header__text {
    margin-top: 40px;
    max-width: 310px;
  }

  .project-nav__labels {
    font-size: 9px;
    gap: 0;
  }

  .projects .item {
    padding: 40px 0 80px;
  }

  .projects .item:not(:first-child) {
    margin-top: 40px;
  }

  .projects .item__container {
    gap: 40px;
  }

  .projects .item__content {
    gap: 20px;
  }

  .projects .item__info {
    margin-top: 10px;
    gap: 5px;
  }

  .projects .item__buttons {
    position: absolute;
    bottom: 0;
    gap: 10px;
  }

  .projects .item__gallery {
    gap: 10px;
  }

  .gallery {
    background-size: 100%;
  }

  .gallery__header {
    gap: 60px;
    flex-wrap: wrap;
  }

  .gallery__button {
    padding: 16px 24px;
    min-width: auto;
  }

  .gallery__items {
    margin-top: 40px;
  }

  .gallery .item {
    width: 100%;
  }

  .gallery .item--video .item__video {
    height: 340px;
  }

  .contact {
    background-size: 650px;
    padding: 40px 0;
  }

  .contact__inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .contact__title span {
    transform: translateX(100px);
  }

  .contact__text {
    margin-top: 20px;
  }

  .contact .form__btn {
    margin-top: 40px;
  }

  .map {
    padding: 40px 0;
  }

  .map__frame {
    height: 500px;
  }

  .subscribe {
    padding: 40px 0;
  }

  .subscribe__container {
    flex-direction: column;
    gap: 40px;
  }

  .subscribe__form_btn {
    min-width: 80px;
  }

  .footer__container {
    gap: 60px 10px;
  }

  .footer__row {
    width: calc(50% - 5px);
  }

  .footer__row:last-child {
    width: 100%;
  }

  .modal-van__container {
    padding-top: 20px;
    flex-direction: column-reverse;
  }

  .modal-van__content {
    gap: 20px;
  }

  .modal-menu__container {
    padding-bottom: 15px;
    padding-top: 15px;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-flow: column;
  }

  .modal-menu__links a{
    font-size: 45px;
  }

  .modal-menu__contacts {
    padding: 40px 30px;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: auto;
  }


  .modal-more {
    align-items: start;
  }

  .modal-more__items {
    padding-bottom: 0;
    padding-top: 60px;
    margin-top: -60px;
  }

  .modal-more .item {
    flex-direction: column-reverse;
  }

  .modal-more .item__title {
    font-size: 30px;
  }

  .modal-more .item__image {
    max-height: 300px;
  }

  .modal-more .swiper-pagination {
    bottom: auto;
    top: 20px;
  }

  /* Catalog */
  .catalog__head {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .catalog__body {
    padding-bottom: 100px;
  }

  .catalog__list {
    margin: -50px;
  }

  .catalog .product {
    flex-direction: column;
  }

  .catalog .product__visual {
    margin-right: 0;
    width: 340px;
    margin-bottom: 20px;
  }

  .catalog .product__visual-preview img {
    width: 340px;
    height: 340px;
  }

  .catalog .product__info {
    gap: 20px;
  }

  .catalog .product__title {
    display: none;
  }

  .catalog .product__title_mob {
    display: block;
  }

  .catalog .product-slider-preview__slide {
    width: 340px;
    height: 340px;
  }

  .main-content .catalog__title{
    font-size: 46px;
  }


  /* Accessories */
  .accessories__head {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .accessories__body {
    padding-bottom: 100px;
  }

  .accessories__list {
    margin: -50px;
  }

  .accessories .product {
    flex-direction: column;
  }

  .accessories .product__visual {
    margin-right: 0;
    width: 340px;
    margin-bottom: 20px;
  }

  .accessories .product__visual-preview img {
    width: 340px;
    height: 340px;
  }

  .accessories .product__info {
    gap: 20px;
  }

  .accessories .product__title {
    display: none;
  }

  .accessories .product__title_mob {
    display: block;
  }

  .accessories .product-slider-preview__slide {
    width: 340px;
    height: 340px;
  }

  .main-content .accessories__title{
    font-size: 46px;
  }


  .modal-menu__contacts .header__btn{
    display: block;
    width: 100%;
    text-align: center;
  }
  
  #recaptcha1 {
    justify-content: center;
  }
}
