body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #131516;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;

  min-height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #ffffff;

  z-index: 5;
}

@media only screen and (min-width: 1200px) {
  .navigation {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;

    border-bottom: 1px solid #e9ecef;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.logo {
  display: inline-block;
  margin-right: 22px;
  padding-top: 13px;
  padding-bottom: 14px;

  color: #131516;
  font-size: 19px;
  text-decoration: none;
}

.navigation__list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  .navigation__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: auto;
  }
}

.navigation__link {
  display: inline-block;
  width: 100%;
  padding: 15px;

  color: #131516;
  text-decoration: none;
  text-align: center;

  border-top: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  -webkit-transition: all 0.33s ease-out;

  -o-transition: all 0.33s ease-out;

  transition: all 0.33s ease-out;
}

.navigation__link:hover,
.navigation__link:focus,
.navigation__link:active {
  color: #131516;
  border-top: 1px solid #131516;
}

.navigation__link--active {
  font-weight: 700;

  border-top: 1px solid #131516;
}

.navigation__toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 12px;

  background-color: transparent;

  border-color: rgba(0, 0, 0, 0.1);
  border-width: 1px;
  border-radius: 3px;

  cursor: pointer;
}

@media only screen and (min-width: 1200px) {
  .navigation__toggler {
    display: none;
  }
}

.promo {
  text-align: center;
  background-color: #c5d0ce;
}

.promo__title {
  display: inline-block;
  padding: 45px 15px;

  font-size: 50px;
  font-weight: 400;
}

.vacancy {
  width: 100%;
  padding: 45px 15px;
  padding-bottom: 0;

  -webkit-box-sizing: border-box;

          box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .vacancy {
    width: 80%;
    max-width: 690px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1200px) {
  .vacancy {
    width: 70%;
    max-width: 920px;
  }
}

.vacancy__link {
  color: #025e6d;
  text-decoration: none;
  border-bottom: 1px solid #74c1ce;
  -webkit-transition: all 0.33s ease-out;
  -o-transition: all 0.33s ease-out;
  transition: all 0.33s ease-out;
}

.vacancy__link:hover,
.vacancy__link:focus,
.vacancy__link:active {
  color: #011d22;
  border-bottom: 1px solid #011d22;
}

.vacancy__title {
  font-size: 26px;
  font-weight: 400;
}

.contact {
  padding: 45px 15px;
  text-align: center;

  background-color: #e9ecef;
}

.upward {
  opacity: 0;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;

  text-align: right;

  -webkit-transition: all 0.33s ease-out;

  -o-transition: all 0.33s ease-out;

  transition: all 0.33s ease-out;
}

.upward__link {
  position: relative;
  display: inline-block;
  margin: 20px;
  width: 55px;
  height: 55px;

  background-color: #79afb8;

  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0,  0.26);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0,  0.26);
}

.upward__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px ;

  border-width: 2px;
  border-style: solid;
  border-top-color: transparent;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  border-left-color: transparent;

  -webkit-transform: translate(-50%, -20%) rotate(-135deg);

      -ms-transform: translate(-50%, -20%) rotate(-135deg);

          transform: translate(-50%, -20%) rotate(-135deg);
}

.fixed {
  opacity: 1;
}

.image-wrapper {
  position: relative;
}

/* .image-wrapper::before {
  content: attr(data-source);
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(-90deg) translate(100%, 100%);
      -ms-transform: rotate(-90deg) translate(100%, 100%);
          transform: rotate(-90deg) translate(100%, 100%);
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;

  font-size: 10px;
  line-height: 14px;
  color: #929ca5;
}

@media only screen and (min-width: 768px) {
  .image-wrapper::before {
    font-size: 12px;
    line-height: 16px;
  }
} */

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

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