@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
/* css variables*/
/* normalized */
/* global components */
/* typography */
/* tabs */
/* code */
/* buttons */
/* links */
/* menu */
/* table */
/* layout */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
/* layout */
/* logo */
/* menu */
/* doc */
/* nav specialized to landing page */
/* hero section */
/* feature section */
/* keybinding section */
/* callout section */
/* changelog section */
:root {
  --primary-color: #432E30;
  --primary-color-light: #8E7474;
  --accent-color: #FE6A6B;
  --accent-color-light: #FFE4E4;
  --accent-color-dark: #B94B4C;
  --white-color: #FAFBFC;
  --light-gray-color: #C6CBD1;
  --medium-gray-color: #959DA5;
  --dark-gray-color: #444D56;
  --bg-color: #F8F8FA;
  --code-bg-color: #F0E8E8;
}

html {
  padding: 0;
  margin: 0;
  font-family: Space Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  padding: 0;
  margin: 0;
  font-family: Space Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  margin-left: 10vw;
  margin-right: 10vw;
  width: 80vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  margin-top: 4em;
}

p {
  font-weight: 300;
  color: #4A4A4A;
}

p img
{
width:100%;
max-width:100%;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #FFF;
  background-color: #63017A;
  border-color: #63017A;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #FFF;
  background-color: #63017A;
  border-color: #63017A;
}

hr {
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--bg-color);
}

* {
  box-sizing: border-box;
}

.section__title {
  color: var(--primary-color);
  font-family: "Paytone One", sans-serif;
  font-size: 1.4em;
}

.tab__container {
  position: relative;
}
.tab__container > ul {
  position: absolute;
  list-style: none;
  margin: 0;
  right: 1rem;
  top: -2rem;
  padding-left: 0;
}
.tab__container .code {
  white-space: normal;
  padding: 1rem 1.5rem;
}

.tab {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  font-weight: 200;
  cursor: pointer;
}

.tab.active {
  border-bottom: 1px solid var(--primary-color);
  font-weight: 700;
  display: inline-block;
}

.tab__pane {
  display: none;
}

.tab__pane.active {
  display: block;
}

.code {
  border-radius: 3px;
  font-family: Space Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  background: var(--bg-color);
  border: 1px solid var(--code-bg-color);
  color: var(--primary-color-light);
}

.code--block {
  white-space: pre-line;
  padding: 0 1.5rem;
}

.code--inline {
  padding: 3px 6px;
  font-size: 80%;
}

.button--primary {
  padding: 10px 22px;
  background-color: var(--accent-color);
  color: white;
  position: relative;
  text-decoration: none;
  border: 0;
  transition: all 0.3s ease-out;
}
.button--primary:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color-light);
  right: -0.4rem;
  top: -0.4rem;
  transition: all 0.3s ease-out;
}
.button--primary:hover {
  text-shadow: 0px 1px 1px var(--accent-color-dark);
  color: white;
  transform: translate3D(0, -3px, 0);
}
.button--primary:hover::after {
  transform: rotate(90deg);
}

.button--secondary {
  padding: 10px 22px;
  border: 2px solid var(--primary-color);
  transition: all 0.5s ease-out;
}
.button--secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Dropdown Button */
.dropbtn {
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin: 0px !important;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

.fancybutton {
  background: linear-gradient(to right, #ad19ca, #6433E0);
  background-color: #ad19ca;
  color: #fff;
  font-family: Trebuchet MS;
  font-size: 18px;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  padding: 14px 15px;
  border: 0px solid #000;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0px 3px 6px 0px rgba(51, 5, 67, 0.5);
}
.fancybutton:hover {
  background: linear-gradient(to right, #b754d0, #7d5ee3);
  background-color: #b754d0;
}
.fancybutton:active {
  transform: scale(0.95);
}

.link {
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.link:hover {
  color: var(--accent-color);
}

.link--dark {
  color: var(--primary-color);
}

.link--light {
  color: var(--accent-color);
}

nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-template-columns: 70px auto;
  background-color: var(--bg-color);
  gap: 1em;
}
nav ul.breadcrumb {
  display: flex;
}
nav ul.breadcrumb li {
  list-style: none;
}
nav ul.breadcrumb li:not(:first-of-type)::before {
  margin-left: 0.5em;
  margin-right: 0.5em;
  content: ">";
}

.menu {
  display: inline-flex;
  margin: 0;
  text-align: right;
  overflow: hidden;
  list-style: none;
  align-items: center;
  gap: 0.5em;
}
.menu li {
  margin-bottom: 0;
}

.toggle {
  display: none;
  position: relative;
}
.toggle span {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background: var(--primary-color);
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  right: 0;
}
.toggle span:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background: var(--primary-color);
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  right: 0;
  top: -6px;
}
.toggle span:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background: var(--primary-color);
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  right: 0;
  bottom: -6px;
}

.toggle.open span {
  background-color: transparent;
}
.toggle.open span:before {
  top: 0;
  transform: rotate(45deg);
}
.toggle.open span:after {
  top: 0;
  transform: rotate(-45deg);
}

.menu__item {
  padding: 1rem;
  display: inline-block;
  padding: 1.5rem 1rem;
}

.menu__item.toggle {
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
  transition: color 0.3s ease-out;
  margin-bottom: 2rem;
}
table td {
  border: 1px solid var(--code-bg-color);
  padding: 0.8rem;
  font-weight: 300;
}
table td:first-child {
  background-color: var(--bg-color);
  font-weight: 600;
}
table th {
  border: 1px solid var(--code-bg-color);
  padding: 0.8rem;
  font-weight: 300;
  text-align: left;
  background-color: white;
  border-color: white;
  border-bottom-color: var(--code-bg-color);
}

.footer {
  text-align: center;
  background-color: var(--primary-color);
  padding: 2rem;
  color: white;
}

.header {
  border-bottom: 1px solid var(--code-bg-color);
  grid-template-columns: 1fr 150px 60% 1fr;
}

.logo {
  font-weight: 900;
  color: var(--primary-color);
  font-size: 1.4em;
  grid-column: 2;
  background-size: contain;
  margin: 1rem 0 0 1rem;
}
.logo img {
  height: 32px;
}

.logo__thin {
  font-weight: 300;
}

.wrapper {
  display: flex;
  width: 80vw;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.doc__bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 28%;
  background-color: var(--bg-color);
  z-index: -1;
}

.doc__nav {
  flex-basis: 20%;
  font-weight: 200;
}
.doc__nav ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
  top: 0;
  position: sticky;
  position: -webkit-sticky;
}
.doc__nav ul.fixed {
  top: 2rem;
}
.doc__nav li:hover {
  color: var(--primary-color-light);
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.doc__nav .selected {
  color: var(--accent-color);
  position: relative;
}
.doc__nav .selected:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  left: -1.5rem;
  top: 0.3rem;
}

.doc__content {
  flex-basis: 80%;
  padding: 0 0 5rem 1rem;
}
.doc__content img {
  width: 100%;
}

.hero {
  text-align: center;
  background-color: var(--bg-color);
  height: 400px;
}
.hero .swiper {
  width: 100%;
  height: 100%;
  background: #000;
}
.hero .parallax-bg {
  background-image: url("../../../images/cover.jpg");
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 400px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.hero .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  /* align-content: center; */
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
}
.hero .swiper-slide > * {
  text-align: left;
  padding-left: 5%;
}
.hero .swiper-slide .title h1 {
  font-family: "Paytone One", sans-serif;
  font-size: 5em !important;
}
.hero .swiper-slide .subtitle {
  font-family: "Paytone One", sans-serif;
  font-size: 4em;
}
.hero .swiper-slide .text p {
  font-family: "Paytone One", sans-serif;
  color: #fff;
  font-size: 2em;
}
.hero .swiper-slide article p {
  font-size: 18px !important;
}

.feature {
  display: flex;
  flex-wrap: wrap;
}

.feature__item {
  max-width: calc(33% - 20px);
  margin: 0 20px 0 0;
}
.feature__item .section__title {
  margin-bottom: 0;
}
.feature__item p {
  margin-top: 0.5rem;
}

.breadcrumbsholder {
  margin-left: 10vw;
  margin-right: 10vw;
  width: 80vw;
  padding-top: 1em;
}
.breadcrumbsholder nav {
  background-color: #fff;
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
}
.post-grid .post-item {
  padding: 1em;
}
.post-grid .post-item header {
  text-align: center;
}
.post-grid .post-item img {
  display: inline-block !important;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 60px;
}

.keybinding {
  margin-top: 3rem;
  display: flex;
}

.keybinding__detail {
  position: relative;
  border: 1px solid var(--code-bg-color);
  flex-basis: 50%;
  padding: 2rem 1rem 1rem 1rem;
  list-style: none;
  line-height: 2rem;
}
.keybinding__detail:first-child {
  text-align: right;
  padding-right: 1rem;
}
.keybinding__detail:first-child .keybinding__title {
  position: absolute;
  right: 0.5rem;
  top: -2rem;
  background-color: white;
  padding: 0 0.5rem;
}
.keybinding__detail:last-child {
  padding-left: 1rem;
  margin-left: -1px;
}
.keybinding__detail:last-child .keybinding__title {
  position: absolute;
  left: 0.5rem;
  top: -2rem;
  background-color: white;
  padding: 0 0.5rem;
}

.keybinding__label {
  background: var(--white-color);
  border: 1px solid var(--light-gray-color);
  box-shadow: 0 1px 0 0 var(--medium-gray-color);
  border-radius: 3px;
  font-family: Space Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 0.7rem;
  color: var(--dark-gray-color);
  padding: 3px 3px 1px 3px;
  vertical-align: middle;
}

.callout {
  text-align: center;
  padding: 1rem 0 3rem 0;
}
.callout .button--primary {
  display: inline-block;
  margin-top: 0.5rem;
}

.changelog {
  background-color: var(--bg-color);
  padding: 2rem 0;
}

.changelog__item {
  display: flex;
}

.changelog__meta {
  flex-basis: 25%;
}
.changelog__meta small {
  color: var(--primary-color-light);
  font-weight: 200;
  letter-spacing: 1px;
}

.changelog__title {
  margin-bottom: 0;
}

.changelog__callout {
  margin: 3rem auto 2rem auto;
  text-align: center;
}

.pagination {
  display: inline-flex;
  list-style: none;
  gap: 0.5em;
}

@media screen and (max-width: 600px) {
  nav {
    grid-template-columns: 70px auto;
  }

  .menu__item {
    display: none;
  }

  .menu__item.toggle {
    display: inline-block;
  }

  .menu {
    text-align: right;
    padding: 0.5rem 1rem;
  }

  .toggle {
    display: block;
  }

  .menu.responsive .menu__item:not(:first-child) {
    display: block;
    padding: 0 0 0.5rem 0;
  }
}
@media (max-width: 750px) {
  .wrapper {
    flex-direction: column;
  }

  .doc__content {
    padding-left: 0;
  }

  .doc__nav ul {
    border-bottom: 1px solid var(--code-bg-color);
    padding-bottom: 0.5rem;
  }
  .doc__nav ul.fixed {
    position: relative;
    top: 0;
  }
  .doc__nav li {
    display: inline-block;
    padding-right: 1rem;
  }
  .doc__nav .selected:after {
    display: none;
  }

  .hero__terminal {
    width: 70%;
  }

  .tab__container > ul {
    right: auto;
    left: 0;
    padding-left: 0;
  }
  .tab__container .code {
    margin-top: 2rem;
  }

  .feature {
    flex-direction: column;
  }

  .keybinding {
    flex-direction: column;
    font-size: 0.8rem;
  }

  .changelog__item {
    flex-direction: column;
  }

  .feature__item {
    max-width: 100%;
    margin: 0;
  }
}

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