/*!
/ drums-hackbrett.ch
/ Gilbert Paeffgen
*/
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
}

body {
  background: rgb(1, 46, 139);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  justify-content: space-between;
  row-gap: 1rem;
}
.row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .row--reverse {
    flex-direction: inherit;
  }
}

:root {
  --jump-blue-300: #168eea;
  --jump-blue-400: #168eea;
  --jump-blue-600: #137dcf;
  --jump-silver-100: #f9f9f9;
  --jump-white: #fff;
  --jump-black: #131415;
  --jump-purple-400: #a160fc;
  --jump-red-400: #f55d67;
  --jump-brand-color: #EDCF8E;
  --jump-brand-color-light: #F7B126;
  --jump-brand-color-dark: var(--jump-blue-300);
  --jump-text-color: var(--jump-white);
}

::selection {
  background: var(--jump-brand-color-light);
  /* WebKit/Blink Browsers */
  color: #000;
}

::-moz-selection {
  background: var(--jump-brand-color-light);
  /* Gecko Browsers */
  color: #000;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  color: var(--jump-text-color);
  font-size: 16px;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: calc(2.5rem + 0.875 * (100vw - 20rem) / 30);
  }
}

h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: inherit;
  margin-top: 20px;
  margin-bottom: 1.5rem;
}

h3 {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: inherit;
}

p {
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
}

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

p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

.text--small {
  font-size: 0.8125rem;
}

.text--lead {
  font-size: 1.25rem;
  letter-spacing: -0.2px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.jump-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
}
.jump-btn--primary {
  background: var(--jump-brand-color);
  color: #000;
}
.jump-btn--primary:hover {
  background: var(--jump-brand-color-light);
  opacity: 0.9;
}
.jump-btn--lg {
  padding: 0.975rem 3.625rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .jump-btn--lg {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.jump-btn--lg i {
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.jump-btn--lg:hover i {
  transform: translateX(0.25rem);
}

.jump-header {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.jump-header a:not(.jump-btn) {
  color: rgb(239, 199, 42);
}
.jump-header nav ul {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.jump-header nav a:not([class]):hover {
  text-decoration: underline;
}
.jump-header .jump-nav__desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .jump-header .jump-nav__desktop {
    display: flex;
  }
}
.jump-header .jump-nav__mobile button {
  background: none;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .jump-header .jump-nav__mobile {
    display: none;
  }
}

.jump-footer__wrapper {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: var(--jump-silver-100);
}
.jump-footer__inner {
  flex-wrap: wrap;
}
.jump-footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media screen and (max-width: 1024px) {
  .footer-branding {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.footer-branding img {
  height: 32px;
}
.footer-branding .text--small {
  margin: 1rem 0;
}
.footer-branding ul {
  display: flex;
  column-gap: 10px;
}
.footer-branding ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--jump-black);
}
.footer-branding ul a i {
  color: var(--jump-white);
}

@media screen and (max-width: 1024px) {
  .footer-links {
    min-width: 150px;
  }
}
.footer-links h3 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-links a {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links--double {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-links--double {
    flex-direction: column;
  }
}
.footer-links--double a:first-child {
  width: 100px;
}

.jump-hero .grid-row {
  padding: 2.5rem 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .jump-hero .grid-row {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    max-width: 630px;
  }
}
.jump-hero__content hr {
  width: 20px;
  height: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .jump-hero__content {
    order: 1;
  }
  .jump-hero__content p {
    max-width: none;
  }
}
.jump-hero__content p {
  max-width: 70%;
}
.jump-hero__content i {
  margin-right: 6px;
}
.jump-hero__content a {
  margin-top: 2rem;
}
.jump-hero__image img {
  width: 100%;
}
.jump-logo-listing {
  padding-top: 2rem;
  text-align: center;
}
.jump-logo-listing ul {
  margin-top: 2rem;
  padding: 10px 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .jump-logo-listing ul {
    flex-wrap: wrap;
  }
}
.jump-logo-listing ul img {
  width: 100%;
  padding: 0 2rem;
}

.jump-feature {
  align-items: center;
  column-gap: 5rem;
  padding: 5.5rem 0;
}
.jump-feature.feature-filesharing {
  --jump-feature-color: var(--jump-purple-400);
}
.jump-feature.feature-filesharing ::selection {
  background: var(--jump-feature-color);
  /* WebKit/Blink Browsers */
  color: var(--jump-white);
}
.jump-feature.feature-filesharing ::-moz-selection {
  background: var(--jump-feature-color);
  /* Gecko Browsers */
  color: var(--jump-white);
}
.jump-feature.feature-annotation {
  --jump-feature-color: var(--jump-red-400);
}
.jump-feature.feature-annotation ::selection {
  background: var(--jump-feature-color);
  /* WebKit/Blink Browsers */
  color: var(--jump-white);
}
.jump-feature.feature-annotation ::-moz-selection {
  background: var(--jump-feature-color);
  /* Gecko Browsers */
  color: var(--jump-white);
}
.jump-feature.feature-screenrecord {
  --jump-feature-color: var(--jump-brand-color);
}
@media screen and (max-width: 1024px) {
  .jump-feature {
    flex-direction: column;
    text-align: center;
    row-gap: 3rem;
    padding: 3.5rem 0;
  }
}
.jump-feature header a {
  display: inline-flex;
  align-items: center;
  color: var(--jump-feature-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.jump-feature header a i {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  transition: 0.25s ease;
}
.jump-feature header a:hover i {
  transform: translateX(0.25rem);
}
.jump-feature__content {
  width: 100%;
  margin: 0 auto;
  flex-shrink: 1;
  flex-basis: 500px;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .jump-feature__content {
    max-width: 80%;
    flex-basis: auto;
  }
}
@media screen and (max-width: 768px) {
  .jump-feature__content {
    max-width: none;
    flex-basis: auto;
  }
}
.jump-feature__content p {
  font-size: 1.125rem;
  line-height: 1.5;
}
.jump-feature__image img {
  width: 100%;
  border-radius: 5px;
  filter: drop-shadow(0 8px 10px #8e8e8e);
}
@media screen and (min-width: 1024px) {
  .jump-feature__image {
    width: 52%;
  }
}

.jump-cta__inner {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
  text-align: center;
}
.jump-cta__inner img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .jump-cta__inner img {
    width: 100%;
  }
}
.jump-cta__inner h2 {
  margin-bottom: 2.6rem;
}

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