/* Globals */
* {
  box-sizing: border-box;
}

:root {
  --main-color: #155DA4;
}

html {
  font-size: 10px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Raleway', sans-serif;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #1C1C1C;
  position: relative;
}

@media (max-width: 1200px) {
  html {
    font-size: 9.5px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 8.5px;
  }
}

body {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  height: 100%;
}

html,
body {
  min-height: 100%;
  height: 100%;
}


.wrap {
  min-height: 100%;
  height: auto;
  transition: all .2s ease;
}

.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  vertical-align: top;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:not([class]) {
  text-decoration: none;
}

a:not([class]):hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

h1,
.h1 {
  font-weight: 600;
  font-size: 4.4rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 5.6rem;
}

h2,
.h2 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 5.6rem;
}

p {
  margin: 0 0 1.6rem;
}

[style*='background-image'] {
  background: no-repeat center;
  background-size: cover;
}

section {
  margin-bottom: 6.4rem;
}

section:last-child {
  margin: 0;
}

.-text-border {
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  transition: .2s ease;
}

.-text-border:hover {
  border-color: transparent;
}

.btn {
  display: inline-block;
  border: 2px solid var(--main-color);
  cursor: pointer;
  background: var(--main-color);
  color: #fff;
  padding: 1.4rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  white-space: nowrap;
  transition: background-color .3s ease, color .3s ease-in-out;
}

.btn:hover {
  background: #fff;
  color: var(--main-color)
}

.btn.--inverted {
  border-color: #fff;
  background: #fff;
  color: var(--main-color);
}

.btn.--inverted:hover {
  background: var(--main-color);
  color: #fff
}

.btn--with-arrow {
  padding: 1.4rem 4.8rem;
}

.btn--with-arrow::after {
  content: '';
  position: relative;
  background: url("/img/icons/arrow-right.svg") no-repeat center;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1.6rem;
  margin-top: -2px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: transform .4s linear;
}

.btn--with-arrow:hover {}

.btn--with-arrow:hover::after {
  transform: translate(2rem, 0);
  -webkit-filter: none;
  filter: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
}


ul li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1C1C1C;
}

.wrap {
  background: #fff;
}

.container {
  max-width: 141.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* header */
.header {
  position: relative;
  margin-bottom: 8rem;
  background: url("/img/pics/header-bg.png") no-repeat top center;
  background-size: cover;
  height: 100vh;
}

.header.header__privacy-policy {
  position: relative;
  margin-bottom: 7rem;
  padding-bottom: 2rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.14);
  background-size: cover;
  height: auto;
}

.header .container {
  height: 100%;
}

.header__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.header__top-line {
  display: flex;
  padding-top: 2rem;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.header__logo-icon {
  width: 7.3rem;
  height: 3rem;
  flex-shrink: 0;
  background: url(../img/icons/logo.svg) center no-repeat;
  background-size: contain;
}

.header nav {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.header nav a {
  margin: 0 1.8rem;
}

.header nav .btn {
  padding: .8rem 2.4rem;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.header__text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  max-width: 50rem;
  font-weight: 600;
  font-size: 4.4rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.header__buttons {}

.header__buttons .btn {
  min-width: 28rem;
}

.about-company {
  background: url("/img/pics/about.png") no-repeat right center;
  background-size: contain;
  margin-bottom: 8.6rem;
}

.about-company__text {
  width: 50%;
}

.about-company__progress {
  display: flex;
  flex-wrap: wrap;
  max-width: 52rem;
  margin-top: 5.4rem;
}

.about-company__progress-item {
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: 2.4rem;
}

.about-company__progress-item strong {
  display: flex;
  font-weight: 700;
  font-size: 4rem;
  line-height: 4.7rem;
  color: var(--main-color);
  padding-right: 1.6rem;
}

.about-company__progress-item span {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
}

.vacancies__item {
  display: flex;
  justify-content: space-between;
  padding: 2.8rem 3.6rem;
  background: #F4F8FD;
  border-radius: 20px;
}

.vacancies__item+.vacancies__item {
  margin-top: 1.6rem;
}

.vacancies__content {}

.vacancies__item-title {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.vacancies__description-more {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--main-color);
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.vacancies__description-more::after {
  content: "";
  display: inline-block;
  background: url("/img/icons/arrow-down.svg") no-repeat center;
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: middle;
  margin-left: .8rem;
  margin-top: -1px;
  transition: all .2s ease;
}

.vacancies__description-more.active::after {
  transform: rotate(180deg);
}

.vacancies__description-more-text {
  display: none;
}

.vacancies__description-title {
  padding-top: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.working-conditions {
  background: #F4F8FD;
  padding: 8rem 0;
}

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

.working-conditions__text {
  max-width: 50rem;
}

.working-conditions__text h2 {
  margin-bottom: 8rem;
}

.working-conditions__subtitle {
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.working-conditions__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 57.6rem;
}

.features-item {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 1.2rem;
}

.features-item__wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2.8rem;
  border-radius: 20px;
  height: 100%;
}

.features-item__header {
  display: flex;
  align-items: center;
  margin-bottom: 4.4rem;
}

.features-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  margin-right: 2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.--features-icon-1 {
  background-image: url("/img/icons/features1.svg");
}

.--features-icon-2 {
  background-image: url("/img/icons/features2.svg");
}

.--features-icon-3 {
  background-image: url("/img/icons/features3.svg");
}

.--features-icon-4 {
  background-image: url("/img/icons/features4.svg");
}

.features-item__title {
  font-weight: 600;
}

.features-item__text {
  font-weight: 400;
}

.working-conditions__text li {
  margin-bottom: 1.6rem;
}

.no-job-found {
  margin: 8rem 0 12rem;
}

.job-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--main-color);
  padding: 5.4rem 6.4rem 6.4rem;
  color: #fff;
  transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.job-banner:hover {
  transform: scale(1.1);
}

.job-banner__content {
  max-width: 60%;
}

.job-banner__title {
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}

.job-banner__button .btn {
  padding: 1.4rem 4.8rem;
  white-space: nowrap;
}

/* footer */
.footer {
  padding: 2.8rem 0 4.1rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 12rem;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.14);
}

.footer a {
  color: #1C1C1C;
}

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

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

.footer__nav a,
.footer__nav span {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--main-color);
  margin-bottom: .8rem;
  cursor: pointer;
}

.footer__nav a:hover,
.footer__nav span:hover {
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

.footer__address {
  display: flex;
}

.footer__address p {
  margin: 0 0 1.2rem;
  font-weight: 500;
}

.footer__address-title {
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__address-contacts {
  display: flex;
  flex-direction: column;
}

.text-w-icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
  margin-right: 1.2rem;
}

.text-w-icon.--icon-adress::before {
  background-image: url("/img/icons/map.svg");
}

.text-w-icon.--icon-phone::before {
  background-image: url("/img/icons/phone.svg");
}

.text-w-icon.--icon-email::before {
  background-image: url("/img/icons/email.svg");
}

.footer__logo {
  display: block;
  width: 6.8rem;
  height: 2.8rem;
  background: url(../img/icons/logo.svg) center no-repeat;
  background-size: contain;
}

.footer__about {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.4rem;
  text-align: right;
}

.modal-overlay,
.modal-success_overlay,
.modal-error_overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(28, 28, 28, 0.64);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 5;
    opacity: 0;
    transition: all .4s ease;
}

.modal-overlay.active,
.modal-success_overlay.active,
.modal-error_overlay.active {
    display: block;
    opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 64rem;
  transform: translate(-50%, -100%);
  background: #fff;
  border-radius: 20px;
  padding: 3.2rem 4.8rem;
  opacity: 0;
  z-index: 10;
  transition: all .5s ease;
}

.modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-animation: modalShow .5s;
  animation: modalShow .5s;
}

@-webkit-keyframes modalShow {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes modalShow {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.modal__title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
}

.modal__vacancies {
  font-weight: 500;
  margin-bottom: 4rem;
}

.modal__close {
  background: url("/img/icons/close.svg") no-repeat center;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  cursor: pointer;
  transition: all .2s ease;
}

.modal__close:hover {
  transform: rotate(90deg);
}

.modal__success {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 64rem;
  transform: translate(-50%, -100%);
  background: var(--main-color);
  color: #fff;
  border-radius: 20px;
  padding: 3.2rem 4.8rem;
  opacity: 0;
  z-index: 10;
  transition: all .5s ease;
}

.modal__error {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 64rem;
    transform: translate(-50%, -100%);
    background: rgb(255, 57, 57);
    color: #fff;
    border-radius: 20px;
    padding: 3.2rem 4.8rem;
    opacity: 0;
    z-index: 10;
    transition: all .5s ease;
}

.modal__success.active,
.modal__error.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
    -webkit-animation: modalShow .5s;
    animation: modalShow .5s;
}

.modal__success-close,
.modal__error-close {
  background: url("/img/icons/close.svg") no-repeat center;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  cursor: pointer;
  transition: all .2s ease;
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
}

.modal__success-close:hover,
.modal__success-close:hover {
  transform: rotate(90deg);
}

.modal__success-title,
.modal__error-title {
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 3.6rem;
}

.modal__success-content,
.modal__error-content {
  font-weight: 500;
  font-size: 1.8rem;
  padding-bottom: 2rem;
}

.form__group {
  display: flex;
  flex-direction: row;
  margin: 0 -1.2rem 2.4rem;
}

.form__item {
  display: flex;
  flex-direction: column;
  padding: 0 1.2rem;
  width: 50%;
}

.form__label {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: .8rem;
}

.form__label span {
  color: #FF3939;
}

.form__control .form__text-error {
  margin-top: .8rem;
  font-weight: 400;
  font-size: 1.2rem;
  color: #FF3939;
  display: block;
  text-align: right;
}

.form__control input[type=text] {
  background: #FFFFFF;
  border: 1px solid rgba(21, 93, 164, 0.55);
  border-radius: 4px;
  padding: .8rem 1.6rem;
  width: 100%;
  transition: all .2s ease;
  outline: none;
}

.form__control input[type=text]:focus {
  outline: none;
  border: 1px solid rgba(21, 93, 164, 0.75);
}

.form__control.input-field-error input[type=text] {
  border-color: rgba(255, 57, 57, 0.55);
}

.form__control.input-field-error input[type=text]:focus {
  border-color: rgba(255, 57, 57, 0.55);
}

.form__control textarea {
  background: #FFFFFF;
  border: 1px solid rgba(21, 93, 164, 0.55);
  border-radius: 4px;
  height: 8rem;
  padding: .8rem 1.6rem;
  width: 100%;
  resize: vertical;
  transition: all .2s ease;
  outline: none;
}

.form__control textarea:focus {
  outline: none;
  border: 1px solid rgba(21, 93, 164, 0.75);
}

.form__control-notice {
  color: #4F4F4F;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: .8rem;
  text-align: right;
}

.form__buttons {
  margin: 3.2rem 0 0;
}

.form__buttons .form__item:first-child {
  width: 60%;
}

.form__buttons .form__item:last-child {
  width: 40%;
}

.form__buttons .btn {
  padding: 1.3rem 3.6rem;
}

.form__accept {
  font-weight: 400;
  font-size: 12px;
}

.form__accept a {
  color: var(--main-color);
  text-decoration: underline;
}

.form__accept a {
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

.drop-zone {
  width: 100%;
  height: 80px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  cursor: pointer;
  border: 1px solid rgba(21, 93, 164, 0.55);
  border-radius: 4px;
  position: relative;
}

.input-field-error .drop-zone {
  border-color: rgba(255, 57, 57, 0.55);
}

.drop-zone__prompt {
  padding: 1.5rem 0 0;
}

.drop-zone__prompt-icon {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translate(-50%, 0);
  display: inline-block;
  background: url("/img/icons/plus.svg") no-repeat;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
}

.drop-zone--over {
  border-color: rgba(21, 93, 164, 0.95);
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: left;
}

.drop-zone__filename {
  font-weight: 400;
  font-size: 1.2rem;
}

.drop-zone__file-icon {
  display: inline-block;
  background: url("/img/icons/doc.svg") no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-right: 1rem;
}

.drop-zone__file-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.drop-zone__file-remove {
  display: inline-block;
  cursor: pointer;
  background: url("/img/icons/remove.svg") no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  margin-left: 1.5rem;
}

.privacy-policy h1 {
  font-weight: 700;
  font-size: 4rem;
}

.privacy-policy a {
  text-decoration: underline;
  color: var(--main-color);
}

.privacy-policy a:hover {
  text-decoration: none;
}

.privacy-policy__subtitle {
  font-weight: 600;
  font-size: 2rem;
  margin: 5.6rem 0 1.6rem;
}

.privacy-policy p {
  margin-bottom: 1.5rem;
}
.privacy-policy p.privacy-policy__level2 {
  text-indent: 3rem;
}

@media (max-width: 992px) {
  section {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {

  h1,
  .h1 {
    font-weight: 600;
    font-size: 3.4rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  h2,
  .h2 {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .header {
    background: url(/img/pics/header-bg-mobile.png) no-repeat bottom right;
    background-size: cover;
  }

  .header__text {
    text-align: center;
    max-width: none;
  }

  .privacy-policy h1 {
    font-size: 2.8rem;
  }

  .job-banner__title {
    font-size: 2.8rem;
  }

  .about-company {
    background: none;
  }

  .about-company__text {
    width: 100%;
  }

  .about-company__progress {
    max-width: none;
  }

  .vacancies__item {
    display: flex;
    padding: 2rem 2.2rem;
    flex-direction: column;
  }

  .vacancies__item-button {
    width: 100%;
    margin-top: 3rem;
  }


  .vacancies__item-button .btn {
    width: 100%;
  }

  .working-conditions {
    padding: 5rem 0;
    margin-top: 6rem;
  }

  .working-conditions__text h2 {
    margin-bottom: 4rem;
  }

  .working-conditions__container {
    align-items: flex-start;
    flex-direction: column;
  }

  .working-conditions__text {
    max-width: none;
  }

  .working-conditions__features {
    max-width: none;
  }

  .vacancies__item-title {
    padding-right: 2rem;
  }

  .job-banner {
    flex-direction: column;
  }

  .job-banner__content {
    max-width: none;
  }

  .job-banner__button {
    margin-top: 4rem;
  }

  .footer__body {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer__about {
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    margin-bottom: 2rem;
  }

  .footer__nav {
    width: 40%;
    order: 2;
  }

  .footer__address {
    width: 60%;
    order: 1
  }

  .footer__about {
    margin-top: 3rem;
    width: 100%;
    order: 3;
  }

  .footer__address p {
    padding-left: 3rem;
    position: relative;
  }

  .text-w-icon::before {
    position: absolute;
    left: 0;
  }

  .modal {
    width: 90%;
    max-height: 92%;
    overflow-y: auto;
    border-radius: 20px;
    padding: 3.2rem 4.8rem;
  }

  .modal__success,
  .modal__error {
    width: 90%;
    max-height: 92%;
    overflow-y: auto;
    border-radius: 20px;
    padding: 3.2rem 4.8rem;
  }
}


@media (max-width: 600px) {

  .header__buttons {
    padding-bottom: 15rem;
  }

  .form__group {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .form__item {
    padding: 0;
    width: 100%;
    margin-bottom: 2rem;
  }

  .form__buttons .form__item:first-child {
    width: 100%;
  }

  .form__buttons .form__item:last-child {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .header__top-line {
    flex-direction: column;

  }

  .header nav {
    margin-top: 3rem;
  }

  .header nav a {
    margin: 0 .5rem;
  }

  .header nav .btn {
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    background: none;
    border: none;
    color: #010101;
  }
}

@media (max-width: 480px) {
   .about-company__progress-item strong {
        font-size: 3.3rem;
   }

  .features-item {
    width: 100%;
  }

  .header__text {
    margin-top: -15rem;
   }

  .header__text h1 {
    margin-bottom: 3rem;
  }

  .header__buttons {
    padding-bottom: 10rem;
  }

  .job-banner {
    flex-direction: column;
    padding: 2.4rem 3.4rem 3.4rem;
  }

  .job-banner__text {
    line-height: 1.5;
  }
}