html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  height: 100%;
}

html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #132348;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1.5rem;
  line-height: 1.4;
}

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

a {
  color: #16e3a2;
}

.h-hidden {
  display: none !important;
}

@media all and (max-width: 768px) {
  .h-hidden-small {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .h-hidden-large {
    display: none !important;
  }
}

.h-typo-nowrap {
  white-space: nowrap;
}
@media all and (max-width: 1200px) {
  .h-typo-nowrap {
    white-space: inherit;
  }
}

.h-typo-bold {
  font-weight: 700;
}

.h-typo-center {
  text-align: center;
}

.h-typo-uppercase {
  text-transform: uppercase;
}

.h-typo-centered {
  text-align: center;
}

.h-typo-primary {
  color: #132348;
}

.h-typo-secondary {
  color: #98acba;
}

.h-typo-secondary-o {
  opacity: 0.75;
}

.h-typo-secondary-oo {
  opacity: 0.35;
}

.h-typo-cta {
  color: #16e3a2;
}

.h-typo-blue {
  color: #02a7df;
}

.h-typo-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.h-typo-title-h1 {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  .h-typo-title-h1 {
    font-size: 3.6rem;
  }
}

.h-typo-title-h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.h-typo-title-h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.l-layout {
  padding: 10rem 0 3rem;
  background-color: #f3f4f8;
}

.l-layout__container {
  display: flex;
  width: 100%;
  max-width: 110rem;
  padding: 0 2rem;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .l-layout__container {
    max-width: 90rem;
  }
}
@media all and (max-width: 1070px) {
  .l-layout__container {
    max-width: 70rem;
  }
}
@media all and (max-width: 768px) {
  .l-layout__container {
    flex-direction: column;
  }
}

.l-layout__container-left {
  flex-shrink: 0;
  flex-grow: 0;
  width: 26rem;
  margin-right: 3rem;
}
@media all and (max-width: 1070px) {
  .l-layout__container-left {
    display: none;
  }
}

.l-layout__container-left-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 10.5rem;
  margin-top: 5rem;
}

.l-layout__container-right {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
}
@media all and (max-width: 768px) {
  .l-layout__container-right {
    width: 100%;
  }
}

.l-modal {
  display: none;
}
.l-modal.is-open {
  display: block;
}

.l-modal__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  will-change: transform;
}
[aria-hidden=false] .l-modal__overlay {
  animation: modal-overlay-in 0.3s ease-out;
}
[aria-hidden=true] .l-modal__overlay {
  animation: modal-overlay-out 0.3s ease-out;
}
@media all and (max-width: 768px) {
  .l-modal__overlay {
    align-items: flex-start;
  }
}

.l-modal__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 56rem;
  max-height: 100vh;
  border-radius: 0;
  background-color: #ffffff;
  overflow-y: auto;
  will-change: transform;
}
[aria-hidden=false] .l-modal__container {
  animation: modal-container-in 0.3s ease-out;
}
[aria-hidden=true] .l-modal__container {
  animation: modal-container-out 0.3s ease-out;
}
@media all and (max-width: 768px) {
  .l-modal__container {
    max-width: 100%;
    height: 100vh;
  }
}

.l-modal__content {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
@media all and (max-width: 768px) {
  .l-modal__content {
    padding: 3rem 2rem;
  }
}

.l-modal__content-titles {
  margin-bottom: 4rem;
}

.l-modal__content-title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #132348;
}

.l-modal__content-subtitle {
  font-size: 1.6rem;
  color: #132348;
  margin-top: 1rem;
}

@keyframes modal-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-container-in {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modal-container-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.l-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.l-grid__column {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
}
.l-grid__column--50 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__column--33 {
  flex-basis: 33.33%;
  max-width: 33.33%;
}
.l-grid__column--25 {
  flex-basis: 25%;
  max-width: 25%;
}

.c-avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0;
  background-size: cover;
}
.c-avatar--large {
  width: 8rem;
  height: 8rem;
}

.c-button {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  background-color: #16e3a2;
  border: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.c-button:hover, .c-button:active, .c-button:focus {
  opacity: 0.75;
  outline: none;
}
.c-button svg {
  display: inline-block;
  vertical-align: top;
  width: 1.6rem;
  height: 1.6rem;
  fill: #ffffff;
  margin-left: 1rem;
}
.c-button--small {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}
.c-button--typo {
  padding: 1.5rem 0;
  background-color: transparent;
  color: #16e3a2;
}
.c-button--typo svg {
  fill: #16e3a2;
}
.c-button--white {
  color: #02a7df;
  background-color: #ffffff;
}
.c-button--blue {
  background-color: #02a7df;
}
.c-button--outline-blue {
  color: #02a7df;
  background-color: transparent;
  box-shadow: inset 0 0 0 0.1rem #02a7df;
}
.c-button--outline-white {
  color: #ffffff;
  background-color: transparent;
  box-shadow: inset 0 0 0 0.1rem #ffffff;
}
.c-button--grey {
  color: #132348;
  background-color: #d5dae3;
}
.c-button--typo-blue {
  padding: 1.5rem 0;
  background-color: transparent;
  color: #02a7df;
}
.c-button--typo-blue svg {
  fill: #02a7df;
}
.c-button--disabled, .c-button--disabled:hover {
  color: #ffffff;
  background-color: #d5dae3;
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}

.c-alert {
  padding: 2rem;
  font-size: 1.4rem;
  color: #98acba;
  background-color: #f3f4f8;
  border: 0.1rem solid #98acba;
  border-radius: 0;
}
.c-alert--red {
  color: #ff546d;
  background-color: rgba(255, 84, 109, 0.1);
  border-color: #ff546d;
}
.c-alert--blue {
  color: #02a7df;
  background-color: rgba(2, 167, 223, 0.1);
  border-color: #02a7df;
}

.c-alert__line {
  color: inherit;
}
.c-alert__line + .c-alert__line {
  margin-top: 0.5rem;
}

.c-dropzone {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10rem;
  border: 0.2rem dashed #e5eaf3;
  cursor: pointer;
}

.c-dropzone__content {
  font-size: 1.4rem;
  color: #98acba;
  text-align: center;
}

.c-dropzone__content-preview {
  display: block;
  color: #02a7df;
  margin-top: 1rem;
}

.c-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  height: 7.5rem;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 0 2rem 0 rgba(19, 35, 72, 0.1);
}
.c-header--details {
  position: fixed;
  top: -8.5rem;
  left: 0;
  right: 0;
  z-index: 102;
  transition: top 0.3s;
}
@media all and (max-width: 1070px) {
  .c-header--details {
    display: none;
  }
}
.c-header--details-appeared {
  top: 0;
}

.c-header__logo {
  flex-shrink: 0;
  flex-grow: 0;
  width: 16rem;
}

.c-header__logo-img {
  display: block;
  width: 100%;
}

.c-header__nav {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media all and (max-width: 1070px) {
  .c-header__nav {
    display: none;
  }
}

.c-header__nav-item {
  margin-left: 2rem;
}

.c-header__company {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-left: -1rem;
}

.c-header__company-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 1.5rem;
}
.c-header__company-avatar--closed {
  filter: grayscale(100%);
  opacity: 0.33;
}

.c-header__company-typo {
  flex-shrink: 1;
  flex-grow: 1;
  overflow: hidden;
}

.c-header__company-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-header__company-title--closed {
  color: #98acba;
}

.c-header__company-p {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #98acba;
}

.c-footer {
  padding: 6rem 0;
  background-color: #ffffff;
  border-top: 0.1rem solid #e5eaf3;
}
.c-footer--small {
  padding: 4rem 0;
}

.c-footer__container {
  display: flex;
  width: 100%;
  max-width: 110rem;
  overflow: hidden;
  padding: 0 2rem;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .c-footer__container {
    max-width: 90rem;
  }
}
@media all and (max-width: 1070px) {
  .c-footer__container {
    flex-wrap: wrap;
    max-width: 70rem;
  }
}

.c-footer__column {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 0;
}
@media all and (max-width: 768px) {
  .c-footer__column {
    width: 100%;
  }
}
.c-footer__column--company {
  margin-left: 3rem;
}
@media all and (max-width: 768px) {
  .c-footer__column--company {
    display: none;
  }
}
.c-footer__column--community {
  margin-left: 3rem;
}
@media all and (max-width: 768px) {
  .c-footer__column--community {
    display: none;
  }
}
.c-footer__column--contact {
  margin-left: 3rem;
}
@media all and (max-width: 768px) {
  .c-footer__column--contact {
    margin-left: 0;
    margin-top: 3rem;
  }
}
.c-footer__column--subscribe {
  flex-shrink: 0;
  flex-grow: 0;
  width: 22rem;
  margin-left: 3rem;
}
@media all and (max-width: 1070px) {
  .c-footer__column--subscribe {
    flex-direction: row;
    width: 100%;
    margin-left: 0;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  }
}
@media all and (max-width: 768px) {
  .c-footer__column--subscribe {
    flex-direction: column;
    text-align: center;
  }
}

.c-footer__meta {
  margin-top: auto;
}
@media all and (max-width: 1070px) {
  .c-footer__meta {
    margin-top: 0;
    margin-left: auto;
  }
}
@media all and (max-width: 768px) {
  .c-footer__meta {
    margin: 4rem auto 0;
  }
}

.c-footer__copyright {
  font-size: 1.4rem;
  color: #98acba;
}
.c-footer__copyright--centered {
  text-align: center;
}

.c-footer__nav + .c-footer__nav {
  margin-top: auto;
}

.c-footer__nav-label {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media all and (max-width: 768px) {
  .c-footer__nav-label {
    text-align: center;
  }
}

.c-footer__nav-link {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #132348;
  text-decoration: none;
  margin-top: 1rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.c-footer__nav-link:hover, .c-footer__nav-link:active, .c-footer__nav-link:focus {
  text-decoration: none;
  opacity: 1;
}
@media all and (max-width: 768px) {
  .c-footer__nav-link {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-footer__nav-p {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #98acba;
}
.c-footer__nav-p--indent {
  margin-top: 1rem;
}
.c-footer__nav-p--nowrap {
  white-space: nowrap;
}
@media all and (max-width: 768px) {
  .c-footer__nav-p {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-footer__subscribe {
  margin-bottom: 2rem;
}
@media all and (max-width: 1070px) {
  .c-footer__subscribe {
    max-width: 22rem;
  }
}
@media all and (max-width: 768px) {
  .c-footer__subscribe {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
  }
}

.c-footer__subscribe-label {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.c-footer__subscribe-form {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.c-footer__subscribe-input {
  flex-shrink: 1;
  flex-grow: 1;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 5.5rem;
  height: 4rem;
  line-height: 4rem;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: #132348;
  background-color: #e5eaf3;
}
.c-footer__subscribe-input::placeholder {
  color: #98acba;
}
.c-footer__subscribe-input:hover, .c-footer__subscribe-input:active, .c-footer__subscribe-input:focus {
  outline: none;
}

.c-footer__subscribe-button {
  flex-shrink: 0;
  flex-grow: 0;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  background-color: #16e3a2;
  border: none;
  outline: none;
  margin-left: -4rem;
  cursor: pointer;
}
.c-footer__subscribe-button svg {
  display: block;
  width: 100%;
  fill: #ffffff;
}

.c-footer__lang {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: rgba(19, 35, 72, 0.75);
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.c-footer__lang:hover, .c-footer__lang:active, .c-footer__lang:focus {
  text-decoration: none;
  color: #132348;
}
@media all and (max-width: 768px) {
  .c-footer__lang {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-filters {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0 2rem;
  margin-bottom: 2rem;
  z-index: 1;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.c-filters--scrolled {
  background-color: #ffffff;
  box-shadow: 0 0 2rem 0 rgba(19, 35, 72, 0.1);
}
@media all and (max-width: 768px) {
  .c-filters {
    padding: 0 1.5rem;
  }
}

.c-filters__items {
  display: flex;
  width: 100%;
  max-width: 106rem;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0.5rem 0 rgba(19, 35, 72, 0.06);
  margin: 0 auto;
}
.c-filters--scrolled .c-filters__items {
  box-shadow: none;
}
@media all and (max-width: 1200px) {
  .c-filters__items {
    max-width: 86rem;
  }
}
@media all and (max-width: 1070px) {
  .c-filters__items {
    max-width: 66rem;
  }
}

.c-filters__item {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
  padding: 1rem 0;
}
.c-filters__item + .c-filters__item {
  border-left: 0.1rem solid #e5eaf3;
}

.c-filters__dropdown {
  position: relative;
}

.c-filters__dropdown-input {
  position: relative;
  display: block;
  width: 100%;
  height: 4rem;
  font-family: "Inter", sans-serif;
  color: #132348;
  font-size: 1.4rem;
  line-height: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: transparent;
  padding: 1rem 1.5rem;
  padding-right: 4rem;
  z-index: 2;
  cursor: pointer;
}

.c-filters__dropdown-label {
  position: absolute;
  top: 0;
  left: 1.5rem;
  color: #98acba;
  font-size: 1.4rem;
  line-height: 4rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: top 0.1s, font-size 0.1s, line-height 0.1s, color 0.3s;
  z-index: 1;
}
.c-filters__dropdown-input--filled ~ .c-filters__dropdown-label, .c-filters__dropdown-input[aria-expanded=true] ~ .c-filters__dropdown-label {
  top: -0.4rem;
  font-size: 1.1rem;
  line-height: 1.1rem;
  z-index: 3;
}
.c-filters__dropdown-input[aria-expanded=true] ~ .c-filters__dropdown-label {
  color: #02a7df;
}

.c-filters__dropdown-clear {
  display: none;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  padding: 0;
  width: 1.6rem;
  margin: 0.7rem;
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 3;
}
.c-filters__dropdown-clear:hover {
  opacity: 0.6;
}
.c-filters__dropdown-input--filled ~ .c-filters__dropdown-clear {
  display: block;
}

.c-filters__dropdown-menu {
  margin-top: 1rem;
}

.c-field {
  position: relative;
}

.c-field__input {
  position: relative;
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: #132348;
  font-size: 1.4rem;
  line-height: 2rem;
  background-color: transparent;
  padding: 1rem 1.5rem;
  border: 0.2rem solid #e5eaf3;
  border-radius: 0;
  transition: border-color 0.3s;
  z-index: 2;
}
.c-field__input:hover, .c-field__input:active, .c-field__input:focus {
  outline: none;
}
.c-field__input:focus {
  border-color: #02a7df;
}
.c-field__input--error {
  border-color: #ff546d;
}
.c-field__input--textarea {
  height: 10rem;
  resize: none;
}
.c-field__input::placeholder {
  color: #98acba;
}
.c-field__input--clear, .c-field__input--password {
  padding-right: 4rem;
}

.c-field__label {
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0 0.5rem;
  color: #98acba;
  font-size: 1.4rem;
  line-height: 4rem;
  background-color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: top 0.1s, font-size 0.1s, line-height 0.1s, color 0.3s;
  z-index: 1;
}
.c-field__input--filled ~ .c-field__label, .c-field__input:focus ~ .c-field__label {
  top: -0.4rem;
  font-size: 1.1rem;
  line-height: 1.1rem;
  z-index: 3;
}
.c-field__input:focus ~ .c-field__label {
  color: #02a7df;
}
.c-field__input--error ~ .c-field__label {
  color: #ff546d;
}

.c-dropdown {
  position: relative;
}

.c-dropdown__menu {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 0 0 0.1rem #e5eaf3;
  display: none;
  max-height: 24rem;
  overflow: auto;
  z-index: 9999;
}
.open .c-dropdown__menu, .show .c-dropdown__menu {
  display: block;
}

.c-dropdown__menu-item {
  position: relative;
  padding: 1rem 0;
  padding-left: 2.6rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #132348;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
  cursor: pointer;
}
.c-dropdown__menu-item + .c-dropdown__menu-item {
  border-top: 0.1rem solid #e5eaf3;
}
.c-dropdown__menu-item::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: #d5dae3 url(/public/resources/svg/icon-check--white.svg) no-repeat center center;
  background-size: 60%;
  border-radius: 50%;
}
.c-dropdown__menu-item:hover {
  color: #02a7df;
}
.c-dropdown__menu-item--active::after {
  background-color: #02a7df;
}

.c-dropdown__menu-divider {
  padding: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #98acba;
}

.c-cta {
  padding: 3rem 2rem 4rem;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(to right top, #252567 0%, #145aaf 50%, #57c1cf 100%);
  border-radius: 0;
  box-shadow: 0 0 0.5rem 0 rgba(19, 35, 72, 0.06);
}

.c-cta__typo {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.c-cta__logo {
  display: block;
  width: 15rem;
  height: 4rem;
  background: url(/public/resources/logo-large.png) no-repeat center center;
  background-size: contain;
  margin: 0 auto 4rem;
}

.c-title {
  margin-bottom: 2rem;
}

.c-title__typo {
  color: #98acba;
  line-height: 3rem;
}

.c-title__action {
  display: inline-block;
  padding: 0 1.5rem;
  line-height: 3rem;
  font-size: 1.4rem;
  color: #02a7df;
  text-decoration: none;
  box-shadow: inset 0 0 0 0.1rem #02a7df;
  border-radius: 1.5rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.c-title__action:hover, .c-title__action:active, .c-title__action:focus {
  color: #02a7df;
  text-decoration: none;
  opacity: 1;
}
.c-title__typo + .c-title__action {
  margin-left: 0.5rem;
}

.c-position {
  display: block;
  padding: 3rem;
  color: #132348;
  text-decoration: none;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0.5rem 0 rgba(19, 35, 72, 0.06);
}
.c-position:hover, .c-position:active, .c-position:focus {
  color: #132348;
  text-decoration: none;
}
.c-position + .c-position {
  margin-top: 2rem;
}
@media all and (max-width: 768px) {
  .c-position + .c-position {
    margin-top: 1rem;
  }
}

.c-position__header {
  display: flex;
  align-items: center;
}

.c-position__header-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 2rem;
}
@media all and (max-width: 768px) {
  .c-position__header-avatar {
    width: 6rem;
    height: 6rem;
    margin-right: 1.5rem;
  }
}
.c-position__header-avatar--closed {
  filter: grayscale(100%);
  opacity: 0.33;
}

.c-position__header-typo {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
  color: #132348;
  line-height: 1.6;
}
.c-position__header-typo--closed {
  color: #98acba;
}

.c-position__header-eyebrow {
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.9;
}

.c-position__header-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0.5rem 0;
}

.c-position__header-title-label {
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #98acba;
  margin-left: 0.5rem;
}

.c-position__header-meta {
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.9;
}

.c-position__header-meta-item + .c-position__header-meta-item {
  margin-left: 1rem;
}

.c-position__header-meta-item-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  opacity: 0.5;
}

.c-position__header-button {
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  margin-left: 2rem;
}
@media all and (max-width: 768px) {
  .c-position__header-button {
    display: none;
  }
}

.c-position__divider {
  margin-top: 6rem;
}

.c-position__details-title {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #f3f4f8;
  margin-bottom: 1.5rem;
}
.c-position__details-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 0.2rem;
  background-color: #02a7df;
  margin-right: 1rem;
}

.c-position__details-typo {
  color: #132348;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.c-position__details-typo p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 1rem;
}

.c-socials {
  color: #ffffff;
  background-color: #02a7df;
  border-radius: 0;
  transition: opacity 0.3s;
}
.c-socials:hover, .c-socials:active, .c-socials:focus {
  opacity: 0.75;
}
.c-socials .at-share-btn {
  display: none !important;
  padding: 10px 20px !important;
  margin: 0 !important;
  background-color: transparent !important;
}
.c-socials .at-share-btn:hover, .c-socials .at-share-btn:active, .c-socials .at-share-btn:focus {
  transform: translateY(0) !important;
  outline: none !important;
}
.c-socials .at-svc-linkedin {
  display: flex !important;
  align-items: center !important;
}
.c-socials .at4-visually-hidden {
  display: none !important;
}
.c-socials .at-share-btn::before {
  content: "Partager cette offre sur";
  font-size: 14px;
  font-weight: 600;
}
.c-socials .at-share-btn .at-icon-wrapper {
  position: relative !important;
  top: -2px;
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
  margin-left: 5px !important;
}
.c-socials .at-share-btn .at-icon-wrapper svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  fill: #ffffff !important;
  margin: 0 !important;
}

.m-job__field {
  margin-bottom: 2rem;
}

.m-job__info {
  display: flex;
  overflow: hidden;
  margin: 0 -1rem 3rem;
}

.m-job__info-item {
  flex-shrink: 1;
  flex-grow: 1;
  position: relative;
  width: 100%;
  padding: 0 1rem;
}
.m-job__info-item::before, .m-job__info-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: calc(50% - 2.5rem);
  height: 0.2rem;
  background-color: #02a7df;
  margin-top: -0.1rem;
}
.m-job__info-item::after {
  left: auto;
  right: 0;
}
.m-job__info-item:first-child::before, .m-job__info-item:last-child::after {
  display: none;
}

.m-job__info-item-circle {
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: #02a7df;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 0.2rem #02a7df;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.m-job__info-item-typo {
  max-width: 14rem;
  color: #02a7df;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto;
}

.m-job__info-alert {
  margin-bottom: 3rem;
}

.m-job__buttons {
  display: flex;
}

.m-job__buttons-item {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-job__buttons-item + .m-job__buttons-item {
  margin-left: 1rem;
}

.m-job__thanks {
  max-width: 34rem;
  text-align: center;
  margin: 3rem auto;
}

.m-job__thanks-image {
  height: 6rem;
  width: 6rem;
  margin: 0 auto 1rem;
}

.m-job__thanks-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #132348;
  margin-bottom: 1rem;
}

.m-job__thanks-text {
  color: #98acba;
}

.m-job__thanks-button {
  margin-top: 2rem;
}
.m-job__thanks-button a {
  color: #ffffff !important;
}

.m-job__company {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.m-job__company-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 2rem;
}
@media all and (max-width: 768px) {
  .m-job__company-avatar {
    width: 6rem;
    height: 6rem;
    margin-right: 1.5rem;
  }
}
.m-job__company-avatar--closed {
  filter: grayscale(100%);
  opacity: 0.33;
}

.m-job__company-typo {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
  color: #132348;
  line-height: 1.6;
}
.m-job__company-typo--closed {
  color: #98acba;
}

.m-job__company-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-job__company-text {
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.9;
}
