
/* vis */

@media (max-width: 700px) {
  .only-d {
    display: none !important;
  }
}

@media (min-width: 700px) {
  .only-m {
    display: none !important;
  }
}

/* global */

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

input:focus {outline:0;}

input.submit, input.button, button {
  -webkit-appearance: none;
  -moz-appearance: none;
}

img {
  display: inline-block;
}

/* markup */

html {
	height: 100%;
	line-height: 1.35;
	-webkit-overflow-scrolling: touch;
  font-size: 100%;
  box-sizing: border-box;
  background: #484b5e;
}

body {
  position: relative;
	min-height: 100%;
	font-family: "Roboto", Arial, Tahoma, sans-serif;
	font-weight: 400;
  color: #484b5e;
  background: #484b5e;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 3vw;
}

@media (min-width: 700px) {
  body {
    font-size: 1vw;
  }
}

a {
  color: #495cc7;
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
  text-decoration: none;
}

/* padding */

.axiom {
  padding-left: 4vw;
  padding-right: 4vw;
}

@media (min-width: 700px) {
  .axiom {
    padding-left: 9.5vw;
    padding-right: 9.5vw;
  }
}

/* top header */

#topheader {
  color: #fff;
  background: #484b5e;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1;
  font-size: 0.8em;
  padding-top: 1em;
  padding-bottom: 1em;
}

#topheader a {
  color: #fff;
  line-height: 1;
}

#topheader a:last-child {
  margin-left: 2.5em;
}

/* header */

header {
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background: #fff;
}

@media (min-width: 700px) {
  header {
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.header-logo-main img {
  width: 20vw;
  height: auto;
  display: inline-block;
}

@media (min-width: 700px) {
  .header-logo-main img {
    width: 10vw;
  }
}

.menu-toggle {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 3vw;
}
.menu-toggle img {
  width: 5vw;
  height: auto;
  transition: opacity 300ms ease;
}
.menu-toggle:hover img {
  opacity: 0.7;
}

/* header menu */

.header-menu {
  position: absolute;
  width: 100%;
  top: 10.3vw;
  left: 0;
  z-index: 100;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
body.menu .header-menu {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 700px) {
  .header-menu, body.menu .header-menu {
    position: relative;
    opacity: 1;
    pointer-events: all;
    background: none;
    top: 0;
    text-align: right;
  }
}

.header-menu ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 700px) {
  .header-menu ul {
    width: 100%;
    opacity: 1;
    pointer-events: all;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    top: -0.25vw;
  }
}

.header-menu ul li {
  display: block;
  font-size: 3vw;
  border-bottom: 1px solid #eee;
}

@media (min-width: 700px) {
  .header-menu ul li {
    font-size: 1vw;
    border: 0;
    flex: 0 0 auto;
    width: auto;
    display: inline-block;
    margin-left: 2.5vw;
  }
}

.header-menu ul li a, .header-menu ul li strong {
  text-decoration: none;
  padding: 2.5vw 4vw;
  display: block;
  line-height: 1;
}
@media (min-width: 700px) {
  .header-menu ul li a, .header-menu ul li strong {
    padding: 0;
    display: inline-block;
    position: relative;
    top: 0.1vw;
  }
}
.header-menu ul li a:hover {
  background: #eee;
}
@media (min-width: 700px) {
  .header-menu ul li a:hover {
    background: none;
    text-decoration: underline;
  }
}

body.menu main, body.menu footer, body.menu #hero {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 700px) {
  body.menu main, body.menu footer, body.menu main #hero {
    opacity: 1;
    pointer-events: all;
  }
}

/* hero */

#hero {
  position: relative;
  overflow: hidden;
}
.hero-lang {
  position: absolute;
  top: 48vw;
  left: 4vw;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
}
.hero-lang a {
  color: #fff;
}
@media (min-width: 700px) {
  .hero-lang {
    position: absolute;
    top: 4.5vw;
    left: auto;
    right: 9.5vw;
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
  }
}

#hero h1 {
  margin: 0;
  font-size: 7vw;
  max-width: 70vw;
  font-weight: 700;
  line-height: 1.1em;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 6vw;
  left: 4vw;
  z-index: 1;
  transition: opacity 700ms ease, transform 700ms ease;
  transform: translateY(2vh);
  opacity: 0;
}

#hero h1.appeared {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  #hero h1 {
    top: 4vw;
    margin: 0;
    font-size: 3.6vw;
    border-left: 0.6vw solid rgba(255, 255, 255, 0.2);
    padding-left: 3vw;
    transform: translateX(0);
    left: 9.5vw;
  }
  #hero h1.appeared {
    transform: translateX(-3.6vw);
  }
}

.hero-social {
  position: absolute;
  top: 40vw;
  left: 0;
  z-index: 1;
}

.hero-social img {
  height: 4vw;
  width: auto;
  margin-left: 4vw;
}

@media (min-width: 700px) {
  .hero-social {
    position: absolute;
    top: 7vw;
    left: auto;
    right: 9.5vw;
    z-index: 1;
  }

  .hero-social img {
    height: 1.3vw;
    width: auto;
    margin-left: 2vw;
  }
}
.hero-mob-img {
  background-image: url(../gfx/hero-bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 100%;
  height: 0;
}

.hero-desk-video {
  padding-bottom: 45%;
  overflow: hidden;
  position: relative;
  height: 0;
}

.hero-desk-video video {
  height: 100%;
  width: 177.77777778vh;
  min-width: 100%;
  min-height: 56.25vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* breadcrumbs */

#breadcrumbs {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 2em;
  padding-bottom: 2em;
  line-height: 1.3em;
}

@media (min-width: 700px) {
  #breadcrumbs {
    line-height: 1em;
  }
}

/* footer */

footer {
  position: relative;
  margin: 0;
  padding-top: 10vw;
  padding-bottom: 10vw;
  color: #9193a1;
}
@media (min-width: 700px) {
  footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
}

footer p {
  line-height: 1.4em;
  font-size: 0.8em;
  display: block;
  margin-bottom: 2em;
}

@media (min-width: 700px) {
  footer p {
    margin-bottom: 0;
  }
}

footer a {
  color: #fff;
}

.footer-menu {
  margin-bottom: 2em;
}
.footer-menu ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 700px) {
  .footer-menu ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.footer-menu ul li {
  border: 0;
  margin-bottom: 0.4em;
}
@media (min-width: 700px) {
  .footer-menu ul li {
    border: 0;
    flex: 0 0 auto;
    width: auto;
    display: inline-block;
    margin-right: 2.5vw;
    margin-bottom: 0;
  }
}

.footer-menu ul li a {
  line-height: 1em;
  padding: 0;
  display: inline-block;
  position: relative;
  top: 0.1vw;
  color: #fff;
}

.footer-social {
  margin-bottom: 1em;
}
@media (min-width: 700px) {
  .footer-social {
    margin-bottom: 2em;
  }
}
.footer-social img {
  height: 4vw;
  width: auto;
  margin-right: 4vw;
}
@media (min-width: 700px) {
  .footer-social img {
    height: 1.2vw;
    margin-right: 2vw;
  }
}

/* main */

main {
  position: relative;
  background: #fff;
}


/* article */

article {
  position: relative;
  background: #fff;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

@media (min-width: 700px) {
  article {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}

article.grey {
  background: #f5f5f5;
}

/* content */

article h1 {
  font-size: 2.2em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1em;
}
@media (min-width: 700px) {
  article h1 {
    font-size: 3.5em;
    margin-bottom: 0.8em;
  }
}

.subh1 {
  position: relative;
  top: -2.3em;
}
@media (min-width: 700px) {
  .subh1 {
    position: relative;
    top: -2.5em;
  }
}

@media (min-width: 700px) {
  .text-2cols {
    columns: 2;
    column-gap: 4vw;
  }
}

.div-2cols {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.div-2cols > div {
  flex: 0 0 50%;
  width: 50%;
}

/* news */

.news-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.news-item {
  flex: 0 0 48.5%;
  width: 48.5%;
  margin-bottom: 2em;
}


@media (min-width: 700px) {
  .news-item {
    flex: 0 0 32.5%;
    width: 32.5%;
    margin-bottom: 2.5em;
  }
}

.news-item-image {
  position: relative;
  height: 0;
  padding-bottom: 70%;
  background-color: #f5f5f5;
  background-position: 50% 50%;
  background-size: cover;
  border-bottom: 5px solid #484b5e;
  margin-bottom: 1em;
}

.news-item-date {
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5em;
}

.news-item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.news-item-title a {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1em;
  display: block;
}


@media (min-width: 700px) {
  .news-item-title a {
    font-size: 1.5em;
    line-height: 1em;
  }
}

/* contacts */

#map {
  height: 0;
  padding-bottom: 70%;
}


@media (min-width: 700px) {
  #map {
    padding-bottom: 30%;
  }
}

/* competencies */

.comp-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.comp-item {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 2em;
  background: #f5f5f5;
}


@media (min-width: 700px) {
  .comp-item {
    flex: 0 0 48.5%;
    width: 48.5%;
    margin-bottom: 2.5em;
  }
}

.comp-item-image {
  position: relative;
  height: 0;
  padding-bottom: 47%;
  background-color: #f5f5f5;
  background-position: 50% 50%;
  background-size: cover;
  border-bottom: 5px solid #484b5e;
}

.comp-item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.01;
  background: #fff;
  transition: opacity 300ms ease;
}
a:hover .comp-item-link {
  opacity: 0.15;
}

.comp-item-title {
  margin-bottom: 0.7em;
}
@media (min-width: 700px) {
  .comp-item-title {
    margin-bottom: 1em;
  }
}

.comp-item-title a {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1em;
}

@media (min-width: 700px) {
  .comp-item-title a {
    font-size: 1.5em;
    line-height: 1em;
  }
}

.comp-item-content {
  padding: 1em;
  background: #f5f5f5;
}
@media (min-width: 700px) {
  .comp-item-content {
    padding: 2em;
  }
}
.comp-item-desc {
  line-height: 1.3em;
}

/* main content */

.content-2cols > div:first-child {
  margin-bottom: 3em;
}

@media (min-width: 700px) {
  .content-2cols {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .content-2cols > div:first-child {
    flex: 0 0 65%;
    width: 65%;
    margin-bottom: 0;
  }

  .content-2cols > div:last-child {
    flex: 0 0 30%;
    width: 30%;
  }
}

.image-set-bar {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.image-set-bar > div {
  flex: 0 0 49%;
  width: 49%;
  margin-bottom: 0.8em;
}
.image-set-bar > div img {
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .image-set-bar {
    flex-flow: column nowrap;
  }

  .image-set-bar > div {
    width: 100%;
  }
}

.text-content p {
  margin-bottom: 1.5em;
  line-height: 1.4;
}

.text-content p.hero {
  font-size: 1.5em;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  padding-left: 1.2rem;
  border-left: 1.4vw solid #f5f5f5;
}
@media (min-width: 700px) {
  .text-content p.hero {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    padding-left: 1.5rem;
    border-left: 0.6vw solid #f5f5f5;
    transform: translate(-2.1vw, 0);
  }
}

.text-content p.small {
  position: relative;
  top: -0.6em;
  font-size: 0.8em;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.text-content ul, .text-content ol {
  margin-top: 0;
}

/* inline icon bar */

.icon-bar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
}

.icon-bar > div {
  flex: 0 0 20%;
  text-align: center;
}

.icon-bar > div img {
  width: 4em;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.icon-bar .icon-image {
  position: relative;
  width: 100%;
  height: 4.3em;
  margin-bottom: 0.7em;
}

.icon-bar .icon-image figure {
  margin: 0;
}

.icon-bar > div span {
  font-size: 0.8em;
  line-height: 1.2;
  display: block;
}

@media (min-width: 700px) {
  .icon-bar > div span {
    font-size: 1em;
  }
}

/* table */

/* table */

TABLE {
		min-width: 100%;
		margin: 0;
		border-spacing: 0;
		table-layout: fixed;
    margin-bottom: 1.5em;
}

TH, TD {
  margin: 0;
  padding: 0.6em 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: left;
}

@media (min-width: 700px) {
  TH, TD {
    line-height: 1.2em;
  }
}
TH {
  vertical-align: bottom;
}

TR:first-child TH {
  border-top: 0;
}
TR:first-child TD {
  border-top: 2px solid rgba(0, 0, 0, 0.3);
}

.vacancies p strong {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1em;
  padding-top: 1em;
  display: inline-block;
}

@media (min-width: 700px) {
  .vacancies p strong {
    font-size: 1.5em;
    line-height: 1em;
  }
}

/* Appear */

.appear.appearopacity {
  transition: opacity 700ms ease;
  opacity: 0;
}
.appear.appearopacity.appeared {
  opacity: 1;
}

.appear.appearopacityrise {
  transition: opacity 700ms ease, transform 700ms ease;
  opacity: 0;
  transform: translateY(2vh);
}
.appear.appearopacityrise.appeared {
  opacity: 1;
  transform: translateY(0);
}

.appear.appearopacityfall {
  transition: opacity 700ms ease, transform 700ms ease;
  opacity: 0;
  transform: translateY(-2vh);
}
.appear.appearopacityfall.appeared {
  opacity: 1;
  transform: translateY(0);
}

.appear.appearopacityriseslow {
  transition: opacity 1700ms ease, transform 700ms ease;
  opacity: 0;
  transform: translateY(2vh);
}
.appear.appearopacityriseslow.appeared {
  opacity: 1;
  transform: translateY(0);
}

.appear.scaleup {
  transition: transform 2200ms ease;
  transform: scale(1, 1);
}
.appear.scaleup.appeared {
  transform: scale(1.05, 1.05);
}

.appear.appearcontent {
  transition: opacity 700ms ease, transform 700ms ease;
  opacity: 0;
  transform: translateX(3vh);
}
.appear.appearcontent.appeared {
  opacity: 1;
  transform: translateX(0);
}

.appearoverflow {
  overflow-x: hidden;
}