/* Solid Colors */
/* Solid Gradients */
/* Shadows */
/* Gradient Overlays */
/**********************/
/*    0-640px wide    */
/**********************/
/* Core Element Styles */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "proxima-nova", Sans-Serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}
body {
  display: block ! important;
}
section,
footer {
  overflow: hidden;
}
/* Core Typography */
h1 {
  font-size: 60px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .5em;
}
h2 {
  font-size: 26px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .5em;
}
h3 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
p {
  margin: 0 0 1em;
}
img {
  max-width: 100%;
}
/* Type Classes & Mods */
.label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.massive {
  font-size: 60px;
}
.great {
  font-size: 24px;
}
.large {
  font-size: 16px;
}
.medium {
  font-size: 16px;
}
.small {
  font-size: 14px;
}
.tiny {
  font-size: 12px;
}
.bolder {
  font-weight: 600;
}
.pill {
  border-radius: 9999px;
}
.rect {
  border-radius: 4px;
}
.link-no-style {
  color: inherit;
  text-decoration: none;
}
/* Hide or Show Classes */
.hide-on-mobile {
  display: none;
}
.hide-inline-on-mobile {
  display: none;
}
.show-inline-on-mobile {
  display: inline;
}
.dont-break {
  display: inline-block;
}
/* Button Classes */
.button {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}
.button-white {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background: #ffffff;
  color: #fd5b79;
}
.button-hollow {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  border-color: #fff8b3;
  color: #fff8b3;
}
.button-hollow:hover {
  color: #fd5b79;
  background: #ffffff;
  border-color: #ffffff;
}
.button-switch {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 4px;
  border: 1px solid #290B32;
}
.button-switch:first-child {
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.button-switch:last-child {
  border-left-width: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.switch-on {
  background: #290B32;
  color: #ffffff;
}
.switch-off {
  background: transparent;
  color: #290B32;
  opacity: .6;
}
.switch-off:hover {
  opacity: 1;
}
.global-login-button {
  display: inline-block;
}
.global-login-button input[type=submit] {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background: #ffffff;
  color: #fd5b79;
}
.download-button {
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  transition: 0.15s all ease-out;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  top: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  border-color: #fff8b3;
  color: #fff8b3;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}
.download-button:hover {
  color: #fd5b79;
  background: #ffffff;
  border-color: #ffffff;
}
.download-button:hover {
  transition: .2s all;
}
/* Cloud Keyframing */
@keyframes cloudsDrift-large {
  0% {
    left: -50%;
    opacity: 0;
  }
  5% {
    opacity: .8;
  }
  95% {
    opacity: .8;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@keyframes cloudsDrift-medium {
  0% {
    left: -50%;
    opacity: 0;
  }
  5% {
    opacity: .5;
  }
  95% {
    opacity: .5;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@keyframes cloudsDrift-small {
  0% {
    left: 5%;
    opacity: 0;
  }
  5% {
    opacity: .3;
  }
  95% {
    opacity: .3;
  }
  100% {
    left: 95%;
    opacity: 0;
  }
}
/* Grid */
.content-row {
  display: block;
  margin: 0 20px;
}
/* Background Colors & Gradients by Page Section */
#intro {
  background: linear-gradient(-135deg, #fd5b79 0%, #ff7c7a 100%);
}
#pricing {
  background: linear-gradient(0deg, #57ad79 0%, #b5c955 49%, #dbd169 100%);
}
#product-details {
  background: linear-gradient(-135deg, #fd5b79 0%, #ff7c7a 100%);
}
#testimonial {
  background: #ffffff;
  color: #290B32;
}
#support {
  background: #290B32;
}
#footer {
  background: #4F2D48;
}
.summary,
.product-demo {
  background: linear-gradient(0deg, rgba(255, 229, 116, 0.4) 0%, rgba(255, 229, 116, 0) 100%);
}
/* Page Section-specific Styles */
#intro .global-nav a {
  color: inherit;
  text-decoration: none;
}
#intro .global-nav .content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
#intro .global-nav .content-row .global-nav-links a {
  opacity: .8;
  margin-right: 20px;
}
#intro .global-nav .content-row .global-nav-links a:hover {
  opacity: 1;
  transition: .2s all;
}
#intro .global-nav .content-row .global-login-button input[type=submit] {
  position: relative;
}
#intro .global-nav .content-row .global-login-button input[type=submit]:hover {
  top: -2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#intro .global-nav .content-row .global-login-button input[type=submit]:focus {
  outline: none;
  top: -2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#intro .hero .hero-screenshot {
  position: relative;
  transition: all .3s;
  top: 0px;
  left: 0px;
}
#intro .hero .hero-screenshot .hero-ui {
  position: relative;
  z-index: 2;
  top: 0px;
  margin-bottom: 0px;
  transition: all 0.3s;
}
#intro .hero .hero-screenshot .hero-deco {
  display: none;
  opacity: 1;
  width: 320px;
  position: absolute;
  margin: 0 auto;
  z-index: 1;
  top: -70px;
  left: 60px;
  transition: all 0.3s;
}
#intro .hero .hero-screenshot:hover {
  top: 0;
  left: 0;
}
#intro .hero .hero-screenshot:hover .hero-deco {
  opacity: .8;
  top: -50px;
  left: 80px;
  width: 280px;
}
#intro .hero .hero-details h1 {
  margin-top: 1.05em;
  margin-bottom: .5em;
}
#intro .hero .hero-details .hero-summary {
  font-size: 16px;
  display: block;
  position: relative;
  margin-bottom: 2em;
}
#intro .hero .hero-details .hero-summary .sketch-logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 42px;
  height: 28px;
  top: -3px;
}
#intro .hero .hero-details .hero-summary .sketch-logo .sparkle {
  position: absolute;
  width: 41px;
  height: 30px;
}
#intro .hero .hero-details .hero-summary .sketch-logo .sketch {
  position: relative;
  top: 2px;
  left: 7px;
}
#intro .hero .hero-details .mailchimp input[type=email] {
  font-size: 16px;
  height: 40px;
  margin-top: 1em;
  padding-left: 0;
  line-height: 40px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  background: none;
  border-radius: 0;
  border-width: 0 0 2px 0;
  border-color: #fff8b3;
  outline: none;
  width: 98%;
}
#intro .hero .hero-details .mailchimp input[type=email]::-webkit-input-placeholder {
  color: #ffffff;
}
#intro .hero .hero-details .mailchimp input[type=submit] {
  font-size: 24px;
  display: inline;
  margin: 0;
  width: auto;
  padding: 0;
  border: 0;
  font-weight: 400;
  cursor: pointer;
  background: none;
  color: #fff8b3;
  margin-left: -50px;
  padding-left: 15px;
}
#intro .hero .hero-details .landing-mailing-list-message {
  font-size: 12px;
  margin-top: 1em;
  margin-bottom: 4em;
}
#intro .hero .hero-details .twitter {
  padding: 3em 0;
}
#intro .hero .hero-details .hero-download,
#intro .hero .hero-details .hero-requirement {
  display: none;
  font-size: 12px;
  margin-bottom: 2em;
}
#intro .summary {
  position: relative;
  padding: 0 0 4em;
}
#intro .summary .frisbee {
  max-width: 260px;
}
#pricing {
  padding-bottom: 2em;
  position: relative;
}
#pricing .pricing-details {
  position: relative;
  padding: 4em 0 2em;
  z-index: 10;
}
#pricing .pricing-details h2 {
  margin-bottom: .4em;
}
#pricing .pricing-details .pricing-model {
  position: static;
  margin: 2em 0 1em;
}
#pricing .pricing-details .pricing-model a {
  font-size: 16px;
  color: #fff8b3;
  text-decoration: none;
}
#pricing .pricing-details .pricing-model a img {
  padding-right: 5px;
}
#pricing .pricing-calculator {
  z-index: 11;
  position: relative;
  padding: 2em 30px;
  text-align: center;
  background: #ffffff;
  color: #290B32;
  border-radius: 4px;
}
#pricing .pricing-calculator h3 {
  margin-bottom: 2em;
}
#pricing .pricing-calculator .pricing-amount {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: .5em;
}
#pricing .pricing-calculator .pricing-amount span {
  font-size: 60px;
  font-weight: 900;
  vertical-align: middle;
  line-height: .8;
}
#pricing .pricing-calculator .pricing-users {
  padding: 0 30px;
}
#pricing .pricing-calculator .pricing-users .pricing-users-count {
  font-size: 28px;
  font-weight: 600;
  color: #fd5b79;
}
#pricing .pricing-calculator .pricing-users .pricing-slider {
  position: relative;
  height: 30px;
  margin-bottom: 1em;
}
#pricing .pricing-calculator .pricing-users .pricing-slider .pricing-slider-bar {
  border-radius: 9999px;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  right: 0;
  background-color: #cdcccd;
}
#pricing .pricing-calculator .pricing-users .pricing-slider .pricing-slider-fill {
  border-radius: 9999px;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  right: 0;
  background-color: #fd5b79;
  transform: scale(0, 1);
  transform-origin: 0 50%;
}
#pricing .pricing-calculator .pricing-users .pricing-slider .pricing-slider-knob {
  border-radius: 9999px;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 30px;
  width: 30px;
  background: transparent url(../landing/slider-hamburger.svg) 0 0 no-repeat;
  box-shadow: 0 4px 8px rgba(41, 11, 50, 0);
  transition: box-shadow 0.1s ease-in-out;
}
#pricing .pricing-calculator .pricing-users .pricing-slider .pricing-slider-knob:hover {
  box-shadow: 0 4px 8px rgba(41, 11, 50, 0.2);
}
#pricing .pricing-calculator .pricing-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#pricing .pricing-calculator .pricing-cycle-switch {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}
#pricing .pricing-calculator .pricing-cycle-switch .button-switch {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 15px;
}
#pricing .pricing-flag {
  position: absolute;
  width: 100px;
  top: 0;
  left: 0;
}
#pricing .park {
  z-index: 0;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1400px;
}
#pricing .park .park-piece {
  position: absolute;
  z-index: 0;
}
#pricing .park .picnic {
  top: -25px;
  right: 4%;
}
#pricing .park .path1 {
  bottom: -40px;
  right: 0%;
}
#pricing .park .path2 {
  top: 440px;
  left: -60px;
}
#pricing .park .tree-small {
  bottom: 50px;
  right: 5%;
}
#pricing .park .tree-medium {
  bottom: 180px;
  right: 15%;
}
#pricing .park .tree-medium2 {
  top: 5px;
  left: 20%;
}
#pricing .park .tree-large {
  top: 260px;
  left: -7%;
}
#pricing .park .ducks {
  display: none;
}
#product-details {
  padding: 4em 0 0 0;
}
#product-details .product-features {
  padding-bottom: 4em;
}
#product-details .product-features .feature {
  margin-bottom: 3em;
}
#product-details .product-features .feature:last-child {
  margin-bottom: 0;
}
#product-details .backgroundzz {
  background: linear-gradient(0deg, rgba(255, 229, 116, 0.4) 0%, rgba(255, 229, 116, 0) 100%);
}
#product-details .product-demo {
  position: relative;
  margin-bottom: -10px;
  background: url(../landing/sunset-background.png) center bottom repeat-x;
}
#product-details .product-demo .sunset-piece {
  position: absolute;
  z-index: 20;
}
#product-details .product-demo .back-piece {
  z-index: 1;
}
#product-details .product-demo .content-row {
  position: relative;
}
#product-details .product-demo .content-row .sketch-client {
  z-index: 10;
  position: relative;
}
#product-details .product-demo .content-row .front-left {
  width: 80px;
  left: -9%;
  bottom: 0;
}
#product-details .product-demo .content-row .front-right {
  width: 80px;
  right: -8%;
  bottom: 0;
}
#product-details .product-demo .content-row .clouds-md {
  width: 60px;
  right: -500%;
  bottom: 120px;
  animation: cloudsDrift-medium 120s 15s infinite;
  animation-timing-function: linear;
  opacity: .5;
}
#product-details .product-demo .content-row .clouds-lg {
  width: 130px;
  left: -500%;
  bottom: 180px;
  animation: cloudsDrift-large 60s infinite;
  animation-timing-function: linear;
  opacity: .8;
}
#product-details .product-demo .clouds-sm {
  width: 60px;
  right: 40%;
  top: 150px;
  animation: cloudsDrift-small 240s 7s infinite;
  animation-timing-function: linear;
  opacity: .3;
}
#testimonial {
  overflow: visible;
  text-align: center;
  position: relative;
  z-index: 20;
}
#testimonial .content-row {
  padding-bottom: 4em;
}
#testimonial img {
  opacity: 0;
  width: 70px;
  margin-top: -30px;
  margin-bottom: 1.5em;
  border-radius: 50px;
}
#testimonial .customer-quote {
  font-size: 16px;
  font-weight: 600;
}
#testimonial .customer-name {
  margin-bottom: 0;
}
#testimonial .customer-company {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
}
#support {
  padding: 4em 0 6em;
}
#support h2 {
  margin-bottom: 2em;
}
#support .support-button {
  margin-bottom: 2em;
}
#support .support-button a {
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  color: #ffffff;
}
#support .support-button a:hover {
  transition: all .2s;
}
#support .support-button a img {
  margin: 0 30px 0 0;
}
#support .support-button a span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 3;
}
#support .support-button a p {
  font-size: 16px;
  margin: 0;
}
#support .toc span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 3;
}
#support .toc p {
  margin: 0;
}
#support .toc p a {
  color: inherit;
  text-decoration: none;
}
#support .toc p a:hover {
  color: #fd5b79;
  transition: color 0.1s ease-in-out;
}
#footer .content-row {
  padding: 3em 0;
}
#footer .footer-screens {
  display: none;
}
/**********************/
/*    0-640px wide    */
/**********************/
@media only screen and (min-width: 640px) {
  /* Grid */
  .content-row {
    width: 480px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1040px) {
  /* Typography */
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 36px;
    font-weight: 600;
  }
  h3 {
    font-size: 14px;
  }
  p {
    margin: 0 0 1em;
  }
  /* Type Classes & Mods */
  .label {
    font-size: 12px;
  }
  .massive {
    font-size: 100px;
  }
  .great {
    font-size: 28px;
  }
  .large {
    font-size: 20px;
  }
  .medium {
    font-size: 16px;
  }
  .small {
    font-size: 14px;
  }
  .tiny {
    font-size: 12px;
  }
  /* Grid */
  .background-row {
    width: 100%;
  }
  .content-row {
    width: 980px;
    margin: 0 auto;
    padding: 2em 0;
    display: flex;
    justify-content: space-between;
  }
  .columns-full .block {
    width: 100%;
  }
  .columns-full-padded {
    justify-content: center;
  }
  .columns-full-padded .block {
    width: 80%;
    text-align: center;
  }
  .columns-halves .block {
    width: 47%;
  }
  .columns-thirds .block {
    width: 32%;
  }
  .columns-thirds-narrow .block {
    width: 28%;
  }
  /* Hide or Show */
  .hide-on-mobile {
    display: block;
  }
  .hide-inline-on-mobile {
    display: inline;
  }
  .show-inline-on-mobile {
    display: none;
  }
  /* Styles By Page Section */
  #intro .summary {
    padding: 0 0 6em;
  }
  #intro .summary p {
    padding: 0 5em;
  }
  #intro .hero .hero-screenshot .hero-ui {
    top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 30px rgba(41, 11, 50, 0.2);
  }
  #intro .hero .hero-screenshot .hero-deco {
    display: block;
  }
  #intro .hero .hero-screenshot:hover {
    top: -10px;
  }
  #intro .hero .hero-screenshot:hover .hero-ui {
    box-shadow: 0 16px 70px rgba(41, 11, 50, 0.2);
  }
  #intro .hero .hero-details .hero-summary {
    font-size: 20px;
  }
  #intro .hero .hero-details .mailchimp input[type=email] {
    font-size: 16px;
    width: 75%;
  }
  #intro .hero .hero-details .mailchimp input[type=email]::-webkit-input-placeholder {
    color: #ffffff;
    opacity: .85;
  }
  #intro .hero .hero-details .mailchimp input[type=submit] {
    font-size: 28px;
    display: inline;
    margin: 0;
    width: auto;
    padding: 0;
    border: 0;
    font-weight: 400;
    cursor: pointer;
    background: none;
    color: #fff8b3;
    margin-left: -50px;
    padding-left: 15px;
  }
  #intro .hero .hero-details .twitter a img {
    opacity: .85;
    transition: opacity .2s;
  }
  #intro .hero .hero-details .twitter a img:hover {
    opacity: 1;
  }
  #pricing {
    padding-bottom: 0;
    overflow: visible;
  }
  #pricing .content-row {
    position: relative;
    padding: 0;
  }
  #pricing .content-row .pricing-details {
    padding: 6em 0 8em;
  }
  #pricing .content-row .pricing-details .pricing-model {
    position: absolute;
    bottom: 45px;
    left: 0;
  }
  #pricing .content-row .pricing-calculator {
    position: absolute;
    top: -30px;
    bottom: 0;
    left: 52%;
    right: 0;
    border-radius: 4px 4px 0 0;
  }
  #pricing .content-row .pricing-calculator .pricing-amount {
    font-size: 28px;
  }
  #pricing .content-row .pricing-calculator .pricing-amount span {
    font-size: 100px;
  }
  #pricing .content-row .pricing-calculator .pricing-flag {
    width: 150px;
  }
  #pricing .background-row {
    z-index: 1;
  }
  #pricing .background-row .picnic {
    top: -60px;
    right: 85%;
  }
  #pricing .background-row .path1 {
    bottom: -90px;
    right: -6%;
  }
  #pricing .background-row .path2 {
    top: -80px;
    left: 20%;
  }
  #pricing .background-row .tree-small {
    top: 180px;
    left: 45%;
  }
  #pricing .background-row .tree-medium {
    bottom: 70px;
    left: 4%;
  }
  #pricing .background-row .tree-medium2 {
    top: 40px;
    left: 87%;
  }
  #pricing .background-row .tree-large {
    top: 180px;
    left: 91%;
  }
  #pricing .background-row .ducks {
    bottom: -20px;
    left: 40%;
    display: block;
  }
  #product-details {
    padding: 0;
  }
  #product-details .product-features {
    padding-top: 6em;
    padding-bottom: 4em;
  }
  #product-details .product-features .feature {
    margin-bottom: 0;
  }
  #product-details .product-demo {
    background: url(../landing/sunset-background.png) center bottom repeat-x;
  }
  #product-details .product-demo div {
    padding-bottom: 0;
  }
  #product-details .product-demo .content-row .sketch-client {
    max-height: 547px;
    height: auto;
    width: auto;
    display: block;
  }
  #product-details .product-demo .content-row .front-left {
    width: 160px;
    left: -9%;
  }
  #product-details .product-demo .content-row .front-right {
    width: 160px;
    right: -7%;
  }
  #product-details .product-demo .content-row .clouds-md {
    width: 120px;
    right: -500%;
    bottom: 260px;
  }
  #product-details .product-demo .content-row .clouds-lg {
    width: 260px;
    left: -500%;
    bottom: 380px;
  }
  #product-details .product-demo .clouds-sm {
    width: 120px;
    right: -500%;
    top: 350px;
  }
  #testimonial img {
    width: 100px;
    margin-top: -60px;
    margin-bottom: 2em;
  }
  #testimonial .customer-quote {
    font-size: 20px;
    font-weight: 600;
  }
  #testimonial .customer-name {
    margin-bottom: 0;
  }
  #testimonial .customer-company {
    font-size: 12px;
  }
  #testimonial .content-row {
    padding-bottom: 6em;
  }
  #support h2 {
    margin-bottom: 0;
  }
  #support .support-button {
    position: relative;
  }
  #support .support-button a {
    position: relative;
    display: block;
    top: 0;
    text-align: center;
    border-radius: 4px;
    padding: 4em 0;
    opacity: .85;
    transition: all .2s;
  }
  #support .support-button a img {
    margin: 0 0 30px;
    margin-bottom: 10px;
  }
  #support .support-button a span {
    font-size: 12px;
    line-height: 3;
  }
  #support .support-button a p {
    font-size: 20px;
    margin: 0;
  }
  #support .support-button a:hover {
    top: -5px;
    opacity: 1;
  }
  #support .support-button:nth-child(1) a:hover {
    background: linear-gradient(0deg, #fd5b79 0%, #fe9465 100%);
  }
  #support .support-button:nth-child(2) a:hover {
    background: linear-gradient(0deg, #56acce 0%, #9781ea 100%);
  }
  #support .support-button:nth-child(3) a:hover {
    background: linear-gradient(0deg, #57ad79 0%, #b5c955 49%, #dbd169 100%);
  }
  #support .toc p {
    font-size: 20px;
  }
  #footer {
    overflow: visible;
  }
  #footer .footer-screens {
    display: block;
    margin-top: -180px;
    margin-bottom: -20px;
  }
}