@font-face {
  font-family: "Roboto Condensed";
  src: url("roboto-condensed-iIbpPOh.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --main-color: #57ecff;
  --main-color-hover: #4feafe;
  --text-color: #fff;
  --text-color-dark: #121212;
  --background-color: #0a0a0a;
  --font-family: "Roboto Condensed", "Segoe UI", sans-serif;
  --secu-padding-h: min(20px, 5vw);
  --secu-padding-v: 40px;
  --nav-height: 120px;
}

@media screen and (min-width: 1081px) {
  .mobonly {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
  }
}

@media screen and (max-width: 1080px) {
  .deskonly {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
  }
}

.fade-in-element {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.fade-in-element.visible {
  transform: translateY(0);
  opacity: 1;
}

hr {
  display: block;
  clear: both;
  height: 1px;
  width: 100%;
  margin: min(40px, 4.16vw) auto min(30px, 3.125vw);
  padding: 0;
  border: 0;
  background-color: #707070;
}

span.anchor {
  display: block;
  position: relative;
  top: calc(-1 * var(--nav-height));
  visibility: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--text-color);
  font-family: var(--font-family);
}

html,
body {
  background-color: var(--background-color);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  margin: 0;
  font-size: clamp(1rem, 1.957vw, 18px);
}

body * {
  font-size: inherit;
}

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

.flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: min(40px, 4vw);
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

.bordtop {
  position: relative;
  max-width: 960px;
  margin: min(57px, 10vw) auto 0;
  padding: min(57px, 10vw) min(20px, 5vw);
}

.bordtop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 1px;
  background-color: #707070;
  pointer-events: none;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  line-height: normal;
  color: inherit;
}

.h1,
.h2,
.h3 {
  font-weight: normal;
  line-height: 1.25;
  margin: 0;
}

.h1 {
  text-align: center;
  margin: 0 auto var(--secu-padding-v);
  font-size: clamp(2rem, 5vw, 46px);
  margin: 0 0 min(30px, 5vw);
}

.h2 {
  font-size: clamp(1.565rem, 3.913vw, 36px);
  margin: min(30px, 5vw) 0 15px;
}

p {
  margin-bottom: min(30px, 5vw);
  line-height: 1.75;
}

p:last-of-type {
  margin-bottom: 0;
}

strong {
  font-weight: inherit;
  color: var(--main-color);
}

ul {
  list-style: none;
  margin-bottom: 25px;
}

ul li::before {
  content: "•";
  font-size: 18px;
  margin-right: 12px;
  vertical-align: middle;
}

ol {
  list-style-position: inside;
}

li {
  line-height: 1.75;
}

.wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .wrapper {
    margin-top: 30px;
  }

  .wrapper:has(slideshow-component) {
    margin-top: 0;
  }
}

.wrapper-s {
  width: 100%;
  max-width: 1000px;
  min-height: 50vh;
  min-height: 50dvh;
  padding: 0 min(20px, 4vw);
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  .wrapper-s {
    margin-top: 30px;
  }
}

.button {
  cursor: pointer;
  display: inline-block;
  margin: 25px 0;
  padding: 15px 20px;
  background-color: var(--text-color);
  color: var(--text-color-dark);
  border: 1px solid var(--text-color);
  font-size: clamp(1.125rem, 2.174vw, 20px);
  transition: all 0.2s ease-in-out;
  text-align: center;
  line-height: 1;
  min-width: 240px;
}
.button:hover {
  background-color: var(--text-color-dark);
  color: var(--text-color);
}

/* HEADER START */
.logo-container {
  position: relative;
  z-index: 1000;
}

.logo {
  width: 194px;
  height: auto;
  margin: 40px auto 0;
}
@media screen and (max-width: 1080px) {
  .logo {
    width: 137px;
  }
}

nav {
  display: flex;
  justify-content: center;
  padding: var(--secu-padding-v) var(--secu-padding-h);

  ul {
    display: flex;
    gap: min(40px, 4vw);
    list-style: none inside;
    margin: 0;
  }

  li::before {
    content: none;
  }

  a {
    font-size: clamp(1.125rem, 2.174vw, 20px);
  }

  a:hover,
  .active {
    color: var(--main-color);
  }
}
@media screen and (max-width: 1400px) {
  nav {
    padding: 30px var(--secu-padding-h);

    a {
      font-size: 14px;
    }
  }
}

.sticky {
  z-index: 1000;
}

.sticky.absolute {
  position: absolute;
  width: 100%;
}

.sticky.stuck {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
}

@media screen and (min-width: 1081px) {
  .sticky.stuck {
    .logo-container {
      position: absolute;
      top: 0;
      left: 0;
      margin: 20px 0 0 30px;
    }
    .logo {
      width: 157px;
      margin: 0;

      @media screen and (max-width: 1400px) {
        width: 107px;
      }
    }
  }
}

@media screen and (max-width: 1080px) {
  .sticky.stuck {
    .logo {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .hamburger {
      top: 20px;
    }
  }
}

.submenu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(0.696rem, 1.7391vw, 16px);
}

.dropdown-arrow {
  width: 15px;
  height: 35px;
  fill: var(--main-color);
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.language-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #2d2d2d;
  border: 1px solid #404040;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-item:first-child {
  border-radius: 5px 5px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 5px 5px;
}

/* HEADER END */

/* FOOTER START */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

footer * {
  text-align: center;
}

footer ul {
  display: flex;
  align-items: center;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer nav {
  padding: 0 20px 30px;
}

footer nav a {
  display: block;
  line-height: 1.2;
}

footer nav li {
  position: relative;
  padding-right: 11px;
}

footer li::before {
  content: none;
}

footer nav li:not(:last-of-type)::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
