html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background-color: #fff;

  font-family: "Wix Madefor Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-display: block;
}

header,
footer,
section,
aside,
nav,
main {
  display: block;
}

a {
  background-color: transparent;
}

*:active,
*:hover,
*:focus {
  outline: none;
  outline-offset: 0;
  outline-width: 0;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body img {
  display: block;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

*,
:after,
:before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background: #e84250;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #e84250;
  color: #000;
  text-shadow: none;
}

.noscript_message {
  display: block;
  background-color: rgba(0, 0, 0, 0.9);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 5px 0 5px 0;
  color: #ff0000;
}

@media screen and (min-width: 800px) {
  .mobile-only {
    display: none;
  }
}

@media screen and (max-width: 780px) {
  .desktop-only {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex.content--space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.content--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex.content--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex.content--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex.content--space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex.content--space-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.flex.items--space-between {
  -webkit-box-align: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
}

.flex.items--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex.items--stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex.items--start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex.items--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 780px) {
  .flex.mobile--wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex.mobile--nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.flex.wrap--revers {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

@media screen and (max-width: 780px) {
  .flex.mobile--row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex.mobile--column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex.mobile-content--start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .flex.mobile-content--end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .flex.mobile-content--space-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .flex.mobile-content--space-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .flex.mobile-content--space-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .flex.mobile-content--center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .flex.mobile-items--center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .flex.mobile-items--start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .flex.mobile-items--end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .flex.mobile-items--stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

/* **** */

.master_wrapper {
  --base-scale: calc(100vw / 100);
}

@media screen and (max-width: 780px) {
  .master_wrapper {
    --base-scale: calc(100vw / 48.75);
  }
}

.master_wrapper {
  --font-size-16: clamp(0.1rem, var(--base-scale) * 1, 10rem);
  --font-size-14: clamp(0.1rem, var(--base-scale) * 0.875, 10rem);
  --font-size-40: clamp(0.1rem, var(--base-scale) * 2.5, 10rem);
  --font-size-50: clamp(0.1rem, var(--base-scale) * 3.125, 30rem);

  --padding-master: 0;

  --padding: clamp(10px, var(--col) * 3.225, 1800px);

  --padding16: clamp(10px, var(--base-scale) * 1, 180px);
  --padding24: clamp(10px, var(--base-scale) * 1.5, 180px);
  --padding36: clamp(10px, var(--base-scale) * 2.25, 180px);
  --padding56: clamp(10px, var(--base-scale) * 3.5, 180px);
}

@media screen and (max-width: 780px) {
  .master_wrapper {
    --padding-master: 0;
    --padding16: clamp(10px, 2vw, 180px);
    --padding24: clamp(10px, 3vw, 180px);
    --padding36: clamp(10px, 4.5vw, 180px);
    --padding56: clamp(10px, 7vw, 180px);
  }
}

body {
  overflow-x: hidden;
  background-image: url("../images/bg.webp");
  background-size: cover;
  /* background-position: top center; */
  background-position: center;
  background-repeat: norepeat;
  height: auto;
}

@media screen and (max-width: 780px) {
  body {
    /* background-image: url("/bg_780.webp"); */
  }
}

body.no_bg {
  overflow: auto;
  background-image: none;
  background-size: cover;
  background-position: top center;
  background-repeat: norepeat;
  height: auto;
}

@media screen and (max-width: 780px) {
  body {
    /* background-image: url("/bg_780.webp"); */
  }
}

@media screen and (orientation: portrait) {
  body.no_bg .land {
    display: none;
  }
}

@media screen and (orientation: landscape) {
  body.no_bg .port {
    display: none;
  }
}

body.no_bg img {
  max-width: 100%;
  max-height: 100vh;
}

body.image_cover {
  overflow-x: hidden;
  background-image: url("../images/bg_landscape.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: norepeat;
  height: 100vh;
  width: 100%;
}

@media screen and (orientation: portrait) {
  body.image_cover {
    background-image: url("../images/bg_portrait.webp");
  }
}

body.image_contain {
  overflow-x: hidden;
  background-image: url("../images/bg_landscape.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

@media screen and (orientation: portrait) {
  body.image_contain {
    background-image: url("../images/bg_portrait.webp");
  }
}

.layout {
  width: 100%;
  min-height: 100vh;
  border: 1px solid #fff;
}

@media screen and (max-width: 780px) {
  .layout {
    padding: 0;
    min-height: 100dvh;
  }
}

.layout_header {
  width: 100%;
  padding: var(--padding36) var(--padding24);
  flex: 0 0 auto;
  font-size: var(--font-size-14);
}

@media screen and (max-width: 780px) {
  .layout_header {
    padding: var(--padding36) var(--padding36);
    font-size: var(--font-size-16);
  }
}

.layout_main {
  width: 100%;
  flex: 1 1 auto;
}

.layout_footer {
  width: 100%;
  padding: var(--padding36) var(--padding24);
  flex: 0 0 auto;
  font-size: var(--font-size-50);
}

@media screen and (max-width: 780px) {
  .layout_footer {
    padding: var(--padding36) var(--padding16);
    font-size: var(--font-size-40);
  }
}

.header_container {
  width: 100%;
}

.header_container_left {
  width: calc(var(--padding16) * 5);
}

@media screen and (max-width: 780px) {
  .header_container_left {
    width: calc(var(--padding16) * 6);
  }
}

.header_block_vline svg {
  display: block;
  width: 100%;
}

.header_block_selenus {
  margin-top: 1em;
}

.header_container_right {
  width: calc(var(--padding16) * 6.125);
}

@media screen and (max-width: 780px) {
  .header_container_right {
    width: calc(var(--padding16) * 7.125);
  }
}

.header_block_circle {
  width: 62%;
}

.header_block_circle svg {
  display: block;
  width: 100%;
}

.header_block_link {
  text-align: center;
  width: 100%;
  padding: 2em 0;
  border-bottom: 2px solid #fff;
}

.header_block_link:last-child {
  border-bottom: none;
}

.footer_container {
  flex: 1 1 auto;
  line-height: 1.2;
}

@media screen and (max-width: 780px) {
  .footer_container {
    line-height: 1.25;
  }
}

.footer_container_center {
  flex: 0 0 auto;
}

.footer_block {
  width: 100%;
  text-align: center;
}

.footer_block_center {
  padding: calc(var(--padding16) * 1.8) var(--padding36);
}

.footer_block_center:first-child {
  border-bottom: 2px solid #fff;
}
