/* Global Styles */

:root {
  --main-bg-color: #FED34D;
  --text-color: #1D1E22;
  --emphasis-color: #FF5C00;
  --link-color: #3A0000;
  --attention-color: #990000;
  --x-small-margin: 5px;
  --small-margin: 10px;
  --medium-margin: 20px;
  --large-margin: 30px;
  --x-large-margin: 60px;
  --large-negative-margin: -30px;
  --x-large-negative-margin: -60px;
}

:target {
	visibility: visible !important;
	opacity: 1 !important;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media only screen and (max-width: 768px) {
  :root {
    --x-small-margin: 3px;
    --small-margin: 6px;
    --medium-margin: 12px;
    --large-margin: 24px;
    --x-large-margin: 48px;
    --large-negative-margin: -24px;
    --x-large-negative-margin: -48px;
  }  
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Black.ttf?version=5ebb24ee1112dd9562629375c387879a');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Bold.ttf?version=e07df86cef2e721115583d61d1fb68a6');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Medium.ttf?version=58aef543c97bbaf6a9896e8484456d98');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Regular.ttf?version=11eabca2251325cfc5589c9c6fb57b46');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Light.ttf?version=88823c2015ffd5fa89d567e17297a137');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto/Roboto-Thin.ttf?version=321de678e592d0b8f44f1a82d7ca4b62');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf?version=cbd4e701269338259ee0b39a0b768167');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf?version=52ee8b598488b1ffbaa93e50cbd6a2f4');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf?version=885e5558c90864ddb72ad486f36470cc');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Mansalva";
  src: url('../fonts/Mansalva-Regular.ttf?version=3df5a9bbbb65409d04bb4429830b24c7');
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  padding: 0;
  margin: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.button {
  background-color: var(--attention-color);
  color: white;
  font-size: 150%;
  padding: var(--medium-margin) var(--large-margin);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.button img {
  margin-right: var(--medium-margin);
}

.box {
  margin: var(--x-large-margin);
}

h1 {
  font-weight: 400;
  font-size: 200%;
}

/* Layout */

.background-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-bar::after {
  content: "";
  position: absolute;
  background-color: var(--main-bg-color);
  height: 450px;
  width: 150%;
  margin-left: -100px;
  transform: rotate(2deg);
  top: -25px;
  left: 0;
}

@media only screen and (max-width: 1024px) {
  .background-bar {
    height: 460px;
  }
}

@media only screen and (max-width: 375px) {
  .background-bar {
    height: 380px;
  }
}

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

.inside {
  width: 800px;
  margin: var(--large-margin) auto;
}

@media only screen and (max-width: 768px) {
  .inside {
    width: 100%;
  }
}

/* Header */

.header .notion-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  background: black;
  color: white;
  padding: var(--small-margin);
  gap: 10px;
  font-size: 120%;
  font-family: 'Courier New', Courier, monospace;
  box-sizing: border-box;
}

.header .notion-banner a {
  color: white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 450px) {
  .header .notion-banner {
    justify-content: start;
    align-items: start;
    text-align: left;
    padding: 15px;
  }
  .header .notion-banner img {
    margin-right: 10px;
  }
}

.header header {
  padding: var(--medium-margin);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 450px) {
  .header header nav {
    display: none !important;
  }
  .header .logo {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.header header nav {
  display: flex;
  align-items: center;
}

.header header nav > * {
  margin: 0 var(--large-margin);
}

@media only screen and (max-width: 768px) {
  .header header nav > * {
    margin: 0 var(--medium-margin);
  }
}

.header header .button {
  font-size: 120%;
  background-color: white;
  color: var(--attention-color);
  border: 3px solid var(--attention-color);
  padding: var(--small-margin) var(--medium-margin);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown h4 {
  margin: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  align-items: center;
  color: var(--link-color);
}

.dropdown h4 img {
  width: 18px;
  margin-left: var(--small-margin);
}

.dropdown .dropdown-trigger {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  padding: var(--large-margin) 0 0 0;
}

.dropdown:hover .dropdown-trigger {
  display: block;
}
.dropdown ul {
  margin: 0;
  padding: 0;
}
.dropdown ul li {
  padding: var(--x-small-margin) 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.dropdown .dropdown-content {
  border-radius: 3px;
  box-shadow: 0 6px 20px 0 rgba(0,0,0,.3);
  background-color: white;
  padding: var(--large-margin);
  width: 150px;
}

.dropdown .new {
  background-color: var(--emphasis-color);
  color: white;
  border-radius: 6px;
  font-weight: 300;
  font-size: 90%;
  padding: 2px var(--small-margin);
  margin: 0 0 0 var(--small-margin);
}

/* Footer */

footer {
  border-top: 3px solid var(--text-color);
  background-color: white;
  padding: var(--large-margin);
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}

@media only screen and (max-width: 450px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

footer nav {
  margin: var(--medium-margin) auto;
}

footer nav:first-child {
  margin-top: 0;
}

footer nav:last-child {
  margin-bottom: 0;
}

footer nav a {
  margin: 0 var(--small-margin);
  color: var(--attention-color);
  font-weight: 00;
  text-decoration: underline;
}

footer nav a:hover {
  text-decoration: none;
}

footer nav a:first-child {
  margin-left: 0;
}

footer nav.secondary {
  line-height: 2;
}

footer nav.secondary a {
  color: var(--text-color);
}

footer nav.credits {
  display: flex;
  font-size: 90%;
}

footer nav.credits a {
  margin: 0;
}

footer nav.credits a.smmall {
  color: var(--text-color);
  font-weight: bold;
  margin-right: var(--large-margin);
}

/* Inside */

.inside header {
  text-align: center;
}

.inside header h1 {
  font-size: 250%;
  font-weight: 300;
  margin: var(--large-margin) 0 0 0;
}

@media only screen and (max-width: 450px) {
  .inside header h1 {
    margin-bottom: var(--large-margin) !important;
  }
}

.inside header strong {
  color: var(--emphasis-color);
}

.inside header h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--small-margin) var(--x-large-margin) var(--x-large-margin) var(--x-large-margin);
}

@media only screen and (max-width: 450px) {
  .inside header h2 {
    display: none;
  }
}

.inside header h2 img {
  width: 100px;
  margin: 0 var(--small-margin);
}
.inside header h2 a {
  display: flex;
}
.inside header h2 img.static {
  width: 150px;
}

.inside {
  text-align: center;
}

.inside h3 {
  font-size: 140%;
  font-weight: 400;
  line-height: 1.5;
  margin: var(--large-margin) 0;
}

/* Content */

.content {
  background: white;
  border-radius: 6px;
  padding: var(--large-margin);
  box-sizing: border-box;
}

.content h1 strong, .content h2 strong, .content h3 strong, .content h4 strong {
  color: var(--emphasis-color);
}

/* Play button */

.play-button {
  display: flex;
  align-content: center;
  align-items: center;
  color: black;
  background: white;
  z-index: 10;
  transition: background-color 0.2s linear;
  /* border: 2px solid rgb(80, 90, 162); */
  border: 4px solid black;
  padding: var(--small-margin) var(--large-margin);
  border-radius: 35px;
  white-space: nowrap;
  font-weight: 700 !important;
  justify-content: center;
  font-size: 140%;
}

.play-button.secondary {
  border: 0;
  display: none;
  margin-top: var(--medium-margin);
}

.play-button svg {
  margin-right: var(--small-margin);
}

/* Homepage Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center; justify-content: center; flex-direction: column;
  margin-top: -30px;
}

.hero .play-button {
  position: absolute;
  margin-top: -50px;
}

.hero .processed {
  margin-top: var(--small-margin);
}

.callout {
  font-weight: 300;
  font-size: 120%;
  line-height: 150%;
  /* border: 3px solid black; */
  /* border-radius: 25px; */
  padding: 25px;
  /* transform: rotate(-1.5deg); */
  /* margin: 0 50px; */
}
.callout a {
  font-size: 120%;
}

.callout-box {
  font-weight: 300;
  font-size: 150%;
  line-height: 150%;
  border: 3px solid black;
  border-radius: 25px;
  padding: 25px;
  transform: rotate(-1.5deg);
  margin: 0 50px;
}
.callout-box a {
  font-size: 120%;
}

@media only screen and (max-width: 450px) {
  .hero img {
    display: none;
  }
  .hero .play-button {
    position: static;
    margin-top: 55px;
  }
}

@media only screen and (max-width: 1200px) {
  .hero img {
    max-width: 100%;
  }  
}

/* Homepage Features */

.features {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 450px) {
  .features {
    flex-direction: column;
  }
}

.features .feature {
  padding: var(--medium-margin);
  flex-basis: 33%;
  flex-grow: 0;
}

.features .feature:first-child {
  padding-left: 0;
}

.features .feature:last-child {
  padding-right: 0;
}

.features .feature h4 {
  color: var(--emphasis-color);
  font-size: 120%;
}

/* Pricing */
.pricing-boxes {
  display: grid;
  grid-gap: var(--large-margin);
  grid-template-columns: repeat(3,1fr);
}

.pricing .inside {
  width: 1020px;
  max-width: 90%;
}

.pricing .price:first-child {
  border-top: 0;
}

.price h3 {
  color: var(--emphasis-color);
  font-family: 'Roboto', sans-serif;
  margin-bottom: var(--small-margin);
}

.price h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 200%;
}

.price h2 {
  margin-bottom: 0;
}

.price h5 {
  margin-top: 0;
}

.pricing .faqs {
  text-align: left;
}

.pricing .faqs h2 {
  font-size: 180%;
}

.pricing .faqs h4 {
  font-size: 150%;
}

.pricing del {
  opacity: 0.3;
}

.black-friday {
  border-radius: 25px;
  padding: 0 0 5px 0;
  transform: rotate(-1.5deg);
  width: 50%;
  margin: 25px auto;
  background: var(--attention-color);
  color: white;
}

/* Get Started */

.get-started .background-bar {
  height: 100%;
}
.get-started .header header .logo {
  width: 100%;
  text-align: center;
}

.get-started .header header nav {
  display: none;
}

.get-started .button.google {
  font-size: 130%;
  padding: var(--small-margin) var(--medium-margin);
}

.get-started footer {
  display: none;
}

.get-started .content h1 {
  margin-bottom: var(--small-margin);
}

.get-started .content h2 {
  margin-top: 0;
}

.get-started .content p {
  line-height: 1.5;
}

/* Solutions */

.solutions .callout {
  display: flex;
  padding: var(--large-margin);
  align-items: center;
}

.solutions .callout:nth-child(even) {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 375px) {
  .solutions .callout, .solutions .callout:nth-child(even) {
    flex-direction: column;
  }
  .solutions .callout-content, .solutions .callout:nth-child(even) .callout-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.solutions .callout-content {
  text-align: left;
  padding-left: var(--x-large-margin);
}

.solutions .callout:nth-child(even) .callout-content {
  padding-left: 0;
  padding-right: var(--x-large-margin);
}

.solutions .callout-content h3 {
  color: var(--emphasis-color);
  font-size: 160%;
}

.solutions .callout-content p {
  font-size: 130%;
  font-weight: 300;
  line-height: 1.4;
}

.solutions .solutions-footer h2 {
  font-weight: 300;
  line-height: 1.5;
  margin-top: var(--large-margin);
  margin-bottom: 0;
}

.solutions .solutions-footer .box {
  margin-top: var(--large-margin);
}

/* content */

.content-inside {
  text-align: left;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid black;
}

.content-inside .wide {
  width: 1000px;
  margin-left: -100px;
  max-width: inherit;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1000px) {
  .content-inside .wide {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.content-inside p, .content-inside li {
  font-size: 120%;
  line-height: 1.5;
  font-weight: 300;
}

.content-inside li {
  margin-bottom: 1rem;
}

.content-inside h2 {
  margin-top: 3rem;
}

.content-inside p:first-of-type {
  margin-top: 0;
}

.content-inside img, .content-inside video {
  max-width: 100%;
  border-radius: 8px;
}

.content-inside h3 {
  margin-top: 3.5rem;
  font-weight: 700;
}

/* Support */

.support .background-bar {
  height: 400px;
}

.support .inside {
  width: 600px;
  box-sizing: border-box;
}

.support .inside .content {
  padding: var(--x-large-margin);
}

.support .support-box {
  display: flex;
  align-items: flex-start;
}

.support form input[type='email'], .support form textarea {
  border-radius: 3px;
  padding: var(--small-margin) var(--small-margin);
  border: 0;
  font-size: 120%;
  background: rgba(0,0,0,0.1)
}

.support form input[type='email']:focus, .support form textarea:focus {
  background: rgba(0,0,0,0.01)
}

.support form textarea {
  width: 440px;
  height: 150px;
}

.support form {
  text-align: left;
}

.support form button {
  font-size: 100%;
  padding: var(--small-margin) var(--medium-margin);
  border: 0;
  margin-top: var(--large-margin);
}

.support label {
  padding: var(--small-margin) 0;
  display: block;
}


/* video */

.video#tour-video {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.2s, visibility 0.2s;
	transition: opacity 0.2s, visibility 0.2s;
}

.video {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.507);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.video iframe {
	max-width: 100%;
	z-index: 10;
}
.video .close {
	display: block;
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	text-indent: -1000px;
	overflow: hidden;
}
