/* Colors */
body {
  font-family: "Poppins", "Inter", "";
  background-color: #101112;
}

body,
html {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #FFFFFF;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: #FFFFFF;
  font-family: "Inter", "";
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Poppins Black';
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.5rem;
}

/* Special Types */
.heading {
  font-weight: 900;
  color: #FFFFFF;
}

.subheading {
  font-family: "Inter", "";
  color: #FFFFFF;
  font-style: normal;
  font-weight: 500;
  margin-bottom: -.5rem;
  text-transform: uppercase;
}

.description {
  color: #D2D2D2;
  font-style: normal;
  font-weight: 800;
  font-size: 1rem;
  line-height: 22px;
}

.description-thin {
  color: #D2D2D2;
  font-weight: 300;
}

.highlight {
  color: #3F51B5;
  font-style: normal;
  font-weight: 800;
  font-size: 1rem;
  line-height: 29px;
}

a {
  text-decoration: none;
  color: white;
}

.stripe {
  border-left: 4px solid #3F51B5;
  line-height: 3rem;
  padding-left: .5rem;
}

/*
*   Navbar
*/
#menu__toggle {
  opacity: 0;
  position: absolute;
}

#menu__toggle:checked + .menu__btn > span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}

.menu__btn {
  position: absolute;
  top: 3rem;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.menu__btn > span::before {
  content: '';
  top: -8px;
}

.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 60px 0;
  list-style: none;
  background-color: #3F51B5;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #FFFFFF;
  font-family: "Inter", "";
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.menu__footer {
  bottom: 0;
  position: fixed;
  width: inherit;
}

.menu__item:hover {
  background-color: #101112;
}

.logo-small {
  max-width: 50%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  padding: 2rem 0rem 2rem 0rem;
}

.nav-heading {
  font-size: 2rem;
  padding: 12px 24px;
}

a {
  text-decoration: none;
}

a span {
  font-weight: 450;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-bottom: 1px solid;
}

a span:nth-child(2) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

a span:nth-child(3) {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

a span:nth-child(4) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

a:hover span {
  font-weight: 900;
}

a:hover span:nth-child(4) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

a:hover span:nth-child(3) {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

a:hover span:nth-child(2) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

a:hover span:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/*
*   MISC
*/
.strip {
  background-color: #3F51B5;
  text-align: center;
  margin-top: 0;
  padding: 2px;
  vertical-align: top;
}

.strip p {
  font-size: 15px;
  font-family: 'Poppins SemiBold';
  margin-top: 0;
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #101112;
  color: white;
  font-weight: 600;
  padding: 15px 16px 15px 16px;
  font-size: 1rem;
}

#pulse {
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.85s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 24, 0, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 22, 0, 0);
  }
}

.btn-primary {
  background-color: #3F51B5;
  -webkit-box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 rgba(63, 80, 180, 0.49);
}

.space-bottom {
  margin-bottom: 2rem;
}

.section {
  width: 100%;
  padding-top: 8vh;
  padding-bottom: 9vh;
}

.section-secondary {
  background-color: #3F51B5;
  padding-top: 8vh;
  padding-bottom: 9vh;
}

.cards-image {
  display: block;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/*
*   Home
*/
.centered {
  text-align: center;
}

.container {
  margin-inline: auto;
  /*see subpage.css*/
}

.left {
  text-align: left;
}

.container--narrow {
  max-width: 34rem;
}

.hero {
  padding-bottom: 1vh;
  text-align: center;
  padding-bottom: 10vh;
}

.hero .top {
  margin-top: -4rem;
}

.compare .card {
  margin-top: 2.5rem;
}

.product .card {
  margin-top: 2.5rem;
}

.card {
  margin: 0 auto;
  background-color: #1D1F21;
  max-width: 20rem;
  padding: 1rem;
  margin-bottom: 3vh;
  border-radius: 12px;
  text-align: center;
}

.card .course-category {
  margin-top: 8rem;
  margin-bottom: 0;
  color: #3F51B5;
}

.card .card-title {
  margin-top: 0;
  font-size: 1rem;
}

.card .description {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 0.9rem;
}

.card .card-list {
  padding-left: 0;
  list-style: none;
}

.card .card-list p {
  text-align: center;
}

.card .card-list li {
  padding: 5px;
}

.card .card-list li:nth-child(odd) {
  background-color: #212325;
}

.price {
  color: #3F51B5;
}

.trending {
  min-height: 22rem;
}

.tool {
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 17rem;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 12px;
  background-color: #1D1F21;
}

.tool i {
  color: white;
  font-size: 1.5rem;
}

.tool .icon {
  background-color: #3F51B5;
  border-radius: 40px;
  width: 10%;
  height: auto;
  padding: 1rem;
  text-align: center;
  float: left;
}

.tool .desc-wrapper {
  padding-left: 6rem;
}

.tool h4 {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}

.tool p {
  margin: 0;
}

.avatar {
  border: 7px solid #3F51B5;
  height: 7vh;
  border-radius: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testemonial-author {
  color: #3F51B5;
  margin-bottom: 0;
}

.testemonial-role {
  color: #A09C9C;
  margin-top: 0;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  margin-top: 3vh;
  overflow-x: hidden;
  position: relative;
  width: auto;
}

.slider .slide-track {
  -webkit-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 11);
  gap: 1rem;
}

.slide {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  overflow: hidden;
}

.slide:hover {
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transform: translateY(-7px) scale(1.01);
  transform: translateY(-7px) scale(1.01);
}

.preview {
  max-width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #3F51B5;
  margin-top: 5vh;
  border-radius: 7px;
}

.welcome-text-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.footer {
  background-color: #101112;
}

.footer .description {
  margin-bottom: 0;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links a {
  color: #A09C9C;
}

.links-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-links {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding-top: 5vh;
  padding-bottom: 3vh;
}

.footer hr {
  width: 90%;
  border-top: 1.5px solid #D9D9D9;
  margin-top: 3vh;
  margin-bottom: 0;
}

.navbar {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 3rem;
  padding-right: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar ul li a {
  color: #A09C9C;
  font-family: "Inter", "";
  font-size: 1rem;
}

.navbar ul li a:hover {
  color: #3F51B5;
}

.navbar ul li {
  list-style-type: none;
  display: inline-block;
  padding: 10px 20px;
}

.navbar .btn-primary {
  margin-right: 1rem;
  color: white;
}

.navbar .btn-secondary {
  margin-right: 1rem;
}

.navbar img {
  -ms-grid-column-align: start;
  justify-self: start;
}

.banner-wrapper {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mockup_boxes {
  width: 19rem;
  height: auto;
  margin-top: 3vh;
}

.banner {
  width: 80%;
  margin: 0 auto;
}

.nav-logo-small {
  height: 3rem;
  width: auto;
}

.welcome-section {
  min-height: 100vh;
}

.hero-wrapper {
  display: none;
}

.copyright {
  color: #A09C9C;
  margin-bottom: 0;
}

.system-images {
  margin-top: 4vh;
}

.system-images img {
  max-width: 100%;
  height: auto;
  margin-top: 2vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.mwst {
  color: #454545;
}

.footer-wrapper {
  text-align: center;
}

.footer-wrapper .footer-links {
  text-align: left;
}

@media only screen and (min-width: 700px) {
  .courses-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  h2 {
    font-size: 4rem;
  }
  .card-md {
    width: 25vw;
  }
  .wrapper-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
  .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .footer-wrapper {
    text-align: left;
    padding: 0 5vw 0 5vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-wrapper .container {
    width: 100vw;
  }
  .newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .newsletter .newsletter-heading {
    margin-left: auto;
    right: 0;
  }
  .product-description {
    padding: 1rem 5rem 0 5rem;
  }
  .hero {
    text-align: left;
    max-height: 70vh;
  }
  .hero h3 {
    margin-top: 7rem;
    font-size: 3vw;
  }
  .hero .description {
    font-size: 1.1rem;
  }
  .hero .centered {
    text-align: left;
  }
  .hero-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 1vh;
  }
  .hero-centered {
    display: none;
  }
  .system-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .system-text {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
  }
  .tools-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .tools-text {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
  }
  .tools-text .centered {
    text-align: left;
  }
  .tools-text .description {
    font-size: 1.1rem;
  }
  .tools-text h2 {
    border-left: 6px solid #3F51B5;
    line-height: 4rem;
    margin-top: 2vh;
    padding-left: 1rem;
  }
  .slider .slide-track {
    gap: 3rem;
  }
  .tool {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .system-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .system-images h3 {
    display: none;
  }
  .system-images p {
    font-size: 1.2rem;
  }
  .card-container .card {
    padding: 2rem 0 2rem 0;
    margin: 0 auto;
  }
  .card-container .cards-image {
    margin-bottom: 1rem;
  }
  .card {
    max-width: 32rem;
    min-width: 25rem;
    padding: 2rem 0 2rem 0;
  }
  .system-description-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
  }
  .system-description-wrapper p {
    margin-top: 3rem;
  }
  .banner {
    width: 50%;
    margin: 0 auto;
  }
  .welcome-text-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .welcome-text-wrapper h4 {
    font-size: 2.1rem;
    margin-bottom: 0;
  }
  .welcome-text-wrapper p {
    margin-top: .2rem;
    font-size: 1.5rem;
  }
  .welcome-text-wrapper .welcome-text {
    margin-top: 3rem;
    text-align: left;
  }
  .welcome-content {
    margin-top: 2rem;
  }
  .mockup_boxes {
    width: 30rem;
    height: auto;
    margin-top: 3vh;
  }
}

@media only screen and (min-width: 995px) {
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
}

/*
*   Grid
*/
.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33333%;
}

.col-2-sm {
  width: 12.66667%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33333%;
}

.col-5-sm {
  width: 37.66667%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33333%;
}

.col-8-sm {
  width: 62.66667%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33333%;
}

.col-11-sm {
  width: 87.66667%;
}

.col-12-sm {
  width: 96%;
}

@media only screen and (min-width: 45em) {
  .col-1 {
    width: 4.33333%;
  }
  .col-2 {
    width: 12.66667%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.33333%;
  }
  .col-5 {
    width: 37.66667%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.33333%;
  }
  .col-8 {
    width: 62.66667%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.33333%;
  }
  .col-11 {
    width: 87.66667%;
  }
  .col-12 {
    width: 96%;
  }
  .hidden-sm {
    display: block;
  }
}

/*
*   Card
*/
.card {
  margin: 0 auto;
  background-color: #1D1F21;
  min-width: 90%;
  max-width: 90%;
  margin-bottom: 2vh;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

.card .card-title {
  margin-top: 0;
  font-size: 1rem;
}

.card .card-list {
  padding-left: 0;
  list-style: none;
}

.card .card-list p {
  text-align: center;
}

.card .card-list li {
  padding: 4px;
}

.card .card-list li:nth-child(odd) {
  background-color: #212325;
}

.card img {
  max-width: 70%;
  padding-bottom: 1rem;
}

/*
*   MISC
*/
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

section {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
/*# sourceMappingURL=subpage.css.map */