*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  --global-image-radius: 6px;
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Univers Roman", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1c1917;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-word;
}

#app {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--global-image-radius);
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.logo-img,
.footer-logo-img,
.page-banner img,
.hero-banner {
  border-radius: 0 !important;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 84px;
  padding-right: 84px;
  width: 100%;
}
@media (min-width: 1921px) and (max-width: 2559px) {
  .container {
    max-width: min(2160px, 100vw - 64px);
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 2560px) and (max-width: 3839px) {
  .container {
    max-width: min(2720px, 100vw - 96px);
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 3840px) {
  .container {
    max-width: min(3200px, 100vw - 128px);
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

.news-gallery__content {
  display: none;
}

.page-banner {
  margin-top: 80px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.page-banner img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .page-banner {
    height: 150px;
    margin-top: 60px;
  }
}