/* VARS */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey: #cfcfcf;
  --color-grey-light: #f9f9f9;
  --color-grey-dark: #959595;
}

/* FONTS */
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url("../fonts/Raleway-Black.woff2") format("woff2"), url("../fonts/Raleway-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

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

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

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

/* CSS RESET */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  position: relative;
  min-width: 320px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea,
select {
  font-family: "Raleway";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/* BODY */
body {
  color: var(--color-black);
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  background-color: var(--color-grey-light);
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* WRAPPER */
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  padding-top: 94px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > main > *:first-child {
  padding-top: 32px;
}

.wrapper > main > *:last-child {
  padding-bottom: 128px;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */
.container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1316px;
}

@media screen and (max-width: 991.98px) {
  .container {
    padding: 0 16px;
  }
}

/* FSLIGTBOX FIX */
html.fslightbox-open {
  overflow: unset !important;
  height: unset !important;
}

html.fslightbox-open body {
  margin-right: 0 !important;
}

/* COMMON */
/* SCROLLBAR */
@media (pointer: fine) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-black) var(--color-grey-light);
  }

  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: var(--color-grey-light);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--color-black);
    border: 2px solid var(--color-grey-light);
    border-radius: 8px;
  }
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#overlay._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* SECTION */
.section {
  padding: 64px 0;
}

.section-top {
  margin-bottom: 40px;
}

/* TITLES */
.page-title {
  font-size: 70px;
  font-weight: 900;
}

.section-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
}

.section-title.section-title--small {
  font-size: 40px;
}

/* BUTTONS */
.btn {
  padding: 0 16px;
  height: 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 44px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.btn.btn--white {
  color: var(--color-black);
  background-color: var(--color-white);
  border-color: var(--color-white);
}

@media (pointer: fine) {
  .btn.btn--white:hover {
    color: var(--color-white);
    background-color: var(--color-black);
  }
}

.btn.btn--phone {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 44px;
}

.btn.btn--phone > span {
  margin-right: 14px;
}

.btn.btn--phone svg,
.btn.btn--phone img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

@media (pointer: fine) {
  .btn:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

.btn-close {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  z-index: 3;
  color: var(--color-black);
  background: url("../img/icons/sprite.svg#close") center/55% 55% no-repeat;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (pointer: fine) {
  .btn-close:hover {
    opacity: 0.6;
  }
}

/* FORMS */
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

form {
  position: relative;
}

form:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.4) url("../img/loading.svg") center/60px 60px no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

form._sending::after {
  opacity: 1;
  visibility: visible;
}

form._sending button[type="submit"] {
  opacity: 0.3;
  pointer-events: none;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.form-row > .form-input {
  padding-right: 176px;
}

.form-row > .form-btn.btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.form-input {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 56px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 56px;
  outline: none;
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-grey-dark);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-grey-dark);
  -moz-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-grey-dark);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-grey-dark);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::placeholder {
  color: var(--color-grey-dark);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input._error {
  border-color: red;
}

.form-btn.btn {
  padding: 0 32px;
}

/* EDIT CONTENT */
.edit-content {
  line-height: 1.2;
}

.edit-content > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.edit-content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.edit-content h1,
.edit-content h2,
.edit-content h3,
.edit-content h4,
.edit-content h5,
.edit-content h6 {
  margin: 0;
  padding: 20px 0 12px;
  font-weight: 900;
  line-height: 1.2;
}

.edit-content h1 {
  font-size: 32px;
}

.edit-content h2 {
  font-size: 24px;
}

.edit-content h3,
.edit-content h4,
.edit-content h5,
.edit-content h6 {
  font-size: 20px;
}

.edit-content p {
  padding: 8px 0 16px;
}

.edit-content img {
  margin: 8px 0 16px;
  width: 100%;
  height: auto;
  max-height: 412px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 32px;
}

.edit-content a {
  color: var(--color-black);
  font-weight: 700;
  text-decoration: none;
}

@media (pointer: fine) {
  .edit-content a:hover {
    text-decoration: underline;
  }
}

.edit-content ul,
.edit-content ol {
  padding: 8px 0 16px;
}

.edit-content ul > li,
.edit-content ol > li {
  list-style-position: inside;
}

.edit-content ul > li:not(:last-child),
.edit-content ol > li:not(:last-child) {
  margin-bottom: 10px;
}

.edit-content ul > li::marker,
.edit-content ol > li::marker {
  margin-right: 20px;
}

.edit-content ul > li {
  list-style: disc;
  list-style-position: inside;
}

.edit-content table {
  margin: 8px 0 16px;
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border-spacing: 0;
  border: 1px solid var(--color-grey);
}

.edit-content table tr:first-child th:first-child,
.edit-content table tr:first-child td:first-child {
  border-radius: 18px 0 0 0;
}

.edit-content table tr:first-child th:last-child,
.edit-content table tr:first-child td:last-child {
  border-radius: 0 18px 0 0;
}

.edit-content table tr:last-child td:first-child {
  border-radius: 0 0 0 18px;
}

.edit-content table tr:last-child td:last-child {
  border-radius: 0 0 18px 0;
}

.edit-content table tr:not(:last-child) th,
.edit-content table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-grey);
}

.edit-content table tr:nth-child(odd) {
  background-color: #ececec;
}

.edit-content table th,
.edit-content table td {
  padding: 12px 16px;
}

.edit-content table th:not(:last-child),
.edit-content table td:not(:last-child) {
  border-right: 1px solid var(--color-grey);
}

.edit-content table th {
  font-weight: 700;
}

/* LOGO */
.logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.logo-img {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.logo-img img,
.logo-img svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-text {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* SOCIALS */
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.socials-item:not(:last-child) {
  margin-right: 12px;
}

.socials-item svg,
.socials-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (pointer: fine) {
  .socials-item:hover {
    opacity: 0.6;
  }
}

/* MENU */
.menu-wrapper {
  margin: 0 auto;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu {
  padding: 0 16px;
}

.menu-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-list > li {
  padding: 5px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.menu-list > li:not(:last-child) {
  margin-right: 32px;
}

.menu-list > li._has-submenu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-list > li._has-submenu::after {
  content: "";
  margin-left: 0.25em;
  position: relative;
  z-index: 2;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.8em;
  height: 0.8em;
  background: url("../img/icons/sprite.svg#arrow-down") center/100% 100% no-repeat;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media screen and (min-width: 992px) {
  .menu-list > li._has-submenu:hover::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .menu-list > li._has-submenu:hover > .submenu-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.menu-list > li > a,
.menu-list > li > span {
  position: relative;
  z-index: 2;
  color: var(--color-black);
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (pointer: fine) {
  .menu-list > li > a:hover,
  .menu-list > li > span:hover {
    opacity: 0.6;
  }
}

.submenu.submenu--mobile {
  display: none;
}

.submenu-list {
  padding: 20px 24px;
  background-color: var(--color-white);
  border-radius: 24px;
}

.submenu-list > li {
  text-align: left;
}

.submenu-list > li:first-child {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.submenu-list > li:not(:last-child):not(:first-child) {
  margin-bottom: 16px;
}

.submenu-list > li > a {
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.2;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (pointer: fine) {
  .submenu-list > li > a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 992px) {
  .submenu-list {
    position: absolute;
    top: calc(100% + 20px);
    left: -60px;
    min-width: 268px;
    z-index: 4;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  }

  .submenu-list:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 28px;
    background-color: transparent;
  }
}

/* SLIDER SWIPER */
.slider-nav__top {
  padding-right: 180px !important;
}

.swiper {
  overflow: visible;
}

.swiper .swiper-nav {
  position: absolute;
  bottom: calc(100% + 46px);
  right: 0;
  width: auto;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper .swiper-nav .swiper-button-prev,
.swiper .swiper-nav .swiper-button-next {
  margin: 0;
  display: block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 64px;
  height: 64px;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.swiper .swiper-nav .swiper-button-prev:after,
.swiper .swiper-nav .swiper-button-next:after {
  display: none !important;
}

@media (pointer: fine) {
  .swiper .swiper-nav .swiper-button-prev:hover,
  .swiper .swiper-nav .swiper-button-next:hover {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.swiper .swiper-nav .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.swiper .swiper-nav .swiper-button-prev svg,
.swiper .swiper-nav .swiper-button-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 36%;
  height: 36%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper .swiper-nav .swiper-button-prev {
  margin-right: 24px;
}

.swiper .swiper-nav .swiper-button-prev svg {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.swiper .swiper-scrollbar {
  display: none;
  margin: 24px auto 0;
  position: relative;
  top: 0;
  left: 0;
  height: 6px;
  width: 90%;
  border-radius: 10px;
  background: #f0f0f0;
  overflow: hidden;
}

.swiper .swiper-scrollbar .swiper-pagination-progressbar-fill {
  background: var(--color-black);
  border-radius: 10px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--color-grey-light);
}

.header-inner {
  padding: 20px 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;
}

.header-logo.logo {
  margin-right: 12px;
  position: relative;
  z-index: 3;
}

.header-socials.socials {
  margin-right: 12px;
  position: relative;
  z-index: 3;
}

.header-controls {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-language.language {
  margin-left: 12px;
  margin-right: 16px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-language.language::after {
  content: "";
  display: block;
  margin-left: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  background: url("../img/icons/sprite.svg#arrow-down") center / 100% 100% no-repeat;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.header-language.language:hover::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.header-language.language:hover > .header-language__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.header-language__btn {
  display: block;
  width: 32px;
  height: 22px;
  overflow: hidden;
  border-radius: 2px;
}

.header-language__btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-language__submenu {
  padding: 10px;
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 4;
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  background-color: var(--color-grey-light);
  border-radius: 24px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0;
}

.header-language__submenu::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  width: 100%;
  height: 22px;
  background-color: transparent;
}

.header-language__submenu > li {
  padding: 10px 14px;
  border-radius: 20px;
}

.header-language__submenu > li:not(:last-child) {
  margin-bottom: 4px;
}

.header-language__submenu > li._active {
  background-color: var(--color-black);
}

.header-phone.header-phone--mobile {
  display: none;
  position: relative;
  z-index: 3;
}

.header-burger {
  display: none;
  margin-left: 16px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  z-index: 3;
  color: var(--color-black);
  background-color: transparent;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header-burger svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 55%;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header-burger svg:first-child {
  -webkit-transform: translate(-50%, -50%) scale(1) rotate(0);
  -ms-transform: translate(-50%, -50%) scale(1) rotate(0);
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.header-burger svg:last-child {
  -webkit-transform: translate(-50%, -50%) scale(0) rotate(0);
  -ms-transform: translate(-50%, -50%) scale(0) rotate(0);
  transform: translate(-50%, -50%) scale(0) rotate(0);
}

.header-burger._active svg:first-child {
  -webkit-transform: translate(-50%, -50%) scale(0) rotate(270deg);
  -ms-transform: translate(-50%, -50%) scale(0) rotate(270deg);
  transform: translate(-50%, -50%) scale(0) rotate(270deg);
}

.header-burger._active svg:last-child {
  -webkit-transform: translate(-50%, -50%) scale(1) rotate(270deg);
  -ms-transform: translate(-50%, -50%) scale(1) rotate(270deg);
  transform: translate(-50%, -50%) scale(1) rotate(270deg);
}

/* FOOTER */
.footer {
  background-color: var(--color-black);
}

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

.footer-logo {
  margin-right: 12px;
}

.footer-logo.logo > .logo-text,
.footer-socials > .socials-item {
  color: var(--color-white);
}

.footer-socials {
  margin-right: 12px;
}

.footer-nav .menu-list > li._has-submenu::after {
  background: url("../img/icons/sprite.svg#arrow-down-white") center/100% 100% no-repeat;
}

@media screen and (min-width: 992px) {
  .footer-nav .menu-list > li._has-submenu:hover::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.footer-nav .menu-list > li > a,
.footer-nav .menu-list > li > span {
  color: var(--color-white);
}

@media screen and (min-width: 992px) {
  .footer-nav .submenu-list {
    top: auto;
    bottom: calc(100% + 20px);
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  .footer-nav .submenu-list:before {
    top: 100%;
    bottom: auto;
  }
}

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

.footer-language {
  margin-left: 12px;
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  height: 30px;
  -webkit-box-shadow: inset 0 0 0 1px red;
  box-shadow: inset 0 0 0 1px red;
}

.footer-phone.btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 44px;
}

/* POPUP */
.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-body {
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 32px;
  position: relative;
  width: 100%;
  max-width: 400px;
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-close.btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}

.popup.popup-thanks .popup-title:not(:last-child) {
  margin-bottom: 16px;
}

.popup-title {
  padding: 0 10px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.popup-title:not(:last-child) {
  margin-bottom: 8px;
}

.popup-txt {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.popup-txt:not(:last-child) {
  margin-bottom: 20px;
}

.popup-form.form .form-input:not(:last-child) {
  margin-bottom: 12px;
}

.popup-form.form .from-btn {
  width: 100%;
}

/* SERVICES */
.services-top {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.services-header {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
  padding-bottom: 12px;
}

.services-title.page-title:not(:last-child) {
  margin-bottom: 20px;
}

.services-text {
  line-height: 1.2;
}

.services-item {
  padding: 16px 88px 16px 16px;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  position: relative;
  z-index: 3;
  min-height: 196px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: var(--color-grey-light);
  border-radius: 22px;
}

.services-item.services-item--2rows {
  -ms-grid-row-span: 2;
  grid-row: 2 span;
  z-index: 2;
  -webkit-box-shadow: 0 0 0 20px var(--color-grey-light);
  box-shadow: 0 0 0 20px var(--color-grey-light);
}

.services-item.services-item--2rows::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 20px);
  left: calc(50% + 9px);
  width: 40px;
  height: 40px;
  background: url("../img/corner-radius-grey.svg") center/100% 100% no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.services-item.services-item--3rows {
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-column-span: 2;
  grid-column-end: 7;
  -ms-grid-row-span: 3;
  grid-row: 3 span;
  z-index: 1;
}

.services-item.services-item--3rows .services-item__bg {
  left: auto;
  right: 0;
  width: calc(150% + 10px);
}

.services-item.services-item--3rows .services-item__bg .services-item__bg-cover {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34.4%;
  height: 84px;
  z-index: 1;
  background-color: var(--color-grey-light);
}

.services-item.services-item--3rows .services-item__bg .services-item__bg-cover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 40px;
  height: 40px;
  background: url("../img/corner-radius-grey.svg") center/100% 100% no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (pointer: fine) {
  .services-item._hover-in > .services-item__inner {
    -webkit-animation: innerAnimateIn 0.4s ease 0s forwards;
    animation: innerAnimateIn 0.4s ease 0s forwards;
  }

  .services-item._hover-in > .services-item__inner > .services-item__btn > span {
    -webkit-animation: buttonAnimateIn 0.4s ease 0s forwards;
    animation: buttonAnimateIn 0.4s ease 0s forwards;
  }

  .services-item._hover-out > .services-item__inner {
    -webkit-animation: innerAnimateOut 0.4s ease 0s forwards;
    animation: innerAnimateOut 0.4s ease 0s forwards;
  }

  .services-item._hover-out > .services-item__inner > .services-item__btn > span {
    -webkit-animation: buttonAnimateOut 0.4s ease 0s forwards;
    animation: buttonAnimateOut 0.4s ease 0s forwards;
  }
}

@-webkit-keyframes innerAnimateIn {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
  }
}

@keyframes innerAnimateIn {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
  }
}

@-webkit-keyframes innerAnimateOut {
  0% {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
  }

  40% {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 1px, 0);
    transform: translate3d(0, 1px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
}

@keyframes innerAnimateOut {
  0% {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
  }

  40% {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 1px, 0);
    transform: translate3d(0, 1px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
}

@-webkit-keyframes buttonAnimateIn {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  40% {
    -webkit-transform: rotate(120deg) scale(1.18);
    transform: rotate(120deg) scale(1.18);
  }

  70% {
    -webkit-transform: rotate(65deg) scale(1.1);
    transform: rotate(65deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(90deg) scale(1.15);
    transform: rotate(90deg) scale(1.15);
  }
}

@keyframes buttonAnimateIn {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  40% {
    -webkit-transform: rotate(120deg) scale(1.18);
    transform: rotate(120deg) scale(1.18);
  }

  70% {
    -webkit-transform: rotate(65deg) scale(1.1);
    transform: rotate(65deg) scale(1.1);
  }

  100% {
    -webkit-transform: rotate(90deg) scale(1.15);
    transform: rotate(90deg) scale(1.15);
  }
}

@-webkit-keyframes buttonAnimateOut {
  0% {
    -webkit-transform: rotate(90deg) scale(1.15);
    transform: rotate(90deg) scale(1.15);
  }

  40% {
    -webkit-transform: rotate(-30deg) scale(0.97);
    transform: rotate(-30deg) scale(0.97);
  }

  70% {
    -webkit-transform: rotate(25deg) scale(1.05);
    transform: rotate(25deg) scale(1.05);
  }

  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

@keyframes buttonAnimateOut {
  0% {
    -webkit-transform: rotate(90deg) scale(1.15);
    transform: rotate(90deg) scale(1.15);
  }

  40% {
    -webkit-transform: rotate(-30deg) scale(0.97);
    transform: rotate(-30deg) scale(0.97);
  }

  70% {
    -webkit-transform: rotate(25deg) scale(1.05);
    transform: rotate(25deg) scale(1.05);
  }

  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

.services-item__title {
  padding: 15px 22px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  z-index: 2;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  word-break: break-word;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.services-item__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
}

.services-item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.services-item__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 84px;
  height: 84px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: url("../img/corner-btn-bg-grey.svg") center/100% 100% no-repeat;
}

.services-item__btn > span {
  position: relative;
  width: 76%;
  height: 76%;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50%;
}

.services-item__btn > span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 36%;
  height: 36%;
  -o-object-fit: contain;
  object-fit: contain;
}

.services-bottom {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services-bottom > .services-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  min-height: 304px;
}

/* HELP */
.help-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.help-content {
  width: calc(50% - 30px);
  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;
}

.help-content__top {
  margin-bottom: 36px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.help-title {
  margin-bottom: 14px;
}

.help-text {
  font-size: 18px;
  line-height: 1.2;
}

.help-items {
  width: calc(50% - 10px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.help-item {
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 24px;
}

.help-item__icon {
  margin-right: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.help-item__icon svg,
.help-item__icon img {
  width: 88%;
  height: 88%;
  -o-object-fit: contain;
  object-fit: contain;
}

.help-item__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* WORKS */
.works-top.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.works-title {
  margin-right: 24px;
}

.works-text {
  padding: 0.5em 0 0.45em;
  line-height: 1.2;
}

.works-item {
  border-radius: 32px;
  overflow: hidden;
}

.works-item.works-item--video:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  z-index: 3;
  border: 4px solid var(--color-white);
  border-radius: 50%;
  background-color: var(--color-black);
  background-image: url("../img/icons/sprite.svg#play");
  background-position: 55% 50%;
  background-size: 38% 38%;
  background-repeat: no-repeat;
}

@media (pointer: fine) {
  .works-item:hover .works-item__img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.works-item__img {
  padding-bottom: 100%;
  display: block;
  width: 100%;
  height: 0;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

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

/* ABOUT */
.about-top {
  margin-bottom: 40px;
  padding-bottom: 130px;
  position: relative;
}

.about-title.section-title {
  margin-right: 88px;
  padding: 2px 34px 16px 0;
  display: inline-block;
  position: relative;
  z-index: 2;
  background-color: var(--color-grey-light);
  border-radius: 0 0 40px 0;
}

.about-title.section-title::before,
.about-title.section-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("../img/corner-radius-grey.svg") center/100% 100% no-repeat;
}

.about-title.section-title::before {
  top: 0;
  left: calc(100% - 1px);
}

.about-title.section-title::after {
  top: 100%;
  left: -1px;
}

.about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-body {
  line-height: 1.3;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 66px;
  -moz-column-gap: 66px;
  column-gap: 66px;
}

.about-body > * {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

/* ARTICLES */
.articles-top.section-top {
  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;
}

.articles-bottom {
  text-align: center;
}

.articles-showmore__btn {
  margin-left: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

@media (pointer: fine) {
  .articles-showmore__btn:hover > span:first-child {
    opacity: 0.6;
  }

  .articles-showmore__btn:hover > span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.articles-showmore__btn.articles-showmore__btn--top {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.articles-showmore__btn.articles-showmore__btn--bottom {
  display: none;
  margin-top: 32px;
}

.articles-showmore__btn > span:first-child {
  margin-right: 16px;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.articles-showmore__btn > span:last-child {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.articles-showmore__btn > span:last-child svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 36%;
  height: 36%;
  -o-object-fit: contain;
  object-fit: contain;
}

.articles-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.articles-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  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;
}

.articles-item__img {
  margin-bottom: 22px;
  height: 196px;
  border-radius: 32px;
  overflow: hidden;
}

@media (pointer: fine) {
  .articles-item__img:hover > a {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.articles-item__img > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.articles-item__img > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 32px;
}

.articles-item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (pointer: fine) {
  .articles-item__title:hover {
    opacity: 0.6;
  }
}

.articles-item__title:not(:last-child) {
  margin-bottom: 10px;
}

.articles-item__title > a {
  color: var(--color-black);
}

.articles-item__text {
  font-size: 16px;
  line-height: 1.2;
}

/* ARTICLE-PAGE */
.article-page__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article.edit-content {
  margin-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

.article-page__sidebar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 304px;
}

.article-page__sidebar-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.article-page__sidebar-list > .articles-item:not(:last-child) {
  margin-bottom: 20px;
}

/* CLIENTS */
.clients-item {
  padding: 12px 56px 12px 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
}

@media (pointer: fine) {
  .clients-item:hover > .clients-item__title {
    opacity: 0.6;
  }

  .clients-item:hover > .clients-item__arrow {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}

.clients-item__icon {
  margin-right: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.clients-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.clients-item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  word-break: break-word;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.clients-item__arrow {
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  z-index: 2;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50%;
  border: 10px solid var(--color-grey-light);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.clients-item__arrow svg,
.clients-item__arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 36%;
  height: 36%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* CONTACTS */
@media screen and (min-width: 992px) {
  .contacts.contacts--page .contacts-info {
    margin-bottom: 220px;
  }
}

@media screen and (min-width: 1200px) {
  .contacts.contacts--page .contacts-info {
    margin-bottom: 260px;
  }
}

@media screen and (min-width: 1401px) {
  .contacts.contacts--page .contacts-info {
    margin-bottom: 340px;
  }
}

.contacts-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts-info {
  padding: 0 20px 20px 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 124px;
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 364px;
  background-color: var(--color-grey-light);
  border-radius: 0 0 32px 0;
}

.contacts-info::before,
.contacts-info::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("../img/corner-radius-grey.svg") center/100% 100% no-repeat;
}

.contacts-info::before {
  top: 0;
  left: 100%;
}

.contacts-info::after {
  top: 100%;
  left: -1px;
}

.contacts-info__inner {
  padding: 28px 32px;
  background-color: var(--color-white);
  border-radius: 24px;
}

.contacts-title.section-title.section-title--small {
  margin-bottom: 28px;
}

.contacts-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-list > li:not(:last-child) {
  margin-bottom: 20px;
}

.contacts-list > li svg,
.contacts-list > li img {
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-list > li > a,
.contacts-list > li > span {
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.3;
  word-break: break-word;
}

.contacts-list > li > a {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (pointer: fine) {
  .contacts-list > li > a:hover {
    opacity: 0.6;
  }
}

.contacts-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

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

.contacts-col {
  position: relative;
  z-index: 2;
  width: 45.5%;
  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;
}

.contacts-socials {
  padding: 12px 15px 100px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contacts-socials > a {
  margin: 6px 0;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: block;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 50%;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contacts-socials > a:not(:first-child) {
  margin-left: 6px;
}

@media (pointer: fine) {
  .contacts-socials > a:hover {
    color: var(--color-white);
    background-color: var(--color-black);
  }
}

.contacts-socials > a svg,
.contacts-socials > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 54%;
  height: 54%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-form__wrapper {
  padding: 20px 0 0 20px;
  position: relative;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  background-color: var(--color-grey-light);
  border-radius: 32px 0 0 0;
}

.contacts-form__wrapper::before,
.contacts-form__wrapper::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("../img/corner-radius-grey.svg") center/100% 100% no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.contacts-form__wrapper::before {
  bottom: 100%;
  right: 0;
}

.contacts-form__wrapper::after {
  bottom: 0;
  right: 100%;
}

.contacts-form__wrapper-inner {
  padding: 24px 32px;
  border-radius: 24px;
  background-color: var(--color-white);
}

.contacts-form__title {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.contacts-form__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.2;
}

/* SERVICE */
.service-top {
  position: relative;
  z-index: 2;
  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;
}

.service-top__img-wrapper {
  margin-right: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 412px;
}

.service-top__img {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 32px;
  overflow: hidden;
}

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

.service-top__content {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

.service-title.section-title {
  margin-bottom: 12px;
}

.service-text.edit-content:not(:last-child) {
  margin-bottom: 26px;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service-list:not(:last-child) {
  margin-bottom: 40px;
}

.service-list > li {
  margin: 6px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.service-list > li:not(:last-child) {
  margin-right: 26px;
}

.service-list > li svg,
.service-list > li img {
  margin-right: 16px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service-btn.btn {
  padding: 0 34px;
  height: 56px;
  font-size: 18px;
}

.service-bottom {
  margin-top: -32px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service-bottom__content {
  margin-top: 80px;
  padding: 42px;
  position: relative;
  width: 50%;
  z-index: 1;
  border-radius: 24px 0 0 24px;
  background-color: var(--color-white);
}

.service-bottom__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: inherit;
  border-radius: 0 24px 24px 0;
}

.service-bottom__title {
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.service-bottom__title:not(:last-child) {
  margin-bottom: 12px;
}

.service-bottom__text {
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.service-bottom__img-wrapper {
  padding: 0 48px 0 12px;
  position: relative;
  width: 50%;
  z-index: 2;
}

.service-bottom__img {
  padding-bottom: 61%;
  position: relative;
  width: 100%;
  height: 0;
}

.service-bottom__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center bottom;
  object-position: center bottom;
}

/* RESPONSIVE */
@media screen and (max-width: 1400px) {
  body {
    font-size: 18px;
  }

  .page-title {
    font-size: 60px;
  }

  .section-title {
    font-size: 48px;
  }

  .section-title.section-title--small {
    font-size: 36px;
  }

  .btn.btn--phone {
    height: 38px;
    font-size: 16px;
  }

  .btn.btn--phone > span {
    margin-right: 10px;
  }

  .btn.btn--phone svg,
  .btn.btn--phone img {
    width: 16px;
    height: 16px;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .logo-text {
    font-size: 20px;
  }

  .menu {
    padding: 0 10px;
  }

  .menu-list > li {
    font-size: 15px;
  }

  .menu-list > li:not(:last-child) {
    margin-right: 20px;
  }

  .submenu-list > li:first-child {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .submenu-list > li:not(:last-child):not(:first-child) {
    margin-bottom: 12px;
  }

  .submenu-list > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1199.98px) {
  .page-title {
    font-size: 52px;
  }

  .edit-content h1 {
    font-size: 28px;
  }

  .edit-content h2 {
    font-size: 22px;
  }

  .slider-nav__top {
    padding-right: 132px !important;
  }

  .swiper .swiper-nav .swiper-button-prev,
  .swiper .swiper-nav .swiper-button-next {
    width: 52px;
    height: 52px;
  }

  .swiper .swiper-nav .swiper-button-prev {
    margin-right: 10px;
  }

  .services-top {
    margin-bottom: 16px;
    gap: 16px;
  }

  .services-item {
    min-height: 160px;
  }

  .services-item.services-item--2rows {
    -webkit-box-shadow: 0 0 0 16px var(--color-grey-light);
    box-shadow: 0 0 0 16px var(--color-grey-light);
  }

  .services-item.services-item--2rows::after {
    bottom: calc(100% + 16px);
    left: calc(50% + 6px);
  }

  .services-bottom {
    gap: 16px;
  }

  .services-bottom > .services-item {
    min-height: 280px;
  }

  .help-items,
  .articles-body {
    gap: 20px 16px;
  }

  .articles-item__img {
    margin-bottom: 16px;
  }

  .article-page__sidebar {
    width: 280px;
  }

  .clients-item__icon {
    margin-right: 18px;
    width: 56px;
    height: 56px;
  }

  .clients-item__title {
    font-size: 20px;
  }

  .clients-item__arrow {
    right: -8px;
    width: 52px;
    height: 52px;
    border: 8px solid var(--color-grey-light);
  }

  .contacts-info__inner,
  .contacts-form__wrapper-inner {
    padding: 24px;
  }

  .contacts-info {
    padding: 0 16px 16px 0;
  }

  .contacts-form__wrapper {
    padding: 16px 0 0 16px;
  }

  .service-bottom {
    margin-top: 0;
  }

  .service-top__img-wrapper {
    margin-right: 28px;
  }

  .service-bottom__content {
    margin-top: 60px;
    padding: 32px;
  }

  .service-bottom__img-wrapper {
    padding: 0 24px 0 12px;
  }
}

@media screen and (max-width: 991.98px) {
  body {
    font-size: 16px;
  }

  .wrapper > main {
    padding-top: 82px;
  }

  .wrapper > main > *:last-child {
    padding-bottom: 104px;
  }

  .section {
    padding: 52px 0;
  }

  .section-top {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 40px;
  }

  .section-title.section-title--small {
    font-size: 32px;
  }

  .edit-content img {
    border-radius: 18px;
  }

  .swiper .swiper-nav {
    bottom: calc(100% + 36px);
  }

  .menu-wrapper {
    margin: 0 0 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
    display: block;
  }

  .menu {
    margin: 0 auto;
    padding: 0;
    max-width: 400px;
  }

  .menu-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .menu-list > li {
    margin: 0;
    padding: 12px;
    font-size: 16px;
  }

  .menu-list > li:not(:last-child) {
    margin: 0;
  }

  .menu-list > li._has-submenu._active::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .menu-list .submenu-list {
    display: none !important;
  }

  .header-inner {
    padding: 16px 0;
  }

  .header-burger {
    display: block;
  }

  .header-socials.socials {
    margin: 0 16px 0 auto;
  }

  .header-controls {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 92px 15px 32px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, -105%, 0);
    transform: translate3d(0, -105%, 0);
    width: 100%;
    z-index: 2;
    background-color: var(--color-grey-light);
    border-radius: 0 0 18px 18px;
    will-change: transform;
  }

  .header-controls._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  html._loaded .header-controls {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }

  .submenu.submenu--mobile {
    display: block;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }

  .submenu-list {
    margin: 4px 0;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .submenu-list > li {
    margin: 0;
    padding: 6px 12px;
    text-align: center;
  }

  .submenu-list > li:not(:last-child):not(:first-child) {
    margin: 0;
  }

  .submenu-list > li:first-child {
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }

  .submenu-list > li > a,
  .submenu-list > li > span {
    font-weight: 700;
  }

  .header-language.language {
    margin: 0 16px 0 0;
  }

  .header-phone.header-phone--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .footer-inner {
    padding: 16px 0 32px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-socials.socials {
    margin: 0;
  }

  .footer-nav.menu-wrapper {
    margin: 14px 0;
  }

  .footer-controls {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

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

  .services-header {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    text-align: center;
  }

  .services-item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    min-height: 200px;
    border-radius: unset;
  }

  .services-item.services-item--2rows {
    -ms-grid-row-span: 1;
    grid-row: 1 span;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .services-item.services-item--2rows::after {
    display: none;
  }

  .services-item.services-item--3rows {
    -ms-grid-column: auto;
    grid-column-start: auto;
    grid-column-end: auto;
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .services-item.services-item--3rows .services-item__bg {
    left: 0;
    right: 0;
    width: 100%;
  }

  .services-item.services-item--3rows .services-item__bg .services-item__bg-cover {
    display: none;
  }

  .services-bottom > .services-item {
    min-height: 200px;
  }

  .help-inner {
    display: block;
  }

  .help-content {
    margin: 0 auto 32px;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .help-content__top {
    margin-bottom: 24px;
  }

  .help-text {
    font-size: 16px;
  }

  .help-items {
    width: 100%;
  }

  .works-text {
    padding: 0.5em 0 0.33em;
  }

  .about-top {
    margin-bottom: 32px;
    padding-bottom: 100px;
  }

  .about-title.section-title {
    margin-right: 76px;
    border-radius: 0 0 20px 0;
  }

  .about-title.section-title::before,
  .about-title.section-title::after {
    width: 20px;
    height: 20px;
  }

  .about-body {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .services-item__bg,
  .help-item,
  .about-image,
  .works-item,
  .articles-item__img,
  .articles-item__img > a img,
  .contacts-info,
  .contacts-img,
  .contacts-form__wrapper {
    border-radius: 18px;
  }

  .contacts-inner {
    display: block;
  }

  .contacts-info {
    margin: 0 0 16px;
    padding: 0;
    width: 100%;
    background-color: var(--color-white);
  }

  .contacts-info::before,
  .contacts-info::after {
    display: none;
  }

  .contacts-info__inner {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background-color: transparent;
    border-radius: 0;
  }

  .contacts-title.section-title.section-title--small {
    margin-bottom: 24px;
  }

  .contacts-list > li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
  }

  .contacts-img {
    margin-bottom: 16px;
    padding-bottom: 20%;
    position: relative;
    height: 0;
    min-height: 65px;
  }

  .contacts-socials {
    display: none;
  }

  .contacts-col {
    display: block;
    width: 100%;
  }

  .contacts-form__wrapper {
    padding: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    background-color: var(--color-white);
  }

  .contacts-form__wrapper::before,
  .contacts-form__wrapper::after {
    display: none;
  }

  .contacts-form__wrapper-inner {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background-color: transparent;
    border-radius: 0;
  }

  .service-top {
    display: block;
  }

  .service-top__img-wrapper {
    margin-bottom: 22px;
    width: 100%;
  }

  .service-top__img {
    padding-bottom: 0;
    height: 240px;
    border-radius: 18px;
  }

  .service-bottom__content {
    padding: 24px;
    width: 60%;
    border-radius: 18px;
  }

  .service-bottom__content:after {
    left: 0;
    width: calc(100vw - 32px);
    border-radius: inherit;
  }

  .service-bottom__img-wrapper {
    padding: 0;
    width: 40%;
  }

  .article-page__inner {
    display: block;
  }

  .article.edit-content {
    margin: 0 0 40px;
  }

  .article-page__sidebar {
    width: 100%;
  }

  .article-page__sidebar-title {
    text-align: left;
  }

  .article-page__sidebar-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }

  .article-page__sidebar-list > .articles-item:not(:last-child) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .wrapper > main {
    padding-top: 74px;
  }

  .btn {
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
  }

  .btn.btn--phone {
    height: 32px;
    font-size: 14px;
  }

  .btn.btn--phone > span {
    margin-right: 8px;
  }

  .btn.btn--phone svg,
  .btn.btn--phone img {
    width: 14px;
    height: 14px;
  }

  .form-row > .form-input {
    padding-right: 116px;
  }

  .form-input {
    padding: 0 16px;
    height: 40px;
    font-size: 16px;
  }

  .form-btn.btn {
    padding: 0 16px;
  }

  .slider-nav__top {
    padding-right: 104px !important;
  }

  .swiper .swiper-nav {
    bottom: calc(100% + 40px);
  }

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

  .swiper .swiper-nav .swiper-button-prev {
    margin-right: 8px;
  }

  .swiper .swiper-scrollbar {
    display: block;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 16px;
  }

  .header-socials.socials {
    margin: 0 12px 0 auto;
  }

  .header-burger {
    margin-left: 8px;
    width: 32px;
    height: 32px;
  }

  .popup-title {
    font-size: 24px;
  }

  .popup-txt {
    font-size: 16px;
  }

  .services-item {
    padding: 8px 65px 8px 8px;
    min-height: 160px;
  }

  .services-item__title {
    padding: 12px 16px;
    font-size: 14px;
  }

  .services-item__btn {
    width: 62px;
    height: 62px;
  }

  .services-bottom > .services-item {
    min-height: 160px;
  }

  .works-top.section-top {
    display: block;
  }

  .works-title {
    margin: 0 0 4px;
  }

  .works-text {
    padding: 0;
  }

  .about-body {
    -webkit-column-gap: 28px;
    -moz-column-gap: 28px;
    column-gap: 28px;
  }

  .articles--homepage .articles-body > .articles-item:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

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

  .article-page__sidebar-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .article-page__sidebar-list > .articles-item:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .articles-showmore__btn {
    margin: 0;
  }

  .articles-showmore__btn.articles-showmore__btn--top {
    display: none;
  }

  .articles-showmore__btn.articles-showmore__btn--bottom {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .service-top {
    margin-bottom: 80px;
  }

  .service-top__content {
    text-align: center;
  }

  .service-text.edit-content:not(:last-child) {
    margin-bottom: 22px;
  }

  .service-list {
    display: block;
  }

  .service-list:not(:last-child) {
    margin-bottom: 24px;
  }

  .service-list > li {
    display: block;
  }

  .service-list > li:not(:last-child) {
    margin: 0 0 16px;
  }

  .service-list > li svg,
  .service-list > li img {
    margin: 0 auto 8px;
  }

  .service-bottom {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--color-white);
  }

  .service-bottom__content {
    margin: 0;
    padding: 24px 22px 0;
    width: 100%;
    z-index: 2;
    border-radius: 0;
    background-color: transparent;
  }

  .service-bottom__content:after {
    display: none;
  }

  .service-bottom__text {
    width: 73%;
  }

  .service-bottom__img-wrapper {
    margin-top: -18px;
    padding: 0;
    width: 100%;
    z-index: 1;
    border-radius: 0 0 18px 18px;
  }

  .service-bottom__img {
    margin-left: auto;
    padding-bottom: 56%;
    width: 80%;
  }
}

@media screen and (max-width: 575.98px) {
  body {
    font-size: 14px;
  }

  .wrapper > main > *:first-child {
    padding-top: 16px;
  }

  .wrapper > main > *:last-child {
    padding-bottom: 80px;
  }

  .section {
    padding: 40px 0;
  }

  .section-top {
    margin-bottom: 20px;
  }

  .page-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title.section-title--small {
    font-size: 24px;
  }

  .btn.btn--phone {
    padding: 0 12px;
  }

  .edit-content h1,
  .edit-content h2,
  .edit-content h3,
  .edit-content h4,
  .edit-content h5,
  .edit-content h6 {
    padding: 14px 0 8px;
  }

  .edit-content h1 {
    font-size: 24px;
  }

  .edit-content h2 {
    font-size: 20px;
  }

  .edit-content h3,
  .edit-content h4,
  .edit-content h5,
  .edit-content h6 {
    font-size: 18px;
  }

  .edit-content p,
  .edit-content ul,
  .edit-content ol {
    padding: 6px 0 12px;
  }

  .edit-content img {
    margin: 6px 0 12px;
  }

  .edit-content table {
    margin: 6px 0 12px;
  }

  .edit-content table th,
  .edit-content table td {
    padding: 10px;
  }

  .swiper .swiper-nav {
    bottom: calc(100% + 22px);
  }

  .menu-list > li {
    font-size: 14px;
  }

  .header .logo-img {
    margin: 0;
  }

  .header .logo-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(-12px, -50%, 0);
    transform: translate3d(-12px, -50%, 0);
    left: 52px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  }

  .header._active .logo-text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    pointer-events: auto;
  }

  .header._active .header-phone.header-phone--mobile {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(12px, 0, 0);
    transform: translate3d(12px, 0, 0);
    pointer-events: none;
  }

  .header-socials.socials {
    display: none;
  }

  .header-controls {
    padding: 72px 15px 32px;
  }

  .header-phone.header-phone--mobile {
    margin-left: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  }

  .popup-content {
    padding: 32px 20px;
  }

  .popup-title {
    padding: 0 20px;
  }

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

  .services-header {
    padding-bottom: 16px;
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .services-item {
    min-height: 128px;
  }

  .services-title.page-title:not(:last-child) {
    margin-bottom: 12px;
  }

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

  .services-bottom > .services-item {
    min-height: 128px;
  }

  .help-text {
    font-size: 14px;
  }

  .help-items {
    gap: 12px;
  }

  .help-item {
    padding: 16px;
    display: block;
    text-align: center;
  }

  .help-item__icon {
    margin: 0 auto 8px;
  }

  .help-item__title {
    font-size: 14px;
  }

  .works-text {
    font-size: 12px;
  }

  .works-item__img {
    padding-bottom: 81%;
  }

  .about-top {
    margin-bottom: 24px;
    padding-bottom: 70px;
  }

  .about-title.section-title {
    padding: 2px 24px 12px 0;
  }

  .about-body {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .about-body > *:not(:last-child) {
    margin-bottom: 24px;
  }

  .articles--homepage .articles-body > .articles-item:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .articles-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-page__sidebar-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-page__sidebar-list > .articles-item:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .clients-item__icon {
    margin-right: 12px;
    width: 40px;
    height: 40px;
  }

  .clients-item__title {
    font-size: 16px;
  }

  .clients-item__arrow {
    right: -6px;
    width: 44px;
    height: 44px;
    border: 6px solid var(--color-grey-light);
  }

  .clients-slider._2slides .clients-item:nth-child(2) {
    margin-top: 10px;
  }

  .contacts-info,
  .contacts-img {
    margin: 0 0 12px;
  }

  .contacts-info__inner {
    max-width: 77%;
  }

  .contacts-title.section-title.section-title--small {
    margin-bottom: 20px;
  }

  .contacts-list > li svg,
  .contacts-list > li img {
    width: 20px;
    height: 20px;
  }

  .contacts-list > li > a,
  .contacts-list > li > span {
    font-size: 14px;
  }

  .contacts-info__inner,
  .contacts-form__wrapper-inner {
    padding: 24px 16px;
  }

  .contacts-form__title {
    font-size: 24px;
  }

  .contacts-form__text {
    font-size: 14px;
  }

  .service-bottom__title {
    font-size: 24px;
  }

  .service-list > li {
    font-size: 14px;
  }
}

@media screen and (max-width: 350px) {
  .contacts-info__inner {
    max-width: 90%;
  }
}
