*,
*::before,
*::after {
  box-sizing: border-box; /* Use border-box sizing for all elements */
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

/* Custom outline for all focused elements */
*:focus-visible {
  outline: 1px dashed #005500; /* Change color and style as needed */
  outline-offset: 1px; /* Adds spacing between the outline and element */
}

.no-scroll {
  overflow: hidden;
}

.word-break-keep-all {
  word-break: keep-all;
}

.rtl {
  direction: rtl;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Black.woff2") format("woff2"), url("fonts/NotoSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-BlackItalic.woff2") format("woff2"), url("fonts/NotoSans-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-BoldItalic.woff2") format("woff2"), url("fonts/NotoSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-LightItalic.woff2") format("woff2"), url("fonts/NotoSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Bold.woff2") format("woff2"), url("fonts/NotoSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Light.woff2") format("woff2"), url("fonts/NotoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-SemiBoldItalic.woff2") format("woff2"), url("fonts/NotoSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-SemiBold.woff2") format("woff2"), url("fonts/NotoSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Medium.woff2") format("woff2"), url("fonts/NotoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Thin.woff2") format("woff2"), url("fonts/NotoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-MediumItalic.woff2") format("woff2"), url("fonts/NotoSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Regular.woff2") format("woff2"), url("fonts/NotoSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-ThinItalic.woff2") format("woff2"), url("fonts/NotoSans-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@keyframes flip {
  25%, 100% {
    transform: rotateX(90deg);
  }
}
@keyframes fade {
  30%, 100% {
    opacity: var(--opacity, 0);
  }
}
body {
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans"; /* Default font-family */
  line-height: 1.5; /* Default line-height for readability */
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.icon-button {
  font-family: "Noto Sans";
  display: flex;
  gap: 15px;
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 16px;
  align-items: center;
  color: #000;
  cursor: pointer;
}

.social {
  display: flex;
  list-style: none;
  gap: 20px;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.logo {
  display: block;
  width: 150px;
  height: auto;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  align-items: center;
}
@media (min-width: 480px) {
  header {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  header {
    padding: 44px 50px;
  }
}

main {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  main {
    padding: 40px;
  }
}
@media (min-height: 700px) {
  main {
    flex-grow: 1;
    align-items: center;
  }
}

.content-page header {
  border-bottom: 1px solid #000;
}
.content-page footer {
  background: #fff;
  border-top: 1px solid #000;
}
.content-page footer .fixed {
  background: #fff;
  border-top: 1px solid #000;
}
.content-page main {
  padding: 50px;
  display: block;
}
.content-page main article {
  font-size: 16px;
  max-width: 910px;
}
.content-page main article h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 64.8px;
  margin-bottom: 40px;
}
.content-page main article h2 {
  font-size: 32px;
  line-height: 43.2px;
  font-weight: 500;
  margin-bottom: 20px;
}
.content-page main article h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 20px;
}
.content-page main article h4, .content-page main article h4, .content-page main article h6 {
  font-weight: bold;
  margin-bottom: 20px;
}
.content-page main article p {
  margin-bottom: 40px;
}
.content-page main article ul, .content-page main article ol {
  margin-bottom: 40px;
  padding-left: 20px;
}
.content-page main article ul li, .content-page main article ol li {
  margin-bottom: 10px;
}
.content-page main article ul ul, .content-page main article ul ol, .content-page main article ol ul, .content-page main article ol ol {
  margin: 0;
}
.content-page main article ul p, .content-page main article ol p {
  margin-bottom: 10px;
}
.content-page main article a {
  color: #000;
}
.content-page main article strong {
  font-weight: bold;
}
.content-page main article table {
  border: 1px solid #000;
  text-align: left;
  border-collapse: collapse;
}
.content-page main article table th, .content-page main article table td {
  border: 1px solid #000;
  padding: 10px;
  vertical-align: top;
}
.content-page main article .responsive-table {
  overflow-x: auto;
}
.content-page main article .responsive-table table {
  width: auto;
}

footer {
  width: 100%;
  padding: 30px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  height: 78px;
}
@media (min-width: 480px) {
  footer {
    padding: 42px 30px;
    height: 102px;
  }
}
@media (min-width: 768px) {
  footer {
    position: static;
    padding: 50px;
  }
}
footer .fixed {
  display: flex;
  width: 100%;
  gap: 50px;
  justify-content: space-between;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 30px;
}
@media (min-width: 480px) {
  footer .fixed {
    padding: 42px 30px;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  footer .fixed {
    background: rgba(255, 255, 255, 0.9);
  }
}
.needs-scroll footer .fixed {
  background: rgba(255, 255, 255, 0.9);
}
footer .menu {
  font-size: 14px;
  line-height: 16px;
  list-style: none;
  display: flex;
  gap: 50px;
  color: rgba(0, 0, 0, 0.6);
}
footer .menu a {
  text-decoration: none;
  color: inherit;
}
footer .menu a:hover {
  color: #000;
}
footer .social a:hover svg * {
  fill-opacity: 1;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

#language-switcher {
  position: relative;
  z-index: 10;
}
#language-switcher button {
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  padding: 13px 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#language-switcher button img {
  width: 16px;
  height: 16px;
  margin-left: 20px;
}
#language-switcher #language-list {
  list-style: none;
  position: absolute;
  z-index: 11;
  top: 100%;
  right: 0;
  padding: 15px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  margin-top: 14px;
  background: rgba(247, 247, 247, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  min-width: 160px;
}
#language-switcher #language-list li.empty {
  padding: 7px 30px;
  color: rgba(0, 0, 0, 0.4);
}
#language-switcher #language-list li a {
  display: block;
  padding: 7px 30px;
  text-decoration: none;
  color: #000;
}
#language-switcher #language-list li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

article.frontpage .tagline {
  font-family: "Noto Sans";
  font-weight: 600;
  text-align: left;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  display: grid;
}
@media (min-width: 480px) {
  article.frontpage .tagline {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  article.frontpage .tagline {
    font-size: 64px;
    line-height: 76.8px;
    margin-bottom: 64px;
    text-align: center;
  }
}
article.frontpage .tagline .slide {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
  -webkit-transform: translateZ(0);
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}
article.frontpage .tagline .slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0s 0s;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s 0s;
}
article.frontpage .tagline .slide.rtl {
  text-align: right;
}
@media (min-width: 768px) {
  article.frontpage .tagline .slide.rtl {
    text-align: center;
  }
}
@media (min-width: 768px) {
  article.frontpage .tagline .slide br {
    display: none;
  }
}
article.frontpage .form-wrapper {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) {
  article.frontpage .form-wrapper {
    max-width: 560px;
  }
}
article.frontpage form {
  display: grid;
  gap: 30px;
  column-gap: 20px;
}
@media (min-width: 480px) {
  article.frontpage form {
    gap: 40px;
  }
}
@media (min-width: 768px) {
  article.frontpage form {
    grid-template-columns: 1fr auto; /* A takes remaining space, C auto-sizes */
    grid-template-rows: auto auto; /* Two rows */
    grid-template-areas: "a c" "b b"; /* B spans the second row */
  }
  article.frontpage form .input-wrapper {
    grid-area: a; /* Place in the A area */
  }
  article.frontpage form .button {
    grid-area: c; /* Place in the B area */
  }
  article.frontpage form .terms-wrapper {
    grid-area: b; /* Place in the C area */
  }
}
article.frontpage form.submitted {
  opacity: 0;
  visibility: hidden;
}
article.frontpage form .wrapper {
  position: relative;
}
article.frontpage form .wrapper.has-error input[type=text],
article.frontpage form .wrapper.has-error input[type=email] {
  border-color: #CF0002;
}
article.frontpage form .wrapper.has-error .terms span::before {
  border-color: #CF0002;
}
article.frontpage form .wrapper .error {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  color: #CF0002;
  text-wrap: nowrap;
}
article.frontpage form input[type=text],
article.frontpage form input[type=email] {
  width: 100%;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 4px;
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 20px;
  margin-right: 20px;
  background: transparent;
}
article.frontpage form input[type=text]::placeholder,
article.frontpage form input[type=email]::placeholder {
  color: #000;
  opacity: 1;
}
article.frontpage form button {
  width: 100%;
  padding: 20px 30px;
  border: none;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
article.frontpage form button:disabled {
  background: rgba(0, 0, 0, 0.5);
  cursor: not-allowed;
}
article.frontpage form .terms {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  padding-left: 50px;
  min-height: 40px;
}
@media (min-width: 768px) {
  article.frontpage form .terms {
    min-height: 30px;
  }
}
article.frontpage form .terms a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}
article.frontpage form .terms > span {
  display: inline-block;
  cursor: pointer;
}
article.frontpage form .terms input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
article.frontpage form .terms input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  article.frontpage form .terms input[type=checkbox] + span:before {
    width: 30px;
    height: 30px;
  }
}
article.frontpage form .terms input[type=checkbox]:focus + span:before {
  outline: 1px dashed #005500;
  outline-offset: 1px;
}
article.frontpage form .terms input[type=checkbox]:checked + span:after {
  content: "";
  background: url("img/check.svg") no-repeat center center;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  left: 10px;
}
@media (min-width: 768px) {
  article.frontpage form .terms input[type=checkbox]:checked + span:after {
    top: 5px;
    left: 5px;
  }
}
article.frontpage #form-response {
  position: absolute;
  text-align: left;
  width: 100%;
  top: 0;
  left: 0;
  max-width: 560px;
}
article.frontpage #form-response h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}
article.frontpage #form-response p {
  font-size: 16px;
  line-height: 21.6px;
}
@media (min-width: 768px) {
  article.frontpage #form-response {
    text-align: center;
  }
}

.overlay {
  padding: 20px 30px 30px 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent dark background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
}
@media (min-width: 480px) {
  .overlay {
    padding: 30px 30px 42px 30px;
  }
}

#mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#mobile-menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mobile-menu .top svg *,
#mobile-menu .bottom svg * {
  fill-opacity: 1;
}
#mobile-menu .menu {
  margin-bottom: 20px;
  list-style: none;
  padding-left: 30px;
}
#mobile-menu .menu li {
  margin-top: 20px;
}
#mobile-menu .menu li a {
  font-size: 16px;
  line-height: 16px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#mobile-menu .menu li.copy {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
#mobile-menu .social {
  margin-bottom: 20px;
  padding-left: 30px;
}

#mobile-language {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
#mobile-language .menu {
  margin-bottom: 20px;
  list-style: none;
  padding-right: 30px;
  text-align: right;
  overflow-y: scroll;
}
#mobile-language .menu li {
  margin-top: 20px;
}
#mobile-language .menu li.empty {
  color: rgba(0, 0, 0, 0.4);
  font-weight: bold;
}
#mobile-language .menu li a {
  font-size: 16px;
  line-height: 16px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 767px) {
  .cky-revisit-bottom-right {
    bottom: 85px !important;
  }
}
.link-press-contact {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.link-press-contact:hover {
  opacity: 0.7;
}

/*# sourceMappingURL=style.css.map */
