@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}

form {
  margin: 0;
}

:root {
  --c1: #00a6ff;
  --c2: #27b3ff;
  --c3: #3a3a3c;
  --c4: #7a7a7c;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  width: 100vw;
  overflow-x: hidden;
}

button,
a,
input[type="submit"] {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
}

button {
  font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--c1);
  border: none;
  color: #fff;
  /* box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
	inset 0 1px 0 #eee; */
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 0 0;
}

p,
li {
  line-height: 1.8;
  color: #ededef;
  font-size: 14px;
}

p {
  margin: 10px 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #f4f4f6;
}

h2 {
  font-size: 40px;
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

.section-group {
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0e0e10;
}

section {
  padding: 80px 8%;
  width: 100vw;
  position: relative;
}

.section__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

section h1 {
  font-size: 45px;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 20px 0 0;
}

.section--test {
  height: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 45px 0;
}

.section--test h2 {
  font-size: 34px;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 5px 0;
}

.section--test__inner__input {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 100px;
}

.section--test__inner {
  background: #1a1a1c;
  padding: 40px 50px;
  border-radius: 5px;
}

.section--test__inner__input > div > span {
  color: var(--c3);
  margin: 0 5px;
  font-size: 18px;
  width: 25px;
}

.section--test__inner__input > div > img {
  width: 20px;
  align-self: center;
  margin: 0 5px 0 0;
}

.section--test__inner input[type="text"],
.section--test__inner input[type="email"] {
  padding: 6px 8px;
  border: none;
  border-bottom: 1px solid #b4b4b6;
  font-size: 18px;
  background: none;
  color: var(--c3);
  font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.section--test__inner input[type="text"]::placeholder,
.section--test__inner input[type="email"]::placeholder {
  color: #c4c4c6;
}

.section--test__inner input[type="submit"] {
  background: #fff;
  color: var(--c1);
  padding: 10px 12px;
  font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  margin: 0 0 0 6px;
  /* box-shadow: 0 6px 5px rgba(50, 50, 93, 0.06), 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 #eee; */
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.section--test__inner input[type="submit"]:hover {
  background: var(--c1);
  color: #fff;
}

.section--test__inner--waitlist {
  display: flex;
  max-width: 500px;
  flex-direction: column;
}

.section--test__inner__waitlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #eee;
}

.section--test__inner__waitlist > span {
  font-style: italic;
  font-size: 14px;
  margin: 8px 0 0;
  color: #3a3a3c;
}

.section--test__inner__waitlist__count {
  font-size: 40px;
  background: var(--c2);
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #eee;
}

.section--msg-client {
  display: flex;
  align-items: stretch;
  height: 600px;
}

.section--api .section__inner {
  display: flex;
  height: 370px;
  justify-content: flex-end;
}

.section--msg-client .section__inner {
  display: flex;
  height: 370px;
  justify-content: flex-start;
}

.section--msg-client .section__inner > svg,
.section--api .section__inner > svg {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  width: 65%;
}

.section--api .section__inner > svg {
  left: auto;
  right: 40%;
}

.section--msg-client .section__inner > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45%;
  width: 50%;
  /* border-radius: 5%;
	box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
	inset 0 1px 0 #eee; */
}

.section--msg-client__text {
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--api__text {
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--api .section__inner > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50%;
  width: 45%;
  /* border-radius: 5%;
	box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
	inset 0 1px 0 #eee; */
}

.section--api--personalize .section__inner > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60%;
  width: 30%;
  border-radius: 5%;
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #222224;
}

.cover-sec {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
}

.cover-sec__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 500px;
  max-width: 100%;
}

.cover-sec__nav {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  /* position: absolute; */
  width: 100%;
  height: 90;
  /* left: 0; */
  /* top: 0; */
}

.cover-sec__nav-mobile {
  display: none;
}

.cover-sec__nav > div {
  display: flex;
  align-items: center;
}

.cover-sec__nav > div .cover-sec__nav__left__link {
  font-size: 18px;
  color: #eeeef1;
  position: relative;
}

.cover-sec__nav > div .cover-sec__nav__left__link:before {
  content: "";
  height: 2px;
  background: #eeeef1;
  width: 0;
  left: 0;
  bottom: -2px;
  position: absolute;
  transition: 0.2s;
}

.cover-sec__nav > div a:hover:before {
  width: 100%;
}

.cover-sec__nav__left a {
  margin-right: 30px;
}

.cover-sec__nav__right a {
  margin-left: 30px;
}

.cover-sec__inner h1 {
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 60px;
  margin-top: 0;
  color: #eeeef1;
}

.cover-sec__inner__btns {
  display: flex;
  justify-content: center;
}

.cover-sec__inner__btns a {
  margin: 0 10px;
}

.cover-sec__inner__btns button {
  box-shadow: none;
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 22px;
  box-shadow: rgba(0, 166, 255, 0.4) 0 0 5px;
  transition: 0.2s;
  background: linear-gradient(290deg, rgba(240, 43, 255, 1) 0%, var(--c1) 74%);
}

.cover-sec__inner__btns button:hover {
  box-shadow: rgba(240, 43, 255, 1) 0 0 18px;
}

.cover-sec__inner__btns a:first-child button:hover {
  box-shadow: rgba(0, 166, 255, 0.8) 0 0 18px;
}

.cover-sec__inner__btns a:first-child button {
  background: none;
  color: var(--c1);
  border: 1px solid var(--c1);
}

.mobile-only-spacer {
  height: 200px;
  display: none;
}

/*
.cover-sec__msgs-cont {
	position: absolute;
	left: 0;
	top: 50%;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
	width: 100vw;
	padding: 0 40px;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row {
	width: 100%;
	display: flex;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row--right {
	justify-content: flex-end;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row .cover-sec__msg {
	background: #e6e6e6;
	font-size: 28px;
	color: #202022;
	padding: 15px 25px;
	margin: 5px 0;
	width: 60vw;
	max-width: 480px;
	border-radius: 40px;
	animation: fadeup .6s forwards ease-in-out;
	opacity: 0;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row--right .cover-sec__msg {
	background: var(--c1);
	color: #fff;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row .cover-sec__msg > span {
	z-index: 10;
	position: relative;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row .cover-sec__msg .cover-sec__msg__sq {
	z-index: 5;
	background: #e6e6e6;
	width: 15px;
	height: 20px;
	position: absolute;
	bottom: 18px;
	left: 0px;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row--right .cover-sec__msg .cover-sec__msg__sq {
	background: var(--c1);
	left: auto;
	right: 0;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row .cover-sec__msg img {
	position: absolute;
	bottom: 0px;
	left: -23px;
	width: 40px;
}

.cover-sec__msgs-cont .cover-sec__msgs-cont__row--right .cover-sec__msg img {
	left: auto;
	right: -23px;
}

.cover-sec .cover-sec__send-bar {
	background: #fafafc;
	border-top: 1px solid #dadada;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	display: flex;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cover-sec .cover-sec__send-bar input[type="text"] {
	background: #fff;
	border: 1px #c6c6c8 solid;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: 20px;
	font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	width: 500px;
	color: #2a2a2c;
}

.cover-sec .cover-sec__send-bar input[type="text"]::placeholder {
	color: #ccc;
}

.cover-sec .cover-sec__send-bar input[type="submit"] {
	background: var(--c1);
	border: none;
	border-radius: 50px;
	padding: 7px 12px;
	font-size: 20px;
	font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: #fff;
	position: absolute;
	right: 4px;
	top: 47%;
	transform: translateY(-46%);
	cursor: pointer;
	transition: .2s;
	margin: 0;
}

.cover-sec .cover-sec__send-bar input[type="submit"]:hover {
	background: var(--c2);
}

.cover-sec__to-bar {
	background: #f7f7f7;
	border-bottom: 1px solid #dadada;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	display: flex;
	padding: 14px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	transition: .2s;
}

.cover-sec__to-bar--scroll {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	background: #fafafc;
	animation: fadedown .3s forwards ease-in-out;
}

.cover-sec__to-bar .cover-sec__to-bar__left {
	display: flex;
}

.cover-sec__to-bar .cover-sec__to-bar__to {
	color: #888;
	margin: 0 7px 0 0;
}

.cover-sec__to-bar .cover-sec__to-bar__recpt {
	color: #202022;
}

.cover-sec .cover-sec-i1 {
	position: absolute;
	width: 55vw;
	bottom: -5%;
	right: -5%;
}

.cover-sec__to-bar .cover-sec__to-bar__nav {
	display: flex;
}

.cover-sec__to-bar .cover-sec__to-bar__nav > a {
	margin: 0 0 0 15px;
	color: var(--c1);
	cursor: pointer;
	transition: .2s;
}

.cover-sec__to-bar .cover-sec__to-bar__nav > a:hover {
	color: #cdeeff;
}

.cover-animation {
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--c1);
	display: flex;
	justify-content: center;
	align-items: center;
	animation: scaleOut 2s ease-in forwards;
	animation-delay: .5s;
	opacity: 1;
}

.cover-animation .cover-animation__dot {
	background: #fff;
	width: 12vw;
	height: 12vw;
	border-radius: 999px;
	margin: 0 2vw;
	transform: scale(0);
	animation: popIn 5s ease-in forwards;
}
 */

.section--og-features .section__inner {
  display: flex;
  justify-content: center;
}

.section--og-features__ft {
  width: 26%;
  margin: 0 5%;
  text-align: center;
  max-width: 250px;
}

.section--og-features__ft h4 {
  font-size: 18px;
  margin: 15px 0 8px;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.section--og-features__ft img {
  width: 80%;
  max-width: 250px;
}

.section--og-features__ft p {
  line-height: 1.8;
  font-size: 16px;
}

.section--pkgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background: #171719;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section--pkgs__back-svg {
  position: absolute;
  height: 170%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.section--pkgs__slant-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.section--pkgs__slant-svg-B {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.section--pkgs__pkg {
  width: 280px;
  padding: 40px 40px 97px 40px;
  margin: 0 8px;
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #0a0a0c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(148deg, var(--c2) 0%, rgba(0, 166, 255, 1) 61%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  animation: rotateFadeIn 1s forwards;
  z-index: 2;
}

.section--pkgs__pkg > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--pkgs__pkg--B {
  /* background: linear-gradient(148deg, rgba(136,43,255,1) 0%, rgba(232,0,255,1) 90%); */
  background: linear-gradient(148deg, #00a6ff 0%, rgba(0, 111, 228, 1) 85%);
  margin: 0 60px;
  transform: scale(1.2);
  animation: rotateFadeInB 1s forwards;
  color: #fff;
  /* box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
	inset 0 1px 0 #e800ff; */
}

.section--pkgs__pkg .spp-title {
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section--pkgs__pkg .spp-price {
  font-size: 46px;
  font-weight: normal;
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.section--pkgs__pkg .spp-price > span {
  display: block;
  font-size: 13px;
  margin: 5px 0;
  color: #eee;
}

/* .section--pkgs__pkg--B .spp-price > span {
	color: #eee;
} */
.section--pkgs__pkg ul {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.section--pkgs__pkg ul li {
  padding: 7px;
  font-size: 16px;
  color: #eee;
}

.section--pkgs__pkg--B ul li {
  color: #fff;
}

.section--pkgs__pkg ul li:nth-child(2n + 1) {
  background: var(--c2);
}

.section--pkgs__pkg--B ul li:nth-child(2n + 1) {
  background: rgba(0, 166, 255, 0.5);
}

.section--pkgs__pkg a {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.section--pkgs__pkg a button {
  width: 200px;
  background: #fff;
  color: var(--c1);
}

/* .section--pkgs__pkg--B a button {
	background: #5600c3;
	color: #fff;
} */
.section--pkgs__pkg__saph-ft {
  font-weight: bold;
  color: var(--c1);
}

.payg-cont {
  /* background: linear-gradient(148deg, rgba(238,0,255,1) 0%, rgba(120,0,204,1) 85%); */
  padding: 15px 40px 45px;
  margin: 0 auto;
  border-radius: 10px;
  width: 100%;
  /* max-width: 550px; */
  z-index: 2;
  position: relative;
}

/* .payg-cont h2 {
  border-bottom: #ccc 1px solid;
  padding-bottom: 10px;
} */

.payg-cont > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payg-cont button {
  background: #fff;
  padding: 14px 30px;
  font-size: 20px;
  /* color: rgba(120,0,204,1); */
  color: var(--c3);
  border-radius: 999px;
}

.easter-egg {
  position: fixed;
  display: none;
  z-index: 9999999;
  pointer-events: none;
  cursor: crosshair;
}

#my-canvas {
  z-index: 999999999;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.section--footer {
  background: #111113;
}

.section--footer .section__inner {
  display: flex;
}

.section--footer__col__socials {
  display: flex;
  margin: 15px 0 0;
}

.section--footer__col__socials a {
  margin: 0 10px 0 0;
}

.section--footer__col__socials a img {
  width: 34px;
}

.section--footer__col {
  display: flex;
  flex-direction: column;
  padding: 0 50px 0 0;
}

.section--footer__col > h4 {
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #eee;
}

.section--footer__col > a,
.section--footer__col > span {
  margin: 10px 0;
  color: #fff;
}

.hamburger-btn {
  width: 30px;
  height: 30px;
  transition: 0.2s;
  display: none;
}

.mobile-header-holder {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 900;
  transition: 0.4s;
  display: none;
}

.mobile-header {
  background: var(--c1);
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px;
}

.mobile-header__logo {
  width: 200px;
  margin: 10px 0;
}

.mobile-header > a {
  color: white;
  font-size: 22px;
  margin: 32px 0 0;
}

.mobile-header__x {
  filter: invert(100);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.fadingInOut {
  animation: fio 3s infinite;
}

@keyframes fio {
  40%,
  50% {
    opacity: 1;
  }

  0%,
  90%,
  100% {
    opacity: 0;
  }
}

.fBG {
  animation: fbg 3s infinite;
}

@keyframes fbg {
  40%,
  50% {
    fill: #00df06;
  }

  0%,
  90%,
  100% {
    fill: var(--c1);
  }
}

@media only screen and (max-width: 600px) {
  #waitlist-form {
    width: 100%;
  }

  .cover-sec {
    max-height: 90vh;
  }

  .cover-sec__msgs-cont {
    padding: 0 20px;
  }

  .cover-sec__msgs-cont .cover-sec__msgs-cont__row .cover-sec__msg {
    font-size: 20px;
    width: 75vw;
  }

  .cover-sec__to-bar .cover-sec__to-bar__nav {
    display: none;
  }

  .cover-sec .cover-sec__send-bar input[type="text"] {
    width: 100%;
  }

  .section--pkgs {
    align-items: center;
  }

  .section--pkgs__pkg {
    margin: 10px 0;
  }

  .hero-img-cont {
    display: none;
  }

  .section--test__inner--waitlist {
    flex-direction: column-reverse;
    padding: 50px 20px;
  }

  .section--test__inner__waitlist {
    padding: 0;
    margin: 0;
    margin-top: 30px;
    border: none;
  }

  .section--test__inner--waitlist input[type="submit"],
  .section--test__inner--waitlist input[type="email"] {
    width: 250px;
  }

  .section--test__inner input[type="submit"] {
    margin: 10px 0 0;
  }

  .section--test__inner__input {
    flex-direction: column;
    margin: 10px 0 0;
    max-width: none;
    height: auto;
  }

  .section--pkgs__pkg--B {
    margin: 20px 0;
    transform: none;
    animation: rotateFadeIn 1s forwards;
  }

  .section--msg-client .section__inner,
  .section--api .section__inner {
    flex-direction: column;
    height: auto;
  }

  .section--msg-client__text,
  .section--api__text {
    position: static;
    width: 100%;
  }

  .section--msg-client,
  .section--api {
    height: auto;
  }

  .section--msg-client .section__inner > svg,
  .section__inner > svg {
    display: none;
  }

  .section--msg-client .section__inner > img,
  .section--api .section__inner > img {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin: 20px 0;
  }

  .section--msg-client .section__inner {
    flex-direction: column-reverse;
  }

  .section--msg-client .section__inner > .iA56 {
    width: 100%;
  }

  .section--og-features .section__inner {
    flex-direction: column;
    align-items: center;
  }

  .section--og-features__ft {
    margin: 15px 0;
    width: 100%;
  }

  .section--pkgs {
    padding: 80px 20px;
    flex-direction: column;
  }

  .section--footer .section__inner {
    flex-direction: column;
  }

  .section--footer__col {
    margin: 15px 0;
  }

  .section--footer__col__socials {
    margin-bottom: 15px;
  }

  .hamburger-btn {
    display: block;
  }

  .mobile-header-holder {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  /* .cover-sec__inner {
		width: 100%
	} */

  .cover-sec__inner h1 {
    font-size: 40px;
  }

  .cover-sec__inner__btns {
    flex-direction: column;
  }

  .cover-sec__inner__btns button {
    margin: 0 0 20px 0;
    width: 270px;
  }

  .section--test__inner__code {
    display: none;
  }

  .fadingInOut {
    animation: none;
  }

  .mbhide {
    display: none;
  }

  .cover-sec__nav {
    display: none;
  }

  .cover-sec__nav-mobile {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    /* position: absolute; */
    width: 100%;
    /* left: 0; */
    /* top: 0; */
  }

  .cover-sec__nav-mobile > div {
    display: flex;
    align-items: center;
  }

  .mobile-only-spacer {
    height: 500px;
    display: block;
  }

  .payg-cont > div {
    flex-direction: column;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  40% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scaleOut {
  0% {
    transform: none;
  }

  100% {
    transform: scale(3);
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadedown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateX(-70px) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes rotateFadeInB {
  0% {
    opacity: 0;
    transform: scale(0.9) translateX(-70px) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.sk-chase {
  width: 30px;
  height: 30px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
  margin-right: 40px;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--c1);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1);
  }
}

.row {
  display: flex;
  justify-content: center;
}

.pricing-border {
  border: 1px solid #0089ff;
  border-radius: 24px;
  padding: 24px;
  margin: 24px;
}

.hero-img > div {
  transition: all 0.15s ease-out;
}

.hero-img > div p {
  opacity: 0;
}

.hero-img > div:hover p {
  opacity: 1;
  transition: all 0.15s ease-out;
}

.hero-img > div > img {
  box-shadow: 0 0 16px rgb(0 0 0 / 20%);
  border-radius: 8px;
}

.hero-img > #hoverme {
  position: absolute;
  width: 120px;
  top: -55px;
  right: 10px;
  filter: invert(0.8);
}

@media (max-width: 540px) {
  .hero-img > #hoverme {
    display: none;
  }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.horiz {
  display: flex;
  align-items: center;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dashed #f5f7ffaa; /* If you want dots under the hoverable text */
  cursor: help;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #22252a;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 8px;
  border: 1px solid #66686b;

  position: absolute;
  z-index: 1;

  width: 240px;
  bottom: 100%;
  left: 50%;
  margin-left: -50%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
