@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: left;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: #ffffff;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
  list-style: none;
}

ol > li {
  counter-increment: step-counter;
}

ul > li:before,
ol > li:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  text-align: center;
  padding: 8px 8px 0 0;
  padding-top: inherit;
}

ul > li:before {
  content: '-';
  color: #ffffff;
}

ol > li:before {
  content: counter(step-counter) '.';
  color: #ffffff;
}

a:hover {
  text-decoration: underline;
}

/* Title */
h1,
h2,
h3,
h4,
.title {
  display: block;
  position: relative;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 16px;
  text-align: left;
}

h1,
.title.general {
  font-weight: 600;
  font-size: 60px;
}

h2 {
  font-size: 44px;
}

h3,
h4 {
  font-size: 34px;
}

.btn-box {
  text-align: left;
}

.contrast-text {
  color: #f5455c;
}

/* Article */
.article,
article {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.article ul,
.article ol,
article ul,
article ol {
  margin-bottom: 16px !important;
}

.article ul > li,
.article ol > li,
article ul > li,
article ol > li {
  display: block;
  position: relative;
  list-style: none;
  padding: 0 0 0 32px;
}

.article ul > li + li,
.article ol > li + li,
article ul > li + li,
article ol > li + li {
  margin-top: 8px;
}

.article ul > li:before,
.article ol > li:before,
article ul > li:before,
article ol > li:before {
  display: inline-block;
  position: absolute;
}

.article ul > li:before,
article ul > li:before {
  content: '';
  left: 8px;
  top: 10px;
  width: 4px;
  height: 4px;
  padding: 0;
  border-radius: 50%;
  background-color: #f5455c;
}

.article ol > li:before,
article ol > li:before {
  color: #f5455c;
  top: 0;
  left: 0;
  text-align: center;
  padding: 0;
}

.button.article__button {
  margin: 0 16px 0 0;
  min-width: 125px;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.5;
}

.article > *,
article > * {
  margin-bottom: 16px;
}

.article > *:last-child,
article > *:last-child {
  margin-bottom: 0;
}

.article li:first-child,
article li:first-child {
  padding-top: 0;
}

.article p:first-child,
article p:first-child {
  margin-top: 0;
}

article > p > b,
.article > p > b {
  font-size: 120%;
}

.article a,
article a {
  font-style: italic;
  color: inherit;
  cursor: pointer;
}

.article .btn-box,
article .btn-box {
  text-align: left;
}

article > a,
.article > a {
  padding: 12px 24px;
  display: inline-block;
  width: auto;
  min-width: 125px;
  height: auto;
  background-color: #f5455c;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-style: normal;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

article p > a:hover,
.article p > a:hover,
article li > a:hover,
.article li > a:hover {
  color: rgba(29, 116, 245, 1);
  text-decoration: none;
}

article > a:hover,
.article > a:hover {
  text-decoration: none;
  background: #e03e53;
}

/* Button */
.button {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 100px;
  height: auto;
  background-color: #f5455c;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  cursor: pointer;
  margin: 16px auto 0 auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.button:hover {
  background-color: #e03e53;
  text-decoration: none;
}

.button.button-inverse {
  background: #1d74f5;
}

.button.button-inverse:hover {
  background-color: #1d67d4;
}

.button > img,
.button > span {
  display: inline-block;
  position: relative;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
}

.button > img + span {
  margin-left: 10px;
}

.section {
  margin: 0 auto 48px auto;
  position: relative;
  z-index: 0;
}

.dummy {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  top: -90px;
  left: 0;
}

.image img,
.background img {
  display: block;
  position: relative;
}

.image {
  z-index: -1;
}

.background img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.background {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background img {
  display: block;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  line-height: 1;
}
use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 30px;
}

.cover,
.section {
  max-width: 100%;
  padding-left: calc(50% - (1310px / 2));
  padding-right: calc(50% - (1310px / 2));
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  padding: 20px 32px 0 32px;
  overflow: hidden;
}

.content > *,
.cover > * {
  display: block;
}

/* HEADER */
.header {
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: initial;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 80px;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(206, 206, 206, 0.6);
  box-shadow: 0 2px 10px rgba(206, 206, 206, 0.6);
  z-index: 1000;
}

.header > * {
  display: block;
  width: auto;
}

.header__logo {
  margin-right: 32px;
  max-width: 125px;
}

.header__lang {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__lang > * {
  padding: 8px;
  position: relative;
  font-weight: 600;
  font-size: 120%;
  color: inherit;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__lang > *:not(:last-child)::before {
  content: '|';
  position: absolute;
  right: -3px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  font-weight: 600;
  font-size: 100%;
}

.header__lang > a:hover {
  color: rgba(29, 116, 245, 1);
  text-decoration: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.header__button {
  padding: 12px 32px;
  margin: 0 0 0 16px;
  min-width: 100px;
}

.logo > img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 48px;
}

.logo[href]:hover {
  opacity: 0.5;
}

/* MAIN */
.main {
  padding-top: 32px;
  display: block;
  position: relative;
  overflow-x: hidden;
}

.main > * {
  position: relative;
}

/* Download */
.download__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.download__list {
  width: calc(100% / 2 - 16px);
}

.download-list__title {
  font-size: 26px;
}

.download__items a {
  padding: 12px 20px 12px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 300px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  background: #ffffff;
  border: 3px solid #000000;
}

.download__list-mob .download__items a {
  color: #ffffff;
  background: #000;
}

.download__items a:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.download__items a + a {
  margin-top: 16px;
}

.download__items a img {
  margin-right: 16px;
  display: block;
  width: 32px;
  height: 32px;
}

/* Instructions */
.instructions__list {
  margin: -16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.instructions__item {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: calc(100% / 2 - 16px);
  border-radius: 8px;
  border: 2px solid transparent;
  background: rgba(29, 116, 245, 0.2);
}

.instructions__item:nth-child(3n - 2) {
  width: 100%;
}

.instructions__item:nth-child(3n - 1) {
  background: transparent;
  border-color: rgba(29, 116, 245, 1);
}

.instructions__item:nth-child(3n) {
  border-color: #f5455c;
}

.instructions__item > *:not(:last-child) {
  margin-bottom: 20px;
}

.instructions__item::before {
  display: none;
}

.instructions-item__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.video-item__video {
  width: 100%;
  border: 1px solid rgba(29, 116, 245, 0.5);
}

.video-item__video video {
  display: block;
  width: 100%;
}

.instructions-item__desc {
  font-weight: 500;
}

/* FOOTER */
.footer {
  padding-top: 48px;
  padding-bottom: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #030c1a;
}

.footer > *:not(:last-child) {
  margin-bottom: 20px;
}

.footer__info {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.footer__logo {
  margin-right: 32px;
}

.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #b3b6ba;
}
