/* design font size is 24px for vw 1920px */

:root {
  font-size: 1.25vw;
  font-family: "Poppins", sans-serif;
  --primary: #ffb000;
  --white: #ffffff;
  --dark-grey: #181920;
  --light-grey: #393946;
  --medium-grey: #9b9b9b;
  --bg-primary: #070718;
  --bg-secondary: #060623;
}

* {
  scroll-behavior: smooth !important;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--white);
}

main {
  width: 100%;
}

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

nav {
  height: 6.25rem;
  display: flex;
  align-items: center;
  padding: 0 5rem;
  border-bottom: #255074 1px solid;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

#hamburger-button {
  cursor: pointer;
  display: none;
}

.logo-img {
  width: 3.2rem;
  height: 3.625rem;
}

.logo-text {
  font-size: 1.66rem;
  margin: 0 0.83rem;
}

#links>a {
  margin-left: 3.625rem;
  transition: color 0.2s linear;
}

#links>a:hover {
  color: var(--medium-grey);
}

section {
  padding: 0 5rem 5rem 5rem;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#vision h2 {
  font-size: calc(30px + 1vw);
  text-align: center;
  padding: 3rem 0;
}

blockquote::before {
  content: open-quote;
}

blockquote::after {
  content: close-quote;
}

blockquote {
  quotes: "“""”""‘""’";
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

#hero .flex-container {
  padding: 5rem;
}

#hero h1 {
  font-size: 2.66rem;
  color: var(--primary);
}

#hero p {
  font-size: 2rem;
}

#hero .flex-container>div {
  width: 100%;
  text-align: center;
}

.title-holder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-pipe {
  width: 0.125rem;
  margin-right: 0.458rem;
}

.title-dot {
  width: 0.5rem;
  margin-left: 0.292rem;
  margin-top: 1.5rem;
}

.title {
  font-size: 2.666rem;
}

h4.title {
  font-size: 1.8rem;
}

.flex-container>div {
  box-sizing: border-box;
  width: 50%;
}

section#usage {
  padding: 0;
}

.skipper {
  display: flex;
  padding: 5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 70vh;
  font-size: 2rem;
}

.skipper:nth-child(odd) {
  padding-left: 25%;
}

.skipper:nth-child(even) {
  padding-right: 25%;
}

.skipper:nth-child(1) {
  background: linear-gradient(var(--bg-primary), indigo);
}

.skipper:nth-child(2) {
  background: linear-gradient(indigo, #9f195d);
}

.skipper:nth-child(3) {
  background: linear-gradient(#9f195d, var(--bg-primary));
}

section img {
  width: 100%;
}

#problems-solutions {
  font-size: 1.333rem;
}

#problems-solutions .flex-container>div:first-child {
  padding-right: 5rem;
}

#problems-solutions .flex-container>div:last-child {
  padding-left: 5rem;
}

.find-out-more {
  text-align: center;
  padding-bottom: 5rem;
  font-size: 2rem;
}

.find-out-more a {
  text-decoration: underline;
}

footer {
  background: var(--dark-grey);
  padding: 1.772rem 5rem 1.083rem 5rem;
}

footer .footer-logo-wrapper {
  display: flex;
  align-items: center;
  font-size: 1.666rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  font-size: 1.333rem;
}

.footer-grid>#left-item {
  margin-top: auto;
}

#socials img {
  height: 1.5rem;
}

#socials a:not(:first-child) {
  margin-left: 1.79rem;
}

footer>p {
  font-size: 1rem;
  text-align: center;
  color: var(--medium-grey);
}

/* MOBILE */
@media only screen and (max-width: 600px) {
  :root {
    font-size: 16px;
  }

  section {
    padding: 0 1rem 1rem 1rem;
  }

  nav {
    height: auto;
    padding: 0 0.5rem !important;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .logo-wrapper {
    padding: 0.8rem;
  }

  #hamburger-button {
    display: block !important;
  }

  #links {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
  }

  #links.show {
    max-height: 50vh;
  }

  #links>a {
    margin-left: 0 !important;
    padding: 0.4rem;
  }

  #hero .flex-container {
    padding: 0;
  }

  .flex-container>div {
    width: 100% !important;
  }

  #problems-solutions>div:nth-child(2)>div:nth-child(2) {
    display: none;
  }

  #problems-solutions>div:nth-child(2)>div:nth-child(1) {
    padding-right: 0 !important;
  }

  #problems-solutions>div:nth-child(3)>div:nth-child(1) {
    display: none;
  }

  #problems-solutions>div:nth-child(3)>div:nth-child(2) {
    padding-left: 0 !important;
  }

  .skipper {
    padding: 1rem;
    height: 100vh;
  }

  .skipper:nth-child(odd) {
    padding-left: 1rem;
  }

  .skipper:nth-child(even) {
    padding-right: 1rem;
  }

  .skipper .title {
    font-size: 2.2rem;
  }

  footer {
    padding: 1.772rem 2rem 1.083rem 2rem;
  }

  .footer-grid {
    padding-top: 2rem;
    flex-flow: column;
  }
}