@charset "UTF-8";
.careers {
  --color-purple-dark-special: #3C3679;
  --color-purple-bg: #F6F7FE;
  --color-purple-bg--hover: #f0f1ff;
}
.careers .positions {
  font-family: var(--font-family-primary);
  font-size: 17px;
}
.careers .positions > .container {
  max-width: 900px;
}
.careers .positions h2.title {
  font-family: var(--font-family-title);
  font-size: 32px;
  color: var(--color-blue-dark-special);
  line-height: 1.15;
}
.careers .positions .controls {
  margin-block: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 990px) {
  .careers .positions .controls {
    grid-template-columns: 1fr;
  }
}
.careers .positions .controls .field {
  gap: 6px;
}
.careers .positions .controls label {
  font-size: 14px;
  font-weight: 600;
  color: RGBA(from var(--color-blue-dark-special) r g b/0.5);
}
.careers .positions .controls select {
  color: var(--color-blue-dark-special);
}
.careers .positions table {
  width: 100%;
  border-collapse: collapse;
}
.careers .positions table tr {
  display: grid;
  grid-template-areas: "title title link" "department country link";
  grid-template-columns: max-content 1fr 200px;
  align-items: center;
  border-radius: 12px;
  padding: 18px;
  margin-block: 24px;
  gap: 12px 6px;
  line-height: 1;
  background-color: var(--color-purple-bg);
  transition: all 0.15s ease-out;
}
.careers .positions table tr:has(.link:hover) {
  background-color: var(--color-purple-bg--hover);
}
@media (max-width: 990px) {
  .careers .positions table tr {
    grid-template-areas: "title title" "department country" "link link";
    grid-template-columns: max-content 1fr;
  }
}
.careers .positions table tr.hidden-department, .careers .positions table tr.hidden-country {
  display: none;
}
.careers .positions table tr .title {
  grid-area: title;
}
.careers .positions table tr .link {
  grid-area: link;
}
.careers .positions table tr .department {
  grid-area: department;
}
.careers .positions table tr .country {
  grid-area: country;
}
.careers .positions table tr .title {
  font-family: var(--font-family-title);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-blue-dark-special);
}
.careers .positions table tr .department, .careers .positions table tr .country {
  color: RGBA(from var(--color-blue-dark-special) r g b/0.5);
}
.careers .positions table tr .country:before {
  content: "|";
  display: inline-block;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}
.careers .positions table tr .link {
  position: relative;
  display: grid;
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 18px;
  border: solid 2px currentColor;
  font-weight: 550;
  background-color: var(--color-white);
}
.careers .positions table tr .link a {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5em;
  color: var(--color-blue-dark-special);
  transition: all 0.15s ease-out;
}
.careers .positions table tr .link a:hover {
  color: var(--color-blue-dark);
  transition: inherit;
}
.careers .positions table tr .link a:before {
  content: "";
  position: absolute;
  inset: -0.5em -1em;
}
.careers .positions table tr .link a:after {
  content: "→";
}
.careers .positions table tr .link label {
  position: relative;
  z-index: 2;
  color: var(--color-blue-dark-special);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  transition: all 0.15s ease-out;
  cursor: pointer;
}
.careers .positions table tr .link label:hover {
  color: var(--color-blue-dark);
}
.careers .positions table tr .link label:after {
  content: "";
  position: relative;
  background-color: currentColor;
  width: 8px;
  height: 4px;
  -webkit-clip-path: path("M.17.45A1 1 0 0 1 1.55.17L4 1.8 6.45.17a1 1 0 1 1 1.1 1.66l-3 2a1 1 0 0 1-1.1 0l-3-2A1 1 0 0 1 .17.45Z");
          clip-path: path("M.17.45A1 1 0 0 1 1.55.17L4 1.8 6.45.17a1 1 0 1 1 1.1 1.66l-3 2a1 1 0 0 1-1.1 0l-3-2A1 1 0 0 1 .17.45Z");
  transition: inherit;
}
.careers .positions table tr .link .links {
  position: absolute;
  display: grid;
  gap: 6px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  background-color: var(--color-white);
  border: solid 2px currentColor;
  border-top: none;
  justify-self: stretch;
  inset-inline: -2px;
  border-radius: 18px;
  padding: inherit;
  padding-bottom: 12px;
}
.careers .positions table tr .link .links label:after {
  rotate: 180deg;
}
.careers .positions table tr .link .links a {
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}
.careers .positions table tr .link .links a:before {
  inset-block: 0;
}
.careers .positions table tr .link .links a:first-of-type {
  margin-top: 3px;
  padding-top: 9px;
  border-top: solid 2px var(--color-blue-dark-special);
}
.careers .positions table tr .link input:not(:checked) ~ .links {
  display: none;
}
.careers .positions table tr .link input:checked ~ label:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  cursor: default;
}
.careers .positions table tr .link input:checked ~ .links {
  z-index: 3;
}
.careers .positions table th {
  text-align: start;
}
.careers .positions table:has([data-position]:not(.hidden-department):not(.hidden-country)) ~ .no-results-message {
  display: none;
}
.careers .section-careers-single {
  padding-bottom: 171px;
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .careers .section-careers-single {
    padding-bottom: 76px;
  }
}
@media (max-width: 991px) {
  .careers .section-careers-single {
    padding-bottom: 48px;
  }
  .careers .section-careers-single .section-careers-single-container {
    width: 768px;
  }
}
@media (max-width: 767px) {
  .careers .section-careers-single {
    padding-bottom: 38px;
  }
  .careers .section-careers-single .section-careers-single-container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
@media (max-width: 359px) {
  .careers .section-careers-single .section-careers-single-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.careers .section-careers-single .section-careers-single-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  grid-column-gap: 40px;
  padding-top: 8px;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .careers .section-careers-single .section-careers-single-inner {
    grid-template-columns: 1fr 400px;
  }
}
@media (max-width: 1199px) {
  .careers .section-careers-single .section-careers-single-inner {
    grid-template-columns: 1fr 350px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .careers .section-careers-single .section-careers-single-inner {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 767px) {
  .careers .section-careers-single .section-careers-single-inner {
    grid-template-columns: 1fr;
  }
}
.careers .section-careers-single .section-careers-single-back {
  font-size: 18px;
  font-weight: 500;
  color: #2195f2;
}
@media (max-width: 767px) {
  .careers .section-careers-single .section-careers-single-back--footer {
    display: none;
  }
}
@media (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-back {
    font-size: 16px;
  }
}
.careers .section-careers-single .section-careers-single-back:hover {
  text-decoration: none;
}
.careers .section-careers-single .section-careers-single-back:hover:before {
  transform: translateX(-4px);
}
.careers .section-careers-single .section-careers-single-back:before {
  content: "";
  width: 19px;
  height: 12px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: path("m5.68.15-.1.07L0 5.86l.35.37c.07.24.25.43.48.51l4.75 5.02c.29.31.77.32 1.07.02a.8.8 0 0 0 .08-1.02l-.07-.09-3.68-3.89 15.26.01c.42 0 .76-.35.76-.78 0-.4-.28-.73-.65-.78h-.1L2.8 5.22l3.84-3.88A.8.8 0 0 0 6.73.32L6.66.23a.74.74 0 0 0-.88-.15l-.1.07z");
          clip-path: path("m5.68.15-.1.07L0 5.86l.35.37c.07.24.25.43.48.51l4.75 5.02c.29.31.77.32 1.07.02a.8.8 0 0 0 .08-1.02l-.07-.09-3.68-3.89 15.26.01c.42 0 .76-.35.76-.78 0-.4-.28-.73-.65-.78h-.1L2.8 5.22l3.84-3.88A.8.8 0 0 0 6.73.32L6.66.23a.74.74 0 0 0-.88-.15l-.1.07z");
  margin-right: 12px;
  transition: 0.25s;
}
.careers .section-careers-single .section-careers-single-header {
  padding-top: 7px;
  margin-bottom: 30px;
}
.careers .section-careers-single .section-careers-single-header .section-careers-single-title {
  margin-top: 30px;
  margin-bottom: 7px;
  color: #01164d;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .careers .section-careers-single .section-careers-single-header .section-careers-single-title {
    font-size: 35px;
    line-height: 1.45;
  }
}
@media (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-header .section-careers-single-title {
    font-size: 27px;
    line-height: 1.45;
  }
}
@media (max-width: 767px) {
  .careers .section-careers-single .section-careers-single-header {
    padding-top: 0;
    margin-bottom: 49px;
  }
  .careers .section-careers-single .section-careers-single-header .section-careers-single-title {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 15px;
  }
}
.careers .section-careers-single .section-careers-single-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.careers .section-careers-single .section-careers-single-meta-department {
  font-size: 24px;
  font-weight: 500;
  color: #6d7278;
}
@media (max-width: 1199px) {
  .careers .section-careers-single .section-careers-single-meta-department {
    font-size: 21px;
  }
}
@media (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-meta-department {
    font-size: 20px;
  }
}
.careers .section-careers-single .section-careers-single-content {
  padding-right: 70px;
}
@media (max-width: 1200px) {
  .careers .section-careers-single .section-careers-single-content {
    padding-right: 0;
  }
}
.careers .section-careers-single .section-careers-single-content-inner {
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 1.72;
  color: #2b3755;
}
.careers .section-careers-single .section-careers-single-content-inner h2 {
  margin-top: 23px;
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.75;
  color: #01164d;
}
@media (max-width: 1199px) {
  .careers .section-careers-single .section-careers-single-content-inner h2 {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-content-inner h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .careers .section-careers-single .section-careers-single-content-inner h2 {
    font-size: 19px;
    margin-top: 40px;
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-content-inner {
    font-size: 16px;
  }
}
.careers .section-careers-single .section-careers-single-content-inner p {
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 1.72;
  color: #2b3755;
}
@media (min-width: 768px) and (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-content-inner p {
    font-size: 16px;
  }
}
.careers .section-careers-single .section-careers-single-content-inner p:not(:last-child) {
  margin-bottom: 15px;
}
.careers .section-careers-single .section-careers-single-content-inner ul li,
.careers .section-careers-single .section-careers-single-content-inner ol li {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: normal;
  color: #2b3755;
}
@media (min-width: 768px) and (max-width: 992px) {
  .careers .section-careers-single .section-careers-single-content-inner ul li,
  .careers .section-careers-single .section-careers-single-content-inner ol li {
    font-size: 16px;
  }
}
.careers .section-careers-single .section-careers-single-content-inner ul {
  list-style: none;
  padding-left: 1em;
  margin-top: 0;
  margin-bottom: 27px;
}
.careers .section-careers-single .section-careers-single-content-inner ul li {
  position: relative;
  margin-bottom: 12px;
}
.careers .section-careers-single .section-careers-single-content-inner ul li:before {
  content: "•";
  color: #2195f2;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: -5px;
  font-size: 23px;
}
@media (max-width: 1199px) {
  .careers .section-careers-single .section-careers-single-content-inner ul {
    margin-bottom: 22px;
  }
}
/*# sourceMappingURL=careers2.css.map */
