*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-shadow: 0 1px 4px rgba(22, 23, 22, 0.25);
  --black: #000;
  --black-light: #050505;
  --black-lighter: #4d4d4d;
  --white: #fff;
  --prim-color: #34bdeb;
  --prim-color-shade1: #0d91bd;
  --prim-color-shade2: #0d91bd;
  --border-radius: 4px;
  --grey-background: #f1ecec;
  --prim-color-1: #f1e5e3;
  --tablet: 769px;
  --small-laptop: 1024px;
  --laptop: 1336px;
  --large-laptop: 1920px;
}

body {
  margin-top: 4em;
  overflow-x: hidden;
  background-color: rgba(45, 57, 74, 255);
}

html {
  font-size: 16px;
  color: #333333;
  font-family: "Rubik", sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  line-height: 1.5;
}

.orange-text-header {
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 400px;
  font-size: 22px;
  font-weight: bold;
}

.orange-text-header-intro {
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-align: center;
  font-size: 36px;
}

.orange-text-footer {
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.h1-orange {
  letter-spacing: 0;
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
}

a {
  text-decoration: underline;
  color: var(--prim-color);
  position: relative;
  display: inline-block;
  transition: 0.25s transform;
}

a.btn:hover,
a.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
}

p,
ul,
ol,
li {
  margin-bottom: 1em;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 0.2em;
  color: currentColor;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 0;
}

h2 {
  font-size: 1.88em;
}

img {
  width: 100%;
}

.container {
  padding: 0 3%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav {
  padding: 0.625rem 0;
  box-shadow: var(--nav-shadow);
  position: fixed;
  width: 100%;
  z-index: 3;
  background: rgba(22, 23, 22, 0.97);
  top: 0;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
}

.nav__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__left a {
  display: flex;
  text-decoration: none;
  align-items: center;
}

.nav__left a img {
  width: 50px;
  height: 50px;
}

.nav__left h1 {
  font-size: 30px;
  margin: 10px;
}

.nav__logo {
  margin-right: 4px;
}

.nav__mobile-nav {
  display: none;
}

.nav__nav-desktop {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
}

.nav__desktop-link {
  text-decoration: none;
}

body.mobile-nav-open .nav__mobile-nav {
  display: block;
}

/* header */
.header {
  background-image: linear-gradient(rgba(100, 100, 100, 0.1), rgba(122, 133, 129, 0.5)), url("imgs/web_background_1.jpg");
  background-color: rgba(23, 45, 66, 255);
  background-repeat: no-repeat;
  background-position: top center;
}

.header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3em;
}

/* utilty */
.section-border-image {
  height: 10px;
  margin: 0;
  display: block;
  overflow: hidden;
  background-color: rgba(47, 47, 47, 255);
}

.development-background {
  background-color: #ffffff;
  background-image: linear-gradient(rgba(120, 157, 166, 0.3), rgba(120, 120, 120, 0.05)), url("imgs/web_background_2.jpg");
  background-color: rgba(47, 47, 47, 255);
  background-repeat: no-repeat;
  background-position: top center;
}

.download-section-background {
  background-color: rgba(52, 52, 52, 255);
  background-image: linear-gradient(rgba(52, 52, 52, 0.3), rgba(42, 15, 4, 0.3));
}

.features-background {
  background-color: rgba(24, 7, 0, 255);
  background-image: linear-gradient(rgba(80, 80, 80, 0.65), rgba(120, 120, 120, 0.05)), url("imgs/background_3.jpg");
  background-repeat: no-repeat;
  background-position: top center;
}

.text-centered {
  text-align: center;
}

.prim-background {
  background: var(--prim-color);
  color: var(--white);
}

.cta-background {
  background: #1b0e08;
  color: var(--white);
}

/* btns */
.btn {
  background: var(--prim-color);
  color: var(--white);
  border: 0;
  font: inherit;
  text-decoration: none;
  border-radius: var(--border-radius);
  padding: 0.6em 0.8em;
  display: block;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
}

.discordbtn {
  background: #7289da;
  color: var(--white);
  border: 0;
  padding: 0.6em 0.8em;
  display: block;
  line-height: 1;
  cursor: pointer;
}

.wishlist-btn {
  height: 50px;
  width: 250px;
  text-align: center;
  line-height: 30px;
}

.wishlist-btn-top {
  margin: auto;
}

.video-teaser {
  margin: 0px 50px 0px 0px;
}

.video-teaser iframe {
  width: 100%;
  height: 360px;
}

.animated-logo {
  height: 384px;
  width: 100%;
  object-fit: contain;
}

/* sections */
.section__heading-orange {
  letter-spacing: 0;
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 62px;
}

.section__heading-orange.text-centered {
  font-size: 72px;
}

.section {
  padding: 3em 0 2em;
}

.section__heading-small {
  font-size: 0.88rem;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.62em;
  font-weight: bold
}

.section__text-content {
  margin-bottom: 1.25em;
}

.section__text-content div {
  margin: 0px 50px 0px 0px;
}

.cta__container {
  z-index: 1;
  position: relative;
}

.section__text {
  margin-bottom: 0.5em;
}

.section__container {
  display: flex;
  flex-direction: column;
}

.features {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}

.features .section__heading {
  margin-bottom: 1.5em;
}

.features__feature-title-text {
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
}

.features__feature-text {
  margin-bottom: 0.5em;
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.features__feature {
  max-width: 350px;
  margin: 0 auto 3em;
}

.features__icon {
  height: 50px;
  width: 50px;
  display: flex;
  border-radius: 100%;
  margin: 0 auto 0.75em;
}

.features .section__container {
  display: block;
}

.features__feather-video {
  margin: auto;
  stroke-width: 2px;
  color: var(--prim-color);
}

.header__text-text,
.section__text {
  max-width: 400px;
}

.cta {
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Footer */
.footer ul,
.footer ol {
  list-style: none;
}

.footer__links-heading {
  font-weight: bold;
}

.footer__links-item {
  margin-bottom: 0.5em;
}

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

.footer__links {
  flex: 1 1 150px;
  margin-bottom: 2.5em;
}

.footer__links-heading {
  margin-bottom: 0.3em;
}

.footer__link {
  font-size: 0.88em;
  text-decoration: none;
  color: var(--black-light);
}

.footer__links-list {
  margin-bottom: 0.2em;
}

@media screen and (min-width: 769px) {
  .header__container {
    align-items: center;
  }

  .header__container div:first-child {
    margin-right: 1em;
  }

  .header__container,
  .section__container {
    flex-direction: row;
  }

  .header__container>*,
  .section__container>* {
    flex: 1;
  }

  .section__container {
    align-items: center;
  }

  .features {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .features__feature {
    flex: 0 45%;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__desktop-item {
    margin: 0 0.25em;
  }
}

@media screen and (min-width: 1024px) {
  .features__feature {
    flex: 0 30%;
  }

  h1 {
    font-size: 3.8em;
  }

  h2 {
    font-size: 3em;
  }
}

@media screen and (min-width: 1366px) {
  :root {
    font-size: 18px;
  }
}