html, body, div, span, applet, object, iframe,
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6, p, b, strong, i {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  box-sizing: border-box !important;
  outline: none !important;
  -webkit-appearance: none !important;
}

a[href^=tel] {
  color: #000;
}

.clearfix::after {
  content: " ";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

*::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}

*:-moz-placeholder {
  color: #666;
  opacity: 1;
}

*::-moz-placeholder {
  color: #666;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea,
input[type=text],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: none;
  border-radius: 0 3px 3px 0;
}

@keyframes radial-pulse {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}
@keyframes radial-pulse-brown {
  0% {
    box-shadow: 0 0 0 0 #fbd886;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(251, 216, 134, 0);
  }
}
@keyframes radial-pulse-green {
  0% {
    box-shadow: 0 0 0 0 #76a82d;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(118, 168, 45, 0);
  }
}
@keyframes slide__top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide__top {
  opacity: 1 !important;
  animation: slide__top 1.5s 1 ease-in-out;
}

@keyframes down__left {
  0% {
    transform: translateY(50px) translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}
.down__left {
  opacity: 1 !important;
  animation: down__left 1s 1 ease-in-out both;
}

@keyframes down__right {
  0% {
    transform: translateY(50px) translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}
.down__right {
  opacity: 1 !important;
  animation: down__right 1s 1 ease-in-out both;
}

@keyframes down {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.down {
  opacity: 1 !important;
  animation: down 1s 1 ease-in-out both;
}

@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.left {
  opacity: 1 !important;
  animation: left 1s 1 ease-in-out both;
  transition: opacity 0.5s linear;
}

@keyframes right {
  0% {
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
.right {
  opacity: 1 !important;
  animation: right 1s 1 ease-in-out both;
  transition: opacity 0.5s linear;
}

@keyframes slide_down {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide_down {
  opacity: 1 !important;
  animation: slide_down 1.5s 1 ease-in-out;
  transition: opacity 0.5s linear 0.3s;
}

@keyframes slide_right {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
.slide_right {
  opacity: 1 !important;
  animation: slide_right 1.5s 1 ease-in-out;
  transition: opacity 0.5s linear 0.3s;
}

@keyframes slide_left {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}
.slide_left {
  opacity: 1 !important;
  animation: slide_left 1.5s 1 ease-in-out;
  transition: opacity 0.5s linear 0.3s;
}

.no-touch .contacts-list li a:hover span:first-child {
  transform: translateY(-25px);
}
.no-touch .contacts-list li a:hover span:last-child {
  transform: skew(0, 0) translateY(0);
}
.no-touch .header-nav li a:hover span {
  transform: translateY(-22px);
}
.no-touch .header-nav li a:hover span::after {
  transform: skew(0, 0) translateY(22px);
}
.no-touch .header-social li a:hover svg:first-child {
  transform: translateY(-30px);
}
.no-touch .header-social li a:hover svg:last-child {
  transform: translateY(0);
}
.no-touch .header-right a:hover::before {
  max-width: 100%;
}
.no-touch .header-right a:hover span {
  transform: translateY(-25px);
}
.no-touch .header-right a:hover span::after {
  transform: skew(0, 0) translateY(20px);
}
.no-touch .slider-arrow:hover svg path {
  fill: #E00047;
}
.no-touch .btn a:hover {
  color: #fff;
  border-color: #E00047;
}
.no-touch .btn a:hover::before {
  transform: translateX(0);
}
.no-touch .main-services__item:hover .main-services__img {
  max-width: 100%;
}
.no-touch .main-services__item:hover .main-services__img::after {
  background: rgba(255, 255, 255, 0.9);
}
.no-touch .main-services__item:hover h5 {
  text-align: center;
  top: 50%;
  left: 50%;
  border-color: transparent;
  transform: translate(-50%, -50%);
}
.no-touch .main-services__item:hover h5 span {
  width: 100%;
  display: block;
  text-align: center;
}
.no-touch .main-services__item:hover::before {
  max-width: calc(100% - 20px);
  transition: max-width 0.2s linear 0.2s;
}
.no-touch .main-services__item:hover::after {
  max-height: calc(100% - 20px);
  transition: max-height 0.2s linear 0.4s;
}
.no-touch .main-services__item:hover .main-services__decorator::before {
  max-width: calc(100% - 20px);
  transition: max-width 0.2s linear 0.6s;
}
.no-touch .main-services__item:hover .main-services__decorator::after {
  max-height: calc(100% - 20px);
  transition: max-height 0.2s linear 0.8s;
}
.no-touch .services-tabs li:hover::after {
  transform: translateX(0);
  transition: transform 0.2s linear;
}
.no-touch .services-tabs li:hover::before {
  transform: translateY(0);
  transition: transform 0.2s linear 0.2s;
}
.no-touch .services-tabs li:hover a::after {
  transform: translateX(0);
  transition: transform 0.2s linear 0.4s;
}
.no-touch .services-tabs li:hover a::before {
  transform: translateY(0);
  transition: transform 0.2s linear 0.6s;
}
.no-touch .services-tabs li a.active {
  border-color: #E00047;
}
.no-touch .services-tabs li a.active:hover {
  background: transparent;
}
.no-touch .table a:hover::before {
  max-width: 100%;
}
.no-touch .table a:hover span {
  transform: translateY(-25px);
}
.no-touch .table a:hover span::after {
  transform: skew(0, 0) translateY(20px);
}
.no-touch .popup-list__btn:hover {
  background: transparent;
  color: #E00047;
}
.no-touch .vacancies-head__link a,
.no-touch .vacancy-description__link a,
.no-touch .vacancy-head__link a {
  transition: border 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.no-touch .vacancies-head__link a:hover,
.no-touch .vacancy-description__link a:hover,
.no-touch .vacancy-head__link a:hover {
  border: 1px solid #E00047;
  color: #E00047;
  background: #FFFFFF;
}
.no-touch .vacancies-services__item:hover .vacancies-services__img {
  max-width: 100%;
}
.no-touch .vacancies-services__item:hover .vacancies-services__img::after {
  background: rgba(255, 255, 255, 0.9);
}
.no-touch .vacancies-services__item:hover h5 {
  text-align: center;
  top: 50%;
  left: 50%;
  border-color: transparent;
  transform: translate(-50%, -50%);
}
.no-touch .vacancies-services__item:hover h5 span {
  width: 100%;
  display: block;
  text-align: center;
}
.no-touch .vacancies-services__item:hover::before {
  max-width: calc(100% - 20px);
  transition: max-width 0.2s linear 0.2s;
}
.no-touch .vacancies-services__item:hover::after {
  max-height: calc(100% - 20px);
  transition: max-height 0.2s linear 0.4s;
}
.no-touch .vacancies-services__item:hover .vacancies-services__decorator::before {
  max-width: calc(100% - 20px);
  transition: max-width 0.2s linear 0.6s;
}
.no-touch .vacancies-services__item:hover .vacancies-services__decorator::after {
  max-height: calc(100% - 20px);
  transition: max-height 0.2s linear 0.8s;
}
.no-touch .resume-form .input-submit button {
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.no-touch .resume-form .input-submit button:hover {
  border: 1px solid #E00047;
  color: #E00047;
  background: #FFFFFF;
}
.no-touch .resume-form .input-col__bottom-left .input-file label {
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.no-touch .resume-form .input-col__bottom-left .input-file label .file-button {
  transition: color 0.4s ease;
}
.no-touch .resume-form .input-col__bottom-left .input-file label .file-button svg path {
  transition: fill 0.4s ease;
}
.no-touch .resume-form .input-col__bottom-left .input-file .file-name {
  transition: color 0.4s ease;
}
.no-touch .resume-form .input-col__bottom-left .input-file:hover label {
  border: 1px solid #E00047;
  background: #FFFFFF;
  color: #E00047;
}
.no-touch .resume-form .input-col__bottom-left .input-file:hover label .file-button {
  color: #E00047;
}
.no-touch .resume-form .input-col__bottom-left .input-file:hover label .file-button svg path {
  fill: #E00047;
}
.no-touch .resume-form .input-col__bottom-left .input-file:hover .file-name {
  color: #E00047;
}
.no-touch .vacancy-description__link a:last-child {
  transition: background 0.4s ease, color 0.4s ease;
}
.no-touch .vacancy-description__link a:last-child:hover {
  background: #E00047;
  color: #FFFFFF;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-BoldItalic.woff") format("woff"), url("../fonts/GothamPro-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-MediumItalic.woff") format("woff"), url("../fonts/GothamPro-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-BlackItalic.woff") format("woff"), url("../fonts/GothamPro-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
.vacancies-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.vacancies-popup-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vacancies-popup-container {
  max-width: 700px;
  width: 100%;
  position: relative;
  background: #ffffff;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.vacancies-popup-container h3 {
  display: inline-block;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}
.vacancies-popup-container a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.vacancies-popup-container a svg {
  width: 50px;
  height: 50px;
}
.vacancies-popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.vacancies-popup-close svg {
  transform: rotate(0);
  transition: transform 0.5s ease-in-out;
  width: 20px;
  height: 20px;
}
.vacancies-popup-close:hover svg {
  transform: rotate(180deg);
}
.vacancies-wrap {
  height: 700px;
}
.vacancies-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
.vacancies-head__left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.vacancies-head__title {
  max-width: 995px;
}
.vacancies-head__link {
  margin-top: 74px;
}
.vacancies-head__link a {
  display: inline-block;
  padding: 20px 10px;
  font-weight: 300;
  font-size: 20px;
  line-height: 19px;
  color: #FFFFFF;
  background: #E00047;
  text-decoration: none;
  border: 1px solid transparent;
}
.vacancies-head__img {
  max-width: 1050px;
  height: 100%;
  position: relative;
}
.vacancies-head__img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.26deg, rgba(255, 255, 255, 0.8) 0.22%, rgba(196, 196, 196, 0) 99.79%);
  display: block;
  z-index: 2;
}
.vacancies-head__img img {
  width: 100%;
  height: auto;
}
.vacancies-services {
  margin-top: 100px;
}
.vacancies-services .container {
  position: relative;
}
.vacancies-services__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.vacancies-services__container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.vacancies-services__block {
  position: relative;
  margin-right: -55px;
}
.vacancies-services__item {
  width: 100%;
  max-width: calc(33% - 40px);
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-right: 40px;
  margin-bottom: 100px;
  text-decoration: none;
  overflow: hidden;
}
.vacancies-services__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 1px;
  max-width: 0;
  background: #000;
  z-index: 3;
}
.vacancies-services__item::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1px;
  height: 100%;
  background: #000;
  z-index: 3;
  max-height: 0;
}
.vacancies-services__item h5 {
  width: 100%;
  max-width: 340px;
  height: 115px;
  border: 1px solid #000;
  padding-left: 42px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #393939;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 3;
  overflow: hidden;
  transition: transform 0.4s ease, left 0.4s ease, top 0.4s ease, border-color 0.3s ease;
}
.vacancies-services__img {
  width: 100%;
  max-width: 90%;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: max-width 0.3s ease-in-out;
}
.vacancies-services__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.3s linear;
}
.vacancies-services__decorator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.vacancies-services__decorator::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  height: 1px;
  max-width: 0;
  background: #000;
  z-index: 3;
}
.vacancies-services__decorator::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 1px;
  height: 100%;
  background: #000;
  z-index: 3;
  max-height: 0;
}
.vacancies .gallery-slider__item {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.vacancies .gallery-slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -50%;
  width: 200%;
  background-color: #fffcfc;
  transform: skewX(-15deg) translateX(0);
  transition: background-color 1.5s cubic-bezier(0.6, 0, 0.41, 1) 0.2s, transform 2s cubic-bezier(0.6, 0, 0.41, 1);
}
.vacancies .gallery-slider__item img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.6, 0, 0.41, 1);
}
.vacancies .gallery-slider__item.slick-center::after {
  background-color: transparent;
  transform: skewX(-15deg) translateX(-120%);
}
.vacancies .gallery-slider__item.slick-center img {
  transition: opacity 0.1s cubic-bezier(0.6, 0, 0.41, 1);
  opacity: 1;
}
.vacancies-gallery {
  margin-bottom: 100px;
}
.vacancies-gallery .slick-list, .vacancies-gallery .slick-track {
  height: 100%;
}
.vacancies-gallery__description {
  width: 100%;
  display: block;
  max-width: calc(100% - 1060px);
  text-align: right;
  padding-left: 30px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s linear;
  transform: translateX(0);
}
.vacancies-gallery__description.active {
  transform: translateX(-20px);
  opacity: 0;
}
.vacancies-gallery__arrows {
  position: relative;
  transition: opacity 0.2s ease-in-out;
}
.vacancies-gallery__arrows.disabled {
  opacity: 0.4;
}
.vacancies-gallery__arrows.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.vacancies-gallery__left {
  width: 1060px;
  height: 700px;
}
.vacancies-gallery__container {
  position: relative;
}
.vacancies-gallery__slider {
  height: 100%;
}
.vacancies-gallery__slider-item {
  font-size: 0;
}
.vacancies-gallery__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies-gallery__slider2 {
  width: 370px;
  height: 245px;
  position: absolute;
  bottom: 65px;
  right: 0;
}
.vacancies-gallery__slider2-item {
  font-size: 0;
}
.vacancies-gallery__slider2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies-gallery__slider3 {
  width: 370px;
  height: 245px;
  position: absolute;
  bottom: 65px;
  right: 400px;
}
.vacancies-gallery__slider3-item {
  font-size: 0;
}
.vacancies-gallery__slider3-item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.vacancies-gallery .slider-arrow {
  right: 0;
  bottom: 0;
}
.vacancies-gallery .arrow-next {
  right: 0;
}
.vacancies-gallery .arrow-prev {
  right: 170px;
}
.vacancies-reason {
  margin-bottom: 100px;
}
.vacancies-reason__content {
  margin-top: 60px;
}
.vacancies-reason__list {
  padding-left: 100px;
}
.vacancies-reason__item {
  padding-left: 62px;
  position: relative;
  margin-bottom: 40px;
}
.vacancies-reason__item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -5px;
  width: 38px;
  height: 38px;
  background: #E00047;
}
.vacancies-reason__item:last-child {
  margin-bottom: 0;
}
.vacancies-reason__item-name {
  font-weight: 300;
  font-size: 30px;
  line-height: 29px;
  text-transform: uppercase;
  color: #393939;
  margin-bottom: 15px;
}
.vacancies-reason__item-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

@media screen and (max-width: 700px) {
  .vacancies-popup-container h3 {
    font-size: 20px;
    line-height: 21px;
  }
}
.vacancy {
  margin-bottom: 100px;
}
.vacancy-wrap {
  height: 700px;
}
.vacancy-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
.vacancy-head__left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.vacancy-head__title {
  max-width: 995px;
}
.vacancy-head__link {
  margin-top: 74px;
}
.vacancy-head__link a {
  display: inline-block;
  padding: 20px 10px;
  font-weight: 300;
  font-size: 20px;
  line-height: 19px;
  color: #FFFFFF;
  background: #E00047;
  text-decoration: none;
  border: 1px solid transparent;
}
.vacancy-head__img {
  max-width: 1050px;
  height: 100%;
  position: relative;
}
.vacancy-head__img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.26deg, rgba(255, 255, 255, 0.8) 0.22%, rgba(196, 196, 196, 0) 99.79%);
  display: block;
  z-index: 2;
}
.vacancy-head__img img {
  width: 100%;
  height: auto;
}
.vacancy-description {
  margin-bottom: 100px;
}
.vacancy-description__content {
  padding: 60px 0;
  padding-left: 100px;
}
.vacancy-description__content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 30px;
}
.vacancy-description__content p em {
  font-style: italic !important;
}
.vacancy-description__content h5 {
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 29px;
  text-transform: uppercase;
  color: #393939;
}
.vacancy-description__content ol, .vacancy-description__content ul {
  margin-bottom: 70px;
  margin-top: 30px;
  list-style: decimal;
  padding-left: 27px;
}
.vacancy-description__content ol li, .vacancy-description__content ul li {
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 10px 0;
  padding-left: 5px;
}
.vacancy-description__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.vacancy-description__link a:first-child {
  display: inline-block;
  padding: 20px;
  font-weight: 300;
  font-size: 20px;
  line-height: 19px;
  color: #FFFFFF;
  background: #E00047;
  text-decoration: none;
  border: 1px solid transparent;
}
.vacancy-description__link a:last-child {
  font-size: 20px;
  line-height: 19px;
  display: block;
  text-decoration: none;
  margin-left: 60px;
  padding: 20px;
  border: 1px solid #E00047;
  box-sizing: border-box;
  color: #E00047;
  background: #FFFFFF;
}

@keyframes toggler {
  0% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 0px);
  }
  100% {
    transform: translate(-50%, -10px);
  }
}
.app {
  width: 100%;
}
.app .vacancies-reason__list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.app .vacancies-reason__list .app-btn-wrap--list {
  max-width: 50%;
  flex: 0 0 50%;
  margin-bottom: 0;
  margin-top: 0;
}
.app .vacancies-reason__item {
  max-width: 50%;
  flex: 0 0 50%;
  width: 100%;
}
.app-wrap {
  width: 100%;
  min-height: 570px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
.app-wrap .home-title {
  position: relative;
  z-index: 2;
  opacity: 1;
  width: 60%;
  bottom: auto;
}
.app-video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.app-video-wrap {
  max-width: 995px;
  width: 100%;
  height: 400px;
  padding-left: 10px;
  padding-right: 10px;
}
.app-video-wrap iframe {
  width: 100%;
  height: 100%;
}
.app-bg {
  width: 80%;
  height: 100%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  top: 0;
}
.app-bg:before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}
.app-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-bg img.mobile {
  display: none;
}
.app-btn-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-top: 34px;
  margin-bottom: 100px;
}
.app-btn-wrap a {
  width: 226px;
  height: 65px;
  text-decoration: none;
  cursor: pointer;
}
.app-btn-wrap a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-btn-wrap a + a {
  margin-left: 30px;
}

@media screen and (max-width: 1400px) {
  .app-wrap .home-title h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .app-video-wrap {
    max-width: 715px;
  }
}
@media screen and (max-width: 980px) {
  .app .vacancies-reason__item {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 750px) {
  .app .app-wrap .home-title h2 {
    font-size: 20px;
  }
  .app-down {
    bottom: 120px;
  }
  .app-video-wrap {
    height: 300px;
  }
  .app-wrap {
    min-height: 500px;
    padding-left: 0;
  }
  .app-container {
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    justify-content: center;
    padding-bottom: 200px;
  }
  .app-container .home-title {
    width: 100%;
  }
  .app-bg img.mobile {
    display: block;
  }
  .app-bg img.desktop {
    display: none;
  }
  .app-btn-wrap a {
    width: 170px;
    height: 50px;
  }
  .app-btn-wrap a + a {
    margin-left: 15px;
  }
}
@media screen and (max-width: 450px) {
  .app-bg img.mobile {
    object-position: left center;
  }
  .app-wrap .home-title {
    width: 100%;
    left: 0;
  }
  .app .vacancies-gallery .arrow-prev {
    left: 30%;
  }
  .app .vacancies-reason__list .app-btn-wrap--list {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .app-btn-wrap {
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .app-video {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.select-label {
  height: 40px;
}
.select-label:after {
  content: "";
  background: url("../img/svg/arrow-down.svg") center center no-repeat;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  transition: transform 0.3s ease;
  height: 16px;
}

.rotate:after {
  transform: translateY(-50%) rotateX(180deg);
  transition: transform 0.3s ease;
}

.select {
  cursor: pointer;
}

.select-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  transition: all 0.4s ease;
  z-index: 999 !important;
}
.select-wrapper p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  cursor: pointer;
  width: 100%;
  font-family: "Gotham Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #393939;
  padding-left: 25px;
  background: #FFFFFF;
  border-bottom: 1px solid #E00047;
  border-left: 1px solid #E00047;
  border-right: 1px solid #E00047;
  transition: background 0.3s ease;
}
.select-wrapper p:hover {
  background: rgba(224, 0, 71, 0.9);
  color: #FFFFFF;
  transition: background 0.3s ease, color 0.4s ease;
}

.active-select-wrapper {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}

.privacy {
  width: 100%;
  margin-top: 102px;
  padding-top: 60px;
}
.privacy-wrap {
  width: 100%;
  line-height: 1.4;
}

@media screen and (max-width: 980px) {
  .privacy {
    padding-top: 0;
  }

  .privacy-wrap h1 {
    font-size: 24px;
  }
}
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 400;
  background: #fff;
}
body.open {
  overflow-y: hidden;
}
body.view.no-touch .header-wrap > div {
  opacity: 0;
}
body.view.no-touch .header-wrap > div:nth-child(1) {
  animation: slide__top 1s 1 ease-in-out 0.3s both;
}
body.view.no-touch .header-wrap > div:nth-child(2) {
  animation: slide__top 1s 1 ease-in-out 0.6s both;
}
body.view.no-touch .header-wrap > div:nth-child(3) {
  animation: slide__top 1s 1 ease-in-out 0.9s both;
}
body.view.no-touch #services .services-img {
  animation: down__right 1s 1 ease-in-out 0.5s both;
}
body.view.no-touch .gallery-top {
  animation: down__right 1s 1 ease-in-out 0.5s both;
}
body.view.no-touch .services-container {
  animation: down 1s 1 ease-in-out 0.8s both;
}
body.view.no-touch .gallery-arrows .slider-arrow svg {
  animation: left 1s 1 ease-in-out 0.9s both;
}
body.view.no-touch .home .slider-arrow {
  animation: left 1s 1 ease-in-out 1.6s both;
}
body.view.no-touch .home-slider {
  animation: down__right 1s 1 ease-in-out 1.2s both;
}

.container {
  width: 100%;
  max-width: 1710px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.wrapper {
  width: 100%;
  min-width: 320px;
  padding-top: 165px;
  position: relative;
  overflow-x: hidden;
}
.wrapper > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 70;
}

h2 {
  font-size: 60px;
  color: #E00047;
  display: inline-block;
  padding: 32px 34px;
  line-height: 80px;
  font-weight: 200;
  border: 1px solid #E00047;
  text-transform: uppercase;
}
header {
  transition: padding-bottom 0.3s ease, padding-top 0.3s ease;
}
header.fixed {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.header {
  padding-bottom: 30px;
  padding-top: 20px;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mobile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f3f3f3;
  z-index: 19;
  display: none;
}
.header-mobile .header-mobile__logo {
  margin-right: -7px;
}
.header-mobile__logo a {
  display: block;
  font-size: 0;
}
.header-mobile__logo a img {
  max-width: 130px;
  height: 60px;
  object-fit: contain;
}
.header-mobile__btn a {
  display: block;
  max-width: 80px;
  text-align: center;
  text-decoration: none;
  padding: 5px;
  font-size: 12px;
  color: #fff;
  background: #E00047;
}
.header-mobile__top {
  position: fixed;
  top: 0;
  background: #fff;
  padding: 5px 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header-mobile__list {
  margin-bottom: 20px;
}
.header-mobile__sidebar {
  padding-left: 20px;
  padding-top: 30px;
  position: fixed;
  top: 68px;
  left: 0;
  width: 300px;
  height: 100vh;
  bottom: 0;
  background: #fff;
  z-index: 25;
  transition: transform 0.5s ease-in-out;
  transform: translateX(-100%);
}
.header-mobile__sidebar.open {
  transform: translateX(0);
}
.header-mobile__sidebar a {
  font-size: 30px;
  text-decoration: none;
  color: #E00047;
  font-weight: 200;
  display: inline-block;
}
.header-mobile__sidebar li {
  margin-bottom: 10px;
}
.header-mobile__bg {
  display: none;
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.header__burger {
  width: 30px;
  height: 19px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 10;
}
.header__burger.active span {
  transition: width 0.2s ease-in-out, bottom 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0.4s, top 0.2s ease-in-out 0.2s, bottom 0.2s ease-in-out 0.2s;
}
.header__burger.active span:first-child {
  width: 100%;
  top: 11px;
  transform: rotate(-45deg);
}
.header__burger.active span:nth-child(2) {
  width: 0;
}
.header__burger.active span:nth-child(3) {
  width: 0;
}
.header__burger.active span:last-child {
  top: 11px;
  width: 100%;
  transform: rotate(45deg);
}
.header__burger span {
  position: absolute;
  left: 0;
  background: #E00047;
  height: 1px;
  overflow: hidden;
  transition: width 0.2s ease-in-out 0.4s, transform 0.2s ease-in-out, top 0.2s ease-in-out 0.2s, bottom 0.2s ease-in-out 0.2s, background 0.2s ease-in-out 0.3s;
}
.header__burger span::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-101%);
  transition: transform 0.2s ease-in-out;
  background: #E00047;
  height: 4px;
  display: block;
}
.header__burger span:nth-child(1) {
  width: 60%;
  top: 0;
}
.header__burger span:nth-child(1)::after {
  transition-delay: 0.25s;
}
.header__burger span:nth-child(2) {
  width: 85%;
  top: 6px;
}
.header__burger span:nth-child(2)::after {
  transition-delay: 0.2s;
}
.header__burger span:nth-child(3) {
  width: 65%;
  bottom: 6px;
}
.header__burger span:nth-child(3)::after {
  transition-delay: 0.15s;
}
.header__burger span:nth-child(4) {
  bottom: 0;
  width: 100%;
}
.header__burger span:nth-child(4)::after {
  transition-delay: 0.1s;
}
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo {
  margin-right: 50px;
  margin-left: 50px;
  font-size: 0;
}
.header-logo img {
  width: 100%;
  max-width: 215px;
}
.header-social {
  font-size: 0;
}
.header-social li {
  display: inline-block;
  margin-right: 30px;
}
.header-social li a {
  height: 20px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 20px;
  text-align: center;
}
.header-social li a svg {
  transition: transform 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
.header-social li a svg:first-child {
  transform: translateY(0);
}
.header-social li a svg:last-child {
  transform: translateY(30px);
}
.header-social li:last-child {
  margin-right: 0;
}
.header-nav {
  font-size: 0;
}
.header-nav li {
  display: inline-block;
  margin-right: 50px;
}
.header-nav li:last-child {
  margin-right: 0;
}
.header-nav li a {
  text-transform: uppercase;
  color: #2D2D2D;
  text-decoration: none;
  overflow: hidden;
  display: block;
  height: 19px;
  position: relative;
  font-size: 0;
}
.header-nav li a.active {
  color: #E00047;
}
.header-nav li a span {
  display: block;
  height: 22px;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.5s ease;
  position: relative;
}
.header-nav li a span::after {
  content: attr(data-hover);
  position: absolute;
  bottom: 0px;
  transition: transform 0.5s ease;
  left: 0;
  transform: translateY(30px) skew(15deg, 15deg);
}
.header-right a {
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  color: #2D2D2D;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  height: 22px;
  overflow: hidden;
  padding-bottom: 5px;
}
.header-right a span {
  display: block;
  transition: transform 0.5s ease;
  position: relative;
  height: 25px;
  transform: translateY(-1px);
}
.header-right a span::after {
  content: attr(data-hover);
  position: absolute;
  bottom: 1px;
  transition: transform 0.5s ease;
  left: 0;
  transform: translateY(45px) skew(15deg, 15deg);
}
.header-right a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(224, 0, 71, 0.5);
  height: 3px;
  width: 100%;
}
.header-right a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e00047;
  height: 3px;
  width: 100%;
  max-width: 0;
  transition: max-width 0.5s ease;
}
.header-language {
  margin-right: 30px;
}
.header-left {
  width: 100%;
  max-width: 206px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.select__current.input {
  display: inline-block;
  position: relative;
  color: #E00047;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
  transition: color 0.3s ease;
}

.select__current {
  padding-right: 8px;
}

.select {
  position: relative;
}

.select__wrap {
  position: absolute;
  left: 0;
  z-index: 999;
  top: 0;
  display: none;
}

.select__dropdown {
  margin-top: 20px;
}
.select__dropdown li {
  text-transform: uppercase;
  display: block;
  font-size: 15px;
  transition: background 0.3s ease;
}
.select__dropdown li a {
  padding: 4px 0;
  text-decoration: none;
  display: block;
  color: #E00047;
  background: transparent;
  font-size: 15px;
  font-weight: bold;
}

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

.slick-slide img {
  display: inline-block !important;
}

.home-wrap {
  height: 700px;
  position: relative;
}
.home-item {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  position: absolute;
}
.home-item.prev {
  z-index: 4;
}
.home-item.prev .home-img {
  opacity: 1;
}
.home-item.prev .home-img__block {
  opacity: 1;
  max-width: 70%;
  transform: translateX(200%) translateY(-50%);
  transition: max-height 0.5s linear, transform 1.5s ease 0.5s, max-width 0.3s ease-in 0.4s;
  max-height: 80%;
}
.home-item.next {
  z-index: 4;
}
.home-item.next .home-img {
  opacity: 1;
}
.home-item.next .home-img__block {
  opacity: 1;
  max-width: 70%;
  transform: translateX(-200%) translateY(-50%);
  transition: max-height 0.5s linear, transform 1.5s ease 0.5s, max-width 0.3s ease-in 0.4s;
  max-height: 80%;
}
.home-item.going-prev .home-title {
  transform: translateX(-20px);
  transition: opacity 0.5s ease 0.5s, transform 1s ease 0.5s;
}
.home-item.going-prev .home-img__block {
  opacity: 0;
  max-width: 70%;
  transform: translateX(-200%) translateY(-50%);
  transition: max-height 0.5s linear, transform 1s ease 0.5s, max-width 0.3s ease-in 0.4s;
  max-height: 80%;
}
.home-item.going-next .home-title {
  transform: translateX(20px);
  transition: opacity 0.5s ease 0.5s, transform 1s ease 0.5s;
}
.home-item.going-next .home-img__block {
  opacity: 0;
  max-width: 70%;
  transform: translateX(200%) translateY(-50%);
  transition: max-height 0.5s linear, transform 1s ease 0.5s, max-width 0.3s ease-in 0.4s;
  max-height: 80%;
}
.home-item.current {
  z-index: 9;
}
.home-item.current .home-img {
  opacity: 1;
}
.home-item.current .home-img__block {
  opacity: 1;
  max-width: 95%;
  transform: translateX(0) translateY(-50%);
  max-height: 100%;
  transition: max-height 0.5s linear 0.9s, transform 1s ease, max-width 0.2s ease;
}
.home-item.current .home-title {
  transform: translateX(0);
  transition: opacity 0.5s linear 1s;
  opacity: 1;
}
.home-img {
  user-select: none;
  text-align: right;
  font-size: 0;
  height: 100%;
  width: 100%;
  position: relative;
}
.home-img__block {
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  max-width: 95%;
  max-height: 100%;
}
.home-img__block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90.58deg, rgba(255, 255, 255, 0.9) 0.22%, rgba(239, 239, 239, 0.8) 27.19%, rgba(196, 196, 196, 0) 99.79%);
}
.home h2 {
  max-width: 970px;
}
.home-title {
  position: absolute;
  bottom: 105px;
  left: 0;
  z-index: 8;
  opacity: 0;
}
.home-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.home .arrow-prev {
  left: 0;
}
.home .slider-arrow {
  bottom: 45px;
  z-index: 9;
}
.home .arrow-next {
  left: 183px;
}

.slider-arrow {
  cursor: pointer;
  z-index: 2;
  width: 100px;
  height: 26px;
  display: block;
  position: absolute;
}
.slider-arrow svg path {
  transition: fill 0.3s ease;
  fill: #000;
}

.about {
  font-size: 0;
  margin-top: 110px;
}
.about .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.about h2 {
  position: absolute;
  left: 15px;
  top: 0;
  padding-right: 100px;
  z-index: 3;
}
.about-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 95%;
}
.about-img {
  font-size: 0;
}
.about-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  padding-right: 50px;
  margin-top: 250px;
}

.btn {
  min-width: 238px;
  height: 56px;
  display: inline-block;
}
.btn a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid #393939;
  color: #393939;
  font-size: 20px;
  overflow: hidden;
  position: relative;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.btn a span {
  position: relative;
  z-index: 2;
}
.btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #E00047;
  display: block;
  transition: transform 0.4s ease-in-out;
  transform: translateX(-100%);
}

.gallery-slider__item {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.gallery-slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -50%;
  width: 200%;
  background-color: #fffcfc;
  transform: skewX(-15deg) translateX(0);
  transition: background-color 1.5s cubic-bezier(0.6, 0, 0.41, 1) 0.2s, transform 2s cubic-bezier(0.6, 0, 0.41, 1);
}
.gallery-slider__item img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.6, 0, 0.41, 1);
}
.gallery-slider__item.slick-center::after {
  background-color: transparent;
  transform: skewX(-15deg) translateX(-120%);
}
.gallery-slider__item.slick-center img {
  transition: opacity 0.1s cubic-bezier(0.6, 0, 0.41, 1);
  opacity: 1;
}

.main-gallery {
  margin-bottom: 100px;
}
.main-gallery .slick-list, .main-gallery .slick-track {
  height: 100%;
}
.main-gallery__description {
  width: 100%;
  display: block;
  max-width: calc(100% - 1060px);
  text-align: right;
  padding-left: 30px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s linear;
  transform: translateX(0);
}
.main-gallery__description.active {
  transform: translateX(-20px);
  opacity: 0;
}
.main-gallery__arrows {
  position: relative;
  transition: opacity 0.2s ease-in-out;
}
.main-gallery__arrows.disabled {
  opacity: 0.4;
}
.main-gallery__arrows.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.main-gallery__left {
  width: 1060px;
  height: 700px;
}
.main-gallery__container {
  position: relative;
}
.main-gallery__slider {
  height: 100%;
}
.main-gallery__slider-item {
  font-size: 0;
}
.main-gallery__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-gallery__slider2 {
  width: 370px;
  height: 245px;
  position: absolute;
  bottom: 65px;
  right: 0;
}
.main-gallery__slider2-item {
  font-size: 0;
}
.main-gallery__slider2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-gallery__slider3 {
  width: 370px;
  height: 245px;
  position: absolute;
  bottom: 65px;
  right: 400px;
}
.main-gallery__slider3-item {
  font-size: 0;
}
.main-gallery__slider3-item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.main-gallery .slider-arrow {
  right: 0;
  bottom: 0;
}
.main-gallery .arrow-next {
  right: 0;
}
.main-gallery .arrow-prev {
  right: 170px;
}

.main-services {
  margin-top: 100px;
}
.main-services .container {
  position: relative;
}
.main-services__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.main-services__container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-services__block {
  position: relative;
  margin-right: -55px;
}
.main-services__item {
  width: 100%;
  max-width: calc(33% - 40px);
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-right: 40px;
  margin-bottom: 100px;
  text-decoration: none;
  overflow: hidden;
}
.main-services__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 1px;
  max-width: 0;
  background: #000;
  z-index: 3;
}
.main-services__item::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1px;
  height: 100%;
  background: #000;
  z-index: 3;
  max-height: 0;
}
.main-services__item h5 {
  width: 100%;
  max-width: 295px;
  height: 115px;
  border: 1px solid #000;
  padding-left: 42px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #393939;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 3;
  overflow: hidden;
  transition: transform 0.4s ease, left 0.4s ease, top 0.4s ease, border-color 0.3s ease;
}
.main-services__img {
  width: 100%;
  max-width: 90%;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: max-width 0.3s ease-in-out;
}
.main-services__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.3s linear;
}
.main-services__decorator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.main-services__decorator::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  height: 1px;
  max-width: 0;
  background: #000;
  z-index: 3;
}
.main-services__decorator::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 1px;
  height: 100%;
  background: #000;
  z-index: 3;
  max-height: 0;
}

.contacts-item {
  max-width: 400px;
}
.contacts-item > p {
  font-weight: 300;
  font-size: 32px;
  line-height: 36px;
  color: #393939;
  min-height: 96px;
}
.contacts-block {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.contacts-container {
  margin-top: 50px;
  width: 100%;
  max-width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contacts-list {
  margin-top: 30px;
}
.contacts-list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}
.contacts-list li:last-child {
  margin-bottom: 0;
}
.contacts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center;
}
.contacts-list li a, .contacts-list li span {
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}
.contacts-list li a {
  transition: color 0.3s ease;
  height: 23px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.contacts-list li a span {
  display: inline-block;
  transition: transform 0.5s ease;
}
.contacts-list li a span:last-child {
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: translateY(60px) skew(15deg, 15deg);
}
.contacts-list li span {
  display: block;
}
.contacts-list__location::before {
  background-image: url("/themes/default/img/svg/location-ico.svg");
}
.contacts-list__works::before {
  width: 25px;
  height: 25px;
  background-image: url("/themes/default/img/svg/clock-ico.svg");
}
.contacts-list__mail::before {
  width: 27px;
  height: 21px;
  background-image: url("/themes/default/img/svg/message-ico.svg");
}
.contacts-list__phone::before {
  width: 23px;
  height: 27px;
  background-image: url("/themes/default/img/svg/phone-ico.svg");
}

.map {
  height: 750px;
  margin-top: 90px;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  animation: opacity 1s 1 ease-in-out;
}
.map .loader-map {
  position: absolute;
  background: #f3f3f3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.footer {
  background: #E0E0E0;
  position: relative;
  z-index: 3;
}
.footer-bot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
}
.footer-bot a {
  animation: slide__top 1s 1 ease-in-out 0.6s both;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #2D2D2D;
  font-size: 14px;
  transition: color 0.3s ease-in-out;
}
.footer-bot a:hover {
  color: #E00047;
}
.footer-mob {
  display: none;
}
.footer .header-mobile__top {
  position: relative;
  top: auto;
  width: 100%;
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: none;
}
.footer .header-mobile__logo {
  margin-right: 22px;
}

.services {
  margin-bottom: 80px;
}
.services-container {
  width: 100%;
  max-width: 98%;
  margin: -126px auto 0;
  position: relative;
  z-index: 10;
}
.services-img {
  text-align: right;
  font-size: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.services-img .slick-list,
.services-img .slick-track {
  height: 100%;
}
.services-img__wrap {
  height: 650px;
  width: 1050px;
}
.services-img__item {
  height: 100%;
  overflow: hidden;
}
.services-img__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -50%;
  width: 200%;
  background-color: #fffcfc;
  transform: skewX(-15deg) translateX(0);
  transition: background-color 1.5s cubic-bezier(0.6, 0, 0.41, 1) 0.2s, transform 2s cubic-bezier(0.6, 0, 0.41, 1);
}
.services-img__item img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.6, 0, 0.41, 1);
}
.services-img__item.slick-center::after {
  background-color: transparent;
  transform: skewX(-15deg) translateX(-120%);
}
.services-img__item.slick-center img {
  transition: opacity 0.1s cubic-bezier(0.6, 0, 0.41, 1);
  opacity: 1;
}
.services-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-block {
  text-align: center;
}
.services-item {
  display: none;
}
.services-item.active {
  animation: opacity 1s 1 ease;
  display: block;
}
.services-content {
  margin-top: 60px;
  width: 100%;
}
.services-tabs {
  background: #FCFCFC;
  font-size: 0;
  display: inline-block;
  position: relative;
  z-index: 10;
}
.services-tabs.disabled li a {
  opacity: 0.4;
}
.services-tabs.disabled li a.active {
  opacity: 1;
}
.services-tabs.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}
.services-tabs li {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.services-tabs li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  background: #E00047;
  width: 100%;
  transform: translateX(-110%);
}
.services-tabs li::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  background: #E00047;
  height: 100%;
  transform: translateY(-110%);
}
.services-tabs li a {
  text-align: center;
  border: 1px solid transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #E00047;
  text-decoration: none;
  padding: 50px 33px;
  display: block;
  transition: background-color 0.2s ease-in-out, opacity 0.2s ease;
}
.services-tabs li a.active {
  border-color: #E00047;
}
.services-tabs li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #E00047;
  width: 100%;
  transform: translateX(110%);
}
.services-tabs li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #E00047;
  height: 100%;
  transform: translateY(110%);
}

.table a {
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  color: #2D2D2D;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  height: 22px;
  overflow: hidden;
  padding-bottom: 5px;
}
.table a span {
  display: block;
  transition: transform 0.5s ease;
  position: relative;
  height: 25px;
  transform: translateY(-1px);
}
.table a span::after {
  content: attr(data-hover);
  position: absolute;
  bottom: 1px;
  transition: transform 0.5s ease;
  left: 0;
  transform: translateY(45px) skew(15deg, 15deg);
}
.table a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(224, 0, 71, 0.5);
  height: 3px;
  width: 100%;
}
.table a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e00047;
  height: 3px;
  width: 100%;
  max-width: 0;
  transition: max-width 0.5s ease;
}
.table-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  align-items: flex-start;
}
.table-row:last-child {
  margin-bottom: 0;
}
.table-cell__contnet {
  position: relative;
}
.table-cell:first-child {
  width: 45%;
  padding-right: 10px;
}
.table-cell:first-child p {
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #393939;
}
.table-cell:first-child span {
  display: block;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.table-cell:nth-child(3), .table-cell:nth-child(2), .table-cell:nth-child(4) {
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  color: #E00047;
  width: 12%;
  position: relative;
}
.table-cell:nth-child(3) div, .table-cell:nth-child(2) div, .table-cell:nth-child(4) div {
  display: inline-block;
  position: relative;
  padding: 5px 10px 10px 10px;
}
.table-cell:nth-child(3) span, .table-cell:nth-child(2) span, .table-cell:nth-child(4) span {
  position: absolute;
  bottom: 6px;
  left: 10px;
  font-size: 12px;
  color: #626262;
  display: inline-block;
  line-height: 1;
}
.table-cell:last-child {
  padding-top: 15px;
}
.table-cell:last-child a {
  height: 24px;
  font-size: 22px;
  color: #626262;
  text-transform: none;
}

.gallery .services-img.addings {
  animation: opacity 1s 1 ease-in-out;
}
.gallery-top {
  position: relative;
}
.gallery-arrows .arrow-prev {
  bottom: 180px;
  left: 5.5%;
}
.gallery-arrows .arrow-next {
  bottom: 180px;
  left: calc(170px + 5.5%);
}
.gallery-wrap {
  margin-right: -20px;
}
.gallery-content {
  display: none;
}
.gallery-content.active {
  display: block;
  animation: opacity 1s 1 ease-in-out;
}
.gallery-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery-item {
  margin-right: 20px;
  margin-bottom: 20px;
  display: block;
  width: calc(33.3% - 20px);
  text-decoration: none;
  font-size: 0;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.gallery .services-container {
  max-width: 100%;
}

.popup {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}
.popup-title {
  display: block;
  position: absolute;
  top: 25px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  color: #E00047;
  padding: 5px;
  border: #E00047 1px solid;
}
.popup-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  position: relative;
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 20px;
  z-index: 3;
  padding-bottom: 25px;
  margin: 50px 20px;
}
.popup-content.wided {
  max-width: 1140px;
}
.popup-content.tightened {
  max-width: 800px;
}
.popup-content.tightened .popup-list {
  padding-top: 20px;
}
.popup-content.tightened .popup-list li {
  align-items: center;
}
.popup-bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup-close svg {
  width: 30px;
}
.popup-list {
  display: flex;
  justify-content: space-between;
}
.popup-list__title {
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
  color: #393939;
  margin-bottom: 15px;
}
.popup-list__btn {
  display: inline-block;
  padding: 15px 20px;
  background: #E00047;
  text-decoration: none;
  color: #fff;
  max-width: 150px;
  text-align: center;
  border: 1px solid #E00047;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.popup-list li {
  padding-right: 20px;
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resume {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}
.resume-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-content {
  width: 100%;
  max-width: 860px;
  background: #fff;
  position: relative;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 80px;
  z-index: 3;
  margin: 50px 20px;
  min-height: 140px;
}
.resume-bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.resume-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3;
}
.resume-close svg {
  width: 30px;
}
.resume-form__head {
  font-weight: 300;
  font-size: 60px;
  line-height: 57px;
  text-transform: uppercase;
  color: #E00047;
  text-align: center;
  margin-bottom: 60px;
}
.resume-form .input-col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.resume-form input[type=text] {
  font-family: "Gotham Pro", sans-serif;
  width: 100%;
  height: 60px;
  border: 1px solid #E00047;
  box-sizing: border-box;
  padding: 0 20px;
  font-weight: 300;
  font-size: 20px;
  color: #393939;
  line-height: 60px;
}
.resume-form input[type=text]::placeholder {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 60px;
  color: #B5B5B5;
}
.resume-form .row-text {
  width: 100%;
}
.resume-form .row-select {
  max-width: 420px;
  width: 100%;
}
.resume-form .row-select input {
  padding-right: 40px;
}
.resume-form .row-checkbox {
  max-width: 420px;
  width: 100%;
}
.resume-form .row-checkbox__wrap {
  margin-bottom: 15px;
}
.resume-form .row-checkbox__wrap:last-child {
  margin-bottom: 0;
}
.resume-form .row-checkbox__wrap input {
  display: none;
}
.resume-form .row-checkbox__wrap label {
  padding-left: 40px;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #393939;
  position: relative;
  cursor: pointer;
}
.resume-form .row-checkbox__wrap label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #E00047;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
}
.resume-form .row-checkbox__wrap input:checked ~ label:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  background: #E00047;
  width: 12px;
  height: 12px;
}
.resume-form .input-row {
  position: relative;
}
.resume-form .input-col__middle {
  margin: 30px 0;
}
.resume-form .input-col__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.resume-form .input-col__bottom-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.resume-form .input-col__bottom-left .input-row {
  width: 100%;
}
.resume-form .input-col__bottom-left .input-file label {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  background: #E00047;
}
.resume-form .input-col__bottom-left .input-file input {
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.resume-form .input-col__bottom-left .input-file p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  width: 100%;
}
.resume-form .input-col__bottom-left .input-file .file-remove {
  display: none;
  position: absolute;
  top: 50%;
  right: -30px;
  cursor: pointer;
  transform: translateY(-50%);
}
.resume-form .input-col__bottom-left .input-file .file-remove svg {
  width: 20px;
  height: 20px;
  fill: #E00047;
  margin: 0;
}
.resume-form .input-col__bottom-left .input-file span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  position: relative;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
}
.resume-form .input-col__bottom-left .input-file svg {
  margin-right: 25px;
}
.resume-form .input-col__bottom-right {
  max-width: 780px;
  width: 100%;
  height: 100%;
}
.resume-form .input-col__bottom-right .input-row {
  height: 100%;
  width: 100%;
}
.resume-form .input-col__bottom-right textarea {
  resize: none;
  height: 100%;
  font-family: "Gotham Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #393939;
  width: 100%;
  border: 1px solid #E00047;
  box-sizing: border-box;
  padding: 20px;
}
.resume-form .input-col__bottom-right textarea::placeholder {
  font-family: "Gotham Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #B5B5B5;
}
.resume-form .input-submit {
  margin-top: 60px;
  text-align: center;
}
.resume-form .input-submit button {
  cursor: pointer;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 15px 30px;
  background: #E00047;
  border: 1px solid transparent;
}
.resume div.error {
  position: absolute;
  left: 0;
  bottom: -15px;
  font-size: 12px;
  color: #E00047;
}
.resume .form-success__message,
.resume .form-error__message {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: black;
  padding: 15px 40px;
  font-weight: 300;
}
.resume .form-success__message-wrap,
.resume .form-error__message-wrap {
  display: none;
}
.resume .form-loader {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 2;
}
.resume .form-loader .loader-form__main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.resume .form-loader .loader-form__main p img {
  width: 200px;
  height: auto;
}

.fancybox-container {
  z-index: 200000;
}

.fancybox-bg {
  background: #FFFFFF;
  opacity: 0.9;
}

.fancybox-button div {
  height: auto;
}

.fancybox-toolbar {
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
  left: 10px;
  padding: 31px 0;
}
.fancybox-navigation .fancybox-button.fancybox-button--arrow_left div {
  background: url(../img/svg/fancy-left.svg) center center no-repeat;
  background-size: cover;
  width: 100%;
}
.fancybox-navigation .fancybox-button.fancybox-button--arrow_left div svg {
  display: none;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
  right: 10px;
  padding: 31px 0;
}
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right div {
  background: url(../img/svg/fancy-right.svg) center center no-repeat;
  background-size: cover;
}
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right div svg {
  display: none;
}

.fancybox-button {
  background: transparent;
}

.fancybox-button svg path {
  fill: #E00047;
}

.fancybox-thumbs__list {
  background: white;
  opacity: 0.9;
}

.fancybox-thumbs__list a:before {
  border: 2px solid #E00047;
}

.fancybox-button.fancybox-button--zoom {
  display: none !important;
}

.fancybox-slide.fancybox-slide--image {
  animation: polygon2 0.7s 1 linear both;
}

.slick-slide {
  -webkit-transform: translate3d(0, 0, 0);
}

.popup a {
  color: #fff;
}

.home-slider-btn {
  cursor: pointer;
}

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader p {
  width: 350px;
  height: 84px;
}
.loader p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bounceball {
  margin-right: 30px;
  position: relative;
  display: inline-block;
  height: 50px;
  width: 15px;
}
.bounceball:before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #E00047;
  transform-origin: 50%;
  animation: bounce 500ms alternate infinite ease;
}

@keyframes bounce {
  0% {
    top: 50px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}
@media screen and (max-width: 1600px) {
  .services-img__wrap {
    height: 400px;
  }

  .main-gallery__description,
.vacancies-gallery__description {
    max-width: calc(100% - 900px);
  }

  .main-gallery__left,
.vacancies-gallery__left {
    width: 900px;
    height: 550px;
  }

  .main-gallery__slider3,
.vacancies-gallery__slider3 {
    width: 340px;
    height: 220px;
  }

  .main-gallery__slider2,
.vacancies-gallery__slider2 {
    width: 340px;
    height: 220px;
  }

  .header-logo img {
    max-width: 190px;
  }

  .header-nav li {
    margin-right: 40px;
  }

  .container {
    max-width: 1300px;
  }

  .home-img__block {
    overflow: hidden;
  }

  h2 {
    font-size: 70px;
    padding: 28px;
  }

  .about-desc {
    margin-top: 200px;
  }

  .home-wrap {
    height: 580px;
  }

  .main-services__item,
.vacancies-services__item {
    width: 100%;
  }

  .main-services__img,
.vacancies-services__img {
    max-width: 90%;
  }

  .contacts-item {
    padding-right: 20px;
  }

  .map {
    height: 600px;
  }

  .header-left {
    width: auto;
    max-width: initial;
  }

  .services-tabs li a {
    font-size: 18px;
    padding: 40px 11px;
  }

  .services-container {
    margin: -105px auto 0;
  }

  .services-img__wrap {
    width: 950px;
  }

  .services-img {
    height: 630px;
  }

  .gallery-arrows .arrow-prev {
    bottom: 150px;
    left: 4.5%;
  }

  .gallery-arrows .arrow-next {
    bottom: 150px;
    left: calc(150px + 4.5%);
  }

  .services-img {
    height: 400px;
  }

  .services-img__item {
    width: 700px;
  }

  .main-services__img,
.vacancies-services__img {
    height: 250px;
  }

  .main-services__item h5,
.vacancies-services__item h5 {
    font-size: 24px;
    line-height: 28px;
    height: 90px;
  }

  .table-cell:nth-child(2) {
    width: 14%;
    font-size: 34px;
  }

  .table-cell:nth-child(3) {
    width: 14%;
    font-size: 34px;
  }

  .table-cell:nth-child(4) {
    width: 14%;
    font-size: 34px;
  }

  .table-cell:first-child {
    width: 40%;
  }

  .vacancies-head__img,
.vacancy-head__img {
    max-width: 700px;
  }

  .vacancies-wrap,
.vacancy-wrap {
    height: 470px;
  }

  .header-right a span {
    transform: translateY(1px);
  }

  .header-nav li a span {
    font-size: 18px;
    height: 18px;
  }

  .header-logo img {
    max-width: 175px;
  }
}
@media screen and (max-width: 1600px) and (min-width: 1400px) {
  .home h2 {
    max-width: 750px;
  }

  h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .home-wrap {
    height: 529px;
  }

  .input-col__bottom-right {
    max-width: 800px !important;
  }

  .resume-content {
    width: 100%;
    max-width: 860px;
    background: #fff;
    position: relative;
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    margin: 30px 20px;
  }

  .resume-form__head {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .resume-form .input-submit {
    margin-top: 40px;
  }
}
@media all and (max-height: 610px) {
  .resume-content {
    overflow-y: scroll;
    height: 100%;
  }
}
@media screen and (max-width: 1390px) {
  .main-gallery__slider3,
.vacancies-gallery__slider3 {
    right: 330px;
  }

  .main-gallery__description,
.vacancies-gallery__description {
    max-width: calc(100% - 800px);
  }

  .main-gallery__left,
.vacancies-gallery__left {
    width: 800px;
    height: 550px;
  }

  .main-gallery__slider3,
.main-gallery__slider2,
.vacancies-gallery__slider3,
.vacancies-gallery__slider2 {
    width: 300px;
    height: 190px;
  }

  .container {
    max-width: 1280px;
  }

  .gallery-arrows .arrow-prev {
    bottom: 250px;
    left: 1.5%;
  }

  .gallery-arrows .arrow-next {
    left: calc(130px + 1.5%);
    bottom: 250px;
  }

  .services-img {
    height: 550px;
  }

  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contacts-item {
    max-width: 360px;
  }

  h2 {
    font-size: 60px;
    padding: 22px;
    line-height: 72px;
  }

  .contacts-item > p {
    font-size: 32px;
    line-height: 42px;
  }

  .home-wrap {
    height: 570px;
  }

  .about {
    margin-top: 80px;
  }

  .about-desc {
    margin-top: 159px;
    font-size: 18px;
    line-height: 22px;
  }

  .main-services,
.vacancies-services {
    margin-top: 80px;
  }

  .main-services__img,
.vacancies-services__img {
    height: 260px;
  }

  .main-services__item h5 {
    max-width: 250px;
    bottom: 40px;
    font-size: 24px;
    height: 90px;
    padding-left: 30px;
  }

  .home h2 {
    max-width: 750px;
  }

  .map {
    height: 500px;
  }

  .services-container {
    max-width: 98%;
  }

  .table-cell:first-child p {
    font-size: 28px;
    line-height: 32px;
  }

  .table-cell:nth-child(2) {
    font-size: 34px;
    line-height: 40px;
  }

  .table-cell:nth-child(3) {
    font-size: 34px;
    line-height: 40px;
  }
  .table-cell:nth-child(4) {
    font-size: 34px;
    line-height: 40px;
  }
  .table-cell:first-child span {
    font-size: 18px;
    line-height: 20px;
  }

  .services-img__wrap {
    width: 885px;
  }

  .header-nav li a span {
    font-size: 18px;
    height: 18px;
  }

  .header-logo img {
    max-width: 175px;
  }

  .contacts-container {
    margin-top: 30px;
  }

  .contacts-list {
    margin-top: 15px;
  }

  .services-content {
    margin-top: 30px;
  }

  .services-tabs li a {
    padding: 28px 10px;
  }

  .services-container {
    margin: -231px auto 0;
  }

  .vacancies-services__item h5 {
    font-size: 18px;
  }

  .resume div.error {
    font-size: 10px;
  }
}
@media all and (max-width: 1300px) {
  .resume-form {
    max-width: 500px;
    margin: 0 auto;
  }
  .resume-form .input-row {
    margin: 12px 0;
  }

  .resume-form .input-col__middle {
    margin: 0;
  }

  .resume-form .input-col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .resume-form .row-text, .resume-form .input-col__bottom-left,
.resume-form .row-select {
    width: 100%;
    max-width: none;
  }

  .resume div.error {
    bottom: -10px;
    font-size: 9px;
  }

  .resume-form input[type=text],
.select-wrapper p {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .resume-form input[type=text]::placeholder,
.select-wrapper p::placeholder {
    font-size: 14px;
    line-height: 40px;
  }

  .resume-form .input-col__bottom-right textarea {
    font-size: 14px;
  }
  .resume-form .input-col__bottom-right textarea::placeholder {
    font-size: 14px;
  }

  .resume-form__head {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .resume-form .input-col__bottom-left .input-file label {
    height: 40px;
  }

  .resume-form .row-checkbox__wrap label {
    font-size: 15px;
    line-height: 20px;
  }

  .row-checkbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .resume-form .input-col__bottom {
    height: auto;
  }

  .resume-form .input-submit {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .main-services__item h5,
.vacancies-services__item h5 {
    top: auto;
  }

  .header-logo {
    margin-bottom: 10px;
  }

  .main-gallery .slider-arrow,
.vacancies-gallery .slider-arrow {
    bottom: -20px;
  }

  .main-gallery__description,
.vacancies-gallery__description {
    font-size: 16px;
    padding-left: 15px;
    line-height: 20px;
  }

  .main-gallery__left,
.vacancies-gallery__left {
    width: 800px;
    height: 550px;
  }

  .main-gallery__slider2,
.vacancies-gallery__slider2 {
    width: 300px;
    height: 190px;
    display: none;
  }

  .main-gallery__slider3,
.vacancies-gallery__slider3 {
    display: block;
    right: 0;
  }

  .header-right a {
    font-size: 16px;
  }

  .header-right {
    width: auto;
  }

  .header-nav li a span {
    font-size: 16px;
    height: 16px;
  }

  .header-logo img {
    max-width: 140px;
  }

  .header-nav li {
    margin-right: 30px;
  }

  .header-logo {
    height: 80px;
    margin-right: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-language {
    margin-right: 23px;
  }

  .services-img {
    height: 470px;
  }

  .services-img__wrap {
    width: 750px;
  }

  .services-tabs li a {
    font-size: 14px;
    padding: 17px 9px;
  }

  .services-container {
    margin: -130px auto 0;
  }

  .table-cell:first-child p {
    font-size: 22px;
    line-height: 28px;
  }

  .table-cell:nth-child(2) {
    font-size: 26px;
    line-height: 40px;
  }

  .table-cell:nth-child(3) {
    font-size: 26px;
    line-height: 40px;
  }
  .table-cell:nth-child(4) {
    font-size: 26px;
    line-height: 40px;
  }
  .table-cell:last-child a {
    height: 22px;
    font-size: 20px;
  }

  .table-cell:first-child span {
    font-size: 16px;
    line-height: 18px;
  }

  h2 {
    font-size: 48px;
    padding: 21px;
    line-height: 55px;
  }

  .contacts-item > p {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-item {
    width: 100%;
    max-width: 33%;
  }

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

  .contacts-list li a, .contacts-list li span {
    font-size: 18px;
    line-height: 22px;
  }

  .map {
    margin-top: 50px;
  }

  .header-nav li a {
    height: 17px;
  }

  .home-wrap {
    height: 460px;
  }

  .home .slider-arrow {
    bottom: 30px;
  }

  .home h2 {
    max-width: 550px;
  }

  .home-title {
    bottom: 90px;
  }

  .about-content {
    width: 100%;
    max-width: 60%;
  }

  .about-img {
    width: 100%;
    max-width: 40%;
  }
  .about-img img {
    width: 100%;
    max-width: 100%;
  }

  .about-desc {
    margin-top: 140px;
    padding-right: 30px;
  }

  .main-services__item h5,
.vacancies-services__item h5 {
    max-width: 210px;
    bottom: 36px;
    font-size: 22px;
    height: 68px;
    padding-left: 18px;
  }

  .vacancies-services__item h5 {
    max-width: 230px;
    font-size: 16px;
  }

  .main-services__item,
.vacancies-services__item {
    margin-bottom: 70px;
  }

  .main-services__img,
.vacancies-services__img {
    height: 220px;
  }

  .table-cell:last-child {
    padding-top: 10px;
  }

  .gallery-arrows {
    z-index: 11;
  }

  .gallery-arrows .arrow-prev,
.gallery-arrows .arrow-next {
    width: 70px;
  }
  .gallery-arrows .arrow-prev svg,
.gallery-arrows .arrow-next svg {
    width: 100%;
  }

  .gallery-arrows .arrow-next {
    left: calc(86px + 1.5%);
  }

  .gallery-arrows .arrow-prev {
    bottom: 150px;
  }

  .gallery-arrows .arrow-next {
    bottom: 150px;
  }

  .vacancies-reason__list {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .vacancies-head,
.vacancy-head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .vacancies-wrap,
.vacancy-wrap {
    height: auto;
  }

  .vacancies-head__left,
.vacancy-head__left {
    position: static;
  }
  .vacancies-head__left .vacancies-head__title,
.vacancies-head__left .vacancy-head__title,
.vacancy-head__left .vacancies-head__title,
.vacancy-head__left .vacancy-head__title {
    max-width: 95%;
  }

  .vacancies-head__link,
.vacancy-head__link {
    margin-top: 30px;
    text-align: center;
  }

  .vacancies-head__img,
.vacancy-head__img {
    max-width: 100%;
    margin-top: 20px;
  }

  .vacancy-description__content {
    padding: 60px 0 60px 40px;
  }
}
@media screen and (max-width: 980px) {
  .footer-bot {
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
  }

  .popup-list {
    display: block;
  }
  .popup-list li {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .popup-list li:last-child {
    margin-bottom: 0;
  }
  .popup-list li a {
    margin: 0 auto;
  }

  .popup-wrap {
    overflow-y: auto;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-content {
    margin-left: 0;
    margin-right: 0;
  }

  .services-img__wrap {
    height: auto;
  }

  .main-gallery__description,
.vacancies-gallery__description {
    top: auto;
    bottom: -50px;
    left: 0;
    max-width: 100%;
    text-align: center;
    display: none;
  }

  .wrapper {
    padding-top: 90px;
  }

  .header-mobile .header-social {
    display: inline-block;
    vertical-align: middle;
  }
  .header-mobile .header-language {
    display: inline-block;
    vertical-align: middle;
  }
  .header-mobile .header-mobile__sidebar li {
    margin-bottom: 0;
  }
  .header-mobile .header-mobile__list {
    margin-bottom: 30px;
  }
  .header-mobile .header-mobile__list li {
    margin-bottom: 20px;
  }

  .footer .header {
    margin-bottom: 0;
  }

  .main-gallery__slider3,
.vacancies-gallery__slider3 {
    display: none;
  }

  .main-gallery .slider-arrow,
.vacancies-gallery .slider-arrow {
    bottom: -40px;
  }

  .gallery-slider__item::after {
    display: none;
  }

  .main-gallery__left,
.vacancies-gallery__left {
    height: 400px;
    width: 100%;
    overflow: hidden;
  }

  .services-tabs {
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .services-tabs li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .services-tabs li a {
    height: 100%;
    font-size: 14px;
    text-align: center;
    display: inline;
    vertical-align: center;
    padding: 17px 15px;
  }

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

  .services-container {
    margin: 0 auto;
  }

  .services-img__wrap {
    width: 100%;
  }

  .table-cell:first-child p {
    font-size: 20px;
    line-height: 26px;
  }

  .table-cell:nth-child(2) {
    font-size: 22px;
    line-height: 40px;
  }

  .table-cell:nth-child(3) {
    font-size: 22px;
    line-height: 40px;
  }

  .table-cell:nth-child(4) {
    font-size: 22px;
    line-height: 40px;
  }

  .table-cell:last-child a {
    height: 20px;
    font-size: 18px;
  }

  .services {
    margin-bottom: 50px;
  }

  .contacts-item {
    max-width: 100%;
  }

  .contacts-container {
    flex-wrap: wrap;
  }

  .contacts-item > p {
    min-height: auto;
  }

  .contacts-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contacts-list li {
    margin-right: 40px;
    width: calc(49% - 40px);
  }

  .contacts-item {
    margin-bottom: 20px;
  }

  h2 {
    font-size: 40px;
    padding: 17px;
    line-height: 42px;
  }

  .services-img {
    height: 350px;
  }

  .home-wrap {
    height: 380px;
  }

  .slider-arrow {
    width: 70px;
  }
  .slider-arrow svg {
    width: 100%;
  }

  .home .arrow-next {
    left: 100px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-desc {
    margin-top: 500px;
  }

  .about-img {
    position: absolute;
    left: 0;
    top: 100px;
    max-width: 280px;
  }

  .about-wrap {
    position: relative;
    display: block;
  }

  .about h2 {
    left: 0;
  }

  .about-desc {
    font-size: 16px;
    line-height: 20px;
  }

  .main-services__block,
.vacancies-services__block {
    margin-right: -40px;
  }

  .main-services__item,
.vacancies-services__item {
    max-width: calc(50% - 40px);
  }

  .btn {
    min-width: 193px;
    height: 50px;
  }

  .main-services,
.vacancies-services {
    margin-top: 50px;
  }

  .gallery .services-container {
    margin-top: 70px;
  }

  .gallery-arrows {
    position: absolute;
    bottom: -25px;
    width: 100%;
  }

  .services-img {
    z-index: 14;
  }

  .gallery-arrows .arrow-next {
    bottom: -20px;
    left: 60%;
    transform: translateX(-50%);
  }

  .gallery-arrows .arrow-prev {
    bottom: -20px;
    left: 40%;
    transform: translateX(-50%);
  }

  .gallery-item {
    width: calc(50% - 20px);
  }

  .header .container {
    display: none;
  }

  .header {
    margin-bottom: 50px;
  }

  .header-mobile {
    display: block;
  }

  .footer-mob {
    display: block;
  }

  .footer {
    background: #fff;
  }
  .footer .header {
    padding-bottom: 5px;
    padding-top: 5px;
  }

  .about-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .services-img__item::after {
    display: none;
  }

  .services-img__item img {
    opacity: 1 !important;
  }

  .btn a {
    font-size: 16px;
  }

  .about-wrap {
    max-width: 100%;
  }

  .home-wrap {
    height: 320px;
  }

  .home h2 {
    max-width: 400px;
  }

  .home .slider-arrow {
    bottom: 15px;
  }

  h2 {
    font-size: 30px;
    line-height: 37px;
  }

  .home-title {
    bottom: 70px;
  }

  .main-services__item h5,
.vacancies-services__item h5 {
    left: 0;
    bottom: 0;
  }

  .main-services__img,
.vacancies-services__img {
    max-width: 100%;
  }

  .main-services__item,
.vacancies-services__item {
    margin-bottom: 40px;
  }

  .contacts-list li a, .contacts-list li span {
    font-size: 16px;
    line-height: 22px;
  }

  .about {
    margin-top: 50px;
  }

  .services-tabs li a {
    font-size: 12px;
    line-height: 16px;
    padding: 15px 9px;
  }

  .services-tabs {
    height: 64px;
  }

  .map {
    height: 400px;
  }

  .main-services__img,
.vacancies-services__img {
    height: 200px;
  }

  .main-services__item h5,
.vacancies-services__item h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .table-cell:last-child a {
    height: 18px;
    font-size: 16px;
  }

  .table-cell:nth-child(3) {
    font-size: 18px;
    line-height: 30px;
  }
  .table-cell:nth-child(3) span {
    left: 5px;
    bottom: 0;
  }

  .table-cell:nth-child(4) {
    font-size: 18px;
    line-height: 30px;
  }
  .table-cell:nth-child(4) span {
    left: 5px;
    bottom: 0;
  }

  .table-cell:nth-child(2) {
    font-size: 18px;
    line-height: 30px;
  }

  .table-cell:nth-child(3) div {
    padding: 10px 3px;
    padding-right: 3px;
    padding-top: 5px;
  }
  .table-cell:nth-child(3) div span {
    left: 3px;
    bottom: 5px;
  }

  .table-cell:nth-child(4) div {
    padding: 10px 3px;
    padding-right: 7px;
    padding-top: 5px;
  }
  .table-cell:nth-child(4) div span {
    left: 3px;
    bottom: 5px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 700px) {
  .about-img {
    left: 0;
    transform: none;
  }

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

  .main-services__title h2,
.vacancies-services__title h2 {
    max-width: 45%;
  }

  .main-services__title,
.vacancies-services__title {
    align-items: initial;
  }

  .home-title {
    bottom: 15px;
    left: 15px;
  }

  .btn {
    height: auto;
  }

  .main-services__container,
.vacancies-services__container {
    display: block;
  }

  .gallery .gallery-top {
    display: none;
  }
  .gallery .slider-arrow {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .gallery .slider-arrow.arrow-prev {
    left: 30%;
  }
  .gallery .slider-arrow.arrow-next {
    left: 70%;
  }
  .gallery-container {
    margin-bottom: 40px;
  }
  .gallery .services-tabs {
    display: none;
  }

  .main-services,
.vacancies-services {
    margin-bottom: 30px;
  }
  .main-services .slider-arrow,
.vacancies-services .slider-arrow {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-services .slider-arrow.arrow-prev,
.vacancies-services .slider-arrow.arrow-prev {
    left: 30%;
  }
  .main-services .slider-arrow.arrow-next,
.vacancies-services .slider-arrow.arrow-next {
    left: 70%;
  }

  .gallery-wrap {
    margin-right: 0;
  }

  .gallery-item {
    width: 100%;
    margin-right: 0;
  }

  .gallery .services-container {
    margin-top: 30px;
  }

  .gallery-content {
    display: block;
  }

  .contacts-list li {
    width: 100%;
    margin-right: 0;
  }

  .contacts-item > p {
    font-size: 26px;
    line-height: 30px;
  }

  .map {
    margin-top: 30px;
  }

  .home-wrap {
    height: 246px;
  }

  .home .slider-arrow {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home .slider-arrow.arrow-prev {
    left: 35%;
  }
  .home .slider-arrow.arrow-next {
    left: 70%;
  }

  .home-item.current .home-img__block {
    max-width: 100%;
  }

  .home .container {
    padding-left: 0;
    padding-right: 0;
  }

  h2 {
    font-size: 22px;
    line-height: 27px;
  }

  .home h2 {
    max-width: 333px;
  }

  .home-img__block::after {
    background: linear-gradient(13deg, rgba(255, 255, 255, 0.9) 0.22%, rgba(239, 239, 239, 0.8) 27.19%, rgba(196, 196, 196, 0) 99.79%);
  }

  .about-desc {
    padding-right: 0;
  }

  .about h2 {
    padding-right: 40px;
  }

  .about {
    margin-top: 60px;
  }

  .main-services__item,
.vacancies-services__item {
    max-width: 100%;
    margin-right: 0;
  }

  .main-services__block,
.vacancies-services__block {
    margin-right: 0;
  }

  .main-services__title,
.vacancies-services__title {
    margin-bottom: 30px;
  }

  .main-services__item h5,
.vacancies-services__item h5 {
    bottom: 20px;
    left: 15px;
  }

  .btn {
    min-width: auto;
    width: 100%;
    max-width: 150px;
  }

  footer .header {
    margin-bottom: 0;
  }
  footer .header-social li {
    margin-right: 15px;
  }
  footer .header-social {
    margin-right: 10px;
  }

  .gallery-content > p {
    text-align: center;
    font-size: 24px;
    color: #E00047;
    font-weight: 300;
    margin-bottom: 10px;
  }

  .services-img {
    height: 200px;
  }

  .table-row {
    flex-wrap: wrap;
  }

  .table-cell:first-child {
    width: 100%;
    margin-bottom: 5px;
  }

  .table-row {
    align-items: center;
  }

  .table-cell:nth-child(3), .table-cell:nth-child(4) {
    text-align: left;
    width: 20%;
  }
  .table-cell:nth-child(3) div, .table-cell:nth-child(4) div {
    padding: 5px 15px 12px 10px;
  }
  .table-cell:nth-child(3) div span, .table-cell:nth-child(4) div span {
    top: auto;
    right: auto;
    left: 10px;
    bottom: -4px;
    line-height: 1;
  }

  .table-cell:nth-child(2) {
    padding-top: 0;
    width: 19%;
    text-align: left;
  }

  .services-item {
    display: block;
  }

  .services-tabs {
    display: none;
  }

  .services-mobile__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .services-mobile__title.active svg {
    transform: rotateX(-180deg);
  }
  .services-mobile__title p {
    font-size: 24px;
    font-weight: 300;
    color: #E00047;
    text-align: left;
  }
  .services-mobile__title svg {
    transition: transform 0.3s ease-in-out;
    color: #E00047;
    width: 15px;
  }

  .table {
    display: none;
  }

  .fancybox-navigation .fancybox-button.fancybox-button--arrow_right,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    display: none;
  }

  .main-gallery .slider-arrow,
.vacancies-gallery .slider-arrow {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-gallery .arrow-prev,
.vacancies-gallery .arrow-prev {
    left: 35%;
  }

  .main-gallery .arrow-next,
.vacancies-gallery .arrow-next {
    left: 70%;
  }

  .main-gallery__left,
.vacancies-gallery__left {
    height: 230px;
  }

  .btn a {
    background: #E00047;
    color: #fff;
    border-color: #E00047;
  }

  .loader p {
    max-width: 170px;
  }
  .loader p img {
    width: 100%;
  }

  .services-img__wrap {
    width: 100%;
  }

  .gallery-slider__item img {
    opacity: 1;
    transition: none;
  }

  .gallery-slider__item.slick-center::after {
    display: none;
  }
  .gallery-slider__item.slick-center img {
    opacity: 1 !important;
  }

  .home .slick-list, .home .slick-track {
    height: 100%;
  }
  .home-item {
    display: block;
    position: relative;
  }
  .home-img__block {
    opacity: 1;
    max-width: 100%;
  }
  .home-title {
    opacity: 1;
  }

  .table-cell:last-child {
    padding-top: 5px;
  }

  .popup-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .vacancies-services__title h2 {
    max-width: 95%;
  }

  .vacancies-head__link a,
.vacancy-head__link a,
.vacancy-description__link a {
    padding: 5px;
    font-size: 12px;
    line-height: 19px;
  }

  .vacancies-reason__list {
    padding-left: 0;
  }

  .vacancies-reason__item:after {
    top: -2px;
    width: 25px;
    height: 25px;
  }

  .vacancies-reason__item-name {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .vacancies-reason__item-desc {
    font-size: 14px;
    line-height: 18px;
  }

  .vacancies-reason__item {
    padding-left: 40px;
    margin-bottom: 20px;
  }

  .vacancies-reason {
    margin-bottom: 50px;
  }

  .vacancy {
    margin-bottom: 50px;
  }

  .vacancy-description__content {
    padding: 20px 0;
  }

  .vacancy-description__content p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }

  .vacancy-description__content h5 {
    font-size: 20px;
    line-height: 24px;
  }

  .vacancy-description__content ol {
    margin-bottom: 20px;
    margin-top: 20px;
    list-style: decimal;
    padding-left: 20px;
  }
  .vacancy-description__content ol li {
    font-size: 14px;
    line-height: 18px;
  }

  .vacancy-description__link {
    text-align: center;
  }

  .vacancy-description {
    margin-bottom: 50px;
  }

  .resume-content {
    width: 100%;
    max-width: 100%;
    background: #fff;
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    z-index: 3;
    margin: 10px 10px;
  }

  .resume-form__head {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .resume-form .row-checkbox {
    margin: 8px 0 !important;
  }

  .resume-form input[type=text], .select-wrapper p {
    height: 25px;
    font-size: 12px;
    line-height: 25px;
  }
  .resume-form input[type=text]::placeholder, .select-wrapper p::placeholder {
    font-size: 12px;
    line-height: 25px;
  }

  .resume-form .input-row {
    margin: 8px 0;
  }

  .resume-form .row-checkbox__wrap label {
    font-size: 12px;
    line-height: 20px;
  }

  .resume-form .row-checkbox__wrap label:after {
    width: 15px;
    height: 15px;
  }

  .resume-form .row-checkbox__wrap input:checked ~ label:before {
    width: 7px;
    height: 7px;
  }

  .resume-form .row-checkbox__wrap {
    margin-bottom: 5px;
  }

  .resume-form .input-col__bottom-right textarea {
    font-size: 12px;
    padding: 5px;
  }
  .resume-form .input-col__bottom-right textarea::placeholder {
    font-size: 12px;
  }

  .select-wrapper p {
    height: 40px;
    line-height: 1.1;
  }

  .resume-form .input-submit button {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 15px;
  }

  .resume-close {
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
  }
  .resume-close svg {
    width: 100%;
  }

  .resume .input-file {
    position: relative;
  }
  .resume .input-file label {
    position: absolute;
    left: 0;
    max-width: 260px;
  }

  .resume-form .input-col__bottom-left .input-file p {
    width: 90%;
  }

  .resume-form .input-col__bottom-left .input-file .file-remove {
    right: -10px;
  }

  .resume-form .input-col__bottom-left .input-file p,
.resume-form .input-col__bottom-left .input-file span {
    font-size: 12px;
  }

  .resume .form-success__message,
.resume .form-error__message {
    font-size: 14px;
    line-height: 16px;
  }

  .resume-content {
    overflow-y: auto;
    height: auto;
  }

  .vacancy-description__link {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .vacancy-description__link a:last-child {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media all and (max-width: 600px) {
  .resume-form .input-col__bottom {
    margin-top: 0;
  }

  .popup-title {
    position: static;
    left: auto;
    top: auto;
    transform: translateX(0);
    white-space: break-spaces;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .popup-list__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .popup-list__btn {
    padding: 10px 20px;
  }

  .popup-list li {
    margin-bottom: 15px;
  }
  .popup-list li:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 400px) {
  .vacancy-head__title h2 {
    font-size: 20px;
    line-height: 24px;
    padding: 12px;
  }
}