:root {
  /* Base colors */
  --color-background: #f7f7f7;
  --color-text: #222;
  --color-text-light: rgba(34, 34, 34, 0.6);
  --color-text-muted: rgba(34, 34, 34, 0.4);
  --color-text-rich: rgba(34, 34, 34, 0.88);
  /* Border colors */
  --color-border: rgba(34, 34, 34, 0.1);
  /* Interactive elements */
  --color-link: inherit;
  --color-link-hover: #222;
  --color-tap-highlight: rgba(0,0,0,0);
  /* UI Elements */
  --color-badge-bg: rgba(34, 34, 34, 0.1);
  --color-badge-text: rgba(34, 34, 34, 0.7);
  --color-badge-border: rgba(34, 34, 34, 0.1);
  --color-announcement-bg: rgba(34, 34, 34, 0.04);
  /* Navigation */
  --color-nav-link: #222;
  --color-nav-link-opacity: 0.6;
  --color-nav-link-hover-opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: var(--color-tap-highlight);
  box-sizing: border-box;
}

body {
  font-family: "Saans", helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 16vh;
}

.side {
  width: 220px;
  flex-shrink: 0;
  position: relative;
}
.side .sideInner {
  position: sticky;
  top: 16vh;
}
@media only screen and (min-width: 1001px) {
  .side .container {
    padding-right: 32px;
  }
}

.main {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}

body.loaded .main {
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  body {
    flex-direction: column;
    padding-top: 0;
  }
  .side {
    width: 100%;
    max-width: none;
    position: static;
  }
  .side .sideInner {
    position: static;
  }
}
/* elements */
a {
  color: inherit;
}

.backLink {
  display: inline-block;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  margin-bottom: 70px;
  transition: 0.2s ease;
}
.backLink:hover {
  color: var(--color-text);
}
.backLink:before {
  content: "<- ";
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 8px;
}
@media only screen and (max-width: 1000px) {
  .backLink {
    margin-bottom: 32px;
  }
}

strong {
  font-weight: 500;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
}

.light {
  color: var(--color-text-light);
}

h1, .h1 {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 500;
}
@media only screen and (min-width: 1001px) {
  h1, .h1 {
    margin-top: -14px;
  }
}

h1.newsTitle {
  font-size: 40px;
}

h2, .h2 {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 32px;
}

h3, .h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}

.badge {
  border: 1px solid transparent;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border-radius: 20px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.badge.subtle {
  border: 1px solid var(--color-badge-border);
  background: transparent;
}

.btnGrp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--color-text);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  transition: 0.2s ease;
}
.btn:hover {
  opacity: 0.8;
}

/* core */
.container {
  padding: 64px;
}

.gapXL {
  margin-bottom: 90px;
}

.gapL {
  margin-bottom: 64px;
}

.gapM {
  margin-bottom: 32px;
}

.gapS {
  margin-bottom: 16px;
}

.gapXS {
  margin-bottom: 6px;
}

.container.center {
  text-align: center;
}

.announcement {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 6px 14px;
  font-size: 14px;
  padding-left: 6px;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.2s ease;
  cursor: pointer;
  background: var(--color-announcement-bg);
}
@media (max-width: 800px) {
  .announcement {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
    background: transparent;
  }
  .announcement .badge {
    padding: 0;
    background: transparent;
  }
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
  .header {
    flex-direction: row;
  }
}

.navOuter {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1000px) {
  .navOuter {
    align-items: flex-end;
  }
}

.logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.logo h1 {
  font-size: 15px;
}

.menuToggle {
  display: none;
  padding: 12px;
  cursor: pointer;
  margin-top: -14px;
  margin-right: -12px;
}

.nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.nav hr {
  margin: 16px 0;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-nav-link);
  text-decoration: none;
  opacity: var(--color-nav-link-opacity);
  transition: 0.2s ease;
}

.nav a svg {
  margin-left: 4px;
  margin-bottom: -1.5px;
}

.nav a:hover,
.nav a.active {
  opacity: var(--color-nav-link-hover-opacity);
}

.footer {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cols {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 64px;
}

.linkSet {
  margin: 0 -14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.linkSetItem {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
}

.linkSetItem:hover {
  background: rgba(255, 255, 255, 0.03);
}

.lsiTitle {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lsiTags {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 16px;
  gap: 4px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin: 0;
}

.gallery.small {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.galleryNav {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  margin: 0 -32px;
  padding: 0 32px;
}

.galleryNav::-webkit-scrollbar {
  display: none;
}

.galleryNav a {
  flex-shrink: 0;
  text-decoration: none;
  padding: 6px 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.galleryNav a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.galleryNav a.active {
  background: white;
  color: #2b2b25;
}

.companyCover {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}

.companyCoverInner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.companyOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s ease;
  transform: scale(1.05);
}

.companyCover:hover .companyOverlay {
  opacity: 0.8;
}

.contactList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contactRow a {
  opacity: 0.6;
  text-decoration: none;
  transition: 0.2s ease;
  font-weight: 500;
}

.contactRow a:hover {
  opacity: 1;
}

@media only screen and (max-width: 900px) {
  .contactRow {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
/* company */
.companyHero {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

.companyHeroThumb {
  width: 320px;
  flex-shrink: 0;
}

.companyHeroImgSide {
  pointer-events: none;
}

.companyHeroImgMain {
  display: none;
  pointer-events: none;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media only screen and (max-width: 1000px) {
  .companyHero {
    flex-direction: column;
  }
  .companyHeroThumb {
    width: 100%;
  }
  .companyHeroImgMain {
    width: 100%;
    display: block;
  }
  .companyHeroImgSide {
    display: none;
  }
}
/* news */
.newsCard {
  text-decoration: none;
}

.newsCover {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.newsCover img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  border-radius: 8px;
}

.newsCardInfo {
  display: flex;
  flex-direction: column;
}

.rich {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-rich);
}

.rich p,
.rich img,
.rich ul,
.rich ol,
.rich h1,
.rich h2,
.rich h3,
.rich h4,
.rich h5,
.rich h6 {
  margin-bottom: 24px;
}

.rich ol,
.rich ul {
  margin-left: 24px;
}

.rich img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

/* cards */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}
.card:hover {
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 3px 0px rgba(0, 0, 0, 0.02), 0px 4px 4px rgba(0, 0, 0, 0.02);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: var(--color-text-light);
  opacity: 0.6;
}

/* mobile */
@media only screen and (min-width: 641px) {
  .mobileonly {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1000px) {
  h1 {
    font-size: 36px;
  }
  .logo h1 {
    display: none;
  }
  h1.newsTitle {
    font-size: 30px;
  }
  .container {
    padding: 32px;
  }
  .gapXL {
    margin-bottom: 60px;
  }
  .gapL {
    margin-bottom: 40px;
  }
  .gapM {
    margin-bottom: 20px;
  }
  .gapS {
    margin-bottom: 10px;
  }
  .gallery,
  .linkSet {
    gap: 24px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .header {
    align-items: flex-start;
  }
  .menuToggle {
    display: block;
  }
  .navWrap {
    display: none;
    margin-top: 48px;
  }
  .navWrap.open {
    display: block;
  }
  .nav {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 640px) {
  h1 {
    font-size: 32px;
  }
  h1.newsTitle {
    font-size: 26px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .rich {
    font-size: 17px;
  }
  .footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}/*# sourceMappingURL=nbsg.css.map */