@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "Securitas Pro";
  src: url("./fonts/SecuritasPro-Regular.woff2") format("woff2"),
    url("./fonts/SecuritasPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Securitas Pro";
  src: url("./fonts/SecuritasPro-Bold.woff2") format("woff2"),
    url("./fonts/SecuritasPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Design tokens */
:root {
  --color-text: #031F30;
  --color-primary: #AE97FD;
  --color-primary-hover: #9977FE;
  --color-accent: #6C47CF;
  --color-accent-dark: #3B3071;
  --color-dark-section: #0E283D;
  --color-surface: #F7F7F7;
  --color-border: #D7D8D6;
  --color-muted: #717376;
  --color-border-muted: #c4c4c4;
  --color-header-divider: #2e4869;
  --color-white: #FFF;
  --shadow-header: 0 4px 4px rgba(0, 0, 0, 0.1294117647);
  --container-max: 1440px;
  --radius-button: 8px;
}

/* Base elements */
html, body {
  scroll-behavior: smooth;
}

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

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-white);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Securitas Pro";
  font-size: 15px;
  color: var(--color-text);
  line-height: 133%;
  font-weight: 400;
  background: var(--color-white);
}

a {
  text-decoration: none;
  opacity: 1;
  color: var(--color-white);
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.site-container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 700;
  font-size: 75px;
  line-height: 4.6875rem;
}

h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 133%;
}

h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 133%;
}

h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}

h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
}

h6 {
  font-weight: 700;
  font-size: 13px;
  line-height: 130%;
}

p.text-lead {
  font-size: 18px;
  line-height: 133%;
}
p.text-note {
  font-size: 14px;
  line-height: 133%;
}
a.link {
  text-decoration: underline;
  color: var(--color-text);
}

.main {
  overflow: hidden;
  padding-top: 110px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  border-radius: var(--radius-button);
}
.button.primary {
  background-color: var(--color-primary);
  color: var(--color-text);
  padding: 10px 25px;
}
.button.primary:hover {
  opacity: 1;
  background-color: var(--color-primary-hover);
}
.button.secondary {
  padding: 10px 20px;
  color: var(--color-white);
  background-color: var(--color-accent);
}
.button.secondary:hover {
  opacity: 1;
  background-color: var(--color-text);
}

.lang {
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  font-family: "Securitas Pro";
  color: var(--color-white);
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
}
.lang.active span {
  color: var(--color-primary);
}
.lang.active span::before {
  border-color: var(--color-primary);
  transform: translateY(-40%) rotate(-45deg);
}
.lang.active .lang__menu {
  opacity: 1;
  max-height: 700px;
  padding: 10px 0;
}
.lang__menu {
  position: absolute;
  top: 100%;
  right: -10px;
  width: 200px;
  opacity: 0;
  max-height: 0;
  transition: 0.8s ease;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 0;
  border-radius: 4px;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(1, 0, 3, 0.15);
  overflow-y: auto;
}
.lang__menu a {
  display: block;
  color: var(--color-text);
  padding: 12px;
}
.lang__menu a:hover {
  opacity: 1;
  color: var(--color-primary);
}
.lang__menu a:last-child {
  margin: 0;
}
.lang:hover span {
  color: var(--color-primary);
}
.lang:hover span::before {
  border-color: var(--color-primary);
  transform: translateY(-40%) rotate(-45deg);
}
.lang:hover .lang__menu {
  opacity: 1;
  max-height: 700px;
  padding: 10px 0;
}
.lang > span {
  position: relative;
  padding-right: 17px;
}
.lang > span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateY(-70%) rotate(135deg);
  content: "";
  transition: 0.3s ease;
}
.lang > span svg {
  position: absolute;
  width: 15px;
  height: 12px;
  top: 8px;
  right: 0;
  transition: 0.3s ease;
  color: var(--color-white);
}

.anchor {
  position: relative;
  top: -180px;
}

.hero-mobile {
  display: none;
}

.video-container {
  display: block;
}

.video-js {
  background-color: white;
}

.video {
  position: relative;
  padding-bottom: 47%;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

