@charset "UTF-8";

:root {
  --container-padding: 40px;
}

:root {
  --fsb-border: 1px solid #E72A33;
  --fsb-radius: 10px;
  --fsb-color: inherit;
  --fsb-background: #fff;
  --fsb-font-size: 1rem;
  --fsb-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  --fsb-padding: 8px;
  --fsb-padding-right: var(--fsb-padding);
  --fsb-arrow-size: 15px;
  --fsb-arrow-padding: var(--fsb-padding);
  --fsb-arrow-color: currentColor;
  --fsb-icon-color: currentColor;
  --fsb-list-height: 300px;
  --fsb-list-border: var(--fsb-border);
  --fsb-list-radius: 3px;
  --fsb-list-color: var(--fsb-color);
  --fsb-list-background: var(--fsb-background);
  --fsb-hover-color: var(--fsb-color);
  --fsb-hover-background: #ddd;
  --fsb-disabled-opacity: .3;
}

.fsb-original-select {
  display: inline-block;
  margin: 0;
  padding: 8px 22px 8px 8px;
  padding: var(--fsb-padding);
  padding-right: calc(var(--fsb-arrow-padding) * 2 + var(--fsb-arrow-size));
  font-family: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.fsb-original-select[disabled] {
  color: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
}

.fsb-select {
  display: inline-block;
  position: relative;
}

select[disabled] + .fsb-select {
  cursor: not-allowed;
}

.fsb-select,
.fsb-original-select {
  width: 100%;
  min-width: 0;
  border: 1px solid #E72A33;
  border: var(--fsb-border);
  border-radius: 10px;
  border-radius: var(--fsb-radius);
  box-sizing: border-box;
  color: inherit;
  color: var(--fsb-color);
  background-color: #fff;
  background-color: var(--fsb-background);
  font-size: 1em;
  font-size: var(--fsb-font-size);
  box-shadow: none;
  box-shadow: var(--fsb-shadow);
}

.fsb-select svg {
  width: 1em;
  height: 1em;
  margin-right: 8px;
  margin-right: var(--fsb-padding-right);
  fill: currentColor;
  fill: var(--fsb-icon-color);
  pointer-events: none;
}

.fsb-label {
  display: none;
}

/* While it's common sense to avoid using !important as much as possible, it is used
 * here to prevent inheriting style from other rules that may target buttons. */

.fsb-button {
  display: flex !important;
  align-items: center;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 14px 40px 14px 20px !important;
  border: 0 !important;
  border-radius: inherit !important;
  color: inherit !important;
  background-color: inherit !important;
  font-size: 16px !important;
  font-family: inherit !important;
  font-weight: 300;
  line-height: 1.7;
  text-align: inherit !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fsb-button > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fsb-button > span,
.fsb-option > span {
  pointer-events: none;
}

select[disabled] + .fsb-select .fsb-button {
  opacity: 0.4;
  pointer-events: none;
}

.fsb-button:after,
select[disabled] + .fsb-select .fsb-button[aria-expanded=true]:after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 13px;
  right: 20px;
  top: 50%;
  transform: translateY(-45%) rotate(180deg);
  border-style: solid;
  border-width: 0 7.5px 13px 7.5px;
  border-color: transparent transparent #000 transparent;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.fsb-button[aria-expanded=true]:after {
  transform: translateY(-45%) rotate(0);
}

.fsb-list,
select[disabled] + .fsb-select .fsb-list {
  display: block;
  visibility: hidden;
  position: absolute;
  min-width: 100%;
  height: 0;
  margin: 0;
  left: 0;
  top: 100%;
  z-index: 1;
  padding: 0;
  border: inherit;
  border: var(--fsb-list-border);
  border-radius: inherit;
  border-radius: var(--fsb-list-radius);
  box-sizing: border-box;
  color: inherit;
  color: var(--fsb-list-color);
  background-color: inherit;
  background-color: var(--fsb-list-background);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  overflow: auto;
}

.fsb-top .fsb-list {
  top: auto;
  bottom: 100%;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.fsb-button[aria-expanded=true] + .fsb-list {
  height: auto;
  max-height: var(--fsb-list-height);
  visibility: visible;
  opacity: 1;
  border-radius: 10px;
}

.fsb-option {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-weight: 300;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fsb-option:not([aria-disabled=true]):focus {
  outline: none;
  color: var(--fsb-hover-color);
  background-color: var(--fsb-hover-background);
}

.fsb-option[aria-disabled=true] {
  opacity: var(--fsb-disabled-opacity);
}

.fsb-resize {
  display: block;
  height: 0;
  padding-right: 14px;
  padding-right: calc(var(--fsb-arrow-padding) * 2 + var(--fsb-arrow-size) - var(--fsb-padding-right));
  box-sizing: border-box;
}

.fsb-resize > * {
  display: block;
}

/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:where(:root) {
  line-height: 1.15;
  box-sizing: border-box;
}

:where(html) {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(main) {
  display: block;
}

:where(a) {
  background-color: transparent;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
}

:where(button, input, optgroup, select, textarea) {
  line-height: inherit;
  border: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

:where(button) {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  border-radius: 0;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 1px 6px;
  cursor: pointer;
}

:where(label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input) {
  overflow: visible;
  border-radius: 0;
}

:where(fieldset) {
  margin: 0;
  padding: 0;
  border: 1px solid currentcolor;
}

:where(legend) {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

:where(progress) {
  display: inline-block;
  vertical-align: baseline;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  overflow: auto;
  vertical-align: top;
}

:where([type=checkbox], [type=radio]) {
  box-sizing: border-box;
  padding: 0;
}

:where([type=search]) {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

:where([type=color]) {
  background: inherit;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled),
label:has(+ input:disabled)) {
  cursor: not-allowed;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

:where(hr) {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

:where(ol ol, ol ul, ol dl, ul ol, ul ul, ul dl, dl ol, dl ul, dl dl) {
  margin: 0;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(audio, video) {
  display: inline-block;
}

:where(audio):not([controls]) {
  display: none;
  height: 0;
}

:where(img) {
  border: 0;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg):not(:root) {
  overflow: hidden;
}

:where(table) {
  text-indent: 0;
  border-color: inherit;
}

:where(details) {
  display: block;
}

:where(dialog) {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog):not([open]) {
  display: none;
}

:where(summary) {
  display: list-item;
}

:where(canvas) {
  display: inline-block;
}

:where(template) {
  display: none;
}

:where([hidden]) {
  display: none;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* stylelint-disable */

/* stylelint-enable */

/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/

/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/

/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/

/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/

/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/

/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/

/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/

/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/

/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/

/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/

@font-face {
  font-family: "At Hauss Std";
  src: url("../fonts/athaussstd-thin.woff2") format("woff2"), url("../fonts/athaussstd-thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "At Hauss Std";
  src: url("../fonts/athaussstd-light.woff2") format("woff2"), url("../fonts/athaussstd-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "At Hauss Std";
  src: url("../fonts/athaussstd-medium.woff2") format("woff2"), url("../fonts/athaussstd-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "At Hauss Std";
  src: url("../fonts/athaussstd-retina.woff2") format("woff2"), url("../fonts/athaussstd-retina.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Oddval";
  src: url("../fonts/oddval-regular.woff2") format("woff2"), url("../fonts/oddval-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

html {
  min-height: 100vh;
  height: 100%;
  min-width: 320px;
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  color-scheme: dark light;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  background-color: #fff;
}

body.menu-active {
  overflow: hidden;
}

a,
button {
  transition: 0.2s;
}

button {
  cursor: pointer;
}

a {
  color: currentColor;
}

svg {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

img {
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img[draggable=false] {
  pointer-events: none;
  -webkit-user-drag: none;
}

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}

figure img,
picture img {
  width: 100%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

video {
  outline: none;
  width: 100%;
  height: 100%;
}

::-moz-selection {
  background-color: #e72a33;
  color: #e2f038;
}

::selection {
  background-color: #e72a33;
  color: #e2f038;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.page-wrapper:has(.decor) {
  overflow: clip;
}

.main {
  flex: 1 0 auto;
}

.main:has(.contact-us) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

body {
  display: flex;
  flex-direction: column;
}

.background-default {
  background-color: #fff;
  color: #000;
}

.background-muted {
  background-color: #7e7e7e;
  color: #000;
}

.background-primary {
  background-color: #e2f038;
  color: #fff;
}

.background-secondary {
  background-color: #e72a33;
  color: #fff;
}

.text-default {
  color: #fff;
}

.text-muted {
  color: #7e7e7e;
}

.text-primary {
  color: #e2f038;
}

.text-secondary {
  color: #e72a33;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.mt-0 {
  margin-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.full-width {
  width: 100% !important;
}

.overflow-hidden {
  overflow: hidden;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.visible-laptop {
  display: none;
}

.hidden-laptop {
  display: block;
}

.list-none {
  list-style-type: none;
}

.link-hover {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  text-align: center;
  justify-content: center;
}

.link-hover:focus:before,
.link-hover:hover:before {
  transform: translateX(0);
}

.link-hover:focus:after,
.link-hover:hover:after {
  background-position: 100% 50%;
}

.link-hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  height: 2px;
  width: 100%;
  background-color: #e2f038;
  transition: transform 0.5s;
}

.link-hover:after {
  content: "";
  flex-shrink: 0;
  transition: background-position 0.5s;
  width: 25px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='15' fill='none'%3E%3Cpath fill='%23D62028' d='M1 6.5a1 1 0 1 0 0 2v-2Zm23.294 1.707a1 1 0 0 0 0-1.414L17.931.429a1 1 0 1 0-1.415 1.414L22.173 7.5l-5.657 5.657a1 1 0 0 0 1.414 1.414l6.364-6.364ZM1 8.5h22.587v-2H1v2Z'/%3E%3C/svg%3E");
  background-position: -10px 50%;
  background-size: 28px 16px;
}

.mt-md {
  margin-top: 50px;
}

.mt-lg {
  margin-top: 120px;
}

.mb-md {
  margin-bottom: 50px;
}

.mb-lg {
  margin-top: 120px;
}

.has-ticker .header__inner {
  padding-top: 140px;
}

.contact-page .menu__item.menu__item-contact {
  background-color: #e2f038;
}

.contact-page .menu__item.menu__item-contact .menu__link {
  color: #000;
}

.contact-page .menu__item.menu__item-contact:focus,
.contact-page .menu__item.menu__item-contact:hover,
.contact-page .menu__item.menu__item-contact:active {
  background-color: #000;
}

.contact-page .menu__item.menu__item-contact:focus .menu__link,
.contact-page .menu__item.menu__item-contact:hover .menu__link,
.contact-page .menu__item.menu__item-contact:active .menu__link {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin-top: 0;
  word-break: break-word;
  color: inherit;
}

h1,
.h1 {
  font-size: 22px;
}

h2,
.h2 {
  font-size: 22px;
}

h3,
.h3 {
  font-size: 20px;
}

.h4 {
  font-size: 12px;
}

.h5 {
  font-size: 10px;
}

.h6 {
  font-size: 8px;
}

p {
  font-size: 18px;
}

[data-scrollspy] {
  opacity: 1;
}

.page-loaded .animate__animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.page-loaded .animate__animated[data-scrollspy=animate__fadeInDownBefore]::before {
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 75%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownMoon {
  from {
    opacity: 0;
    transform: translate3d(0, -15%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes displayIn {
  from {
    display: none;
    opacity: 0;
  }

  to {
    display: block;
    opacity: 1;
  }
}

.animate__displayIn {
  animation-name: displayIn;
  animation-duration: 0s;
}

@keyframes fadeInSplash {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.animate__fadeInSplash {
  animation-name: fadeInSplash;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-20px, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(20px, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__slideInRight {
  animation-name: slideInRight;
}

.animate__fadeInDownBefore:before {
  animation-name: fadeInDownMoon;
}

[data-scrollspy=animate__fadeInDownBefore]::before {
  opacity: 0;
}

.about-us {
  margin-bottom: 60px;
}

.about-us .container {
  position: relative;
}

.about-us .block-wrapper .wrapper-mid .wrapper__content {
  padding: 27px 13px 258px;
}

.about-us .block-wrapper .wrapper-mid .wrapper__line .line__block {
  background-repeat: repeat-y;
  background-image: url("../images/mobile-border-line-right.png");
  background-position: right;
  background-size: contain;
  height: 100px;
}

.about-us .block-wrapper .wrapper-mid .wrapper__line .line__block:last-of-type {
  height: calc(100% - 100px - 102px);
}

.about-us .block-wrapper .wrapper-mid .wrapper__line .line__mask {
  height: 102px;
  background-image: url("../images/mobile-border-curve-right.png");
  background-position: right;
  background-size: contain;
}

.about-us .block-wrapper .wrapper-mid .wrapper__line:last-of-type {
  background: transparent;
}

.about-us__content {
  width: 100%;
}

.about-us__header {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 4px;
  margin-bottom: 31px;
}

.about-us__header .about-us__header__line {
  width: 20px;
  height: 0px;
  border: 1px solid rgb(231, 42, 51);
}

.about-us__img {
  position: absolute;
  bottom: 1px;
  left: 20px;
  right: 0;
  width: calc(100% - 40px);
  max-width: 350px;
}

.about-us__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  margin: 0;
  text-align: left;
  margin-bottom: 40px;
}

.about-us__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-first-block {
  margin-top: 60px;
  margin-bottom: 60px;
}

.article-first-block__wrap {
  padding: 36px 39px 41px;
  position: relative;
  border-radius: 20px;
  background-color: #0a050f;
}

.article-first-block__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 752px;
  margin-inline: auto;
}

.article-first-block h1 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 23px;
  color: #fff;
}

.article-first-block__author,
.article-first-block__date {
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  padding-right: 60px;
}

.article-first-block__author {
  color: #e2f038;
  margin-bottom: 10px;
}

.article-first-block__date {
  color: #929292;
}

.article {
  padding-top: 40px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  word-break: break-word;
  font-size: 14px;
  font-weight: 300;
}

.article * {
  font-size: inherit;
}

.article ul {
  list-style-position: inside;
}

.article li {
  margin-bottom: 10px;
}

.article li::marker {
  font-size: 0.8rem;
}

.article__body {
  position: relative;
  max-width: 1000px;
  padding: 60px 72px;
}

.article__slider {
  max-width: 1000px;
  padding: 60px 0 72px;
}

.article__slider .slider-photo {
  z-index: 3;
  width: calc(100vw - 35px);
}

.article__slider .slider-photo__controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: static;
  margin-top: 70px;
}

.article__slider + .card-contact {
  margin-right: auto;
  margin-left: auto;
  max-width: 338px;
}

.aside {
  position: relative;
  height: 100%;
  border-radius: 40px;
  color: #fff;
  min-height: 390px;
}

.aside img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px;
}

.aside h3 {
  font-size: 24px;
  margin: 0;
  line-height: 1.4;
  margin-bottom: 14px;
}

.aside p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.aside__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 6, 48, 0.52) 0%, rgba(3, 0, 25, 0) 100%);
}

.aside .button {
  margin-top: auto;
  gap: 12px;
}

.section-video-aside .row {
  row-gap: 50px;
}

.badge {
  --badge-padding: 6px 10px 6px 22px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--badge-padding);
  background-color: #e2f038;
  color: #0a050f;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 12px 50%, 0% 0%);
  text-align: center;
}

.badge--card-news,
.badge--article-first-block,
.badge--card-news-and-stories {
  position: absolute;
  bottom: 19px;
  right: 0;
  width: 78px;
}

.badge--card-news .badge__wrap,
.badge--article-first-block .badge__wrap,
.badge--card-news-and-stories .badge__wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.badge--card-news-and-stories {
  bottom: 32px;
}

.badge--article-first-block {
  bottom: 45px;
}

.hero {
  margin-bottom: 60px;
}

.hero__block {
  width: 100%;
  max-width: 400px;
}

.hero__content {
  padding: 60px 40px 40px;
  background-size: cover;
  background-position: left 15% bottom 15%;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.hero__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #fff;
}

.hero__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 170%;
  color: #fff;
  margin-bottom: 30px;
}

.hero__text p {
  font-size: inherit;
  margin-top: 24px;
}

.block-news {
  --padding-left: 37px;
  --padding-right: 37px;
  --padding-top: 37px;
  --padding-bottom: 37px;
  z-index: 1;
  overflow: hidden;
}

.block-news h2 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
  letter-spacing: -3px;
  order: -2;
}

.block-news h3,
.block-news p,
.block-news__list,
.block-news p ~ * {
  grid-column: 1/-1;
}

.block-news h3 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 13px;
}

.block-news p {
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 0;
}

.block-news__list {
  width: calc(100% + 120px);
}

.block-news__left,
.block-news__right {
  display: contents;
}

.block-news__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-start;
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 20px;
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgb(255, 236, 236), rgba(255, 236, 236, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

.block-news--other-news {
  --padding-bottom: 12px;
}

.block-news--other-news .block-news__wrapper {
  align-items: baseline;
}

.block-news--other-news .section-title {
  order: -1;
  margin-bottom: 0;
}

.block-news--other-news p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.block-news--other-news .block-news__list {
  padding-block: 21px;
}

.block-news--other-news .block-news__wrapper {
  row-gap: 28px;
}

.block-news--fact-figures {
  --padding-left: 37px;
  --padding-right: 37px;
  --padding-top: 48px;
  --padding-bottom: 48px;
}

.block-news--fact-figures h2 {
  color: #e72a33;
  grid-column: 1/-1;
  letter-spacing: normal;
}

.block-news--fact-figures .block-news__list {
  padding-block: 16px;
  margin-top: 0;
}

.block-news--other-news .block-news__list {
  margin-inline: 0;
}

.block-wrapper {
  background: transparent;
}

.block-wrapper .wrapper-bot,
.block-wrapper .wrapper-top {
  width: 100%;
  height: 27px;
  background: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.block-wrapper .wrapper-bot .wrapper__radius {
  width: 27px;
  height: 100%;
  background-image: url("../images/mobile-border-bot-left.png");
  background-size: contain;
}

.block-wrapper .wrapper-bot .wrapper__radius:last-of-type {
  background-image: url("../images/mobile-border-bot-right.png");
}

.block-wrapper .wrapper-bot .wrapper__line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% - 54px);
  background-image: url("../images/mobile-border-line-bot.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

.block-wrapper .wrapper-mid {
  height: auto;
  min-height: 103px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-height: 203px;
}

.block-wrapper .wrapper-mid .wrapper__content {
  width: calc(100% - 54px);
}

.block-wrapper .wrapper-mid .wrapper__line {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 27px;
  background-image: url("../images/mobile-border-line-left.png");
  background-repeat: repeat-y;
  background-position: left;
  background-size: contain;
}

.block-wrapper .wrapper-mid .wrapper__line:last-of-type {
  background-image: url("../images/mobile-border-line-right.png");
  background-position: right;
}

.block-wrapper .wrapper-top .wrapper__radius {
  width: 27px;
  height: 100%;
  background-image: url("../images/mobile-border-top-left.png");
  background-size: contain;
}

.block-wrapper .wrapper-top .wrapper__radius:last-of-type {
  background-image: url("../images/mobile-border-top-right.png");
}

.block-wrapper .wrapper-top .wrapper__line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% - 54px);
  background-image: url("../images/mobile-border-line-top.png");
  background-repeat: repeat-x;
  background-position: top;
}

.button {
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  padding: 13px 30px 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: auto;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  text-align: center;
  background-color: #e2f038;
  color: #180901;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(243, 250, 159, 0.6);
}

.button:focus,
.button:hover,
.button:active {
  background-color: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(243, 250, 159, 0.6);
}

.button:focus .button__icon,
.button:hover .button__icon,
.button:active .button__icon {
  fill: currentColor;
}

.button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.button.icon-left .button__icon {
  left: 18px;
  transform: translateY(-50%) rotate(180deg);
}

.button--secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(42, 44, 81, 0.35);
  background: rgb(24, 9, 1);
  color: white;
}

.button--secondary:focus,
.button--secondary:hover,
.button--secondary:active {
  background-color: #e2f038;
  border-color: #e2f038;
  color: #000;
}

.button--secondary:focus .button__icon,
.button--secondary:hover .button__icon,
.button--secondary:active .button__icon {
  fill: currentColor;
}

.button__icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.button__icon-center {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.button--contact-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.button--page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 199px;
  -moz-column-gap: 43px;
  column-gap: 43px;
  box-shadow: 0px 4px 10px 0px rgba(42, 44, 81, 0.35);
}

.button--from-start-to-finish {
  -moz-column-gap: 21px;
  column-gap: 21px;
  margin-top: auto;
}

.button--block-hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-items: center;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}

.button.button--paginaton {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
  background-color: rgb(28, 28, 28);
  box-shadow: none;
  padding: 11px 0 11px;
  width: 39px;
  height: 39px;
  border-radius: 10px;
  text-align: center;
}

.button.button--paginaton-active {
  color: #000;
  background-color: #e2f038;
}

.button.button--paginaton-arrow {
  padding: 0;
  padding-block: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e2f038;
}

.card-employee {
  height: 182px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  width: 182px;
}

.card-employee:hover .card-employee__detail {
  opacity: 1;
}

.card-employee__detail {
  opacity: 0;
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: #000;
  transition: opacity 0.25s ease-in-out;
}

.card-employee__detail h3 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #e2f038;
}

.card-employee__detail p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.card-employee__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-employee__flag {
  width: 56px;
  height: 56px;
  position: absolute;
  bottom: 11px;
  left: 11px;
  border-radius: 50%;
  overflow: hidden;
}

.card-news {
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #0a050f;
  color: #fff;
  padding: 30px 30px 28px;
  max-width: 234px;
  min-height: 212px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}

.card-news h4 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 25px;
}

.card-news p:last-child {
  margin-bottom: 0;
}

.card-news > .link {
  margin-top: auto;
}

.card-news--fact-figures h4 {
  font-weight: 400;
  margin-bottom: 12px;
  color: #e2f038;
}

.card-news--fact-figures h4 b {
  display: block;
  font-weight: 600;
}

.card {
  max-width: 405px;
  padding: 25px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.0784313725);
  background-color: #fff;
}

.card h3 {
  font-weight: 500;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 40px;
}

.card p {
  font-size: 15px;
}

.card--contact {
  background-color: #e2f038;
  color: #fff;
}

.card--contact h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card--contact p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 300;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
}

.card--contact b {
  font-weight: 300;
  font-size: 18px;
}

.card--contact__section {
  margin-top: 50px;
}

.card--contact__section a {
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.card--contact__section a:focus,
.card--contact__section a:hover {
  border-bottom: 1px solid transparent;
}

.card__body {
  padding: 24px 40px;
}

.card__footer {
  padding-top: 42px;
}

.card-aside {
  max-width: 480px;
  padding: 52px;
}

.card-contact {
  z-index: 4;
  width: 334px;
  padding: 35px;
  box-shadow: 0px 4px 46.7px 0px rgba(214, 32, 40, 0.3019607843);
}

.card-contact h3 {
  font-weight: 500;
}

.card-contact .card__footer {
  padding-right: 0;
  padding-left: 0;
}

.card.card--service {
  display: block;
  background-color: #fff;
  padding: 0;
  text-decoration: none;
  box-shadow: 0px 4px 46.7px 10px rgba(0, 0, 0, 0.1);
}

.card.card--service:focus .card__body,
.card.card--service:hover .card__body {
  background-color: #e2f038;
  color: #fff;
}

.card.card--service:focus h3,
.card.card--service:hover h3 {
  color: #fff;
}

.card.card--service h3 {
  font-size: 20px;
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  margin-bottom: 0;
  color: #e2f038;
  transition: color 0.2s;
}

.card.card--service p {
  font-weight: 300;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  transition: color 0.2s;
}

.card.card--service .card__body {
  background-color: #fff;
  transition: background-color 0.2s;
}

.checkbox {
  display: flex;
}

.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkbox-input:focus ~ .checkbox-box:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.checkbox-input ~ .checkbox-box {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.checkbox-input ~ .checkbox-box:before {
  content: "";
  position: relative;
  top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #000;
}

.checkbox-input:checked ~ .checkbox-box:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #000;
}

.contact-us {
  position: relative;
  --padding-top-image: 97px;
  --height-bg-img: 571px;
  --object-position-offset: -84px;
  background-color: #000;
}

.contact-us__wrap {
  margin-inline: calc(var(--container-padding) * -1);
  padding-inline: var(--container-padding);
  position: relative;
  overflow: clip;
  min-height: var(--height-bg-img);
  padding-top: var(--padding-top-image);
  isolation: isolate;
  margin-top: calc(var(--padding-top-image) * -1 + 11px);
}

.contact-us__wrapper {
  padding: 208px 38px 20px 38px;
  color: #fff;
  position: relative;
  overflow: clip;
  border-radius: 20px;
  clip-path: path("M -3000 0 L 0 0 L 126.05 0 C 152.07 1.93 178.39 10.28 205.18 25.22 L 219.08 0 L 3000 0 V 1000 H -3000 Z");
}

.contact-us .section-title,
.contact-us p {
  margin-bottom: 28px;
}

.contact-us h3 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 19px;
  max-width: 140px;
}

.contact-us p {
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  margin: 0;
  margin-bottom: 28px;
  max-width: 210px;
}

.contact-us__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -2;
}

.contact-us__bg-wrap::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 488px;
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 19.267%, rgba(255, 255, 255, 0.95) 29.687%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-us__bg {
  width: 850px;
  height: var(--height-bg-img);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: min(0px, calc(var(--object-position-offset) + 100vw - 390px));
  object-position: min(0px, calc(var(--object-position-offset) + 100vw - 390px));
  max-width: initial;
  pointer-events: none;
}

.contact-us__bg--inner {
  position: absolute;
  top: calc(var(--padding-top-image) * -1);
  left: calc(var(--container-padding) * -1);
  z-index: -1;
  -webkit-mask-image: linear-gradient(180deg, black 96%, transparent);
  mask-image: linear-gradient(180deg, black 96%, transparent);
}

.contact-us--moon .contact-us__wrap::before,
.contact-us--sun .contact-us__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height-bg-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: min(0px, calc(var(--object-position-offset) + 100vw - 390px));
  z-index: 1;
  pointer-events: none;
}

.contact-us--moon .contact-us__wrap::before {
  background-image: url("../images/moon.webp");
}

.contact-us--sun .contact-us__wrap::before {
  background-image: url("../images/sun.webp");
}

.contact-us--local {
  --object-position-offset: -19px;
}

.contact-us--local .contact-us__letter {
  display: none;
}

.contact-us--services {
  --object-position-offset: -195px;
}

.contact-us--services .contact-us__letter {
  display: none;
}

.contact-us--about {
  --object-position-offset: -200px;
}

.contact-us--about .contact-us__wrap {
  margin-top: calc(var(--padding-top-image) * -1 + 25px);
}

.contact-us--aside {
  margin-top: 50px;
}

.contact-us--aside .contact-us__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-us--aside .contact-us__wrapper > *:not(img) {
  max-width: 200px;
}

.contact-us--aside .contact-us__wrapper > .contact-us__form {
  width: 100%;
  max-width: 710px;
}

*:has(+ .contact-us) {
  z-index: 1;
}

.contact-us__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
}

.contact-us__letter {
  position: absolute;
  right: 21%;
  z-index: 1;
  width: 64px;
  top: 26%;
  animation-delay: 1.5s;
}

.contact-us--aside .contact-us__letter {
  top: 15%;
}

.contact-us__gradient::after {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: calc(100% + 80px);
  height: 65%;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 75%, transparent 100%);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.contact-us__bg-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 21%, rgb(0, 0, 0) 38%, rgba(0, 0, 0, 0.5) 55%, transparent 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-us__wrapper p,
.contact-us__wrapper h3,
.contact-us__wrapper .section-title,
.contact-us__wrapper .button {
  z-index: 112;
  position: relative;
}

:root {
  --container-max-width: 1410px;
}

.container {
  width: 100%;
  margin-inline: auto;
  max-width: calc(var(--container-padding) * 2 + var(--container-max-width));
  padding-inline: var(--container-padding);
}

.container-sm {
  --container-max-width: 1190px;
}

.container-lg {
  --container-max-width: 1920px;
}

.container-text {
  --container-max-width: 752px;
}

.container--fluid {
  max-width: 100%;
}

.content {
  margin-bottom: 70px;
}

.content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 27px;
}

.content p:last-child {
  margin-bottom: 0;
}

.decor {
  position: relative;
  overflow: clip;
}

.decor::before {
  content: "";
  position: absolute;
  top: -74px;
  left: -84px;
  width: calc(100% + 199px);
  height: auto;
  background-image: url("../images/bg-page-m.png");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 589/296;
}

.decor--page-header {
  overflow: initial;
}

.decor--page-header::before {
  top: calc(100% - 100px);
  z-index: -1;
}

.decor--page-header + * {
  z-index: 1;
  position: relative;
}

.decor--desktop:before {
  display: none;
}

.footer {
  background-color: #000;
  color: #fff;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.footer__adress {
  padding-bottom: 20px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
}

.footer__contacts a {
  text-decoration: none;
}

.footer__divider {
  width: calc(100% - 76px);
  height: 0px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  margin: 24px 0 30px;
}

.footer__logo {
  padding-bottom: 32px;
}

.footer__text {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: rgb(255, 255, 255);
}

.footer__text-grey {
  color: rgba(255, 255, 255, 0.5);
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-contact label {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-contact__inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.form-cv {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-cv__inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-cv__upload {
  display: flex;
  justify-content: center;
}

.form-control {
  display: inline-block;
  position: relative;
  width: 100%;
}

.form-control input,
.form-control textarea {
  width: 100%;
}

.form-control.icon-left .form-icon {
  left: 0;
}

.form-control.icon-left .input {
  padding-left: 62px;
}

.form-control.icon-right .form-icon {
  right: 0;
}

.form-control.icon-right .input {
  padding-right: 62px;
}

.form-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-group .label {
  display: block;
  width: 100%;
}

.form-icon {
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  background: none;
  border: 0;
}

.form--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form--contact .button {
  padding-right: 62px;
  padding-left: 62px;
  margin-right: auto;
  margin-left: auto;
}

.form--contact .form-group {
  display: flex;
  width: 100%;
}

.form--contact + .card--contact {
  margin: 80px auto 0;
}

.from-start-to-finish {
  margin-block: 39px 32px;
}

.from-start-to-finish__content,
.from-start-to-finish__banner {
  min-height: min(calc(390px + (100vw - 390px) / 2), 516px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 34px 40px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-bottom: 32px;
}

.from-start-to-finish__content::before,
.from-start-to-finish__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 117px);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 90%, rgba(0, 0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}

.from-start-to-finish__content p,
.from-start-to-finish__banner p {
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
}

.from-start-to-finish__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}

.from-start-to-finish h2 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 14px;
  max-width: 145px;
}

.from-start-to-finish p {
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 232px;
}

.from-start-to-finish p:last-child {
  margin-bottom: 0;
}

.from-start-to-finish__swiper {
  overflow: hidden;
  width: 100%;
}

.from-start-to-finish .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 9px;
}

.from-start-to-finish .swiper-pagination-bullet {
  width: 27px;
  height: 1px;
  position: relative;
  color: #e72a33;
  background-color: currentColor;
  flex-shrink: 0;
}

.from-start-to-finish .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: 4px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}

.from-start-to-finish .swiper-pagination-bullet.swiper-pagination-bullet {
  margin-inline: 0;
}

.from-start-to-finish .swiper-pagination-bullet-active::before {
  opacity: 1;
}

.step {
  --padding-top: 26px;
  padding: var(--padding-top, 26px) 20px 20px 39px;
  position: relative;
}

.step__number,
.step h3 {
  font-size: 18px;
  line-height: 29px;
}

.step__number {
  color: #e72a33;
  position: absolute;
  left: 0;
  top: var(--padding-top, 26px);
}

.step h3 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin-bottom: 11px;
}

.step p {
  font-size: 16px;
  line-height: 27px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.header {
  display: flex;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.header:has(+ main .page-header) {
  background: linear-gradient(111.69deg, rgb(243, 247, 255) -60.944%, rgb(255, 246, 252) -12.215%, rgb(255, 243, 243) 36.514%, rgb(255, 239, 235) 85.243%);
}

.header:has(.menu--open) {
  background: linear-gradient(111.69deg, rgb(243, 247, 255) -60.944%, rgb(255, 246, 252) -12.215%, rgb(255, 243, 243) 36.514%, rgb(255, 239, 235) 85.243%);
  background-color: #fff0ee;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 26px;
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  transition: none;
  width: 141px;
  height: 35px;
}

.header__menu-toggle {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 18px 30px;
  min-width: 154px;
  box-shadow: 0px 4px 30px 0px rgba(42, 44, 81, 0.15);
  max-height: 51px;
}

.help {
  margin-top: 90px;
  margin-bottom: 50px;
}

.help .container {
  position: relative;
}

.help .wrapper-mid .wrapper__content {
  padding: 13px 13px 320px;
}

.help .wrapper-mid .wrapper__line .line__block {
  background-repeat: repeat-y;
  background-image: url("../images/mobile-border-line-right.png");
  background-position: right;
  background-size: contain;
  height: 100px;
}

.help .wrapper-mid .wrapper__line .line__block:last-of-type {
  height: calc(100% - 100px - 102px);
}

.help .wrapper-mid .wrapper__line .line__mask {
  height: 102px;
  background-image: url("../images/mobile-border-curve-right.png");
  background-position: right;
  background-size: contain;
}

.help .wrapper-mid .wrapper__line:last-of-type {
  background: transparent;
}

.help__content {
  width: 100%;
}

.about-us__header {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 4px;
  margin-bottom: 31px;
}

.about-us__header .about-us__header__line {
  width: 20px;
  height: 0px;
  border: 1px solid rgb(231, 42, 51);
}

.help__img {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: calc(100% - 46px);
  max-width: 270px;
}

.help__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.help__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  margin: 0;
  text-align: left;
  margin: 0;
}

.help__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.input-file {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  background-color: transparent;
  border-radius: 10px;
  color: #e72a33;
  transition-duration: 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Crect width='100%' height='271' x='.10' y='.5' stroke='%23E72A33' stroke-dasharray='10 10' rx='10'/%3E%3C/svg%3E");
  height: 272px;
  width: 100%;
  text-align: center;
}

.input-file:focus .input-file__hint,
.input-file:hover .input-file__hint,
.input-file:active .input-file__hint {
  opacity: 1;
}

.input-file__hint {
  position: absolute;
  bottom: 24px;
  opacity: 0;
  max-width: 130px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  color: #757575;
  text-transform: none;
  transition: opacity 0.2s;
}

.input-file__icon svg {
  width: 36px;
  height: 45px;
  fill: none;
  stroke: #e72a33;
}

.input-file__name {
  max-width: 122px;
  margin: 0 auto;
  overflow: hidden;
  word-break: break-all;
  max-height: 84px;
}

.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #e72a33;
  padding: 14px 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
  transition-property: border-color;
  transition-duration: 0.2s;
}

.input:focus,
.input:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.input:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.input:active {
  border-color: rgba(255, 255, 255, 0.5);
}

.input[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.input::-moz-placeholder {
  font-weight: 300;
  -moz-transition: 0.2s;
  transition: 0.2s;
  color: #7e7e7e;
}

.input::placeholder {
  font-weight: 300;
  transition: 0.2s;
  color: #7e7e7e;
}

.input--default {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.input--default:focus,
.input--default:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.input--default::-moz-placeholder {
  color: #fff;
}

.input--default::placeholder {
  color: #fff;
}

.job {
  border-top: 1px solid #e72a33;
  padding-top: 16px;
  padding-bottom: 48px;
  font-size: 16px;
  font-weight: 300;
}

.job h3 {
  font-size: 16px;
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #e72a33;
}

.job h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
}

.job b,
.job strong {
  font-weight: 500;
  font-size: 18px;
}

.job p {
  font-size: 16px;
  margin-bottom: 24px;
}

.job p:not(:last-of-type) {
  margin-bottom: 24px;
}

.job ul {
  margin: 0 0 0 8px;
  padding: 0 0 0 16px;
}

.job ul li::before {
  content: "";
  margin-left: -3px;
}

.label {
  display: block;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 2px;
}

.link {
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 20px;
  column-gap: 20px;
  color: currentColor;
}

.link span {
  text-decoration: underline;
  text-underline-position: under;
}

.link__icon-right {
  width: 12px;
  height: 12px;
}

.link--small {
  font-size: 14px;
  line-height: 16px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.link--small:focus svg,
.link--small:hover svg {
  transform: translate(6px);
}

.link--small svg {
  transition: all 0.25s ease-in-out;
}

.link--secondary {
  color: #e72a33;
}

.link--primary {
  color: #e2f038;
}

.link--all-news {
  margin-top: 8px;
  margin-left: auto;
  order: -1;
}

.list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  font-size: 20px;
}

.list.list--services {
  gap: 30px;
  line-height: 1;
  font-size: 15px;
}

.list.list--services li {
  font-weight: 400;
}

.list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 200;
}

.list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8.5px 14px;
  border-color: transparent transparent #e2f038;
  transform: rotate(90deg);
}

.background-primary .list li::before {
  border-color: transparent transparent #fff;
}

.local-teams {
  margin-bottom: 80px;
}

.local-teams h2 {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 50px;
}

.local-teams__list {
  display: flex;
  overflow: auto hidden;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-inline: calc(var(--container-padding) * -1);
  padding-inline: var(--container-padding);
  scrollbar-width: none;
}

.local-teams__list::-webkit-scrollbar {
  display: none;
}

:root {
  --not-active: #F9E9EA;
  --color-active: #e72a33;
  --color-hover: #e72a33;
  --color-stroke: white;
}

svg#Africa {
  height: 100%;
  width: inherit;
  max-width: 456px;
  margin: 0 auto;
}

svg#Africa path:focus,
svg#Africa path:active {
  outline: none;
}

svg#Africa [data-template] {
  fill: var(--not-active);
}

svg#Africa [data-template]:hover,
svg#Africa [data-template].is-hover {
  cursor: pointer;
  fill: var(--color-hover);
}

.inland {
  fill: var(--not-active);
  stroke: var(--color-stroke);
  stroke-width: 2;
  stroke-miterlimit: 3.9745;
  transition: all 0.3s;
}

.island {
  fill: var(--not-active);
  stroke: var(--color-stroke);
  stroke-width: 0.3;
  stroke-miterlimit: 3.9745;
  transition: all 0.7s;
}

.active-country .inland,
.active-country .island {
  fill: var(--color-active);
}

.st2 {
  fill: green;
  fill-opacity: 0;
}

.tippy-box {
  font-size: 15px;
  font-weight: 300;
  padding: 15px 25px;
  background-color: #e72a33;
  color: #fff;
}

.tippy-box b,
.tippy-box strong,
.tippy-box h3,
.tippy-box h4,
.tippy-box h5,
.tippy-box h6 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.tippy-box ul {
  list-style-position: inside;
}

.menu-toggle__text {
  display: none;
  position: absolute;
  top: calc(50% - 8px);
  right: 70px;
  color: #fff;
}

.menu-active .menu-toggle__text {
  display: block;
}

.menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: inherit;
  height: inherit;
  padding: 0;
  background: none;
  border: 0;
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
  outline: none;
}

.menu-active .menu-toggle {
  z-index: 10;
  position: relative;
  display: flex;
}

.menu-icon {
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}

.menu-icon:focus .menu-icon__line:nth-child(3),
.menu-icon:active .menu-icon__line:nth-child(3) {
  width: 21px;
}

.menu-toggle:not(.active) .menu-icon {
  height: 12px;
}

.menu-icon .menu-icon__line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: red;
  border-radius: 50px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}

.menu-icon .menu-icon__line:nth-child(1) {
  top: -1px;
  width: 21px;
}

.menu-icon .menu-icon__line:nth-child(2) {
  top: 6px;
  left: 4px;
  width: 12px;
}

.menu-icon .menu-icon__line:nth-child(3) {
  top: 13px;
  left: 2px;
  width: 17px;
}

.menu-toggle.active .menu-icon__line:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.active .menu-icon__line:nth-child(2) {
  display: none;
  opacity: 0;
}

.menu-toggle.active .menu-icon__line:nth-child(3) {
  top: 10px;
  left: -0.5px;
  transform: rotate(-135deg);
  width: 21px;
}

.menu {
  z-index: 10;
  position: fixed;
  top: 117px;
  left: 0;
  width: 100%;
  max-height: calc(100% - 117px);
  display: flex;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  height: 100%;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  background: linear-gradient(111.69deg, rgb(243, 247, 255) -60.944%, rgb(255, 246, 252) -12.215%, rgb(255, 243, 243) 36.514%, rgb(255, 239, 235) 85.243%);
  padding: 0 39px 39px;
}

.has-ticker .menu {
  top: 180px;
}

.menu__lang {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
}

.menu__lang li:not(:last-child)::after {
  margin-right: 12px;
  margin-left: 12px;
}

.menu--closed {
  position: fixed;
  transform: translateX(-100%);
  height: 100%;
  width: 100%;
  color: #000;
}

.menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 32px;
  text-align: center;
  background-color: #fff;
  padding: 51px 20px 20px;
  clip-path: path("M 193.86 18.53C173.44 7.83 153.29 1.77 133.4 0 L0 0-3000 0 V 1000 H 3000 V 0 L 204.52 0 Z");
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(42, 44, 81, 0.15);
  width: 100%;
  overflow-y: auto;
}

.menu__list::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.menu-active .menu__list {
  display: flex;
  width: 100%;
  max-width: 1920px;
}

.menu__list .menu__list {
  display: none;
}

.menu-active .menu__list .menu__list {
  -moz-column-count: 1;
  column-count: 1;
  padding-top: 30px;
  margin-bottom: -30px;
}

.menu__link {
  z-index: 1;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.5px;
  background: none;
  border: 0;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: black;
}

.menu__link:focus,
.menu__link:hover,
.menu__link:active,
.menu__link.active {
  color: #e72a33;
}

.menu__link.active + .menu__list.active {
  display: block;
}

.menu__link.active {
  color: #e72a33;
}

.menu__item--submenu > a.menu__link {
  display: none;
}

.menu.menu--open {
  position: fixed;
  transform: translateX(0);
  transition-property: all;
  transition-duration: 0.4s;
}

.menu.menu--open .menu__item--submenu > a.menu__link {
  display: none;
}

.menu.menu--open .menu__item--submenu > button.menu__link {
  display: block;
  margin: 0 auto;
}

.menu__item-contact {
  background: #000;
  padding: 20px 0;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

.menu__item-contact .menu__link {
  color: #fff;
}

.menu__item-contact:hover {
  color: #e2f038;
}

.menu__item-contact:hover .menu__link {
  color: #e2f038;
}

.menu__item-contact:hover svg {
  opacity: 1;
  fill: currentColor;
}

.menu__item-contact svg {
  opacity: 0;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  transition-property: opacity;
  transition-duration: 0.2s;
}

.menu__item-contact .menu__link {
  line-height: 18px;
  border-bottom: none;
}

.menu__text {
  color: #000;
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.menu__text-active {
  display: block;
}

.navbar__link {
  font-weight: 600;
  text-decoration: none;
}

.navbar__link:focus,
.navbar__link:hover,
.navbar__link:active {
  color: #e2f038;
}

.navbar__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  gap: 32px;
}

.news-and-stories {
  z-index: 1;
  margin-top: 27px;
  margin-bottom: 100px;
}

.news-and-stories .news-and-stories__header {
  text-align: center;
  margin-bottom: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.news-and-stories .news-and-stories__header .news-and-stories__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 140%;
  color: #e72a33;
}

.news-and-stories .news-and-stories__header .news-and-stories__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  padding: 0 49px;
}

.news-and-stories .news-and-stories__content-news {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 33px;
}

.news-and-stories .news-and-stories__content-news .content-news__content-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 42px;
}

.news-and-stories .news-and-stories__content-news .content-news__pagination {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.news-card {
  position: relative;
  padding: 36px 40px 40px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 40px;
  width: 100%;
  text-decoration: none;
}

.news-card__author {
  font-size: 13px;
  font-weight: 500;
  color: #e2f038;
}

.news-card__date {
  color: rgb(146, 146, 146);
  font-size: 13px;
  font-weight: 500;
}

.news-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card__link {
  color: #e2f038;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  -moz-column-gap: 30px;
  column-gap: 30px;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
}

.news-card__ribbon {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 12px 50%, 0% 0%);
  background-color: #e2f038;
  width: 78px;
  color: #000;
}

.news-card__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  text-align: left;
  margin: 0;
}

.news-card__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
  text-align: left;
}

.news-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style-type: none;
  gap: 40px;
}

.news-list__item {
  box-shadow: 0px 4px 46.7px 0px rgba(0, 0, 0, 0.1490196078);
}

.our-services {
  width: 100%;
  height: auto;
  background-image: linear-gradient(0deg, rgb(24, 9, 1) 41.5%, rgba(24, 9, 1, 0) 55%), url("../images/our-services.jpg");
  background-repeat: no-repeat;
  background-size: cover, 150vh;
  background-position: center center, 75% 0;
  padding-top: 250px;
  padding-bottom: 100px;
  border-radius: 0px 0px 20px 20px;
  margin-top: -40px;
  margin-bottom: 60px;
  overflow: hidden;
}

.our-services .container {
  position: relative;
}

.our-services__header,
.our-services__title,
.our-services__desc {
  color: #fff;
}

.our-services__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  margin-bottom: 38px;
  margin-top: 0;
}

.our-services__desc br {
  display: none;
}

.our-services__swiper-slide {
  height: 100%;
  border-radius: 12px;
  border: 1px solid #e2f038;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: #e2f038;
  font-size: 16px;
  font-weight: 400;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
}

.our-services__slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.our-services__slider .swiper-slide {
  width: 240px;
  height: 110px;
}

.out-services__slider-block {
  position: relative;
  margin-bottom: 27px;
}

.out-services__slider-block .swiper-pagination {
  top: 50%;
  left: -40px;
  width: calc(100% + var(--container-padding) * 2);
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.out-services__slider-block .swiper-pagination button {
  background: transparent;
  width: 100%;
  height: 100%;
}

.out-services__slider-block .swiper-pagination button svg {
  width: 20px;
  height: 20px;
  fill: #e72a33;
}

.out-services__slider-block .mask {
  height: 148px;
  display: flex;
  align-items: center;
  width: 78px;
}

.out-services__slider-block .mask:has(.swiper-button-disabled) {
  opacity: 0;
  width: 0px;
}

.out-services__slider-block .mask-left {
  background: linear-gradient(91.17deg, rgb(24, 9, 1) 36.313%, rgba(24, 9, 1, 0) 45.205%);
  padding-right: 35px;
}

.out-services__slider-block .mask-right {
  justify-content: end;
  background: linear-gradient(91.17deg, rgba(24, 9, 1, 0) 2.795%, rgb(24, 9, 1) 63.687%);
  padding-left: 35px;
}

.our-services__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
  margin-bottom: 19px;
}

.our-services__letter {
  position: absolute;
  top: -12%;
  right: -7%;
  width: 162px;
  animation-duration: 2s;
}

.our-services__sun {
  position: absolute;
  top: -245px;
  left: -175px;
  width: 409px;
  animation-duration: 2s;
}

.page-header {
  z-index: 2;
  width: 100%;
  position: relative;
}

.page-header__bot {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 18px;
}

.page-header__bot div {
  background-color: #fff0ee;
}

.page-header__bot__left {
  height: 100%;
  width: calc(55% - 35px);
  border-bottom-left-radius: 20px;
  background: linear-gradient(111.69deg, rgb(243, 247, 255) -60.944%, rgb(255, 246, 252) -12.215%, rgb(255, 243, 243) 36.514%, rgb(255, 239, 235) 85.243%);
}

.page-header__bot__right {
  width: calc(45% - 35px);
  border-bottom-right-radius: 20px;
}

.page-header__desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 170%;
}

.page-header__mask {
  height: 102%;
  width: 72px;
  -webkit-mask-image: url("../images/page-header-path.svg");
  mask-image: url("../images/page-header-path.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: 101%;
  mask-size: 101%;
}

.page-header__subheader {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 25px;
}

.page-header__subheader span {
  font-weight: 500;
  color: #e72a33;
}

.page-header__title {
  font-size: 24px;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif, sans-serif;
  line-height: 1.4;
  font-weight: 300;
  color: #e72a33;
  margin-bottom: 4px;
}

.page-header__top {
  background: linear-gradient(111.69deg, rgb(243, 247, 255) -60.944%, rgb(255, 246, 252) -12.215%, rgb(255, 243, 243) 36.514%, rgb(255, 239, 235) 85.243%);
  padding-top: 10px;
  padding-bottom: 45px;
}

.page-header__top .container .button {
  background-color: #000;
  color: #fff;
}

.page-header__top .container .button:hover {
  color: #e2f038;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

.pagination--current {
  color: #000;
}

.pagination__link {
  display: block;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

.pagination__link:focus,
.pagination__link:hover,
.pagination__link:active {
  color: #e2f038;
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style-type: none;
}

.pagination__list a {
  text-decoration: none;
}

.pagination__next:focus,
.pagination__next:hover,
.pagination__next:active,
.pagination__prev:focus,
.pagination__prev:hover,
.pagination__prev:active {
  color: #e2f038;
}

.radio {
  display: flex;
}

.radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-input:focus + .radio-box:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.radio-input ~ .radio-box {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.radio-input ~ .radio-box:before {
  content: "";
  position: relative;
  top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #000;
}

.radio-input:checked ~ .radio-box:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
}

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

.section-jobs__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-jobs__aside {
  width: 100%;
  margin: 0;
}

.section-jobs__aside h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
}

.section-jobs__list {
  width: 100%;
  margin-top: 13px;
}

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

.section-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 18px;
  column-gap: 18px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 4px;
}

.section-title:before {
  content: "";
  width: 20px;
  height: 2px;
  margin-top: -3px;
  background-color: rgb(231, 42, 51);
}

.section-accent {
  --padding-left: 37px;
  --padding-right: 37px;
  --padding-top: 37px;
  --padding-bottom: 37px;
}

.section-accent-wrap {
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgb(255, 236, 236), rgba(255, 236, 236, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .swiper-slide h2,
.slider-thumbs .swiper-slide h2 {
  text-align: center;
}

.slider .swiper-slide img,
.slider-thumbs .swiper-slide img {
  margin-right: auto;
  margin-left: auto;
}

.swiper-button-prev,
.swiper-button-next,
.pagination__prev,
.pagination__next {
  margin-top: 0;
  position: static;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background-color: #e2f038;
}

.swiper-button-prev svg,
.swiper-button-next svg,
.pagination__prev svg,
.pagination__next svg {
  fill: #fff;
}

.background-primary .swiper-button-prev,
.background-primary .swiper-button-next,
.background-primary .pagination__prev,
.background-primary .pagination__next {
  background-color: #fff;
}

.background-primary .swiper-button-prev svg,
.background-primary .swiper-button-next svg,
.background-primary .pagination__prev svg,
.background-primary .pagination__next svg {
  fill: #e2f038;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover,
.pagination__prev:focus,
.pagination__prev:hover,
.pagination__next:focus,
.pagination__next:hover {
  opacity: 0.7;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled,
.pagination__prev.disabled,
.pagination__next.disabled {
  background-color: #7e7e7e;
  opacity: 1;
}

.swiper-button-prev.swiper-button-disabled svg,
.swiper-button-next.swiper-button-disabled svg,
.pagination__prev.disabled svg,
.pagination__next.disabled svg {
  fill: #e2f038;
}

.background-primary .swiper-button-prev.swiper-button-disabled,
.background-primary .swiper-button-next.swiper-button-disabled,
.background-primary .pagination__prev.disabled,
.background-primary .pagination__next.disabled {
  background-color: #780000;
}

.background-primary .swiper-button-prev.swiper-button-disabled svg,
.background-primary .swiper-button-next.swiper-button-disabled svg,
.background-primary .pagination__prev.disabled svg,
.background-primary .pagination__next.disabled svg {
  fill: #fff;
}

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

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  margin: 0;
}

.swiper-pagination-bullet {
  opacity: 1;
  width: 14px;
  height: 14px;
  background: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 8px;
  margin-left: 8px;
}

.swiper-pagination-bullet-active {
  background: #e2f038;
}

.slider-photo .swiper-slide img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.0784313725);
}

.slider-product {
  max-width: 743px;
  width: calc(100% + 100px);
  margin-right: -50px !important;
  margin-left: -50px !important;
  padding-right: 50px;
  padding-left: 50px;
  margin-bottom: 0;
}

.slider-product + .swiper-pagination {
  z-index: 1;
  margin-bottom: 15px;
}

.slider-product .swiper-slide {
  height: auto;
}

.slider-product .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider-clients {
  height: 250px;
  padding: 24px 36px;
}

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

.slider-teams {
  margin-right: -40px;
  margin-left: -40px;
  padding-right: 40px;
  padding-left: 40px;
}

.slider-news .swiper-slide {
  height: auto;
}

.slider-news .swiper-slide .card-news {
  max-width: 400px;
}

.slider-facts .swiper-slide {
  height: auto;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #e72a33;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -9px;
  left: 0;
  border-width: 12px 12px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -9px;
  left: 0;
  border-width: 0 12px 12px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 12px 0 12px 12px;
  border-left-color: initial;
  right: -9px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -9px;
  border-width: 12px 12px 12px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #e72a33;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.textarea {
  font-size: 16px;
  font-weight: 300;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
  transition-property: border-color;
  transition-duration: 0.2s;
  resize: none;
}

.textarea:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.textarea:focus,
.textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.textarea[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.textarea--default {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.textarea--default:focus,
.textarea--default:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.textarea--default::-moz-placeholder {
  color: #fff;
}

.textarea--default::placeholder {
  color: #fff;
}

.video {
  position: relative;
  height: 100%;
}

.video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(28, 28, 28, 0.2);
}

.video__file {
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.video__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  bottom: 20px;
  left: 40px;
  padding-right: 20px;
  color: #fff;
  margin: 0;
  max-width: 200px;
}

.video-vimeo {
  position: relative;
  width: 100%;
}

.video-vimeo > div:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(28, 28, 28, 0.2);
}

.video-vimeo iframe {
  width: 100%;
  border: 0;
  height: 300px;
  border-radius: 20px;
}

.video-vimeo__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-vimeo__play svg {
  width: 50px;
  height: 50px;
}

.where-we-operate {
  padding-top: 90px;
  padding-bottom: 70px;
}

.where-we-operate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 100%;
  background-image: url(../images/africa-bg-mobile.png);
  background-size: 390px;
  background-position: -20px -95px;
  background-repeat: no-repeat;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.where-we-operate .where-we-operate__content .where-we-operate__text {
  color: #000;
  font-family: "At Hauss Std", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
}

.where-we-operate .where-we-operate__content .where-we-operate__text p {
  margin: 0;
  font-size: inherit;
}

.where-we-operate .where-we-operate__content .where-we-operate__text ul {
  margin-left: 20px;
  font-size: inherit;
}

.where-we-operate .where-we-operate__content .where-we-operate__title {
  font-family: "Oddval", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.where-we-operate .wrapper-mid .wrapper__content {
  z-index: 1;
  position: relative;
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.where-we-operate .wrapper-mid .wrapper__line {
  background-image: none;
}

.where-we-operate .wrapper-mid .wrapper__line:first-child .line__block {
  background-image: url("../images/mobile-border-line-left.png");
  background-repeat: repeat-y;
  background-position: left;
  background-size: contain;
}

.where-we-operate .wrapper-mid .wrapper__line:first-child .line__block:first-child {
  height: 189px;
}

.where-we-operate .wrapper-mid .wrapper__line:first-child .line__block:last-child {
  height: calc(100% - 102px - 189px);
}

.where-we-operate .wrapper-mid .wrapper__line:first-child .line__mask {
  height: 102px;
  background-image: url("../images/mobile-border-curve-left.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.where-we-operate__map {
  width: calc(100% + 240px);
  margin: -75px -120px 0;
}

.where-we-operate__map > svg {
  width: calc(100% + 200px);
}

[data-country-map] {
  text-decoration: underline;
  transition: color 0.2s;
}

[data-country-map]:focus,
[data-country-map]:hover {
  color: #e72a33;
}

@media (min-width: 0) {
  .hidden-xs {
    display: none;
  }

  .col {
    flex: 1 0 0%;
  }

  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-1 {
    margin-left: 8.3333333333%;
  }

  .offset-2 {
    margin-left: 16.6666666667%;
  }

  .offset-3 {
    margin-left: 25%;
  }

  .offset-4 {
    margin-left: 33.3333333333%;
  }

  .offset-5 {
    margin-left: 41.6666666667%;
  }

  .offset-6 {
    margin-left: 50%;
  }

  .offset-7 {
    margin-left: 58.3333333333%;
  }

  .offset-8 {
    margin-left: 66.6666666667%;
  }

  .offset-9 {
    margin-left: 75%;
  }

  .offset-10 {
    margin-left: 83.3333333333%;
  }

  .offset-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 576px) {
  .hidden-sm {
    display: none;
  }

  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .hidden-md {
    display: none;
  }

  .fsb-button {
    padding: 14px 60px 14px 30px !important;
  }

  .fsb-button:after,
  select[disabled] + .fsb-select .fsb-button[aria-expanded=true]:after {
    right: 30px;
  }

  .fsb-option {
    padding: 14px 30px;
  }

  .hidden-tablet {
    display: none;
  }

  .article-first-block__wrapper {
    grid-template-columns: 205px auto;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .article-first-block h1 {
    grid-column: 1/-1;
    margin-bottom: 25px;
    padding-right: 60px;
  }

  .article-first-block__author {
    margin-bottom: 0;
    padding-right: 0;
  }

  .card-employee__detail h3 {
    font-size: 18px;
  }

  .card-employee__detail p {
    font-size: 16px;
  }

  .card__footer {
    padding: 34px 0;
  }

  .card-aside {
    padding: 25px;
  }

  .card-contact {
    padding: 35px;
  }

  .contact-us h3 {
    max-width: 100%;
  }

  .contact-us p {
    max-width: 100%;
  }

  .contact-us {
    --height-bg-img: 683px;
  }

  .contact-us__wrap::before {
    -o-object-position: initial;
    object-position: initial;
  }

  .contact-us__bg {
    width: 1024px;
    -o-object-position: initial;
    object-position: initial;
  }

  .contact-us__wrapper {
    padding-left: 130px;
    padding-bottom: 50px;
    -webkit-mask-image: linear-gradient(180deg, black calc(100% - 50px), transparent 100%);
    mask-image: linear-gradient(180deg, black calc(100% - 50px), transparent 100%);
  }

  .contact-us__wrapper > *:not(img) {
    max-width: 489px;
  }

  .contact-us--aside .contact-us__wrapper {
    flex-direction: row;
    gap: 80px;
  }

  .contact-us__inner {
    flex-direction: row;
    max-width: 640px !important;
  }

  .contact-us__text {
    max-width: 200px;
  }

  .contact-us__wrapper {
    padding-right: 60px;
    padding-left: 60px;
  }

  .contact-us--aside .contact-us__letter {
    top: 24%;
  }

  .decor::before {
    aspect-ratio: 1510/869;
  }

  .decor--page-header::before {
    aspect-ratio: 589/296;
  }

  .form-contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 67px;
  }

  .form-cv {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 67px;
  }

  .form-cv__inputs {
    max-width: calc(100% - 228px - 67px);
    width: 100%;
    gap: 20px;
  }

  .form-cv__upload {
    flex-shrink: 0;
    justify-content: flex-start;
    margin-top: 30px;
  }

  .form--contact .form-group {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .form--contact .form-group .form-control {
    width: calc(50% - 20px);
  }

  .from-start-to-finish h2 {
    max-width: 100%;
  }

  .from-start-to-finish p {
    max-width: 100%;
  }

  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .header__inner {
    padding-left: 0;
  }

  .header__logo {
    width: 224px;
  }

  .input-file {
    max-width: 240px;
    width: 228px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Crect width='227' height='271' x='.5' y='.5' stroke='%23E72A33' stroke-dasharray='10 10' rx='10'/%3E%3C/svg%3E");
  }

  .input {
    padding: 14px 30px;
  }

  .label {
    font-size: 18px;
  }

  .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .our-services {
    background-image: linear-gradient(0deg, rgb(24, 9, 1) 42.5%, rgba(24, 9, 1, 0) 50%), url("../images/our-services.jpg");
    background-position: center center, 0 -55%;
    background-size: cover, cover;
  }

  .our-services__letter {
    top: -5%;
    right: 5%;
  }

  .section-jobs__wrap {
    flex-direction: row;
    gap: 90px;
  }

  .textarea {
    padding: 14px 30px;
  }

  .video-vimeo iframe {
    height: 600px;
  }

  .video-vimeo__play svg {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 992px) {
  .hidden-lg {
    display: none;
  }

  .aside {
    min-height: 560px;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1024px) {
  .block-news {
    --padding-left: 130px;
  }

  .section-accent {
    --padding-left: 130px;
  }
}

@media (min-width: 1025px) {
  html {
    font-size: 20px;
  }

  .visible-laptop {
    display: block;
  }

  .hidden-laptop {
    display: none;
  }

  .link-hover {
    justify-content: flex-start;
    font-weight: 500;
    font-size: 20px;
    background-color: transparent;
    text-align: left;
    color: #e2f038;
  }

  .about-us .block-wrapper .wrapper-mid .wrapper__content {
    padding: 27px 133px 358px 133px;
  }

  .about-us__img {
    left: 10px;
    max-width: 550px;
  }

  .article-first-block h1 {
    padding-right: 0;
  }

  .article-first-block__date {
    padding-right: 0;
  }

  .article__slider .slider-photo__controls {
    justify-content: flex-end;
    margin-top: 40px;
  }

  .hero__content {
    padding: 60px 40px 40px;
  }

  .block-news {
    --padding-left: 160px;
  }

  .block-news--other-news {
    --padding-left: 125px;
  }

  .block-news--fact-figures {
    --padding-left: 80px;
  }

  .card p {
    font-size: 20px;
  }

  .card-aside {
    padding: 52px;
  }

  .card-contact {
    width: auto;
  }

  .contact-us {
    --height-bg-img: 800px;
  }

  .contact-us__bg {
    width: 1200px;
  }

  .contact-us__wrapper {
    padding-left: 160px;
  }

  .contact-us__gradient::after {
    height: 110%;
    left: -40px;
    width: calc(100% + 80px);
    bottom: -200px;
  }

  .decor::before {
    width: 100%;
    left: 0;
    top: 0;
    background-image: url("../images/bg-page.png");
  }

  .decor--page-header::before {
    top: calc(100% - 56px);
    aspect-ratio: 1920/869;
    background-image: url("../images/bg-image-page-header.png");
  }

  .footer .container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 51px;
    padding-bottom: 51px;
  }

  .footer__divider {
    align-self: stretch;
    width: 1px;
    height: auto;
    border-bottom: none;
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    margin: 0;
  }

  .footer__text {
    text-align: left;
  }

  .form--contact .button {
    margin-left: 0;
  }

  .form--contact .form-group {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .from-start-to-finish {
    margin-block: 120px 127px;
  }

  .from-start-to-finish__wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    -moz-column-gap: 94px;
    column-gap: 94px;
  }

  .from-start-to-finish h2 {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 22px;
  }

  .from-start-to-finish__content,
  .from-start-to-finish__banner {
    margin-bottom: 0;
    border-radius: 40px;
    padding: 60px 60px 63px;
  }

  .from-start-to-finish__content::before,
  .from-start-to-finish__banner::before {
    content: none;
  }

  .from-start-to-finish__content p,
  .from-start-to-finish__banner p {
    font-size: 20px;
    line-height: 34px;
  }

  .from-start-to-finish .swiper-pagination {
    display: none;
  }

  .from-start-to-finish .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 61px;
  }

  .from-start-to-finish .swiper-slide {
    transform: none !important;
    width: 100% !important;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .step {
    --padding-top: 32px;
    border-top: 1px solid #e72a33;
    padding: var(--padding-top, 32px) 20px 0 39px;
  }

  .step:hover {
    border-top: 1px solid transparent;
  }

  .step:hover:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='345.562' height='17.003' fill='none' viewBox='0 0 345.562 17.003'%3E%3Cpath stroke='%23E72A33' d='M0 .5h245.96c16.14 1.21 32.46 6.45 49.07 15.81L303.65.5h41.91'/%3E%3C/svg%3E");
  }

  .step h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 17px;
    min-height: 38px;
  }

  .step p {
    line-height: 26px;
  }

  .header__menu-toggle {
    max-height: 100%;
  }

  .header__menu {
    min-width: 60%;
    height: 80px;
    margin-left: auto;
    margin-bottom: -1px;
  }

  .help .wrapper-mid .wrapper__content {
    padding: 27px 133px 358px 133px;
  }

  .help__img {
    max-width: 330px;
  }

  .list.list--services {
    font-size: 20px;
    line-height: normal;
    gap: 66px;
  }

  .list.list--services li {
    font-weight: 600;
  }

  .menu {
    padding: 0;
    top: 145px;
    max-height: calc(100% - 145px);
  }

  .menu__lang {
    display: none;
  }

  .menu__item--submenu > a.menu__link {
    display: block;
  }

  .menu__item--submenu button.menu__link {
    display: none;
  }

  .navbar__list {
    flex-direction: row;
  }

  .news-and-stories .news-and-stories__content-news .content-news__content-wrapper {
    gap: 66px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-and-stories .news-and-stories__content-news .content-news__pagination {
    justify-content: flex-end;
    gap: 30px;
    margin-top: 35px;
  }

  .news-card {
    width: calc((100% - 66px) / 2);
    padding: 50px;
    height: 438px;
    border-radius: 40px;
  }

  .our-services__desc {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .our-services__desc br {
    display: block;
  }

  .out-services__slider-block .swiper-pagination button svg {
    padding: 0;
  }

  .our-services__title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .page-header__bot {
    height: 40px;
  }

  .page-header__bot__left {
    width: calc(77% - 78px);
    border-bottom-left-radius: 40px;
  }

  .page-header__bot__right {
    width: calc(23% - 77px);
    border-bottom-right-radius: 40px;
  }

  .page-header__desc {
    font-size: 20px;
  }

  .page-header__mask {
    width: 155px;
  }

  .page-header__subheader {
    font-size: 22px;
    margin-bottom: 34px;
  }

  .page-header__subheader,
  .page-header__title,
  .page-header__desc {
    max-width: 840px;
  }

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

  .section-jobs {
    margin-top: 120px;
  }

  .section-jobs__aside {
    max-width: 231px;
  }

  .section-jobs__aside h2 {
    font-size: 32px;
  }

  .section-title {
    margin-bottom: 18px;
  }

  .section-title h2 {
    font-size: 14px;
    letter-spacing: 7px;
  }

  .section-title:before {
    width: 40px;
  }

  .section-accent {
    --padding-left: 160px;
  }

  .video:before {
    border-radius: 40px;
  }

  .video__file {
    border-radius: 40px;
  }

  .video__title {
    font-size: 32px;
    top: 60px;
    left: 60px;
    max-width: 100%;
  }

  .video-vimeo > div:before {
    border-radius: 40px;
  }

  .video-vimeo iframe {
    border-radius: 40px;
  }
}

@media (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }

  :root {
    --container-padding: 50px;
  }

  .visible-desktop {
    display: block;
  }

  .mt-md {
    margin-top: 80px;
  }

  .mb-md {
    margin-bottom: 80px;
  }

  h1,
  .h1 {
    font-size: 48px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  .h4 {
    font-size: 24px;
  }

  .h5 {
    font-size: 20px;
  }

  .h6 {
    font-size: 16px;
  }

  .about-us {
    margin-bottom: 90px;
  }

  .about-us .block-wrapper .wrapper-mid .wrapper__content {
    display: flex;
    flex-direction: row;
    justify-content: end;
    padding: 45px 52px;
  }

  .about-us .block-wrapper .wrapper-mid .wrapper__line .line__block {
    background-image: url("../images/desktop-border-line-right.png");
    height: 80px;
  }

  .about-us .block-wrapper .wrapper-mid .wrapper__line .line__block:last-of-type {
    height: calc(100% - 80px - 95px);
  }

  .about-us .block-wrapper .wrapper-mid .wrapper__line .line__mask {
    height: 95px;
    background-image: url("../images/desktop-border-curve-right.png");
  }

  .about-us__content {
    max-width: 337px;
  }

  .about-us__header {
    letter-spacing: 10px;
    font-size: 14px;
  }

  .about-us__img {
    width: 60%;
    max-width: 773px;
    left: 0;
  }

  .about-us__text {
    font-size: 20px;
  }

  .about-us__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .article-first-block__wrap {
    padding: 62px 62px 74px;
    border-radius: 40px;
  }

  .article-first-block__wrapper {
    grid-template-columns: 250px auto;
  }

  .article-first-block h1 {
    font-size: 48px;
    line-height: 67px;
    margin-bottom: 30px;
  }

  .article-first-block__author,
  .article-first-block__date {
    font-size: 18px;
    line-height: 21px;
  }

  .article {
    font-size: 20px;
  }

  .article__slider .slider-photo {
    margin-left: -142px;
    width: calc(100% + 213px);
  }

  .aside h3 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .aside p {
    font-size: 20px;
  }

  .aside__inner {
    padding: 50px 50px 40px 50px;
  }

  .section-video-aside .row {
    row-gap: 0;
  }

  .badge {
    --badge-padding: 5px 22px;
    font-size: 13px;
    line-height: 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 7px 50%, 0% 0%);
  }

  .badge--card-news {
    bottom: 44px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 200px;
  }

  .badge--card-news-and-stories {
    bottom: 40px;
    --badge-padding: 8px 36px;
    font-size: 16px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 200px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 11px 50%, 0% 0%);
  }

  .badge--article-first-block {
    --badge-padding: 8px 36px;
    font-size: 16px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 200px;
    bottom: 65px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 11px 50%, 0% 0%);
  }

  .hero {
    margin-bottom: 90px;
  }

  .hero__block {
    max-width: 483px;
  }

  .hero__content {
    border-radius: 40px;
    padding: 165px 107px;
    background-size: cover;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__text {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .block-news__list {
    margin-top: 20px;
    max-width: 1440px;
    width: calc(100vw - (100vw - 860px) / 2);
    margin-left: auto;
  }

  .block-news--other-news .block-news__wrapper {
    align-items: flex-start;
    --padding-bottom: 100px;
  }

  .block-news--other-news .section-title {
    margin-bottom: 34px;
  }

  .block-news--other-news .section-title h2 {
    order: 1;
  }

  .block-news {
    --padding-top: 74px;
    --padding-right: 70px;
    --padding-bottom: 80px;
  }

  .block-news p {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  .block-news p:has(+ .block-news__list) {
    margin-bottom: 47px;
  }

  .block-news__wrapper {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    border-radius: 40px;
  }

  .block-news--other-news {
    --padding-bottom: 46px;
  }

  .block-news--other-news h3 {
    font-size: 48px;
    line-height: 67px;
    margin-bottom: 20px;
  }

  .block-news--other-news p {
    -webkit-line-clamp: 4;
  }

  .block-news--other-news p:has(+ a) {
    margin-bottom: 35px;
  }

  .block-news--other-news .block-news__left,
  .block-news--other-news .block-news__right {
    display: block;
  }

  .block-news--other-news .block-news__list {
    margin-top: 25px;
    padding: 0;
    margin-inline: 0 calc(var(--padding-right) * -1 - var(--container-padding));
    flex-direction: column;
  }

  .block-news--other-news .block-news__left {
    padding-top: 20px;
  }

  .block-news--other-news .block-news__wrapper {
    -moz-column-gap: 95px;
    column-gap: 95px;
  }

  .block-news--fact-figures {
    --padding-top: 74px;
    --padding-right: 80px;
    --padding-bottom: 69px;
  }

  .block-news--fact-figures h2 {
    margin-bottom: 17px;
    font-size: 40px;
    line-height: 56px;
  }

  .block-news--fact-figures .block-news__list {
    gap: 30px;
  }

  .block-news--fact-figures .block-news__wrapper {
    row-gap: 0;
  }

  .block-news__right > .link--all-news {
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    right: 0;
    max-width: 1190px;
    order: 2;
    top: 40px;
    margin-left: auto;
    margin-right: 0;
    right: 70px;
  }

  .block-news--other-news .block-news__list {
    width: 100%;
    margin-left: 120px;
  }

  .block-news--other-news .block-news__list .swiper-wrapper {
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
  }

  .block-news--other-news .block-news__list .swiper-slide {
    margin-right: 0 !important;
    width: auto !important;
  }

  .block-wrapper .wrapper-bot,
  .block-wrapper .wrapper-top {
    height: 40px;
  }

  .block-wrapper .wrapper-bot .wrapper__radius {
    width: 40px;
    background-image: url("../images/desktop-border-bot-left.png");
  }

  .block-wrapper .wrapper-bot .wrapper__radius:last-of-type {
    background-image: url("../images/desktop-border-bot-right.png");
  }

  .block-wrapper .wrapper-bot .wrapper__line {
    width: calc(100% - 80px);
    background-image: url("../images/desktop-border-line-bot.png");
  }

  .block-wrapper .wrapper-mid .wrapper__content {
    width: calc(100% - 80px);
  }

  .block-wrapper .wrapper-mid .wrapper__line {
    width: 40px;
    background-image: url("../images/desktop-border-line-left.png");
  }

  .block-wrapper .wrapper-mid .wrapper__line:last-of-type {
    background-image: url("../images/desktop-border-line-right.png");
  }

  .block-wrapper .wrapper-top .wrapper__radius {
    width: 40px;
    background-image: url("../images/desktop-border-top-left.png");
  }

  .block-wrapper .wrapper-top .wrapper__radius:last-of-type {
    background-image: url("../images/desktop-border-top-right.png");
  }

  .block-wrapper .wrapper-top .wrapper__line {
    width: calc(100% - 80px);
  }

  .button.button--paginaton-arrow {
    padding-block: 0px 0px !important;
  }

  .button {
    padding-block: 15px 17px;
    border-radius: 15px;
  }

  .card-employee {
    width: 100%;
  }

  .card-news {
    height: 100%;
    max-width: 400px;
    min-height: 320px;
    border-radius: 40px;
    padding: 52px 84px 52px 50px;
  }

  .card-news--other-news {
    min-height: initial;
    padding: 40px 50px;
  }

  .card-news--other-news h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  .card-news--other-news .badge {
    bottom: 40px;
  }

  .card-news--fact-figures {
    max-width: 100%;
    padding: 50px 40px 63px 60px;
  }

  .card-news--fact-figures h4 {
    line-height: 39px;
    margin-bottom: 33px;
  }

  .card-news h4 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 30px;
  }

  .card {
    padding: 50px;
  }

  .card--contact {
    margin-right: 0 !important;
  }

  .card--contact h3 {
    font-size: 30px;
  }

  .card--contact p {
    font-size: 18px;
  }

  .card--contact b {
    font-size: 24px;
  }

  .card.card--service h3 {
    font-size: 28px;
  }

  .contact-us__bg--inner {
    width: calc(100% + 100px) !important;
    left: -50px !important;
  }

  .contact-us--moon .contact-us__wrap::before,
  .contact-us--sun .contact-us__wrap::before {
    background-size: contain;
    top: 10px;
  }

  .contact-us {
    --padding-top-image: 231px;
    --height-bg-img: 1007px;
  }

  .contact-us__wrap {
    padding-bottom: 69px;
    margin-inline: calc(var(--container-padding) * -1);
    padding-inline: var(--container-padding);
    margin-top: calc(var(--padding-top-image) * -1 + 43px);
  }

  .contact-us__wrapper {
    border-radius: 40px;
    padding-top: 313px;
    padding-left: 190px;
    padding-right: 110px;
  }

  .contact-us__bg-wrap::before {
    height: 697px;
  }

  .contact-us__bg {
    width: 100%;
    left: 0;
  }

  .contact-us .section-title h2 {
    margin-bottom: 0;
  }

  .contact-us h3 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 25px;
  }

  .contact-us p {
    font-size: 20px;
    line-height: 34px;
  }

  .contact-us p:has(+ .button) {
    margin-bottom: 40px;
  }

  .contact-us__inner {
    gap: 80px;
    max-width: 1190px !important;
  }

  .contact-us__text {
    max-width: 320px;
  }

  .contact-us__form {
    margin-top: -10px;
  }

  .contact-us__letter {
    width: 105px;
    top: 24%;
    left: 39%;
  }

  .contact-us__gradient:after {
    z-index: 1;
    bottom: -130px;
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 75%, transparent 100%);
    height: 400px;
    width: calc(100% + 100px);
    left: -50px;
  }

  .content {
    margin-bottom: 118px;
  }

  .content p {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 34px;
  }

  .decor--desktop:before {
    display: block;
  }

  .footer .container {
    align-items: stretch;
  }

  .footer__terms {
    max-width: 542px;
  }

  .footer__terms br {
    display: none;
  }

  .form-contact__inputs {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }

  .form--contact {
    row-gap: 36px;
  }

  .form--contact .form-group {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }

  .form--contact .form-group .form-control {
    width: calc(50% - 40px);
  }

  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .header__inner {
    max-height: 140px;
  }

  .header__menu-toggle {
    display: none;
  }

  .header__menu {
    min-width: calc((var(--container-max-width) - var(--container-padding) * 2) * 0.6);
    position: fixed;
    right: calc((100% - var(--container-max-width)) / 2);
    z-index: 101;
  }

  .help {
    margin-top: 120px;
    margin-bottom: 0;
  }

  .help .wrapper-bot .line__block {
    width: 190px;
    background-image: url("../images/desktop-border-line-bot.png");
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: contain;
  }

  .help .wrapper-bot .line__block:last-of-type {
    width: calc(100% - 190px - 95px);
  }

  .help .wrapper-bot .line__mask {
    width: 95px;
    background-image: url("../images/desktop-border-curve-bot.png");
    background-position: bottom;
    background-size: contain;
  }

  .help .wrapper-bot .wrapper__line {
    background-image: none;
  }

  .help .wrapper-mid .wrapper__content {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 28px 52px;
  }

  .help .wrapper-mid .wrapper__line .line__block {
    background-image: url("../images/desktop-border-line-right.png");
    height: 80px;
  }

  .help .wrapper-mid .wrapper__line .line__block:last-of-type {
    height: calc(100% - 80px - 95px);
  }

  .help .wrapper-mid .wrapper__line .line__mask {
    height: 95px;
    background-image: url("../images/desktop-border-line-right.png");
    background-repeat: repeat-y;
  }

  .help__content {
    max-width: 620px;
  }

  .about-us__header {
    letter-spacing: 10px;
    font-size: 14px;
  }

  .help__img {
    width: 38%;
    max-width: 490px;
    left: auto;
    right: 16.5px;
    margin-inline: 0;
  }

  .help__text p {
    font-size: 20px;
  }

  .help__title {
    font-size: 36px;
  }

  .job {
    padding-top: 32px;
    padding-bottom: 84px;
    font-size: 20px;
  }

  .job h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .job h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .job b,
  .job strong {
    font-size: 23px;
  }

  .job p {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .job ul {
    padding-left: 22px;
  }

  .job ul li::before {
    display: none;
  }

  .link--small {
    font-size: 18px;
    line-height: 18px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .local-teams {
    margin-bottom: 100px;
  }

  .local-teams h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .local-teams__list {
    margin-inline: min(calc(var(--container-padding) * -1), calc(var(--container-padding) * -1 - (100vw - 1290px) / 2));
    padding-inline: max(var(--container-padding), calc(var(--container-padding) + (100vw - 1290px) / 2));
  }

  svg#Africa {
    max-width: 100%;
    margin: 0;
  }

  svg#Africa [data-template] {
    fill: var(--not-active);
  }

  .menu-toggle__text {
    display: none;
    font-size: 20px;
    top: calc(50% - 10px);
    right: 65px;
  }

  .menu {
    flex-direction: row;
    align-items: center;
    position: static;
    transform: translateX(0);
    transition: none;
    justify-content: center;
    max-height: 100%;
    overflow: visible;
    background: none;
  }

  .menu__list {
    flex-direction: row;
    margin-right: 0;
    padding-top: 0;
    width: 100%;
    justify-content: space-between;
    padding-left: 36px;
    padding-right: 36px;
    gap: 42px;
    padding: 5.19px 5.23px 5.19px 48.76px;
    background-color: white;
    border-radius: 100px;
    box-shadow: 0px 4px 30px 0px rgba(42, 44, 81, 0.15);
    clip-path: none;
  }

  .menu-active .menu__list {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 200px;
    column-gap: 200px;
    padding: 0 208px;
    text-align: left;
  }

  .menu-active .menu__list .menu__list {
    position: absolute;
    left: auto;
    top: 0;
    padding-top: 0;
    margin-bottom: 0;
  }

  .menu__link {
    font-size: 16px;
  }

  .menu.menu--open {
    transition: none;
  }

  .menu.menu--open .menu__list {
    align-items: center;
  }

  .menu.menu--open .menu__item--submenu > button.menu__link {
    margin: 0;
  }

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

  .menu__item-contact {
    border-radius: 100px;
    padding: 20px 40px;
  }

  .news-and-stories {
    margin-top: 48px;
    margin-bottom: 140px;
  }

  .news-and-stories .news-and-stories__header {
    gap: 16px;
  }

  .news-and-stories .news-and-stories__header .news-and-stories__title {
    font-size: 36px;
  }

  .news-and-stories .news-and-stories__header .news-and-stories__title br {
    display: none;
  }

  .news-and-stories .news-and-stories__header .news-and-stories__subtitle {
    font-size: 20px;
    max-width: 668px;
    padding: 0;
  }

  .news-card__author {
    font-size: 16px;
  }

  .news-card__date {
    font-size: 16px;
  }

  .news-card__info {
    order: 3;
    flex-direction: row;
    gap: 43px;
    flex: 1 0 auto;
    align-items: flex-end;
  }

  .news-card__link {
    display: none;
  }

  .news-card__text {
    -webkit-line-clamp: 4;
    font-size: 20px;
  }

  .news-card__title {
    font-size: 30px;
  }

  .news-list {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    list-style-type: none;
  }

  .our-services {
    padding-top: 422px;
    padding-bottom: 142px;
    background-image: linear-gradient(0deg, rgb(24, 9, 1) 55%, rgba(24, 9, 1, 0) 65%), url("../images/our-services.jpg");
    background-position: center center, 0 -35%;
    background-size: cover, 100%;
    background-repeat: no-repeat;
    margin-inline: auto;
    max-width: 1920px;
    margin-top: -160px;
    margin-bottom: 120px;
  }

  .our-services .container {
    padding-inline: 170px;
  }

  .our-services .container .our-services__header,
  .our-services .container .our-services__title,
  .our-services .container .our-services__desc {
    padding-inline: 0 40px;
  }

  .our-services .container .button--our-services {
    margin-inline: 40px;
  }

  .our-services__slider {
    padding: 20px 40px 20px 0;
  }

  .out-services__slider-block .swiper-pagination button {
    width: 20px;
  }

  .out-services__slider-block .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    max-width: 1050px;
    width: 100vw;
  }

  .out-services__slider-block .mask-left {
    padding-right: 0;
    width: 140px;
  }

  .out-services__slider-block .mask-right {
    padding-left: 0;
    width: 140px;
  }

  .our-services__letter {
    top: -49%;
    right: 14%;
  }

  .our-services__sun {
    left: 0;
    right: 0;
    top: -330px;
    margin-inline: auto;
  }

  .page-header__top {
    padding-top: 20px;
  }

  .pagination {
    padding: 82px 0;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-accent h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .section-accent {
    --padding-top: 58px;
    --padding-right: 70px;
    --padding-bottom: 80px;
  }

  .section-accent-wrap {
    border-radius: 40px;
  }

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

  .slider-product {
    max-width: calc(100% + 100px);
  }

  .slider-product + .swiper-pagination {
    margin-bottom: 0;
  }

  .slider-clients {
    height: auto;
    padding: 48px 72px;
  }

  .slider-clients .swiper-slide img {
    margin-right: auto;
    margin-left: auto;
  }

  .slider-teams {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .video-vimeo iframe {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .where-we-operate {
    padding-top: 120px;
    padding-bottom: 133px;
  }

  .where-we-operate:before {
    width: 1200px;
    height: 100%;
    background-image: url(../images/africa-bg.png);
    background-size: contain;
    background-position: 123px -45px;
    transform: scale(1.5);
  }

  .where-we-operate .where-we-operate__content {
    width: 535px;
  }

  .where-we-operate .where-we-operate__content .where-we-operate__text ul {
    margin-left: 25px;
  }

  .where-we-operate .where-we-operate__content .where-we-operate__text {
    font-size: 20px;
  }

  .where-we-operate .where-we-operate__content .where-we-operate__title {
    font-size: 36px;
  }

  .where-we-operate .where-we-operate__content .where-we-operate__title br {
    display: none;
  }

  .where-we-operate .wrapper-mid .wrapper__content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 60px 67px;
  }

  .where-we-operate .wrapper-mid .wrapper__line {
    background-image: url("../images/desktop-border-line-left.png");
  }

  .where-we-operate .wrapper-mid .wrapper__line:first-child .line__block {
    background: transparent;
  }

  .where-we-operate .wrapper-mid .wrapper__line:first-child .line__mask {
    background: transparent;
  }

  .where-we-operate .wrapper-mid .wrapper__line:last-child {
    background-image: none;
  }

  .where-we-operate .wrapper-mid .wrapper__line:last-child .line__block {
    background-image: url("../images/desktop-border-line-right.png");
    background-repeat: repeat-y;
    background-position: right;
    background-size: contain;
    height: 225px;
  }

  .where-we-operate .wrapper-mid .wrapper__line:last-child .line__block:last-child {
    height: calc(100% - 225px - 95px);
  }

  .where-we-operate .wrapper-mid .wrapper__line:last-child .line__mask {
    background-image: url("../images/desktop-border-curve-right.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    height: 95px;
  }

  .where-we-operate__map {
    width: calc(100% + 120px);
    margin: 0;
    margin-left: -210px;
    margin-top: -35px;
    margin-bottom: -175px;
    width: 691px;
  }

  .where-we-operate__map > svg {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .hidden-xxl {
    display: none;
  }

  .col-xxl {
    flex: 1 0 0%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1510px) {
  .block-news__list {
    width: calc(100vw - (100vw - 960px) / 2);
    padding-right: 250px;
  }

  .block-news__list.slider-facts {
    padding: 0;
    margin: 0;
  }

  .contact-us__wrapper {
    padding-left: 269px;
  }

  .block-news__list.slider-facts {
    width: calc(100vw - (100vw - 1000px) / 2);
  }
}

@media (min-width: 1511px) {
  .block-news--other-news .block-news__list {
    -webkit-mask-image: initial;
    mask-image: initial;
  }

  .decor--page-header::before {
    left: 0;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10px, black calc(100% - 10px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10px, black calc(100% - 10px), transparent 100%);
  }

  .local-teams__list {
    margin-inline: -160px;
    padding-inline: 160px;
  }
}

@media (min-width: 1600px) {
  .article__slider {
    padding-top: 100px;
  }

  .article__slider .slider-photo {
    margin-left: -288px;
    width: calc(100% + 359px);
  }

  .card-employee {
    width: 182px;
  }

  .card--contact p {
    font-size: 20px;
  }

  .form--contact {
    row-gap: 10px;
  }

  .local-teams .container {
    max-width: 1550px !important;
  }

  .menu-active .menu__list {
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .our-services {
    background-image: linear-gradient(0deg, rgb(24, 9, 1) 40%, rgba(24, 9, 1, 0) 70%), url("../images/our-services.jpg");
    background-position: center center, 0 -200px;
  }

  .out-services__slider-block .mask-left {
    background: linear-gradient(91.17deg, rgb(24, 9, 1) 88.876%, rgba(24, 9, 1, 0) 99.825%);
    width: 70px;
  }

  .out-services__slider-block .mask-right {
    background: linear-gradient(91.17deg, rgba(24, 9, 1, 0) 0.175%, rgb(24, 9, 1) 11.124%);
    width: 110px;
  }

  .where-we-operate:before {
    background-position: 110px -45px;
    transform: scale(1.6);
  }

  .where-we-operate__map {
    margin-left: -250px;
  }
}

@media (min-width: 1800px) {
  .card-contact {
    padding: 70px 70px 40px;
  }

  .local-teams .container {
    max-width: 1920px !important;
  }

  .news-list {
    max-width: 928px;
  }
}

@media (min-width: 1920) {
  .contact-us__bg-wrap {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .block-news h3:has(+ p) {
    margin-bottom: -15px;
  }
}

@media (max-width: 359px) {
  :root {
    --container-padding: 20px;
  }

  .contact-us__wrapper {
    clip-path: path("M-3000 0 0 0 86.05 0C112.07 1.93 138.39 10.28 165.18 25.22L179.08 0 3000 0V1000H-3000Z");
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }

  html {
    scroll-behavior: smooth;
  }
}
