*,
*::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;
}

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

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;
  overflow-x: hidden;
}

.container {
  padding: 0 6%;
}

.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;
  text-align: center;
  margin: auto;
  padding-bottom: 20px;
}

.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: 24px;
}

.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;
}

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

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

img {
  width: 100%;
}

.nav {
  position: fixed;
  width: 100%;
  z-index: 3;
  background-color: rgb(22, 23, 22);
  top: 0;
  padding: 5px 0 5px 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__hamburger {
  height: 50px;
  width: 50px;
  border: 0;
  position: relative;
  background: transparent;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  height: 4px;
  width: 30px;
  background: -webkit-linear-gradient(270deg, #F1C22D 0%, #FF7757 100%);
  display: block;
  pointer-events: none;
  margin: 3px 0;
}

.nav__hamburger:active .hamburger-line {
  background: #f1e5e3;
}

.nav__mobile-nav {
  display: none;
  background-color: rgb(22, 23, 22);
  text-align: center;
}

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

.nav__mobile-link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
}

.nav__mobile-link:hover,
.nav__mobile-link:active {
  background-color: #555;
  text-decoration: underline;
}

.nav__nav-desktop {
  display: none;
}

.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: rgb(23, 45, 66);
  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: rgb(47, 47, 47);
}

.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: rgb(47, 47, 47);
  background-repeat: no-repeat;
  background-position: top center;
}

.features-background {
  background-color: rgb(24, 7, 0);
  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;
}

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

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

.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;
}

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

.animated-logo {
  margin-top: 20px;
  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: 48px;
  text-align: center;
}

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

.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;
}

.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;
}

/* 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;
}