.page_up {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
}

.page_up img {
  width: 100%;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/Manrope-VariableFont_wght.ttf") format("ttf");
}

.hamburger {
  padding: 15px 15px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 41%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 32px;
  height: 3.2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
    * 3DX
    */

.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * 3DX Reverse
    */

.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * 3DY
    */

.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * 3DY Reverse
    */

.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * 3DXY
    */

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * 3DXY Reverse
    */

.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
    * Arrow
    */

.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
    * Arrow Right
    */

.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
    * Arrow Alt
    */

.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
    * Arrow Alt Right
    */

.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
    * Arrow Turn
    */

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
    * Arrow Turn Right
    */

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
    * Boring
    */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
    * Collapse
    */

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Collapse Reverse
    */

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Elastic
    */

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
    * Elastic Reverse
    */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
    * Emphatic
    */

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
    * Emphatic Reverse
    */

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
    * Minus
    */

.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
    * Slider
    */

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
    * Slider Reverse
    */

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
    * Spin
    */

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Spin Reverse
    */

.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Spring
    */

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
    * Spring Reverse
    */

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Stand
    */

.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Stand Reverse
    */

.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Squeeze
    */

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    * Vortex
    */

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
    * Vortex Reverse
    */

.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

* {
  outline: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.overflow {
  overflow: hidden;
}

body {
  font-family: "Manrope";
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.header__video video {
  width: 100%;
}

.header .nav-container {
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
}

.header .nav-container .nav .hamburger {
  display: none;
}

.nav {
  padding: 31px 80px;
  max-width: 1440px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.nav .lang {
  display: none;
}

.nav__logo {
  width: 173px;
  height: 40px;
}

.nav__logo img {
  width: 100%;
}

.nav__navbar {
  list-style: none;
  display: flex;
  margin-left: 48px;
  text-align: center;
}

.nav .navbar-item {
  margin-right: 24px;
}

.nav .navbar-item a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav .navbar-item:nth-child(4) {
}

.nav .inline-block {
  display: flex;
}

.nav .inline-block__phone {
  margin-right: 13px;
}

.nav .inline-block__phone a {
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav .inline-block__phone span {
  color: rgba(200, 200, 200, 0.918);
  font-size: 10px;
  display: block;
}

.nav .inline-block__language a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.nav .inline-block__language a::before {
  /*content: "/    ";*/
}

.nav .inline-block__language {
  color: #fff;
  font-weight: 600;
}

.values {
  display: flex;
  margin-top: 60px;
}

.values__block {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.values__text {
  width: 43%;
}

.values__text .our {
  display: none;
}

.values__text h1 {
  font-weight: 800;
  font-size: 171px;
  line-height: 200px;
  color: #00000000;
  -webkit-text-stroke-color: #003d64;
  -webkit-text-stroke-width: 5px;
}

.values__text h1 span {
  font-weight: 800;
  color: #003d64;
}

.uzvalues .values__text h1 {
  font-size: 140px;
}

.values__properties {
  width: 49%;
}

.values__properties .block {
  display: flex;
  padding: 15px 0 15px 0;
  border: 1px solid #c4c4c4;
  border-width: 2px 0 0 0;
  align-items: center;
  cursor: pointer;
}

.values__properties .block:nth-child(5) {
  border-width: 2px 0 2px 0;
}

.values__properties .block:hover .values__descr p {
  font-weight: bold;
}

.values__properties .block:hover svg path {
  fill: #003d64;
}

.values__img {
  width: 80px;
  height: 80px;
}

.values__descr {
  margin-left: 30px;
}

.values__descr p {
  margin-top: 12px;
  font-weight: 400;
  font-size: 16px;
  color: #8e8e93;
}

.values__descr h2 {
  font-weight: 700;
  font-size: 24px;
  color: #2c2c2e;
}

.prefer {
  margin-top: 60px;
}

.prefer__logo {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.prefer__logo h3 {
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  color: #000000;
}

.prefer__logo img {
  width: 168px;
  height: 60px;
  margin-left: 17px;
}

.prefer__logo span {
  font-weight: 700;
  margin-left: 16px;
  font-size: 56px;
  line-height: 64px;
}

.prefer__desc {
  display: flex;
  margin-top: 50px;
}

.prefer__row {
  display: block;
}

.prefer__col {
  margin: 0 0 40px 0;
  border-radius: 3px;
  padding: 16px 15px 19px 20px;
  background: #fafbfc;
}

.prefer__col_right {
  margin-left: 24px;
}

.prefer__col_left {
  margin-right: 24px;
}

.prefer__col h4 {
  font-size: 24px;
  color: #003d64;
}

.prefer__col p {
  font-size: 16px;
  margin-top: 15px;
  color: #000000;
}

.vacancy {
  margin: 0 auto;
  max-width: 1440px;
  background-color: #fafbfc;
  margin-top: 100px;
  height: 670px;
}

.vacancy__history {
  display: block;
}

.vacancy__history p {
  margin-right: 18px;
  line-height: 36px;
}

.vacancy__history a {
  margin-top: 10px;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1032d1;
}

.vacancy__history img {
  height: 11px;
  margin-left: 5px;
}

.vacancy__header {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.vacancy__header h3 {
  font-weight: 400;
  font-size: 56px;
}

.vacancy__container {
  margin-top: 56px;
  margin-bottom: 40px;
}

.vacancy__item {
  padding-top: 10px;
  padding-left: 15px;
  background-color: #fff;
  width: 576px;
  height: 232px;
  border-radius: 8px;
  margin: 0px 48px;
  transition: 0.4s;
}

.vacancy__item a {
  color: #1032d1;
  text-decoration: none;
}

.vacancy .slick-center {
  transform: scale(1.13);
  box-shadow: 2px 3px 5px 3px #7073a188;
}

.vacancy .slick-track {
  padding: 40px 0 50px 0;
  height: 270px;
  width: 392px;
}

.vacancy .slick-dots li button:before {
  line-height: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
}

.vacancy .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
  content: "";
}

.vacancy .slick-dots li button:before {
  font-size: 20px;
}

.vacancy ul.slick-dots li {
  width: 4px;
}

.vacancy ul.slick-dots li.slick-active {
  width: 15px;
}

.vacancy ul.slick-dots li.slick-active button:before {
  opacity: 1;
  content: "";
  align-items: center;
  margin-top: 3px;
  background: url("../images/masterbtnsmall.svg") no-repeat center/cover;
}

.vacancy .slick-dots {
  width: auto;
  right: 393px;
}

.vacancy .slick-dots {
  bottom: -45px;
}

.buttons {
  text-decoration: none;
  width: 160px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 5px;
  font-size: 16px;
  text-transform: uppercase;
  color: #003d64;
  margin-left: 378px;
  border: 1px solid #003d64;
  text-align: center;
  cursor: pointer;
}

.button_aboute {
  background-color: #193ee7;
  width: 327px;
  font-size: 16px;
  color: #ffffff;
  left: 60%;
  z-index: -1;
}

.button_modal {
  background-color: #193ee7;
  font-size: 16px;
  color: #ffffff;
}

.btn__style {
  height: 50px;
  width: 327px;
  background-color: #193ee7;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  line-height: 48px;
}

.btn__modal {
  width: 157px;
}

.employee__history {
  max-width: 350px;
}

.employee {
  margin-bottom: 40px;
  margin-top: 60px;
}

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

.employee__month h3 {
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 40px;
  color: rgba(38, 39, 40, 0.95);
}

.employee__month p {
  font-size: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.employee__history p {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.employee__history a {
  margin-top: 10px;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1032d1;
}

.employee__history img {
  height: 11px;
}

.employee__aboute {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}

.employee__contact {
  margin-bottom: 18px;
  padding-right: 10px;
  max-width: 248px;
}

.employee__contact:nth-child(4) {
  padding-right: 0;
}

.employee__contact h3 {
  font-weight: 400;
  font-size: 28px;
  color: rgba(38, 39, 40, 0.95);
}

.employee__contact p {
  margin-bottom: 16px;
  font-size: 12px;
  color: #949ba3;
}

.employee__contact a {
  margin-right: 24px;
}

.employee__photo {
  width: 248px;
  height: 256px;
  margin-bottom: 16px;
  background-color: #fafbfc;
}

.employee__photo img {
  width: 100%;
  height: 100%;
}

.news {
  margin-top: 10px;
}

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

.news__title h2 {
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
}

.news__descr {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.news__descr .block {
  width: 253px;
  height: auto;
  border-radius: 10px;
  background-color: #fcfcfc;
  padding: 12px;
  margin: 25px 50px 25px 30px;
}

.news__descr .block h3 {
  font-weight: 400;
  font-size: 24px;
  color: #003d64;
}

.news__descr .block p {
  margin-top: 11px;
  margin-bottom: 21px;
  font-size: 16px;
}

.news__descr .block a {
  display: block;
  text-align: end;
  text-decoration: none;
  font-size: 16px;
  color: #1032d1;
}

.footer {
  margin-top: 54px;
  padding-top: 50px;
  background: #0a1e32;
}

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

.footer__contacts h3 {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}

.footer__contact {
  margin-top: 43px;
  margin-bottom: 53px;
  display: flex;
  justify-content: space-between;
}

.footer__contact__item {
  margin-right: 60px;
}

.footer__contact__item a {
  text-decoration: none;
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
}

.footer__contact__item p {
  margin-top: 12px;
  font-size: 14px;
  color: #ffffff;
}

.footer__link h3 {
  margin-top: 24px;
  font-size: 16px;
  color: #ffffff;
}

.footer__link .network {
  margin-top: 20px;
  width: 290px;
}

.footer__link .network a {
  margin-right: 20px;
}

.footer__link .network a img {
  width: 38px;
  height: 38px;
}

.footer__aboute {
  padding-bottom: 60px;
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
}

.footer__aboute .items {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.second__header {
  height: 100px;
  background-color: #444444;
  position: relative;
}

.vacancies__all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.vacancies__all .vacancy__item {
  width: 392px;
  height: auto;
  border-radius: 8px;
  margin: 40px 22px;
  background-color: #fcfcfc;
}

.aboute {
  margin-top: 100px;
}

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

.aboute__title h3 {
  font-size: 46px;
  color: #000000;
}

.aboute__title p {
  margin-top: 40px;
  font-size: 32px;
  color: #000000;
}

.aboute__subheader {
  font-size: 26px;
  margin-top: 60px;
}

.aboute__subheader h3 {
  font-weight: 700;
}

.aboute__subheader h4 {
  margin-bottom: 30px;
}

.aboute__subheader p {
  margin-bottom: 30px;
}

.aboute__knowlagde-title {
  font-size: 32px;
  font-weight: bold;
}

.aboute__knowlagde-item {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}

.aboute__knowlagde-item .item {
  margin-right: 20px;
  font-size: 24px;
  color: #003d64;
  padding: 10px 28px;
  background-color: #fafbfc;
  border-radius: 5px;
}

.status .form {
  padding: 0 82px;
  display: flex;
  margin-top: 100px;
}

.status .form .search {
  width: 78%;
  background: #f5f5f5;
  border: 1px solid #8e8e93;
  border-radius: 10px;
  margin-right: 40px;
  font-size: 30px;
  color: #8e8e93;
  padding: 18px 0 18px 29px;
}

.status .form .done {
  color: #003d64;
  text-decoration: none;
  background: #f5f5f5;
  height: 70px;
  padding: 26px 50px;
  border: 1px solid #003d64;
  box-sizing: border-box;
  border-radius: 10px;
}

.status__step {
  margin-top: 66px;
  display: flex;
  justify-content: space-between;
}

.status__item {
  width: 21%;
}

.status__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto;
}

.status__icon img {
  align-items: center;
  width: 100%;
}

.status__descr {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #8e8e93;
}

.status__pb {
  padding: 0 82px;
  margin-top: 80px;
}

.status .pb__container {
  border-radius: 17px;
  width: 100%;
  background-color: #ddd;
}

.status .pb__runner {
  border-radius: 17px;
  transition: 0.5s all;
  width: 0%;
  height: 30px;
  background-color: #003d64;
  text-align: center;
  line-height: 30px;
  color: white;
}

.status .pb__steps {
  transform: translate(0, 45px);
  display: flex;
  justify-content: space-between;
  width: 100%;
  bottom: 40px;
}

.status .step {
  display: flex;
  background-color: #8e8e93;
  border-radius: 100%;
  height: 60px;
  width: 60px;
}

.status .step:nth-child(1) {
  background-color: #003d64;
}

.status .container {
  padding: 30px;
}

.employee__modal {
  z-index: 999999;
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.employee__modal .modal {
  height: 480px;
  padding: 40px 40px 60px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
}

.employee__modal .modal .close {
  cursor: pointer;
  font-size: 31px;
}

.employee__modal .from-file label {
  font-size: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.employee__modal .from__comment {
  margin-top: 15px;
  position: relative;
}

.employee__modal .from__comment label {
  padding: 0 5px;
  background-color: #fff;
  top: -12px;
  left: 10px;
  position: absolute;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: rgba(38, 39, 40, 0.95);
  margin: 8px 0px;
}

.employee__modal .from__comment textarea {
  width: 605px;
  height: 154px;
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
  margin: 8px 0px;
  padding: 11px;
  font-size: 18px;
}

.employee__modal .form__input {
  margin-top: 20px;
}

.employee__modal .form__input-row {
  display: flex;
}

.employee__modal .form__input-row .input {
  position: relative;
  margin-top: 25px;
}

.employee__modal .form__input-row .input:nth-child(1) {
  margin-right: 30px;
}

.employee__modal .form__input-row label {
  position: absolute;
  top: -10px;
  left: 9px;
  padding: 0 5px;
  background-color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.employee__modal .form__input-row input {
  display: block;
  padding: 8px 16px;
  width: 288px;
  height: 40px;
  background: #fff;
  border: 0.5px solid #000000;
  box-sizing: border-box;
}

.employee__modal .form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

.form__header h1 {
  font-weight: bold;
  font-size: 25px;
  color: #000000;
}

.form__header .cancel {
  width: 40px;
  height: 40px;
}

.file-label {
  height: 114px;
  width: 272px;
  border-radius: 5px;
  background-color: #f0f5fa;
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta {
  background-color: #f5f5f5;
  color: #4a4a4a;
}

.file-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 10%;
}

.file-label {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.vacancy__item img {
  border-radius: 100%;
  transform: translate(0, -30px);
}

.vacancy__item h2 {
  font-size: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.vacancy__item p {
  margin-top: 6px;
  font-size: 12px;
  color: #949ba3;
}

.vacancy__item .divader {
  margin-top: 16px;
  width: 100px;
  height: 1px;
  background: #b8bbbf;
}

.vacancy__item .more {
  font-size: 16px;
  color: rgba(38, 39, 40, 0.95);
}

.vacancy__item a {
  line-height: 36px;
}

.lang {
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  /* background-color: red; */
}

.lan_item {
  border: 1px solid #003d64;
  text-decoration: none;
  font-size: 12px;
  padding: 10px 10px;
  color: #fff;
}

.lan_item:nth-child(1) {
  border-radius: 50px 0 0 50px;
}

.lan_item:nth-child(2) {
  border-radius: 0 50px 50px 0;
}

.lan_active {
  background-color: #003d64;
}

.image-view {
  text-align: center;
}

footer {
  background: #0a1e32;
  color: #ffffff;
  margin-top: 25px;
}

footer h4 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

footer p {
  margin-top: 0;
  margin-bottom: 1rem;
}

footer .footer__contacts .footer-top-left-text {
  max-width: 900px;
}

footer .footer__contacts .footer-top-left-text p {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}

footer .footer-top-left-contact {
}

footer .footer-top-left-contact h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 20px;
  white-space: nowrap;
}

footer .footer-top-left-contact p {
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
}

footer .footer-top-left-contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 15px;
}

footer .p-0 {
  padding: 0 !important;
}

footer .col-md-3 {
  position: relative;
  min-height: 1px;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 325px;
}

footer .footer__link {
  margin-top: -20px;
  margin-bottom: 40px;
}

.vacancies h1 {
  padding: 42px 0 0 42px;
  font-size: 36px;
}

@media (max-width: 1550px) {
  .uzvalues .values__text h1 {
    font-size: 124px;
  }
}

@media (max-width: 1450px) {
  .uzvalues .values__text h1 {
    font-size: 124px;
  }
  .body_uz .nav .navbar-item a {
    font-size: 14px;
  }
}

@media (max-width: 1420px) {
  .nav .nav__navbar {
    margin-left: 0px;
  }
  .nav .nav__logo {
    margin-right: 12px;
  }
}

@media (max-width: 1380px) {
  .values .values__text h1 {
    font-size: 153px;
  }
  .uzvalues .values__text h1 {
    font-size: 106px;
  }
  .nav {
    left: 130px;
    padding-left: 0;
    padding-right: 0;
  }
  .nav .navbar-item a {
    font-size: 14px;
  }
  .nav .inline-block__phone a {
    font-size: 13px;
  }
  .nav .inline-block__phone span {
    display: none;
  }
  .nav .inline-block__language a {
    font-size: 13px;
  }
  .footer__contact__item a {
    font-size: 20px;
  }
  .footer__link .network a {
    margin-right: 14px;
  }
  .footer__link .network a img {
    height: 25px;
    width: 25px;
  }
  .buttons {
    margin-left: 80px;
  }
}

@media (max-width: 1230px) {
  .values .values__text h1 {
    font-size: 136px;
  }
  .uzvalues .values__text h1 {
    font-size: 100px;
  }
  footer .footer-top-left-contact {
    min-width: unset;
  }
}

@media (max-width: 1204px) {
  .nav {
    left: 63px;
    padding-left: 0;
    padding-right: 0;
  }
  .nav .navbar-item:nth-child(4) {
    margin-right: 126px;
  }
  .vacancy .vacancy__item .more {
    font-size: 10px;
  }
  .news .news__descr .block {
    width: 218px;
    height: 215px;
  }
  .news .news__descr .block h3 {
    font-size: 19px;
  }
  .values .values__descr h2 {
    font-size: 17px;
  }
  .values .values__descr p {
    font-size: 12px;
    margin-top: 7px;
  }
  .prefer .prefer__col h4 {
    font-size: 18px;
  }
  .vacancy .slick-initialized .slick-slide {
    height: 236px;
  }
  .employee h3 {
    font-size: 22px;
  }
}

@media (max-width: 1168px) {
  .body_uz .nav .navbar-item a {
    font-size: 12px;
  }
}

@media (max-width: 1130px) {
  .nav .navbar-item:nth-child(4) {
    margin-right: 70px;
  }
  .uzvalues .values__text h1 {
    font-size: 92px;
  }
}

@media (max-width: 1100px) {
  .body_uz header .nav-container .container {
    padding: 0 40px;
  }
  .prefer {
    margin-top: 30px;
  }
  .prefer .prefer__desc {
    margin-top: 20px;
  }
  .prefer .prefer__desc .prefer__col p {
    font-size: 13px;
  }
  .prefer .prefer__logo h3 {
    font-size: 40px;
  }
  .prefer .prefer__logo img {
    width: 100px;
    height: 36px;
    margin-left: 7px;
  }
  .prefer .prefer__logo span {
    margin-left: 5px;
    font-size: 35px;
  }
  .vacancy {
    margin-top: 22px;
    height: 513px;
  }
  .vacancy .slick-track {
    padding: 40px 0 0 0;
  }
  .vacancy .vacancy__header {
    padding-top: 21px;
  }
  .vacancy .slick-dotted.slick-slider {
    margin-bottom: -20px;
  }
  .vacancy .slick-dots {
    width: 21%;
    bottom: 7px;
  }
  .vacancy .vacancy__container {
    margin-top: 21px;
  }
  .vacancy .vacancy__history a {
    font-size: 14px;
  }
  .vacancy .vacancy__header h3 {
    font-size: 40px;
  }
  .vacancy .vacancy__item h2 {
    font-size: 14px;
  }
  .vacancy .vacancy__item a {
    font-size: 13px;
  }
  .vacancy .slick-dots {
    display: none;
  }
  .buttons {
    padding: 11px;
    font-size: 11px;
  }
  .employee {
    margin-top: 49px;
  }
  .employee .employee__photo {
    width: 100%;
    height: auto;
    margin-bottom: 9px;
  }
  .footer .footer__contacts h3 {
    font-size: 15px;
  }
  .footer .footer__contact__item a {
    font-size: 17px;
  }
  .footer .footer__link h3 {
    font-size: 14px;
    margin-top: 13px;
  }
  .news {
    margin-top: 0;
  }
  .news .news__descr {
    flex-wrap: wrap;
  }
  .news .news__descr .block {
    margin-bottom: 16px;
    height: 186px;
    width: 185px;
  }
  .news .news__descr .block p {
    font-size: 13px;
  }
  .news .news__title h2 {
    font-size: 43px;
  }
  .values .values__img {
    display: flex;
    width: 38px;
    height: 46px;
  }
  .values .values__text h1 {
    line-height: 136px;
    font-size: 122px;
  }
  .uzvalues .values__text h1 {
    font-size: 86px;
  }
  .nav .nav__logo {
    margin-right: 0px;
  }
  .nav .inline-block__phone a {
    font-size: 11px;
  }
  .nav .inline-block__language a {
    font-size: 11px;
  }
}

@media (max-width: 1050px) {
  .aboute .aboute__title h3 {
    font-size: 32px;
  }
  .aboute .aboute .aboute__title p {
    margin-top: 19px;
    font-size: 23px;
  }
  .aboute .btn__style {
    height: 45px;
    width: 262px;
    font-size: 13px;
  }
  .aboute p {
    font-size: 17px;
  }
  .aboute h4 {
    font-size: 20px;
  }
  .aboute h3 {
    font-size: 32px;
  }
  .aboute .aboute__knowlagde-item .item {
    margin-top: 12px;
  }
  .status .status__item .status__descr {
    margin-top: 13px;
    font-size: 17px;
    line-height: 22px;
  }
  .status .status__item .status__icon {
    width: 37px;
    height: 37px;
  }
}

@media (max-width: 1020px) {
  .values__block {
    display: block;
  }
  .values__text {
    width: 100%;
  }
  .values__text h1 {
    display: none;
  }
  .values__text .our {
    display: block;
    font-size: 31px;
    margin-bottom: 20px;
  }
  .values__properties {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 996px) {
  .nav .lang {
    position: relative;
    top: 50px;
    display: flex;
    justify-content: center;
    /* background-color: red; */
  }
  .nav .lan_item {
    border: 1px solid #003d64;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    color: #fff;
  }
  .nav .lan_item:nth-child(1) {
    border-radius: 50px 0 0 50px;
  }
  .nav .lan_item:nth-child(2) {
    border-radius: 0 50px 50px 0;
  }
  .nav .lan_active {
    background-color: #003d64;
  }
  .nav .navbar-item a {
    color: #ffffff !important;
  }
  header .nav-container .container,
  .body_uz header .nav-container .container {
    padding: 0 80px;
  }
  .header .nav-container .nav .hamburger {
    display: block;
  }
  .nav .hamburger {
    top: -44%;
  }
  .nav .nav__logo {
    position: relative;
    left: -50px;
  }
  .nav .inline-block__phone a {
    font-size: 15px;
  }
  .nav .inline-block__language a {
    font-size: 13px;
  }
  .nav .nav__navbar {
    transition: 0.6s all;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 45px 0 19px 0;
    display: block;
    width: 80%;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    z-index: 9999;
  }
  .nav .nav__navbar .navbar-item {
    margin-top: 21px;
  }
  .nav .nav__navbar__activie {
    right: 0;
  }
  .nav .hamburger {
    transition: 0.5s;
    display: block;
    position: absolute;
    z-index: 99999;
    right: 10px;
    top: 30px;
    width: 24px;
    height: 12px;
  }
  .nav .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    margin-bottom: 2px;
    transition: 0.5s all;
  }
  .nav .hamburger_active {
    position: fixed;
    transition: 0.6s all;
  }
  .nav .hamburger_active span {
    margin-bottom: -2px;
  }
  .nav .hamburger_active span:nth-child(1) {
    transform: translateY(3px) rotate(-45deg);
  }
  .nav .hamburger_active span:nth-child(2) {
    display: none;
  }
  .nav .hamburger_active span:nth-child(3) {
    transform: translateY(3px) rotate(45deg);
  }
  .footer .footer__top {
    margin-bottom: 17px;
    display: block;
  }
  .footer .footer__top .footer__link {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .footer .footer__top .footer__contact {
    margin-bottom: 32px;
  }
  .footer .footer__aboute .items {
    font-size: 11px;
  }
  .prefer .prefer__col {
    padding-right: 19px;
  }
  .prefer .prefer__col h4 {
    font-size: 15px;
  }
  .employee .employee__aboute {
    flex-wrap: wrap;
  }
  .employee h3 {
    font-size: 16px;
  }
  .employee a {
    margin-right: 10px;
  }
  .employee .employee__history p {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .news .news__title {
    align-items: center;
  }
  .news .news__title h2 {
    font-size: 34px;
  }
  .news .news__descr {
    margin-top: 19px;
  }
  .news .news__descr .block {
    height: 185px;
    width: 168px;
  }
  .news .news__descr .block h3 {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .prefer__col {
    margin-right: 0;
  }
  .prefer__col_right {
    margin-left: 0;
  }
  .prefer .prefer__desc {
    display: block;
  }
  .employee__history p {
    display: none;
  }
  .employee h3 {
    font-size: 23px;
  }
  .employee__aboute {
    margin-top: 10px;
  }
  .employee__month p {
    display: none;
  }
  .footer .footer__contact__item a {
    font-size: 12px;
  }
  .footer .footer__contacts h3 {
    font-size: 12px;
  }
  .footer .footer__contact__item p {
    margin-top: 8px;
    font-size: 10px;
  }
  .footer .footer__aboute .items {
    font-size: 9px;
  }
  .footer__link img {
    height: 35px;
    width: 107px;
  }
  .news .news__descr .block {
    width: 100%;
    height: auto;
    margin: 0 0 16px 0;
  }
  .vacancy .slick-active {
    width: 500px;
  }
}

@media (max-width: 810px) {
  .aboute .aboute__subheader p {
    margin-bottom: 19px;
  }
  .aboute .aboute__title p {
    margin-top: 12px;
  }
  .aboute .aboute__subheader {
    margin-top: 21px;
  }
  .aboute .aboute__subheader h4 {
    margin-bottom: 15px;
  }
  .aboute .btn__style {
    height: 33px;
    width: 168px;
    font-size: 11px;
  }
  .aboute p {
    font-size: 17px;
  }
  .aboute h4 {
    font-size: 20px;
  }
  .aboute h3 {
    font-size: 25px;
  }
  .aboute .aboute__knowlagde-item {
    font-size: 25px;
  }
  .aboute .aboute__knowlagde-item .item {
    margin-right: 9px;
    font-size: 15px;
    padding: 7px 8px;
  }
}

@media (max-width: 750px) {
  .status .form {
    margin-top: 30px;
  }
  .status .form .done {
    margin-right: 18px;
    height: 43px;
    font-size: 13px;
    padding: 13px 23px;
  }
  .status .form .search {
    padding: 10px 0 7px 7px;
    height: 26px;
    font-size: 13px;
  }
  .status .status__pb {
    position: absolute;
    left: 0;
    margin-top: 21px;
  }
  .status .pb__container {
    display: none;
  }
  .status .pb__steps {
    display: block;
  }
  .status .status__step {
    margin-left: 100px;
    display: block;
  }
  .status .status__step .status__item {
    width: 100%;
  }
  .status .status__step .status__item .status__descr {
    text-align: start;
  }
  .status .status__step .status__item .status__icon {
    display: none;
  }
  .status .step {
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
  }
}

@media (max-width: 749px) {
  .aboute .aboute__title h3 {
    font-size: 25px;
  }
  .aboute .aboute__title p {
    margin-top: 0;
  }
  .aboute .aboute__subheader h4 {
    margin-bottom: 8px;
    font-size: 17px;
  }
  .aboute p {
    font-size: 13px;
  }
  .aboute h3 {
    font-size: 17px;
  }
  .aboute .aboute__descr .aboute__knowlagde .aboute__knowlagde-title {
    font-size: 20px;
  }
  .employee__modal .form__input-row input {
    padding: 6px 7px;
    width: 238px;
    height: 36px;
  }
  .employee__modal .from__comment textarea {
    width: 509px;
    height: 121px;
  }
  .modal h1 {
    font-size: 25px;
  }
  .modal .close {
    font-size: 25px;
  }
}

@media (max-width: 723px) {
  .status .step:nth-child(2) {
    margin-top: 9px;
    margin-bottom: 16px;
  }
  .status .step:nth-child(2) {
    margin-top: 9px;
    margin-bottom: 16px;
  }
}

@media (max-width: 690px) {
  .nav {
    justify-content: space-evenly;
  }
  .nav .nav__logo {
    left: -90px;
  }
  .vacancy__header {
    display: block;
  }
  .footer .footer__top .footer__link {
    display: block;
  }
  .footer .footer__aboute {
    display: block;
  }
  .footer .footer__aboute .items {
    margin-top: 10px;
    font-size: 12px;
  }
  .footer .footer__contact {
    display: block;
    margin: 25px 0 20px 0;
  }
  .footer .footer__contact .footer__contact__item {
    margin-top: 10px;
  }
  .footer .footer__contact .footer__contact__item a {
    font-size: 16px;
  }
  .footer .footer__contact .footer__contact__item p {
    font-size: 12px;
  }
}

@media (max-width: 689px) {
  .status .search {
    margin-right: 11px;
  }
  .status .step:nth-child(2) {
    margin-top: 12px;
    margin-bottom: 24px;
  }
  .status .step:nth-child(3) {
    margin-bottom: 17px;
  }
}

@media (max-width: 640px) {
  .employee__modal .form__input-row input {
    padding: 0px 7px;
    width: 173px;
    height: 29px;
  }
  .employee__modal .from__comment textarea {
    width: 379px;
    height: 100px;
  }
  .file-label {
    height: 92px;
    width: 163px;
  }
  .btn__modal {
    height: 37px;
    width: 132px;
    font-size: 13px;
  }
  .employee__modal .modal {
    height: 380px;
    padding: 18px 15px 8px 16px;
  }
  .employee__modal .form__input {
    margin-top: -20px;
  }
  .modal h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .employee__modal .modal .close {
    font-size: 18px;
  }
  .employee__modal .form__input-row label {
    font-size: 11px;
    line-height: 15px;
  }
  .employee__modal .from__comment label {
    font-size: 12px;
    line-height: 11px;
    margin: 0;
    margin-top: 9px;
  }
  .file-label {
    font-size: 12px;
  }
  .employee__modal .from-file label {
    font-size: 13px;
  }
  .aboute__header {
    display: block;
  }
  .aboute__title {
    margin-top: 10px;
  }
  .aboute {
    margin-top: 13px;
  }
  .aboute p {
    margin-top: 10px;
  }
  .aboute .aboute__title h3 {
    font-size: 21px;
  }
  .container {
    padding: 0 29px;
  }
}

@media (max-width: 600px) {
  .nav .inline-block__phone {
    display: none;
  }
}

@media (max-width: 600px) {
  .employee__aboute {
    justify-content: center;
  }
}

@media (max-width: 529px) {
  .status .step:nth-child(3) {
    margin-bottom: 28px;
  }
  .status .form .search {
    margin-right: 16px;
  }
}

@media (max-width: 525px) {
  .employee__descr {
    display: block;
  }
  .news__title {
    display: block;
  }
  .nav .nav__logo {
    left: -50px;
  }
  .nav .inline-block__phone {
    display: none;
  }
}

@media (max-width: 489px) {
  .status .form {
    margin-top: 0;
    padding: 0;
  }
  .status .step:nth-child(2) {
    margin-top: 24px;
    margin-bottom: 34px;
  }
  .status .form .search {
    height: 22px;
    font-size: 10px;
  }
  .status .form .done {
    margin-right: -28px;
    height: 39px;
    font-size: 12px;
    padding: 12px 11px;
  }
}

@media (max-width: 441px) {
  .nav .inline-block {
    position: relative;
    left: 29px;
  }
  .nav__logo {
    left: 28px;
  }
}

@media (max-width: 440px) {
  .nav .inline-block__language {
    display: none;
  }
  .nav .nav__logo img {
    width: 70%;
  }
  .nav .hamburger {
    top: 14px;
  }
}

@media (max-width: 425px) {
  .page_up {
    bottom: 15px;
    right: 15px;
    width: 33px;
    height: 33px;
  }
  .container {
    padding: 0 27px;
  }
  .prefer .prefer__logo h3 {
    font-size: 28px;
  }
  .prefer .prefer__logo img {
    width: 79px;
    height: 35px;
    margin-left: 2px;
  }
  .prefer .prefer__logo span {
    margin-left: 3px;
    font-size: 28px;
  }
  .vacancy .vacancy__item h2 {
    font-size: 12px;
  }
  .vacancy .vacancy__item .divader {
    margin-top: 10px;
  }
  .vacancy .vacancy__item a {
    line-height: 21px;
  }
}

@media (max-width: 423px) {
  .status .status__pb {
    position: absolute;
    left: -54px;
    margin-top: -5px;
  }
  .status .status__step {
    margin-top: 44px;
    margin-left: 36px;
  }
}

@media (max-width: 420px) {
  .employee__modal .modal {
    height: 430px;
  }
  .employee__modal .from__comment textarea {
    width: 283px;
    height: 75px;
    font-size: 11px;
  }
  .file-label {
    height: 59px;
    width: 98px;
  }
  .btn__modal {
    height: 33px;
    width: 107px;
    font-size: 12px;
  }
  .modal .file-icon img {
    height: 29px;
    width: 34px;
  }
  .aboute .aboute__title h3 {
    font-size: 16px;
  }
  .aboute .aboute__subheader h4 {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .aboute .aboute__subheader {
    margin-top: 11px;
  }
  .aboute p {
    margin-top: 6px;
    margin-bottom: 10px;
  }
  .aboute h3 {
    font-size: 14px;
  }
  .aboute .aboute__descr .aboute__knowlagde .aboute__knowlagde-title {
    font-size: 15px;
  }
  .aboute .aboute__knowlagde-item .item {
    margin-right: 6px;
    font-size: 10px;
    padding: 4px 5px;
  }
  .aboute .btn__style {
    height: 28px;
    width: 151px;
    font-size: 11px;
  }
  .footer {
    margin-top: 22px;
  }
  .employee__modal .form__input-row {
    display: block;
  }
  .employee__modal .form__input-row input {
    width: 100%;
  }
  .employee__modal .form__input-row .input:nth-child(1) {
    margin-right: 0;
  }
}

@media (max-width: 359px) {
  .status .status__item .status__descr {
    font-size: 14px;
  }
}

