/*
Theme Name: Motion Tricks Main 
Author: Craig A. Roblewsky
Author URI: https://www.motiontricks.com
Version: 1.0
*/
/* ==========================================================================
   Styling reset
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
ol, ul {
  list-style: none;
}
/*
 * Removes the hover color on iOS touch devices
 */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  text-decoration: none;
}
p a {
  border-bottom: solid 2px var(--primary);
  color: var(--primary);
  position: relative;
  z-index: 5;
  padding: 0 3px;
  display: inline-block;
}
main p a {
  font-weight: 700;
}
* {
  box-sizing: border-box;
}
/* ==========================================================================
   Global
   ========================================================================== */
html {
  font-size: 20px;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'proxima-nova', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:root {
  --primary: #5cceee;
  --secondary: #5cceee;
  --dark: #262626;
}
.skipLink {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.demoWrap, .EnlighterJSWrapper {
  margin-bottom: 4rem !important;
  margin-top: 4rem;
}
.temp {
  min-height: 100px;
  background: var(--primary);
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  padding: 1rem 0;
}
.temp a {
  color: white;
  padding: 10px;
  margin: 10px;
  background: rgba(0, 0, 0, 0.1);
}
#myCanvas {
  width: 100%;
  height: 100vh;
  position: fixed;
}
.wrapper {
  width: 94%;
  max-width: 1600px;
  margin: auto;
}
/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  margin-bottom: 12px;
  line-height: 1.1;
}
h1.mainCenter {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
h2, h3 {
  text-transform: uppercase;
}
.tutorial h2 {
  font-size: 2.1em;
  color: var(--primary);
  position: relative;
  padding-top: 2rem;
  border-top: solid 1px #eee;
}
p {
  line-height: 1.8;
  margin-bottom: 2rem;
}
code {
  background: #eee;
  padding: 2px;
  color: #46a2e0;
  border: solid 1px rgba(0, 0, 0, .15);
}
h1 {
  font-size: 2.1rem;
}
h3.separator {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
h3.separator span {
  font-size: 0.4em;
  display: block;
}
p::selection {
  background-color: #262626;
  color: #5cceee;
}
@media only screen and (min-width:768px) {
  h3.separator {
    font-size: 3.2rem;
    padding: 1rem 0;
  }
  .tutorial h2 {
    font-size: 2.5em;
  }
}
@media only screen and (min-width:1024px) {
  h1 {
    font-size: calc(1rem + 3vw);
  }
}
@media only screen and (min-width:1366px) {
  h3.separator {
    font-size: 5rem;
  }
}
/* ==========================================================================
   Header
   ========================================================================== */
.mainHeader {
  background: #262626;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: relative;
  min-height: 90px;
}
#mainLogo {
  overflow: visible;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
#arrow path {
  opacity: 0;
}
#cursor {
  opacity: 0;
}
@media only screen and (max-width:767px) {
  #mainLogo {
    width: 260px;
    height: auto;
    margin: 1rem 0;
  }
}
#pixiCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}
.elevate {
  position: relative;
  z-index: 10;
}
.tagline {
  text-align: center;
  color: white;
  margin-bottom: 0.5rem;
  display: none;
}
.logoTricks {
  display: none;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.6rem;
  margin-bottom: 14px;
}
.logoTricks button {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin-left: 4px;
  background-color: #000;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6rem;
  border: solid 2px rgba(92, 206, 238, 0.4);
  cursor: pointer;
  font-family: 'proxima-nova', sans-serif;
  text-transform: lowercase;
}
@media only screen and (min-width:768px) {
  .logoTricks {
    display: flex;
  }
  .mainHeader {
    flex-direction: column;
    justify-content: center;
  }
  .tagline {
    display: block;
  }
}
/* ==========================================================================
   Navigation
   ========================================================================== */
.mainNav {
  background: rgba(0, 0, 0, 0.25);
  background: #1c1c1c;
  padding: 6px 0;
  display: none;
}
.mainNav a {
  color: var(--primary);
  padding: 12px 1rem;
  display: block;
  text-transform: lowercase;
  overflow: hidden;
}
.miniNav {
  display: none;
  margin-top: 1rem;
}
.miniNav a {
  color: var(--primary);
  text-transform: lowercase;
  font-size: 0.75rem;
  display: block;
  padding: 6px 0.75rem;
  margin: 0 6px;
}
.mobileNav {
  background: #000;
  height: 0;
  overflow: hidden;
}
.mobileNav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobileNav a {
  color: var(--primary);
  padding: 9px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  display: block;
}
.mobileNav li:last-child a {
  border-bottom: none;
}
.mobileNav a:focus {
  color: white;
}
#burgerButton {
  width: 60px;
  height: 80px;
  background: transparent;
  position: relative;
  z-index: 20;
  cursor: pointer;
  border: none;
  outline: none;
}
@media only screen and (min-width:768px) {
  .mainNav {
    display: block;
  }
  .mobileNav {
    display: none;
  }
  .mainNav ul, .miniNav {
    display: flex;
    justify-content: center;
  }
  #burgerButton {
    display: none;
  }
}
@media only screen and (min-width:1280px) {
  .mainNav a {
    margin: 0 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .miniNav .linkJump {
    display: block;
  }
  .mainNav .linkJump {
    display: none;
  }
}
@media (min-width: 1024px) {
  .miniNav .linkJump {
    display: none;
  }
  .mainNav .linkJump {
    display: block;
  }
}
/* ==========================================================================
   Home Page
   ========================================================================== */
#welcome {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 1rem 0;
}
#homeAll {
  margin: 1rem auto;
  display: block;
  width: 320px;
}
#homeRocket {
  width: 100%;
  height: auto;
  cursor: pointer;
}
#rocket {
  visibility: hidden;
}
.craigCartoon img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1023px) {
  .craigCartoon {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }
}
@media (min-width: 1024px) {
  #welcome .wrapper {
    width: 94%;
    margin: auto;
    max-width: 1100px;
    display: flex;
    flex-direction: row-reverse;
  }
  .craigCartoon {
    flex: 0 0 400px;
  }
  #homeAll {
    width: 480px;
  }
}
.helloMessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}
.helloMessage h1 {
  text-transform: uppercase;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .helloMessage h1 {
    font-size: 3.2rem;
  }
}
.helloMessage h1 span.dropText {
  font-size: 0.5em;
  display: block;
}
.helloMessage a svg {
  width: 300px;
  height: 100px;
}
.baseColor {
  fill: var(--primary);
}
.lens {
  fill: #000;
}
.frames {
  visibility: hidden;
}
.rightLensText, .leftLensText {
  font-size: 14px;
  fill: #fff;
}
.lineBase {
  stroke: var(--primary);
}
.mainButtonText {
  font-size: 18px;
  font-weight: 600;
  fill: white;
}
#morphAbout, #unrollAbout {
  align-self: center;
  opacity: 0;
}
.siteDescription {
  background-image: repeating-linear-gradient(49deg, rgba(131, 214, 210, 0.07) 0px, rgba(131, 214, 210, 0.07) 1px, transparent 1px, transparent 21px), repeating-linear-gradient(139deg, rgba(131, 214, 210, 0.07) 0px, rgba(131, 214, 210, 0.07) 1px, transparent 1px, transparent 21px), linear-gradient(139deg, rgb(23, 23, 23), rgb(23, 23, 23));
  width: 100%;
  padding: 2rem 0;
  color: white;
}
.siteDescription h3 {
  color: var(--primary);
}
@media only screen and (min-width:1024px) {
  .siteDescription {
    padding: 5rem 0;
  }
  .siteDescription .wrapper {
    display: flex;
    max-width: 1400px;
  }
  .siteDescription .wrapper > div {
    flex: 0 0 50%;
    padding: 1rem 2rem;
  }
  .helloMessage {
    padding: 1rem;
  }
}
/* ==========================================================================
   404
   ========================================================================== */
.notFound {
  width: 94%;
  max-width: 680px;
  margin: 1rem auto;
}
.notFound img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
/* ==========================================================================
   About Page
   ========================================================================== */
.row {
  padding: 2rem 0;
}
.rowDark {
  background: var(--dark);
  color: white;
}
.gsRow {
  background: url("https://drgczqsy3vomh.cloudfront.net/gsHero.svg") center top no-repeat;
  background-size: cover;
}
.testimonial {
  background: #262626;
  color: white;
  font-size: 1.2rem;
}
blockquote {
  width: 94%;
  max-width: 960px;
  margin: auto;
}
.testimonial img {
  border-radius: 100%;
  display: block;
  margin: 10px auto;
  border: solid 8px white;
  width: 180px;
  height: auto;
}
.infoPack {
  display: flex;
}
.infoPack > div {
  flex: 1 1 calc(100%/3);
  padding: 2rem;
}
.centerMe span, span.gs {
  color: #88ce02;
}
p.centerMe {
  text-align: center;
}
.aboutMotionTricks h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.mobileAvatar {
  background: url("https://drgczqsy3vomh.cloudfront.net/mainAvatar.jpg") center center no-repeat;
  background-size: contain;
  width: 164px;
  height: 210px;
  float: right;
  margin-left: 10px;
}
@media only screen and (min-width:768px) {
  blockquote {
    padding: 0 75px;
    text-align: center;
    background-image: url("https://drgczqsy3vomh.cloudfront.net/openQuotes.svg"), url("https://drgczqsy3vomh.cloudfront.net/closeQuotes.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 100px 75px, 100px 75px;
    overflow: visible;
  }
  .aboutMotionTricks h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width:1024px) {
  .mobileAvatar {
    display: none;
  }
  .aboutMotionTricks h2 {
    font-size: 4.5rem;
  }
  .centerBlock.topAbout {
    background: url("https://drgczqsy3vomh.cloudfront.net/mainAvatar.jpg") right bottom no-repeat;
    background-size: 246px 314px;
    padding-right: 250px;
  }
  .row {
    padding: 5rem 0;
  }
}
.aboutMotionTricks h2 span {
  font-size: 0.5em;
  display: block;
  margin-bottom: 2rem;
}
.aboutMotionTricks .rowDark h2 {
  /*    color: var(--primary);*/
}
.centerBlock {
  max-width: 960px;
  margin: auto;
}
.centerBlock p:last-child {
  margin-bottom: 0;
}
.theDogs {
  display: flex;
  max-width: 1400px;
  margin: auto;
  padding: 2rem 0;
  flex-flow: row wrap;
}
.theDogs figure {
  flex: 0 0 100%;
  margin-top: 10px;
  padding: 1rem;
}
@media only screen and (max-width:767px) {
  section.faq .centerBlock > div > div {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (min-width:768px) {
  .theDogs figure {
    flex: 0 0 50%;
    padding: 1rem;
  }
  section.faq .centerBlock > div {
    display: flex;
    margin-bottom: 3rem;
  }
  section.faq .centerBlock > div h4 {
    flex: 0 0 25%;
    text-align: right;
  }
  section.faq .centerBlock > div > div {
    border-left: solid 1px var(--primary);
    margin-left: 1rem;
    padding-left: 1rem;
  }
}
figcaption {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
.aboutMotionTricks figcaption {
  width: 90%;
  margin: auto;
  text-align: left;
}
.theDogs img {
  width: 100%;
  height: auto;
  display: block;
  border: solid 12px var(--primary);
}
#sleepyDogLogo {
  width: 275px;
  height: auto;
  padding: 10px;
  background: white;
  display: block;
  margin: auto;
}
.split {
  display: flex;
}
.split > div {
  flex: 0 0 50%;
  padding: 2rem;
}
.aboutSocialLinks {
  flex: 1 1 auto;
}
@media only screen and (max-width:767px) {
  .aboutSocialLinks a {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    display: block;
  }
}
@media only screen and (min-width:768px) {
  .aboutSocialLinks a {
    width: 45%;
    margin-right: 4%;
    display: inline-block;
  }
}
.aboutSocialLinks a svg {
  width: 100%;
  height: auto;
}
/* ==========================================================================
   Cool Lists
   ========================================================================== */
.coolList {
  margin: auto;
  font-size: 1.25em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-align: center;
}
.coolList li {
  flex: 1 1 auto;
  /*  white-space: nowrap;*/
  /*    padding: 10px 10px 10px 60px;*/
  padding: 10px;
  color: white;
  margin: 6px;
  background: var(--primary);
  position: relative;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
}
/* ==========================================================================
   Standard Directory of Posts
   ========================================================================== */
.readMore {
  font-weight: 600;
}
.tease {
  position: relative;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 4px;
  overflow: hidden;
}
.teaseLink {
  background-color: #000;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.teaseThumbnail {
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.postGrid {
  width: 94%;
  max-width: 1600px;
  margin: auto;
}
.postGrid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.tease {
  flex: 1 1 600px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  max-width: 800px;
}
@media (min-width: 768px) {
  .tease {
    flex-direction: row;
    margin: 1rem 2rem;
  }
  .teaseLink, .postTeaseExcerpt {
    flex: 0 0 50%;
  }
}
/* =====================================
   Post tease links no change for sizes
   ===================================== */
.postTeaseExcerpt {
  padding: 1rem;
  position: relative;
}
.postTeaseExcerpt p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.postTeaseExcerpt h2 {
  position: relative;
  overflow: visible;
  margin-top: 12px;
}
.postTeaseExcerpt h2 a {
  font-size: 1rem;
  line-height: 1.1;
  color: var(--dark);
  display: block;
  position: relative;
  z-index: 5;
  background: transparent;
}
.hoverBox {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--primary);
  z-index: 2;
  opacity: 0;
}
.hoverSVG {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: -5px;
  left: -5px;
  stroke: var(--primary);
  stroke-width: 3;
  opacity: 0;
}
.teaseThumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
}
/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 0;
  color: var(--dark);
  /*  background: #303030;*/
  padding: 6px 0;
  position: relative;
  z-index: 40;
}
.breadcrumbs a {
  border-bottom: none;
  color: var(--primary);
}
body.home .breadcrumbs {
  display: none;
}
/* ==========================================================================
   Pagination
   ========================================================================== */
nav.paginationNumbers {
  margin: 3rem auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav.paginationNumbers .page-numbers {
  text-align: center;
  color: var(--secondary);
  margin-right: 10px;
  /*  padding: 0 12px;*/
  height: 48px;
  width: 48px;
  line-height: 48px;
  border-radius: 100px;
  border: solid 2px var(--secondary);
}
nav.paginationNumbers .page-numbers.next, nav.paginationNumbers .page-numbers.prev {
/*  width: 100px;*/
}
nav.paginationNumbers .page-numbers:hover {
  background: var(--secondary);
  color: #fff;
}
nav.paginationNumbers .page-numbers.current {
  background: var(--dark);
  font-weight: 700;
  color: #fff;
}
a.page-numbers {
  color: #fff;
}
/* ==========================================================================
   Tutorial Article
   ========================================================================== */
.tutorial {
  width: 94%;
  max-width: 720px;
  margin: auto;
}
.tutorial p {
  font-size: 1.1rem;
}
/* =============================
   Single Header
   ============================= */
.singleHeader {
  width: 94%;
  max-width: 1280px;
  margin: auto;
  margin-top: 2rem;
  position: relative;
  margin-bottom: 2rem;
}
.singleHeader h1 {
  line-height: 1.1;
  color: var(--dark);
}
.singleHeader .data {
  display: flex;
  width: 100%;
  border: solid 1px var(--primary);
  border-radius: 4px;
  overflow: hidden;
  flex-flow: row wrap;
}
.bannerImage {
  position: relative;
  flex: 0 0 100%;
  background-size: cover;
  background-position: center center;
  min-height: 300px;
}
.postMeta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  flex: 0 0 100%;
  flex-flow: row wrap;
}
.postMeta .singleCategoryList, .singleCategoryList.footerMeta {
  justify-content: center;
}
@media (max-width: 1023px) {
  .postMeta > div {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  .bannerImage {
    flex: 1 1 auto;
  }
  .postMeta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    flex: 0 0 300px;
  }
  .postMeta .singleCategoryList {
    margin: 3px 6px;
  }
  .singleHeader {
    margin-top: 3rem;
  }
}
.singleHeader .data img {
  width: 100%;
  height: auto;
  display: block;
}
.postMeta p {
  margin-bottom: 0;
}
.paraHover {
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--primary);
  z-index: -1;
  left: 0;
  top: 0;
}
/* =============================
   Publish Date
   ============================= */
.postDateFancy {
  padding: 6px 12px;
  background: var(--dark);
  text-align: center;
  color: white;
  color: var(--primary);
  /*  color: #ccc;*/
  position: absolute;
  right: -2px;
  bottom: 0;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1;
  border-radius: 4px 0 0 0;
	display: none;
}
.postDateFancy span {
  display: block;
}
.postDateFancy span:nth-child(2) {
  font-size: 1.3em;
  font-weight: 700;
}
.postDate, .readingTime {
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.postDate span, .readingTime span {
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  font-size: 0.6em;
}
/* =============================
   Difficulty Meter
   ============================= */
.difficulty {
  width: 130px;
  padding-top: 80px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.625em;
  line-height: 1;
  margin-top: 1rem;
  position: relative;
}
.difficulty svg {
  position: absolute;
  top: 0;
  left: 0;
}
.difficulty span {
  display: block;
  font-size: 1.5em;
}
.difficulty #maskReveal path {
  opacity: 0;
}
@media only screen and (max-width:1023px) {
  .difficulty svg {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
  }
}
/* =============================
   Reading Time
   ============================= */
.readingTime {
  padding-top: 30px;
  position: relative;
}
.readingTime svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 26px;
}
.readTime {
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  text-align: center;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  z-index: 10;
  width: 100%;
  font-size: 0.75rem;
}
/* =============================
   Category Lists
   ============================= */
.singleCategoryList {
  display: flex;
  padding: 10px 0;
  flex-flow: row wrap;
}
.postMetaCat {
  padding: 6px 16px;
  border-radius: 40px;
  margin: 0 6px 4px 0;
  font-size: 0.7rem;
  text-transform: lowercase;
}
a.postMetaCat {
  display: block;
  color: white;
}
.svg-tutorials {
  background: #8e38b6;
}
.projects {
  background: #3fa9f5;
}
.greensock-tutorials {
  background: #88ce02;
}
.pixi-tutorials {
  background: #ea1e63;
}
.experiments {
  background: #fc6e38;
}
/* =============================
   Category Pages
   ============================= */
.categoryDetails {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem auto 3rem auto;
  width: 94%;
}
.catSVG {
  width: 180px;
}
.catSVG img {
  background: var(--dark);
  padding: 10px;
  width: 100%;
}
.catDetails {
  max-width: 640px;
  /*  width: 94%;*/
}
.catDetails p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
/* =============================
   CodePen Demos Extra Width
   ============================= */
.demoWrap {
  width: 920px;
  position: relative;
  left: 50%;
  margin-left: -460px;
}
.cp_embed_wrapper {
  margin-bottom: 2rem;
}
.enlighter-default {
  margin-bottom: 2rem !important;
  padding: 10px 0 !important;
}
/* =============================
   Lists
   ============================= */
ol.circleList {
  width: 90%;
  margin: 2em auto;
  counter-reset: rowNumber;
}
ol.circleList li {
  margin-bottom: 1em;
  position: relative;
  padding-left: 48px;
  line-height: 1.8;
  counter-increment: rowNumber;
}
ol.circleList li::before {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  background-color: var(--primary);
  left: 0;
  color: white;
  font-weight: 700;
  content: counter(rowNumber);
  font-size: 14px;
  text-align: center;
  border-radius: 100%;
  line-height: 1;
  box-sizing: border-box;
}
.tutorial ul {
  margin-bottom: 2rem;
}
.tutorial ul li {
  list-style: disc;
  width: 80%;
  margin: 10px auto;
}
/* =====================================
   Single Footer
   ===================================== */
.singleFooter {
  border-top: solid 1px rgba(0, 0, 0, .25);
  margin-bottom: 2rem;
  text-align: center;
}
.singleFooter p {
  font-size: 0.75rem;
  margin-bottom: 0;
  opacity: 0.75;
}

.singleFooter .teaseCategoryList h4 {
  flex: 0 0 100%;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .singleFooter p span {
  display: block;
} 
  .singleFooter p span.noPhone {
  display: none;
}     
}
/* =====================================
   Related Posts
   ===================================== */
.relatedPostsWrap {
  display: none;
}
@media (min-width: 768px) {
  .relatedPostsWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
  }
  .relatedPostsWrap h3 {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  .relatedPostsWrap p {
    margin-bottom: 0;
  }
  .relatedText {
    padding: 10px;
  }
  .relatedText a {
    display: block;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .relatedText a:hover {
    color: var(--primary);
  }
  .relatedText p {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .relatedPosts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-flow: row wrap;
    position: relative;
    padding: 1rem 0;
  }
  .relatedGrid {
    flex: 0 0 620px;
    margin: 0 1rem;
    box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
    background-color: white;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
  }
  .relatedThumb {
    width: 200px;
    min-height: 200px;
    background-size: cover;
    background-position: center center;
  }
}
@media (min-width: 1024px) {
  .relatedPosts {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
  }
  .relatedGrid {
    flex: 0 0 240px;
    margin: 0 1rem;
    padding-bottom: 10px;
    box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
    background-color: white;
  }
  .relatedThumb {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
  }
}
/* ==========================================================================
   Social Connect Pill Buttons
   ========================================================================== */
.socialConnect .basePrimary {
  fill: var(--primary);
}
.socialConnect .baseDark {
  fill: var(--dark);
}
.socialConnect .baseLight {
  fill: #fff;
}
.socialConnect text {
  font-size: 21px;
  fill: #fff;
}
/* ==========================================================================
   Twitter Share
   ========================================================================== */
.shareButtonWrapper {
  margin-bottom: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shareButtonWrapper p {
  max-width: 480px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.2rem;
}
.shareTwitter {
  background-color: var(--primary);
  color: white;
  padding: 12px 56px 12px 20px;
  border-radius: 100px;
  position: relative;
  margin-top: 1rem;
}
.shareTwitter svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* =============================
   Pro Tip
   ============================= */


.proTip {
  padding: 5rem 2rem 2rem 2rem;
  font-size: 1.4rem;
  margin: 2rem auto;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
  color: white;
  background: var(--dark);
  position: relative;
  border-radius: 3px;
}
.proTip::before {
  content: "Pro Tip";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background: var(--primary);
  padding: 6px 1.5rem;

}



@media (min-width: 768px) {




.proTip {
  width: 74%;
  padding: 5rem 90px 2rem 2rem;
  margin: 5rem auto;
}
.proTip::before {

  left: -2rem;
  top: 1rem;
  border-radius: 3px;
}
.proTip::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -70px;
  width: 150px;
  height: 260px;
  background: url("https://drgczqsy3vomh.cloudfront.net/craigTransparent.png");
}
}    
/* ==========================================================================
   Footer Category Big Links
   ========================================================================== */
.footerCategoryLinks {
  width: 100%;
  background: var(--dark);
  color: white;
  padding: 5rem 0;
}
.footerCategoryLinks .wrapper {
  display: flex;
  flex-flow: row wrap;
  width: 94%;
  max-width: 1400px;
  margin: auto;
}
.footerCategoryLinks a {
  margin: 1rem;
  z-index: 5;
  flex: 0 0 calc(100% - 2rem);
}
@media (min-width: 768px) {
  .footerCategoryLinks a {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (min-width: 1024px) {
  .footerCategoryLinks a {
    flex: 0 0 calc(25% - 2rem);
  }
}
.footerCategoryLinks .wrapper div {
  border: solid 1px rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background-color: transparent;
  padding: 1rem;
}
.footerCategoryLinks img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  pointer-events: none;
}
.footerCategoryLinks a {
  display: block;
}

/* ==========================================================================
   Privacy and Terms pages
   ========================================================================== */
.administrative {
    width: 94%;
    max-width: 740px;
    margin: 1rem auto;
}
.administrative ul {
    margin-bottom: 2rem;
}

.administrative li {
    list-style: disc;
    width: 88%;
    margin: 1rem auto;
    font-weight: 700;
}

/*
.administrative p a  {
   font-weight: 700;
    color: var(--primary);
}
*/

/* ==========================================================================
   Footer
   ========================================================================== */
.mainSiteFooter {
  background: rgb(20, 20, 20);
  color: white;
}
.mainSiteFooter a {
  color: var(--primary);
}
.footerGrid {
  display: flex;
  width: 94%;
  padding: 2rem 0;
  max-width: 1600px;
  margin: auto;
  justify-content: space-between;
  flex-direction: column;
}
.copyright {
  padding: 1rem 0;
  text-align: center;
  background: rgb(10, 10, 10);
  font-size: 0.75rem;
  margin-bottom: 0;
}
.followLinks a svg {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .followLinks a {
    width: 100%;
    margin: 10px auto;
    max-width: 300px;
    display: block;
  }
  .socialIntro img {
    display: block;
    margin: 10px auto;
    max-width: 180px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1023px) {
  .footerNavigation {
    text-align: center;
    margin: 1rem auto;
  }
  .footerNavigation li {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .followLinks a {
    width: 45%;
    margin-right: 4%;
    display: inline-block;
    max-width: 300px;
  }
  .socialIntro img {
    width: 95px;
    height: auto;
    float: right;
    margin-left: 12px;
  }
}
@media (min-width: 1024px) {
  .footerGrid {
    flex-direction: row;
    justify-content: space-between;
  }
  .followLinks {
    flex: 0 0 680px;
  }
  .footerNavigation {
    text-align: right;
  }
}