.custom__edit--info {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 1em;
  right: 1em;
  z-index: 3000;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  margin: 1em;
  background: #745B99;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35); }
  .custom__edit--info svg {
    line-height: 40px;
    height: 40px;
    width: 40px;
    cursor: pointer; }
  .custom__edit--info div {
    position: absolute;
    display: block;
    white-space: nowrap;
    bottom: 0;
    right: 100%;
    border-radius: 4px;
    padding: 0 2em;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    background: inherit;
    opacity: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: hidden;
    -webkit-transition: opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease;
    transition: opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease;
    -o-transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s;
    transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s;
    transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease; }
  .custom__edit--info p {
    white-space: nowrap;
    line-height: 1.8;
    text-align: left;
    text-transform: none; }
  .custom__edit--info small {
    margin-right: 5px;
    opacity: .75;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .custom__edit--info:hover div {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-1em);
    -ms-transform: translateX(-1em);
    transform: translateX(-1em);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

body.splash__noscroll {
  overflow-y: hidden; }

.splash {
  background-color: var(--col-pri);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  container-name: splash;
  container-type: size;
  -webkit-transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
  -o-transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s, -webkit-transform 0.4s; }
  .mason--admin .splash {
    top: 110px; }
  .mason--preview .splash {
    top: 110px; }
  .mason--secure .splash {
    top: 40px; }
  @media all and (min-width: 1050px) {
    .splash {
      width: 125vw; } }
  .splash.close {
    opacity: 0;
    visibility: hidden; }

.splash__item {
  width: 100%;
  height: 50%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .splash__item__inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: clamp(20px, 20%, 90px) clamp(20px, 20%, 60px); }
    @media all and (min-width: 1050px) {
      .splash__item__inner {
        -webkit-transform: skewX(-15deg);
        -ms-transform: skewX(-15deg);
        transform: skewX(-15deg);
        overflow: hidden; } }
  @media all and (min-width: 1050px) {
    .splash__item:nth-child(1) .splash__item__inner {
      padding: clamp(20px, 20%, 90px) 5vw clamp(20px, 20%, 60px) 20vw; } }
  .splash__item:nth-child(1) .splash__item__image::before {
    background: var(--col-pri);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease; }
  .splash__item:nth-child(1) .splash__item__image::after {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--col-pri)));
    background: -webkit-linear-gradient(transparent, var(--col-pri) 100%);
    background: -o-linear-gradient(transparent, var(--col-pri) 100%);
    background: linear-gradient(transparent, var(--col-pri) 100%); }
  .splash__item:nth-child(1) .splash__item__logo {
    width: 100%;
    max-width: 414px; }
  @media all and (min-width: 1050px) {
    .splash__item:nth-child(2) .splash__item__inner {
      padding: clamp(20px, 20%, 90px) 20vw clamp(20px, 20%, 60px) 5vw; } }
  .splash__item:nth-child(2) .splash__item__image::before {
    background: var(--col-ter);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease; }
  .splash__item:nth-child(2) .splash__item__image::after {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--col-ter)));
    background: -webkit-linear-gradient(transparent, var(--col-ter) 100%);
    background: -o-linear-gradient(transparent, var(--col-ter) 100%);
    background: linear-gradient(transparent, var(--col-ter) 100%); }
  .splash__item:nth-child(2) .splash__item__logo {
    width: 100%;
    max-width: 360px; }
  .splash__item:hover .splash__item__content {
    padding: 0.4s; }
    .splash__item:hover .splash__item__content .button__link {
      opacity: 1;
      visibility: visible;
      margin: 22px 0 0; }
  .splash__item:hover .splash__item__image::before {
    opacity: 0.5; }

@media all and (min-width: 1050px) {
  .splash__item__image {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    margin-left: -12vw;
    margin-right: -12vw; } }

.splash__item__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2; }

.splash__item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2; }

.splash__video {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  -o-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s; }
  .hovered .splash__video, .splash__item:hover .splash__video {
    opacity: 1; }
  .splash__video iframe, .splash__video video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.splash__item__content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: padding 0.4s;
  -o-transition: padding 0.4s;
  transition: padding 0.4s;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4; }
  @media all and (min-width: 1050px) {
    .splash__item__content {
      -webkit-transform: skewX(15deg);
      -ms-transform: skewX(15deg);
      transform: skewX(15deg); } }
  .splash__item__content .button__link {
    margin-bottom: -51px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }

.splash__item__logo {
  max-width: 100%;
  position: relative;
  z-index: 2; }

@container splash (min-width:1050px) and (min-height: 100px) {
  .splash__item {
    width: 50%;
    min-height: unset;
    height: auto; } }

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