@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: #f9f7ff;
  }
  100% {
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    background-color: #f9f7ff;
  }
}
@keyframes explode-2 {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: #f9f7ff;
  }
  100% {
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    background-color: #712cf9;
  }
}
@keyframes desplode {
  0% {
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    background-color: #f9f7ff;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: #f9f7ff;
  }
}
@keyframes pop-in {
  0% { 
    opacity: 0;
    backface-visibility: hidden;
    perspective: 1000; 
  } 
  60% { 
      opacity: 0;
      transform: translateY(4rem) scale(0.1);
  }
  100% { 
      opacity: 1; 
      transform: translateY(0) scale(1); 
  }
  
}

.animate {
  opacity: 0;
	animation-timing-function: ease;
}
.first-anime {
	/*animation-name: f-anime;*/
	animation-duration: 1s;
  opacity: 1;
}
.start-anime {
	/*animation-name: anime;*/
	animation-duration: 3s;
  opacity: 1;
}
.first-anime.pop.x,
.start-anime.pop.x {
  animation: pop-in 1s;
}
.first-anime.pop.y,
.start-anime.pop.y {
  animation: pop-in 1.5s;
}
.first-anime.pop.z,
.start-anime.pop.z {
  animation: pop-in 2s;
}
.first-anime.start-anime {
	animation: none;
}

.su_button_circle {
  border-radius: 999em;
  position: absolute;
  left:0;
  top:0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
}

.explode-circle {
  animation: explode 0.8s forwards;

}

.explode-2-circle {
  animation: explode-2 0.8s forwards;

}

.desplode-circle {
  animation: desplode 0.4s forwards;
}

* {
  position: relative;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: #712cf9;
  background: #f9f7ff;
}
::selection {
  color: #712cf9;
  background: #f9f7ff;
}

body {
  background-color: #EFEFEF;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 62.5%;
  color: #23201d;
  margin: 0;
}

a,
button,
.cta {
  cursor: pointer;
  color: inherit;
  transition: all 0.2s ease;
}

a:hover {
  color: #712cf9;
}

button,
.cta {
  padding: 1em;
  background-color: #f9f7ff;
  color: #712cf9;
  border: 0.2em solid #712cf9;
  border-radius: 0.4em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  line-height: 1em;
}
button:hover,
.cta:hover {
  background-color: #712cf9;
  color: #f9f7ff;
}

#alertbar {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #712cf9;
  padding: 0 1em;
  z-index: 998;
}
#alertbar.close {
  display: none;
}
.alertbar-close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  z-index: 1;
}
.alertbar-close:hover {
  color: #f92c70;
  transform: translateY(-50%) rotate(90deg);
}

nav {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #FFF;
  font-weight: 500;
  padding: 0 2em;
  z-index: 999;
  position: sticky;
  top: 0;
  transition: all 0.2s ease;
}
footer {
  display: flex;
  justify-content: center;
  width: 100%;
  color: #FFF;
  background-color: #23201d;
  font-weight: 500;
  padding: 2em;
  margin-top: 8em;
}
nav.scroll {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #ffffff8c;
}
nav article,
nav ul,
.mobile-menu,
footer article,
footer ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 auto;

  list-style: none;
  padding: 0;
  margin: 0;
}
footer article {
  align-items: flex-start;
}
footer ul {
  flex-direction: column;
  align-items: flex-start;
}
nav article {
  flex-wrap: nowrap;
  align-items: stretch;
}
nav img,
footer img {
  width: auto;
  max-width: 100%;
  height: 3.6em;
}
nav li,
footer li {
  padding: 1em 0.2em;
}
nav ul:nth-child(2) li,
footer ul:nth-child(2) li {
  padding: 0;
}
nav ul:nth-child(2) li ul li,
footer ul:nth-child(2) li ul li {
  padding: 1em 0.2em;
}
nav p,
footer p {
  overflow: hidden;
  border-radius: 999em;
  padding: 0.2em 0.8em;
}
nav a,
footer a {
  text-decoration: none;
}
nav a:hover,
footer a:hover {
  border-radius: 999em;
}
.log {
  overflow: visible;
  border-radius: 0;
  padding: 0;
}
.log a {
  padding: 0.4em 0.8em;
}
.log a:hover {
  color: rgb(38, 178, 115);
  background-color: #f4fefa;
}
.mobile-menu-icon {
  cursor: pointer;
  display: none;
  justify-content: flex-end;
}
.mobile-menu-icon li {
  width: 2.4em;
  height: 2.4em;
  padding: 0 0.2em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.menu-icon {
  width: 100%;
  height: 0.2em;
  background-color: #23201d;
  transition: all 0.2s ease;
}
.mobile-menu-icon:hover .menu-icon {
  background-color: #712cf9;
}
.menu-icon.open {
  transform-origin: left;
  min-width: 2.2em;
}
.menu-icon.y.open {
  transform: rotate(45deg);
  margin-top: -0.3em;
}
.menu-icon.z.open {
  transform: rotate(-45deg);
  margin-top: 0.3em;
}

header {
  display: flex;
  align-items: stretch;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 4em 0 0;
}

article {
  width: 100%;
  max-width: 160em;
  margin: 0 -2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.block {
  flex: 1 1 38em;
  max-width: 56em;
  margin: 2em;
}

.col .block {
  flex: 1 1 26em;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

h1 {
  font-size: 5.8em;
  font-weight: 900;
  margin: 0 0 1.25rem 0;
  line-height: 1.1em;
}

h2 {
  font-size: 3.6em;
  font-weight: 500;
  margin: 0 0 1.25rem 0;
}

h3 {
  font-size: 2.8em;
  font-weight: 400;
  margin: 0 0 1.25rem 0;
}

h4 {
  font-size: 2.4em;
  font-weight: 900;
  margin: 0 0 1.25rem 0;
}

p {
  font-size: 1.4em;
  line-height: 1.8em;
  margin: 0;
}

form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -0.5em;
}
.input-wrap {
  flex: 1 1 27em;
  display: flex;
  flex-wrap: wrap;
  margin: 0.5em;
}
input {
  width: 100%;
  padding: 1em;
  background-color: transparent;
  border: 0.2em solid #cdcbd5;
  border-radius: 0.4em;
}
input,
button {
  font-size: 1.6em;
  font-family: inherit;
}
label {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  font-size: 1.6em;
  color: #565656;
  transition: all 0.2s ease;
}
.valid,
.invalid {
  opacity: 0;
  visibility: hidden;
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8em;
  transition: all 0.2s ease;
}
input:focus,
input:focus-visible {
  outline: none;
  border: 0.2em solid #712cf9;
}
input:focus + label,
input:not(:placeholder-shown) + label {
  top: 0;
	font-size: 1.2em;
	font-weight: 500;
  color: #712cf9;
  background-color: #EFEFEF;
  z-index: 1;
  padding: 0 0.5em;
}
input:user-invalid {
  outline: none;
  border: 0.2em solid #f92c70;
  color: #f92c70;
}
input:user-invalid + label,
input:user-invalid ~ .invalid {
  color: #f92c70;
}
input:user-invalid ~ .invalid { 
  opacity: 1;
  visibility: visible;
}
input:not(:focus) {
  border: 0.2em solid #cdcbd5;
  color: inherit;
}
input:not(:focus) + label,
input:not(:focus) ~ .invalid {
  color: inherit;
}
input:placeholder-shown ~ .invalid {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}
input:user-valid {
  outline: none;
  border: 0.2em solid #26b273;
}
input:user-valid + label,
input:user-valid ~ .valid {
  color: #26b273;
}
input:user-valid ~ .valid { 
  opacity: 1;
  visibility: visible;
}
input:checked {
  accent-color: #712cf9;
}
input::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}
.check {
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-top: 1.5em;
}
input[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  margin: 0 0.5em 0 0;
  min-width: 1em;
  min-height: 1em;
}
input[type=checkbox] + label {
  position: relative;
  font-size: inherit;
  color: inherit;
  top: unset;
  left: unset;
  font-weight: inherit;
  transform: none;
  padding: 0;
  text-align: left;
}

.block.apple {
  padding: 3em;
}

.apple {
  border-radius: 2em;
  padding: 1em;
  margin: 2em;
  background-color: #f7f6f5;
  background-color: #e5e5e5;
}

.lite {
  background-color: #f7f6f5;
}
.drk {
  background-color: #23201d;
}

.shadow {
  transition: all 0.2s ease;
}
.shadow:hover {
  box-shadow: 0 0 4em 2em #00000024;
}

.pop {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 999em;
  background-color: #23201d;
  color: #FFF;
  padding: 0.5em 2em 0.5em 0.5em;
}
.pop.white {
  background-color: #FFF;
  color: #23201d;
}
.pop.white i {
  color: #FFF;
}
.pop.x {
  top: 30%;
  left: 10%;
}
.pop.y {
  top: 45%;
  right: 0;
}
.pop.z {
  bottom: 20%;
  left: 25%;
}
.pop.x_x {
  top: 30%;
  left: 5%;
}
.pop.y_y {
  top: 15%;
  right: 0;
}
.pop.z_z {
  bottom: 10%;
  left: 25%;
}
.pop::after {
  content: ".";
  font-weight: bold;
  text-align: left;
  font-size: 3em;
  width: 1.0em;
  height: 0.3em;
  line-height: 0.7em;
  border-radius: 999em;
  color: #524e49;
  background-color: #3a3632;
  position: absolute;
  display: block;
  bottom: -0.5em;
  left: 0;
}
.pop.white::after {
  color: #eeeeee;
  background-color: #dedede;
}
.pop p:last-child {
  margin-top: -0.5em;
}
.circle-icon {
  aspect-ratio: 1/1;
  text-align: center;
  width: 5em;
  max-width: 100%;
  padding: 1.5em;
  border-radius: 999em;
  background-color: #3a3632;
  margin-right: 1.5em;
}

.drk .pill {
  background-color: #f9f7ff29;
}
.pill {
  background-color: #f9f7ff29;
  background-color: #0000000a;
  width: fit-content;
  border-radius: 999em;
  margin-left: auto;
  margin-right: auto;
  padding: 0.2em 0.5em;
}
.tag {
  background-color: #712cf9;
  color: #FFF;
  border-radius: 999em;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  font-size: 0.4em;
  padding: 0.2em 0.4em;
}

.fd-row {
  flex-direction: row;
}

.rvs-wrap {
  flex-wrap: wrap-reverse;
}
.ai-start {
  align-items: flex-start;
}
.ai-stretch {
  align-items: stretch;
}
.jc-end {
  justify-content: flex-end;
}

.f-auto {
  flex: 1 1 auto;
}
.f-3-auto {
  flex: 3 1 auto;
}
.auto {
  flex: unset;
  width: auto;
}

.wide {
  max-width: 75em;
}
.w-100 {
  flex: unset;
  width: 100%;
  max-width: 100%;
}

.accent {
  color: #712cf9;
}
.txt-white {
  color: #FFF;
}
.txt-center {
  text-align: center;
}
.caps {
  text-transform: capitalize;
}
.underline {
  text-decoration: underline;
}
.lg {
  font-size: 1.6em;
}
.sm {
  font-size: 1.2em;
}

._mlr-4 {
  margin-left: 4em;
  margin-right: 4em;
}
._mb-2_5r {
  margin-bottom: 2.5rem;
}

@media (min-width: 2560px) {
  body {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {

  nav.open {
    background-color: #FFF;
  }
  nav::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000000;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  nav.open::before {
    visibility: visible;
    background-color: #00000094;
  }
  .mobile-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    
    position: absolute;
    top: 100%;
    right: -2em;
    padding: 2em 2em 10em;
    width: 34em;
    max-width: 100%;
    background-color: #EFEFEF;
    align-items: flex-start;
    height: calc(100vh - 5.6em);
    transition: all 0.4s ease;
  }
  .mobile-menu.display {
    display: flex;
  }
  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu li:nth-child(2) {
    align-self: flex-end;
  }
  .mobile-menu ul {
    flex-direction: column;
    align-items: flex-end;
  }
  .mobile-menu-icon {
    display: flex;
  }
  .f {
    flex: unset;
    width: 100%;
  }
  .col .block {
    flex: 1 1 32em;
  }

  .order {
    order: 1;
  }

}

@media (max-width: 520px) {

  h1 {
    font-size: 3.6em;
  }
  h2 {
    font-size: 2.8em;
  }
  h3 {
    font-size: 2.4em;
  }
  h4 {
    font-size: 2.0em;
  }
  /*p {
    font-size: 1.2em;
  }*/
  .lg {
    font-size: 1.4em;
  }

  .pop {
    transform: scale(0.8);
  }

  .order {
    order: -1;
  }

}