@font-face {
  font-family: 'Apercu-Light';
  src: url(../fonts/Apercu-Light-Pro.ttf);
}

@font-face {
  font-family: 'Apercu-Bold';
  src: url(../fonts/Apercu-Bold-Pro.ttf);
}

/* BODY */
body {
  margin: auto;
  font-family: 'Apercu-Light';
  font-size: 18px;
  line-height: 24px;
}

/* HEADER */
.header {
  height: 94px;
  padding-left: 24px;
  border-bottom: 1px solid #f0f0f5;
}

.header img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* CONTENT */
.content {
  padding: 0px 259px 103px 259px;
}

.content__title {
  padding: 60px 0px 24px 0px;
  font-size: 48px;
  line-height: 110%;
}

.content__menu {
  display: flex;
  min-width: 550px;
  border-bottom: 4px solid #F0F0F5;
}

.content__menu button {
  border: none;
  background-color: transparent;
  width: 80px;
  height: 48px;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: -4px;
  border-bottom: 4px solid transparent;
}

.content__menu button.active {
  border-bottom: 4px solid black;
}

.content__menuitem {
  padding: 20px 0 20px 0;
  max-width: 1100px;
}

.content__menuitem__step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 270px;
}

.content__menuitem__step div {
  padding: 0 20px 0 0;
}

.content__menuitem__step__text {
  display: flex;
  width: 500px;
}

.hint {
  font-size: 16px;
  line-height: 18.2px;
}

.bolded {
  font-family: "Apercu-Bold";
}

.icon {
  vertical-align: middle;
}

.footer {
  padding: 32px 24px 40px 24px;
  min-height: 183px;
  background-color: black;
  color: white;
}

.footer__subtitle {
  font-size: 16px;
  line-height: 21px;
}

.footer__links {
  position: absolute;
  right: 24px;
}

.footer__links__mobile {
  display: none;
}

.content__menu__step__image {
  padding: 18px 0px 0px 0px;
  width: 500px;
}

/* MOBILE */
@media (max-width: 768px) {  
  .header {
    width: inherit;
    height: 72px;
  }

  .content {
    padding: 24px 16px 0px 16px;
  }
  
  .content__title {
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    line-height: 120%;  
  }

  .content__menu {
    justify-content: space-around;
    min-width: 0px;
  }

  .content__menu button {
    width: 100%;
  }

  .content__menuitem {
    min-width: 0px;
  }

  .content__menuitem__step {
    flex-direction: column;
  }

  .content__menuitem__step {
    width: 100%;
    padding: 0px 0px 35px 0px;
    min-height: 0px;
  }

  .content__menuitem__step__text {
    width: 90%;
  }
  
  .content__menu__step__image {
    padding: 18px 0px 0px 0px;
    width: 100%;
  }

  .footer__links {
    display: none;
  }

  .footer__links__mobile {
    display: block;
  }
}