main {font-weight: 300;}
.landing {
  padding: 0;
  background-image: none;
}
.landing section.featured:before {
  background-image: var(--gray-background-pattern);
}
.landing section.production-tools:before {
  background-image: var(--alt-background-pattern);
  z-index: -1;
}
.landing section a:-webkit-any-link{
  color: #279DDB;
  font-weight: 700;
}

.landing section:before, .content section:before{
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  background-image: var(--background-pattern);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #CACACA;
  z-index: -1;
}
.landing section:after { clear:both; }
.landing section.reverse:before{
  background-image: var(--gradient-315);
}

.landing section{
  position: relative;
  width: 100vw;
  height: 100%;
  padding: 20px 0;
}
.landing section h1, h2 {
  color: #3a558c;
   /* Will override color (regardless of order) */
  -webkit-text-fill-color: #FFF;
  margin: 0;
  line-height: 120%;
  font-weight: 600;
  font-family: var(--impact-font);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 2px 4px 4px rgba(0,0,0,0.15),
                 0px -5px 10px rgba(255,255,255,0.1);
}
.landing section h1.dark, h2.dark {
  color: #3a558c;
   /* Will override color (regardless of order) */
  -webkit-text-fill-color: #3a558c;
}
.landing p{
  font-weight: 700;
  font-size: 16px;
  margin-top: 0px;
  text-align: center;
  z-index: 1;
  width: 90vw;
  max-width: 800px;
  text-align: justify;
}

/*Hero Image section*/
.landing section.hero{
  margin-top: 55px;
  height: calc(100vh - 55px);
  max-height: 1080px;
}

.landing section.hero .hero-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 1080px;
  height: calc(100vh - 130px);
  flex-direction: column;
  color: #fffc;
}
.landing section.hero h1 {
  color: #465572;
  font-size: 70px;
  margin-top: 0;
  -webkit-text-fill-color: #3a558c;
  /* -webkit-text-stroke-width: 2px; */
  /* -webkit-text-stroke-color: #FFF; */
}
.landing section.hero h2 {
  margin-bottom: 0px;
  font-size: 50px;
  -webkit-text-fill-color: rgba(0,0,0,0.6);
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #FFF;
}
.landing section.hero h3 { margin: 0; }
.landing section.hero p {
  width: 50vw;
  min-width: 282px;
  /* background-color: rgba(100,100,100,0.75); */
  padding: 15px;
  font-size: 16px;
  margin: 30px auto;
  color: rgba(0,0,0,0.6);
  text-align: justify;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
}
.landing section.hero p a, a:visited, a:hover, a:active {
  color: inherit;
}
.landing section.hero:before{
  background-image: url("../images/landing/layered_waves.jpg");
  border-bottom: none;
  background-position: left;
}
.landing section.hero #try-tunepad {
  width: 180px;
  height: 50px;
  min-height: 50px;
  background-color: #3a558c;
  color: #FFFFFE;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  margin: 0px;
  border-radius: 25px;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.175s all;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.landing section.hero #try-tunepad:hover {
  background-color: rgba(58, 85, 140, 0.75);
  color: #FFF;
  border: 2px solid rgba(255,255,255,0.85);
}

/* Instrument Preview section */
.landing section.preview .preview{
  min-height: 100vh;
}
.landing section.preview .instrument-preview{
  display: grid;
  min-width: 55vw;
  min-height: 350px;
  grid-template-columns: 0.60fr 0.4fr;
  grid-template-rows: 0.35fr 0.25fr 0.4fr;
  grid-template-areas:
    "instrument tagline"
    "instrument p"
    "instrument instrument-icons";
  margin-bottom: 25px;
}
.landing section.preview .instrument-preview-container{
  grid-area: instrument;
  align-self: center;
  justify-self: end;
}
.landing section.preview .tagline{
  grid-area: tagline;
  z-index: 1;
  padding-bottom: 10px;
  padding-left: 50px;
  align-self: end;
}
.landing section.preview p{
  align-self: start;
  max-width: 290px;
  width: 100%;
  text-align: left;
  grid-area: p;
  z-index: 1;
  padding-left: 50px;
}
.landing section.preview .instrument-icons{
  grid-area: instrument-icons;
  background-color: #FFF;
  z-index: 1;
  align-self: start;
}
.landing section.preview #instrument-preview{
  display: flex;
  min-height: 645px;
  min-width: 300px;
  max-width: 600px;
  width: 50vw;
  align-items: center;
  justify-content: center;
  background-image: url(../images/landing/preview-bass.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover !important;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: none;
}
.landing section.preview #instrument-preview .track-container{
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  width: 100%;
}
.landing section.preview #instrument-preview .gadget-container{
  grid-row-start: 1;
  grid-column-start: 1;
  max-width: 600px;
  min-width: 200px;
  margin: 0px auto;
}
.landing section.preview #instrument-preview .last-saved{
  display: none;
}
.landing section.preview #instrument-preview .menu-button,
.landing section.preview #instrument-preview .record-button,
.landing section.preview #instrument-preview .collapse-cell-button {
  display: none;
}
.landing section.preview .timeline-view-selector {
  display: none;
}
.landing section.preview #instrument-preview .tunepad-logo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: url('../images/logo_headphones_animated.svg');
  background-position: center;
  background-size: 65%;
  background-color: #FFF;
  background-repeat: no-repeat;
  position: absolute;
}
.landing section.preview .instrument-icons {
    display: flex;
    justify-content: space-between;
    /* height: 80px; */
    width: 290px;
    background-color: #FFFFFE;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 100px;
    align-items: center;
    margin-left: 50px;
    flex-wrap: wrap;
}
.landing section.preview .icon {
  display: flex;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 5px;
  cursor: default;
  border-radius: 50%;
  background-image: url('../images/instruments/bass.svg');
  background-position: center;
  background-size: 65%;
  background-color: pink;
  background-repeat: no-repeat;
}
.landing section.preview .icon:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.landing section.preview .icon.guitar {
  background-color: var(--guitar-color);
  background-image: url('../images/instruments/bass.svg');
}
.landing section.preview .icon.bass {
  background-color: var(--bass-color);
  background-image: url('../images/instruments/bass.svg');
}
.landing section.preview .icon.piano {
  background-color: var(--piano-color);
  background-image: url('../images/instruments/synth.svg');
}
.landing section.preview .icon.drums {
  background-color: var(--drum-color);
  background-image: url('../images/instruments/drumkit.svg');
}
.landing section.preview .icon.selected{
  border: 3px #c5bebb solid;
}

/* TunePad video/learning section */
.landing section.learning .tagline{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.landing section.learning .video-wrapper{
  display: flex;
  min-width: 55vw;
  min-height: 400px;
  flex-direction: column;
  margin-bottom: 50px;
  padding: 0 15px;
}

.landing section.learning p{
  margin-top: 20px;
  color: #FFFF;
}
.landing section.learning #tunepad-short{
  max-width: 100%;
  grid-area: tunepad-video;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  min-height: 450px;
}
.landing section.learning #tunepad-short iframe{
  flex-grow: 1;
  border: none;
  margin: 0;
  padding: 0;
}

/* Production tools Section */
.landing section.production-tools .tagline{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.landing section.production-tools h1{
  margin-right: 5px;
}
.landing section.production-tools .production-tools-wrapper {
  margin: 0 auto;
  display: grid;
  min-width: 55vw;
  max-width: 90vw;
  min-height: 700px;
  grid-template-columns: 0.5fr 0.5fr;
  grid-template-rows: 0.25fr 0.25fr 0.25fr 0.25fr;
  grid-template-areas:
    "daw daw"
    "daw-description daw-description"
    "recorder tagline-first"
    "mixer ul";
}
.landing section.production-tools .production-tools-wrapper .tagline{
  z-index: 1;
  justify-self: end;
  align-self: end;
}
.landing section.production-tools .production-tools-wrapper .tagline.first{
  grid-area: tagline-first;
  align-self: end;
  justify-self: left;
  padding-left: 20px;
  margin-bottom: 0;
  margin-left: 15px;
}

.landing section.production-tools .production-tools-wrapper .tagline.second h1,
.landing section.production-tools .production-tools-wrapper .tagline.second h2{
  text-align: right;
  padding-right: 10px;
}

.landing section.production-tools .production-tools-wrapper ul{
  z-index: 1;
  justify-self: left;
  align-self: start;
  grid-area: ul;
  padding-left: 20px;
  margin-top: 25px;
  margin-left: 15px;
}
.landing section.production-tools .production-tools-wrapper ul.first{
  grid-area: ul-first;
  justify-self: start;
  padding: 20px;
}
.landing section.production-tools .production-tools-wrapper ul.second{
  grid-area: ul-second;
  justify-self: end;
  padding-right: 10px;
}
.landing section.production-tools .production-tools-wrapper .daw-img,
.landing section.production-tools .production-tools-wrapper .recorder-img,
.landing section.production-tools .production-tools-wrapper .mixer-img{
  height: auto;
  z-index: 1;
  justify-self: start;
  align-self: center;
  width: 95%;
  max-width: 640px;
  border-radius: 7px;
  margin: 0;
  box-shadow: var(--main-box-shadow);
}
.landing section.production-tools .production-tools-wrapper .daw-img{
  grid-area: daw;
  align-self: center;
  justify-self: center;
  margin-bottom: 25px;
  -webkit-filter:brightness(85%);
  filter:
  brightness(100%);
  transition: all 400ms;
  max-width: 1280px;
  margin: 0 0 25px 0;
}

.landing section.production-tools .production-tools-wrapper p{
  grid-area: daw-description;
  align-self: start;
  justify-self: center;
  margin-bottom: 25px;
}

.landing section.production-tools .production-tools-wrapper .recorder-img{
  grid-area: recorder;
  align-self: start;
  justify-self: end;
}
.landing section.production-tools .production-tools-wrapper .mixer-img{
  grid-area: mixer;
  justify-self: end;
  margin-top: 25px;
}

.landing section.production-tools .production-tools-wrapper ul.big-list.second{
  margin-top: 15px;
}
.landing section.production-tools .production-tools-wrapper ul.big-list.second li{
  text-align: left;
  justify-self: start;
}

/* Feature badges section */
.landing section.badges {
  padding: 25px 20px 1rem 20px;
}
.landing section.badges .section-header{
  margin-bottom: 0;
  padding-bottom: 2rem;
}
.landing section.badges .feature-row{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin: 0 auto 50px auto;
  flex-wrap: wrap;
  max-width: 800px;
}
.landing section.badges .feature {
  max-width: 200px;
  height: 200px;
  line-height: 120%;
  background-color: white;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  margin: 0 15px 15px 15px;
}
.landing section.badges .feature-img{
    max-width: 200px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: 78%;
    background-position: center 25%;
    background-image: url('../images/landing/feature-loop.svg');
}
.landing section.badges .loop-img { background-image: url('../images/landing/feature-loop.svg'); }
.landing section.badges .reuse-img { background-image: url('../images/landing/feature-reuse.svg'); }
.landing section.badges .remix-img { background-image: url('../images/landing/feature-remix.svg'); }
.landing section.badges .library-img { background-image: url('../images/landing/feature-library.svg'); }
.landing section.badges .produce-img { background-image: url('../images/landing/feature-produce.svg'); }
.landing section.badges .share-img { background-image: url('../images/landing/feature-share.svg'); }

.landing section.badges p {
  text-align: center;
  width: unset;
}

/* Community/testimonials section */
.landing section.testimonials #testimonials-container{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.landing section.testimonials .testimonial-wrapper{
  position: relative;
  /*background-color: rgba(255, 255, 255, 0.05);*/
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  /*color: rgba(255, 255, 255, 0.85);*/
  color: #344458;
  margin: 20px 40px;
  max-width: 425px;
  padding: 25px 50px;
  font-size: 16px;
  font-weight: 400;
}
.landing section.testimonials .testimonial-wrapper .fa-quote {
  color: #FD974E;
  font-size: 28px;
  position: absolute;
  top: 70px;
}
.landing section.testimonials .testimonial-wrapper .fa-quote-left {left: 10px;top: 25px;}
.landing section.testimonials .testimonial-wrapper .fa-quote-right {right: 10px;top: 25px;}
.landing section.testimonials .quote{
  line-height: 21px;
  text-align: justify;
  width: unset;
  font-family: var(--impact-font);
}
.landing section.testimonials .user-details-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
}
.landing section.testimonials .user-signature {
  font-weight: 600;
  margin: 2px 0;
  text-align: left;
  font-size: 14px;
  width: unset;
}
.landing section.testimonials .tagline-wrapper{
  display: flex;
  max-width: 80vw;
  height: 250px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 25px;
  justify-content: center;
}
.landing section.testimonials .statement{
  font-size: 17px;
  font-weight: 600;
  text-align: justify;
  max-width: 40vw;
  color: rgba(0,0,0,0.6);
}
.landing section.testimonials .tagline-wrapper .tagline{
  min-width: 185px;
}
.landing section.testimonials .social-account-wrapper{
  display: flex;
  flex-direction: column;
  margin: 30px auto 20px auto;
  width: 200px;
  align-items: center;
  justify-content: center;
}
.landing section.testimonials .social-account-wrapper .social-header{
  margin-bottom: 10px;
  width: 220px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
}
.landing section.testimonials .social-icon-wrapper{
  display: flex;
  padding: 10px;
  border-radius: 50px;
  flex-direction: row;
  width: 220px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: space-between;
}
.landing section.testimonials .social-icon-wrapper .social-link{text-decoration: none; !important;}
.landing section.testimonials .social-icon-wrapper .social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 45px;
  height: 45px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: #FFF;
}
.landing section.testimonials .social-icon .fab{
  font-size: 25px;
  color: white;
}
.landing section.testimonials .social-icon:hover{cursor: pointer; transition: all 0.25s;}
.landing section.testimonials .social-twitter{background-color: rgba(85, 172, 238, 0.6); !important;}
.landing section.testimonials .social-twitter:hover{background-color: rgba(85, 172, 238, 1.0); !important;}
.landing section.testimonials .social-instagram{background-color: rgba(199, 54, 171, 0.6); !important;}
.landing section.testimonials .social-instagram:hover{background-color: rgba(199, 54, 171, 1.0); !important;}
.landing section.testimonials .social-tiktok{background-color: rgba(1, 1, 1, 0.6); !important;}
.landing section.testimonials .social-tiktok:hover{background-color: rgba(1, 1, 1, 1.0); !important;}


/* Responsive grid */
@media only screen and (max-width: 925px){
  nav.top-nav a{
    /* line-height: unset; */
  }

  nav.top-nav a.my-tunes-link{
    line-height: unset;
  }

  .btn.login-link, .btn.logout-link{
    line-height: 36px;
  }

    /*instrument preview section */
  .landing section.preview p, .landing section.learning .video-wrapper p{
    text-align: center;
    z-index: 1;
    max-width: 70vw;
    padding-left: 0;
    margin: 25px auto;
  }
  .landing section.preview #instrument-preview{
    width: 95vw;
  }
  .landing section.preview .instrument-preview{
    grid-template-columns: 1fr;
    grid-template-rows: 0.2fr 0.25fr 0.45fr 0.1fr;
    grid-template-areas:
      "tagline"
      "p"
      "instrument"
      "instrument-icons";
    align-self: center;
  }
  .landing section.preview .instrument-preview-container{
    align-items: center;
    justify-content: center;
    justify-self: center;
  }
  .landing section.preview .instrument-preview-container .gadget-container{
    width: 95vw;
  }
  .landing section.preview .instrument-icons{
    margin: 10px auto 0 auto;
  }
  .landing section.preview .tagline{
    align-self: start;
    justify-self: center;
  }
  .landing section.learning .video-wrapper{
    grid-template-columns: 1fr;
    grid-template-areas:
      "tagline"
      "p"
      "tunepad-video";
  }
  .landing section.learning .video-wrapper .tagline{
    padding-left: 0;
    justify-self: center;
  }
  .landing section.learning .video-wrapper p{
    margin-bottom: 25px;
    text-align: justify;
  }
  .landing section.learning .video-wrapper #tunepad-short{
    height: 45vh;
  }

  .landing section.production-tools .section-header{
    color: var(--main-bg-color);
  }

  .landing section.production-tools .production-tools-wrapper{
    grid-template-columns: 1fr;
    grid-template-areas:
            "daw daw"
            "daw-description daw-description"
            "tagline-first tagline-first"
            "recorder recorder"
            "mixer mixer"
            "ul ul";;
  }
  .landing section.production-tools .production-tools-wrapper .daw-img{
    max-width: 90vw;
  }

  .landing section.production-tools .production-tools-wrapper .recorder-img,
  .landing section.production-tools .production-tools-wrapper .mixer-img{
    max-width: 550px;
  }
  .landing section.production-tools .tagline h1{
    color: #FFF;
    -webkit-text-fill-color: #FFF;
  }

  .landing section.production-tools .tagline.first h1.dark{
    color: unset;
    -webkit-text-fill-color: unset;
  }
  .landing section.production-tools .production-tools-wrapper .tagline.first,
  .landing section.production-tools .production-tools-wrapper ul
  {
    align-self: center;
    justify-self: center;
    margin-bottom: 15px;
  }
  .landing section.production-tools .production-tools-wrapper .recorder-img,
  .landing section.production-tools .production-tools-wrapper .mixer-img{
    margin: unset;
    align-self: center;
    justify-self: center;
  }
  .landing section.production-tools .production-tools-wrapper .mixer-img{
    margin-top: 15px;
  }

  .landing section.badges .feature{
    max-width: 180px;
  }
  footer, footer .footer-wrapper{
    max-width: 95vw;
    min-width: unset ;
  }
}

@media only screen and (max-width: 600px), screen and (max-width: 925px) {
  /*instrument preview section */
  .landing section.preview #instrument-preview{
    width: 95vw;
  }
  .landing section.preview .instrument-preview{
    grid-template-columns: 1fr;
    grid-template-rows: 0.2fr 0.25fr 0.45fr 0.1fr;
    grid-template-areas:
      "tagline"
      "p"
      "instrument"
      "instrument-icons";
    align-self: center;
  }
  .landing section.preview .instrument-preview-container{
    align-items: center;
    justify-content: center;
  }
  .landing section.preview .instrument-preview-container .gadget-container{
    width: 95vw;
  }
  .landing section.preview .instrument-icons{
    margin: 10px auto 0 auto;
  }
}

@media only screen and (max-width: 600px){
  main.content section .section-header{
    font-size: 21px;
    font-weight: 700;
    padding: 0 10px;
    color: rgb(70, 85, 114);
  }

  .production-tools .section-header{
    color: rgb(232, 232, 233);
  }

  .landing section{
    padding: 20px 0;
  }
  .landing section .tagline, .landing section h1{
    align-self: center;
    text-align: center;
    justify-self: center;
    flex-direction: column !important;
  }

  /* hero section */
  .landing section.hero:before{
    background-image: url("../images/landing/layered_waves_mobile.jpg");
  }
  .landing section.hero p{font-size: 16px;margin: 15px auto 25px auto;background-color: rgba(240, 240,240,0.75);}
  .landing section.hero h1, h2{
    padding-top: 15px;
    font-size: 45px;
  }
  .landing section.hero h1{
    padding-top: 40px;
    text-align: center;
  }
  .landing section.hero h2 {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    max-width: 90vw;
    text-align: center;
    font-size: 40px;
  }
  .landing section h2{
    font-size:24px;
    margin-bottom: 20px;
  }

  /*  TunePad video/learning section */
  .landing section.learning .tagline{
    align-self: center;
    text-align: center;
    justify-self: center;
    padding: 0 0 20px 0;
  }
  .landing section.learning p{
    margin: 18px auto 0 auto;
    text-align: justify;
  }
  .landing section.learning .video-wrapper{
    grid-template-columns: 1fr;
    grid-template-rows: 0.75fr 0.2fr 0.15fr;
    grid-template-areas:
      "tagline"
      "tunepad-video";
    align-self: center;
    margin-bottom: 15px;
  }
  .landing section.learning #tunepad-short {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto !important;
    min-height: auto;
    max-height: 350px;
  }
  .landing section.learning #tunepad-short iframe,
  .landing section.learning #tunepad-short object,
  #tunepad-short embed {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
  }
  .landing section.learning #featured-projects{
    margin-left: 10px;
  }

  /* Production tools section */
  .landing section.production-tools .production-tools-wrapper{
    grid-template-columns: 1fr;
    align-self: center;
    max-width: 95vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .landing section.production-tools .production-tools-wrapper .tagline{
    max-width: 100vw;
    width: 100%;
  }
  .landing section.production-tools .production-tools-wrapper .recorder-img,
  .landing section.production-tools .production-tools-wrapper .mixer-img{
    padding-left: 0;
    padding-right: 0;
    margin: 25px auto 0 auto;
  }
  .landing section.production-tools .production-tools-wrapper .recorder-img {
  }
  .landing section.production-tools .production-tools-wrapper .mixer-img{
  }
  .landing section.production-tools .production-tools-wrapper ul.first,
  .landing section.production-tools .production-tools-wrapper ul.second{
    justify-self: center;
    padding: 0 25px 0 15px;
    padding-bottom: 25px;
  }
  .landing section.production-tools .production-tools-wrapper ul.big-list li,
  .landing section.production-tools .production-tools-wrapper ul.big-list li:before{
    font-size: 15px;
    line-height: 1.5em;
    max-width: 95vw;
    padding: 15px 10px 0 0;
    margin-bottom: auto;
    margin-right: 0px;
  }

  /* Features badges section */
  .landing section.badges p{
    font-size: 14px;
  }
  .landing section.badges .feature{
    height: 170px;
    margin-bottom: 10px;
  }

  /* Testimonial section */
  .landing section.testimonials #testimonials-container{
    width: 90vw;
    margin: 0 auto;
  }
  .landing section.testimonials .testimonial-wrapper{
    margin: 10px 0;
  }
  .landing section.testimonials .testimonial-wrapper .fa-quote{
    font-size: 18px;
  }
  .landing section.testimonials p.quote{
    font-size: 14px;
  }
  .landing section.testimonials .user-signature{
    padding-top: 10px;
    font-size: 15px;
  }
  .landing section.testimonials .statement{
    max-width: 95vw;
    font-size: 14px;
    color: #465572;
  }
  .landing section.testimonials .social-account-wrapper{
    margin-top: 75px;
  }
    .landing section.testimonials .tagline-wrapper{
    height: auto;
    max-width: 95vw;
  }
  .landing section.testimonials .tagline-wrapper .statement{
    margin: 15px 0 75px 0;
    text-align: left;
  }
  .landing section.testimonials .social-account-wrapper{
    margin-top: 25px;
  }
  .landing section.testimonials .social-account-wrapper .social-header{
    color: #FFF;
  }
}

@media only screen and (max-width: 320px) {
  .landing section.hero{
    height: 100vh;
  }
  .landing section.hero h1{
    padding-top: 0;
  }
  .landing section.hero h2{
    margin-bottom: 5px;
  }
  .landing section.hero .hero-wrapper{
    height: calc(100vh - 40px);
  }
  .landing section.hero p{
    margin: 5px 0 15px 0;
    padding: 5px 15px 5px 15px;
  }
  .landing section.preview .tagline{
    padding-left: 0;
  }
}

@media (orientation: landscape) {

}

@media (orientation: portrait) {
  .landing section.production-tools .production-tools-wrapper{
    max-width: 100vw;
  }
}
/* End of responsive grid */

/* Featured Projects */
#featured-projects {
  width: calc(100vw - 20rem);
  min-width: 725px;
  max-width: 1680px;
  display: flex;
  background-color: #fff8;
  height: 180px;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0px auto;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  /* padding: 5px; */
}
.feat-project {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 150px;
  margin: 15px;
  user-select: none;
  --webkit-user-select: none;
}
.feat-project .artwork {
  background-color: #aaa;
  background-image: url('/assets/images/logo_light.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 150px;
  height: 150px;
  border-radius: 7px;
  text-align: center;
  box-shadow: 5px 5px 10px #0002;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
}
.feat-project .artwork .overlay {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background-color: #0009;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
}
.feat-project .artwork button {
  height: 60px;
  font-size: 120%;
  color: white;
  text-shadow: 3px 3px 5px #000a;
  outline: none;
  border: none;
  background-color: transparent;
  margin: 10px 7px 0 7px;
}
.feat-project .artwork button:active {
  text-shadow: none;
  color: #fff9;
}
.feat-project .artwork button:hover {
  color: #fffc;
}
.feat-project .artwork .play-button {
  flex: 1;
  height: 70px;
  font-size: 200%;
}
.feat-project .like-container,
.feat-project .remix-container {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 13px;
}
.feat-project .like-container i.fas,
.feat-project .remix-container i.fas {
  font-size: 100%;
  line-height: 100%;
  text-shadow: none;
}
.feat-project .remix-container {
  left: unset;
  right: 10px;
}
.feat-project .artwork:hover .overlay {
  opacity: 1.0;
}
.feat-project h2.title,
.feat-project .author {
  position: absolute;
  font-size: 15px;
  font-weight: normal;
  top: 10px;
  left: 10px;
  text-overflow: ellipsis;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: 130px;
  color: white;
  margin: 0;
  overflow:hidden;
}
.feat-project .author {
  font-size: 12px;
  top: 30px;
}




