@charset "UTF-8";
@CHARSET "UTF-8";
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to right, #3f466c, #41535f);
  z-index: -1;
  pointer-events: none;
}

header, footer {
  /* This allows z index to work */
  position: relative;
}

header {
  border-bottom: solid 1px #000000;
}

header {
  position: relative;
  width: 100%;
}

header::before,
header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}

header::before {
  left: 0;
  right: 50%;
  background: #3f466c;
}

header::after {
  right: 0;
  left: 50%;
  background: #41535f;
}

header .content {
  position: relative;
  padding-top: 10px;
  z-index: 1;
  background: linear-gradient(to right, #414969, #41535f);
  height: 100%;
}

.header-bg {
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

header .logo {
  background-image: url("/img/layout/logo-tiny.png");
  width: 150px;
  height: 39px;
  display: block;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-bottom: 11px;
  position: relative;
  z-index: 100;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  header .logo {
    background-image: url("/img/layout/logo-tiny@2x.png");
    background-size: 150px auto;
  }
}
@media only screen and (min-width: 500px) {
  header .logo {
    background-image: url("/img/layout/logo-small.png");
    width: 228px;
    height: 60px;
  }
}
@media only screen and (min-width: 500px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 500px) and (min-resolution: 144dpi) {
  header .logo {
    background-image: url("/img/layout/logo-small@2x.png");
    background-size: 228px auto;
  }
}

header a, header a:visited, header a:hover {
  color: #ffffff;
}

nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
nav li {
  display: inline-block;
  list-style-type: none;
  font-size: 12px;
}
@media (max-width: 365px) {
  nav li {
    font-size: 10px;
  }
}
nav li a {
  display: inline-block;
  padding-right: 17px;
  padding-left: 17px;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media only screen and (min-width: 500px) {
  nav {
    padding-top: 10px;
  }
  nav li a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  nav li a {
    font-size: 18px;
  }
}
nav li.selected, nav li.selected:hover {
  background-color: #000000;
}
nav li:hover {
  background-color: #323236;
}

@media only screen and (min-width: 768px) {
  header {
    height: 77px;
    padding-top: 0;
  }
  header .content {
    display: flex;
    padding-top: 0;
    align-items: center;
  }
  header .logo {
    background-image: url("/img/layout/header-logo.png");
    width: 232px;
    height: 95px;
    display: flex;
    margin-bottom: 0;
    margin-top: 18px;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 768px) and (min-resolution: 144dpi) {
  header .logo {
    /*background-image:url('/img/layout/header-logo.png'); //joseph you need to create this file!*/
    background-size: 232px auto;
  }
}
@media only screen and (min-width: 768px) {
  nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 77px;
    padding-top: 0;
    margin-right: -20px;
    background: linear-gradient(to right, #414969, #41535f);
  }
  nav ul {
    height: auto;
    /*margin-top:30px;*/
  }
  nav li a {
    padding: 32px 22px 23px 22px;
  }
}
footer {
  color: #ffffff;
  clear: both;
  background: linear-gradient(to right, #3f466c, #41535f);
}

footer .content {
  width: 280px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}
footer .content:before, footer .content:after {
  content: "";
  display: table;
}
footer .content:after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  .footer-link-area {
    float: right;
  }
  .footer-link-area .footer-links, .footer-link-area .footer-social {
    text-align: right;
  }
}

.footer-links, .footer-social {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer-links li, .footer-social li {
  display: inline-block;
  height: 38px;
  line-height: 38px;
}
@media only screen and (min-width: 768px) {
  .footer-links li, .footer-social li {
    height: 43px;
    line-height: 43px;
  }
}
.footer-links li + li, .footer-social li + li {
  padding-left: 20px;
}
@media only screen and (min-width: 768px) {
  .footer-links li + li, .footer-social li + li {
    padding-left: 20px;
  }
}
.footer-links div, .footer-social div {
  width: 38px;
  height: 38px;
  background-size: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.footer-links a, .footer-links a:hover, .footer-links a:visited, .footer-social a, .footer-social a:hover, .footer-social a:visited {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .footer-links a, .footer-links a:hover, .footer-links a:visited, .footer-social a, .footer-social a:hover, .footer-social a:visited {
    font-size: 12px;
  }
}

.twitter-logo {
  background-image: url("/img/layout/twitter-logo.svg");
}

.facebook-logo {
  background-image: url("/img/layout/facebook-logo.svg");
}

.instagram-logo {
  background-image: url("/img/layout/instagram-logo.svg");
}

.youtube-logo {
  background-image: url("/img/layout/youtube-logo.svg");
}

.tiktok-logo {
  background-image: url("/img/layout/tiktok-icon.svg");
}

.befirst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 32px;
}
.befirst .subscribe {
  margin-top: 20px;
}
@media (min-width: 1000px) {
  .befirst {
    flex-direction: row;
    column-gap: 0;
    row-gap: 0;
    align-items: stretch;
  }
  .befirst .befirst_pic {
    margin-right: 32px;
  }
  .befirst .subscribe {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .befirst .description {
    margin-top: auto;
  }
}
.befirst .befirst_pic, .befirst .subscribe {
  max-width: 440px;
  width: 100%;
  height: auto;
}
.befirst .subscribe iframe {
  width: 100%;
}
.befirst .description {
  font-size: 17px;
  font-weight: bold;
  padding-bottom: 16px;
}
.befirst .details {
  font-size: 14px;
}
@media (min-width: 370px) {
  .befirst .description {
    font-size: 20px;
  }
  .befirst #mc-embedded-subscribe, .befirst #mce-EMAIL.email {
    width: 47%;
  }
}
@media only screen and (min-width: 768px) {
  .befirst .subscribe .details {
    font-size: 16px;
  }
}
@media (min-width: 500px) {
  .befirst .description {
    font-size: 20px;
  }
  .befirst #mce-EMAIL.email {
    width: 35%;
  }
  .befirst #mc-embedded-subscribe {
    width: 25%;
  }
}

.profile_pic_wrapper {
  width: 170px;
  height: 170px;
  shape-outside: circle(50%);
  float: right;
  position: relative;
  top: -10px;
  right: -10px;
}

.profile_pic {
  width: 150px;
  height: 150px;
  margin: 10px;
}

@media (min-width: 1000px) {
  .profile_pic_wrapper {
    width: 220px;
    height: 220px;
  }
  .profile_pic {
    width: 200px;
    height: 200px;
  }
}
.profile-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}
@media (min-width: 800px) {
  .profile-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-stats-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.social-stats-content img {
  height: 50px;
  width: auto;
}
.social-stats-content .followers span {
  color: #000000;
  display: block;
}
.social-stats-content .follower-number {
  font-size: 30px;
  font-family: burpee, tahoma;
  text-transform: uppercase;
  min-width: 60px;
  height: 1em;
  line-height: 1em;
  border-radius: 4px;
}
.social-stats-content .follower-number.is-loading {
  background: linear-gradient(90deg, #e0e0e0 25%, #ededed 37%, #e0e0e0 63%);
  background-size: 300% 100%;
  animation: shimmer 1.1s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.trailer {
  padding-bottom: 40px;
}
.trailer .content {
  max-width: 1000px;
}

.threesome .feature {
  position: relative;
  background-color: #ffffff;
}
.threesome .feature .badge {
  position: absolute;
  left: -20px;
  top: 30px;
  transform: rotate(-6deg);
}
@media only screen and (min-width: 500px) {
  .threesome .feature .badge {
    left: -30px;
  }
}
@media only screen and (min-width: 880px) {
  .threesome .feature .badge {
    left: -50px;
  }
}
.threesome .feature .badge img {
  width: 75%;
}
@media only screen and (min-width: 500px) {
  .threesome .feature .badge img {
    width: 100%;
  }
}
.threesome .thumb {
  position: relative;
  display: block;
}
@media only screen and (max-width: 499px) {
  .threesome .thumb .badge {
    display: none;
  }
}
.threesome .thumb .badge {
  position: absolute;
  left: -30px;
  top: 20px;
  transform: rotate(-6deg);
}
@media only screen and (min-width: 880px) {
  .threesome .thumb .badge {
    right: -63px;
    left: auto;
    top: 10px;
  }
}
.threesome .thumb .badge img {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .threesome .feature .info .ago {
    display: none;
  }
}
@media only screen and (max-width: 880px) {
  .threesome .thumb {
    float: left;
    width: 47%;
    margin-top: 15px;
  }
  .threesome .thumb + .thumb {
    margin-left: 4%;
  }
  .threesome .thumb .info span {
    display: none;
  }
}
@media only screen and (min-width: 500px) {
  .threesome .thumb {
    margin-top: 28px;
  }
}
@media only screen and (min-width: 880px) {
  .threesome .feature {
    float: left;
    width: 560px;
  }
  .threesome .thumb {
    float: right;
    width: 207px;
    margin-top: 0;
  }
  .threesome .thumb + .thumb {
    margin-top: 24px;
  }
  .threesome .video-wrapper {
    height: auto;
    padding: 0;
  }
  .threesome .video-wrapper iframe {
    width: 100%;
    height: 315px;
    position: static;
  }
}
@media only screen and (min-width: 1000px) {
  .threesome .feature {
    width: 640px;
  }
  .threesome .thumb {
    width: 247px;
  }
  .threesome .video-wrapper iframe {
    height: 360px;
  }
}
@media only screen and (min-width: 1320px) {
  .threesome .feature {
    width: 855px;
  }
  .threesome .thumb {
    width: 353px;
  }
  .threesome .video-wrapper iframe {
    height: 480px;
  }
}
.threesome:before, .threesome:after {
  content: "";
  display: table;
}
.threesome:after {
  clear: both;
}

@media only screen and (max-width: 499px) {
  .content.reelsome {
    margin-left: 3px;
    margin-right: 3px;
  }
}
.content.reelsome .heading {
  padding-bottom: 20px;
}

.reel-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 3px;
}
@media only screen and (min-width: 500px) {
  .reel-list {
    gap: 20px;
  }
}
.reel-list .reel {
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dddddd;
}
.reel-list .reel .reel-image {
  background-color: #dddddd;
  aspect-ratio: 0.67;
  display: block;
  overflow: hidden;
}
.reel-list .reel .reel-image img {
  object-fit: cover;
  height: 100%;
}
.reel-list .reel .reel-image img.youtube {
  height: 119.1111111111%;
  width: 100%;
  position: relative;
  top: -9.5555555556%;
}
.reel-list .reel .reel-image img.instagram {
  height: 100%;
  width: 100%;
}
.reel-list .reel .reel-info {
  padding: 10px;
}
.reel-list .reel .total-views {
  font-weight: bold;
  font-size: 12px;
}
@media only screen and (min-width: 500px) {
  .reel-list .reel .reel-info {
    padding: 15px;
  }
  .reel-list .reel .reel-info .total-views {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .reel-list .reel .reel-info .platform-views {
    margin-bottom: 5px;
  }
}
.reel-list .reel .platform-views, .reel-list .reel .total-views {
  width: 100%;
  display: block;
  margin-bottom: 2px;
}
.reel-list .reel .platform-views .platform-logo, .reel-list .reel .total-views .platform-logo {
  width: 16px;
  height: 16px;
  position: relative;
  top: 4px;
}
.reel-list .reel .platform-views span, .reel-list .reel .total-views span {
  font-size: 12px;
}
.reel-list .reel .total-views {
  background-color: #dddddd;
}
.reel-list .reel .total-views.non-zero {
  background-color: transparent;
}
.reel-list .reel .platform-views {
  background-color: #dddddd;
  width: 50%;
}
.reel-list .reel .platform-views img {
  visibility: hidden;
}
.reel-list .reel .platform-views.non-zero {
  background-color: transparent;
  width: 100%;
}
.reel-list .reel .platform-views.non-zero img {
  visibility: visible;
}
.reel-list .reel .platform-views.zero, .reel-list .reel .total-views.zero {
  display: none;
}

.content.popular .ago {
  display: none;
}

.as_seen_on a {
  float: left;
  height: 100px;
  width: 45%;
}
.as_seen_on .item_1, .as_seen_on .item_3 {
  margin-right: 10%;
}
.as_seen_on .item_1, .as_seen_on .item_2 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .as_seen_on a {
    width: 22%;
  }
  .as_seen_on .item_1, .as_seen_on .item_2, .as_seen_on .item_3 {
    margin-right: 4%;
  }
  .as_seen_on .item_1 .item_2 {
    margin-bottom: 0;
  }
}
.as_seen_on a img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.as_seen_on:before, .as_seen_on:after {
  content: "";
  display: table;
}
.as_seen_on:after {
  clear: both;
}

.logo-set {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-evenly;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.logo-set .brand-item img {
  max-width: 200px;
  max-height: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.videos .page-title {
  padding-bottom: 40px;
}

.theatre {
  background-color: #000000;
  margin-bottom: 45px;
}
.theatre .content {
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .theatre .content {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 499px) {
  .theatre .content {
    padding-top: 0px;
    margin: 0 0px 0 0px;
  }
}
.theatre .video-details {
  text-align: center;
  color: #ffffff;
  padding-top: 20px;
  font-size: 14px;
}
@media only screen and (min-width: 500px) {
  .theatre .video-details {
    font-size: 18px;
  }
}
.theatre .title {
  font-family: brandon;
  text-transform: uppercase;
}
.theatre .date {
  font-family: gotham-book;
}

.video-set h2 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .video-set h2 {
    padding-bottom: 30px;
  }
}
.video-set .content {
  padding-top: 0;
}
.video-set .set {
  list-style: none;
  font-size: 0px;
  margin-left: -4%;
}
.video-set .thumb {
  width: 46%;
  display: inline-block;
  margin: 0 0 4% 4%;
  font-size: 16px;
  font-size: 1rem;
  vertical-align: top;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.video-set .thumb img {
  max-width: 100%;
  height: auto;
  margin: 0 0 10px;
}
.video-set h4 {
  font-size: 15px;
  margin: 0;
  margin-bottom: 3px;
}
.video-set span {
  font-size: 12px;
}
@media (min-width: 600px) {
  .video-set .thumb {
    width: 29.33%;
  }
}
@media only screen and (min-width: 768px) {
  .video-set h4 {
    font-size: 17px;
  }
}
.video-set .content {
  max-width: 1040px;
}
@media only screen and (max-width: 499px) {
  .video-set .description {
    display: none;
  }
}

.television .content {
  margin-top: 4.25vw;
  margin-bottom: 4.25vw;
}

.publication {
  margin-top: 25px;
  line-height: 30px;
  font-size: 15px;
}

.publication img {
  vertical-align: middle;
  padding-right: 15px;
  max-height: 40px;
}

#sundaystartimes {
  position: relative;
  top: -2px;
}

#dontpanic {
  position: relative;
  top: -2px;
}

#creatorsproject {
  position: relative;
  top: -4px;
}

#sesame {
  margin-top: -18px;
}

#voiceofamerica {
  margin-top: -5px;
}

.terms_of_use {
  float: left;
  width: 220px;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
}

.terms_of_use .title {
  font-size: 18px;
}

.press ul {
  margin-left: 0;
  padding-left: 0;
  font-size: 12px;
}
.press ul li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.image_column {
  margin-top: 20px;
  margin-right: 30px;
  line-height: 16px;
  float: left;
  width: 271px;
}

.image_column .description {
  color: #101010;
  margin-top: 7px;
}

.image_column .date, .image_column .photographer, .image_column .copyright {
  color: #666666;
}

.press_image {
  margin-bottom: 27px;
}

.press_image img {
  border: solid 1px #d6d6d6;
}

.press .image_details, .press_image, .press_image .copyright {
  font-size: 12px;
}

.fb_feed {
  display: none;
  border: solid 1px #999999;
}

@media only screen and (min-width: 768px) {
  .about:before, .about:after {
    content: "";
    display: table;
  }
  .about:after {
    clear: both;
  }
  .about {
    /*
    .main_content
    {
      float:left;
      width:$content-width-tablet - $feed-width - $gap;


      @include desktop-s
      {
        width:$content-width-desktop-s - $feed-width - $gap;
      }

       @include desktop-m
      {
        width:$content-width-desktop-m - $feed-width - $gap;
      }

         @include desktop-l
      {
        width:$content-width-desktop-l - $feed-width - $gap;
      }
    }
    .side_content
    {
      float:right;
      width:$feed-width;
    }
    */
  }
  .fb_feed {
    display: block;
    margin-top: 40px;
  }
}
.about h1, .about h2 {
  text-align: left;
}

.side_image {
  padding-bottom: 10px;
}
.side_image img {
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .side_image img {
    width: auto;
  }
}

@media only screen and (min-width: 500px) {
  .right_image {
    float: right;
    padding-left: 10px;
  }
  .left_image {
    float: left;
    padding-right: 15px;
  }
  .rube .left_image {
    width: 275px;
  }
}
@media (min-width: 1000px) {
  .rube .left_image {
    position: relative;
    top: -55px;
    margin-bottom: -55px;
  }
}
.image_details {
  padding-top: 5px;
  font-size: 12px;
}

.copyright {
  font-size: 10px;
}

.contact {
  font-size: 18px;
}

.contact .input, .contact option {
  color: black;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border: 2px solid #000000;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
}
.contact .horseshoe {
  position: fixed;
  bottom: -150px;
  left: 0;
}
.contact .input:focus {
  border: 2px solid #4f46eb;
}
.contact textarea {
  height: 150px;
  line-height: 150%;
  resize: vertical;
}
.contact [type=submit] {
  width: 100%;
  background: #4f46eb;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s;
  margin-top: -4px;
  font-weight: 700;
}
.contact [type=submit]:hover {
  background: #4f46eb;
}

.record {
  padding-bottom: 20px;
  padding-top: 6px;
  line-height: 25px;
  color: #666666;
}

.record > span {
  display: block;
  /*text-align:right;*/
  width: 270px;
  display: block;
}

.fb_header {
  background-color: #C9CBD7;
  font-weight: bold;
  padding: 4px 4px 4px 8px;
}

/*
.subscribe
{
  float:right;
  width:220px;
  position:relative;
}

#emailInput
{
  width:150px;
  margin-left:10px;
}

#submitBtn
{
  margin-left: 42px;
  margin-top:10px;
}

.subscribe .label
{
  font-size:12px;
}

.subscribe p
{

  margin-bottom:8px;
  color:#dddddd;
  font-weight:normal;
}

.subscribe_content
{
  position:absolute;
  top:0px;
  left:20px;
  color:#ffffff;
}


*/
.main_content:before, .main_content:after {
  content: "";
  display: table;
}
.main_content:after {
  clear: both;
}
.main_content {
  padding-bottom: 20px;
}

.side_content {
  padding-top: 8px;
}
@media only screen and (max-width: 767px) {
  .side_content {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .about .content .divider {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    width: 67px;
    top: 30px;
    bottom: 30px;
    right: 329px;
    margin-left: -33px;
    margin-right: -33px;
    background-image: url("/img/layout/h-divider-v-middle.png");
    background-repeat: repeat-y;
    position: absolute;
  }
  .about .content .divider .divider-left {
    background-image: url("/img/layout/h-divider-top.png");
    background-repeat: no-repeat;
    height: 80px;
    width: 67px;
    position: absolute;
    top: 0;
  }
  .about .content .divider .divider-right {
    background-image: url("/img/layout/h-divider-bottom.png");
    background-repeat: no-repeat;
    height: 80px;
    width: 67px;
    position: absolute;
    bottom: 0;
  }
}
.toy_tile {
  padding-bottom: 40px;
}
.toy_tile h3 {
  text-align: center;
}
.toy_tile img {
  width: 100%;
  border: solid 1px #a2a2a2;
}
.toy_tile .info {
  height: 60px;
}

@media (min-width: 600px) {
  .toy_tile_a, .toy_tile_c, .toy_tile_e, .toy_tile_g, .toy_tile_i {
    width: 45%;
    float: left;
  }
  .toy_tile_b, .toy_tile_d, .toy_tile_f, .toy_tile_h, .toy_tile_j {
    width: 45%;
    float: right;
  }
}
@media (min-width: 1000px) {
  .toy_tile_a, .toy_tile_d, .toy_tile_g {
    width: 30%;
    float: left;
    margin-right: 5%;
  }
  .toy_tile_b, .toy_tile_e, .toy_tile_h {
    width: 30%;
    float: left;
  }
  .toy_tile_c, .toy_tile_f, .toy_tile_i {
    width: 30%;
    float: right;
  }
}
.workshops .wide_image {
  width: 100%;
}
.workshops .small_image {
  width: 25%;
  float: right;
}
.workshops .tile {
  margin-bottom: 80px;
  max-width: 915px;
  margin-left: auto;
  margin-right: auto;
}
.workshops .tile .info {
  text-align: center;
}
@media (min-width: 800px) {
  .workshops .tile .info h4, .workshops .tile .info span {
    font-size: 20px;
  }
}

.year-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* GRID CONTAINER */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 columns */
  gap: 24px;
}

.sloped-left .project-tile:nth-child(2n+1) {
  position: relative;
  top: 2.125vw;
}
.sloped-left .project-tile:nth-child(2n) {
  position: relative;
  top: -2.125vw;
}

/* >= 600px → 3 columns */
@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sloped-left .project-tile:nth-child(3n+1) {
    position: relative;
    top: 2.55vw;
  }
  .sloped-left .project-tile:nth-child(3n+2) {
    position: relative;
    top: 0;
  }
  .sloped-left .project-tile:nth-child(3n) {
    position: relative;
    top: -2.55vw;
  }
}
/* >= 1200px → 4 columns */
@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sloped-left .project-tile:nth-child(4n+1) {
    position: relative;
    top: 2.55vw;
  }
  .sloped-left .project-tile:nth-child(4n+2) {
    position: relative;
    top: 0.85vw;
  }
  .sloped-left .project-tile:nth-child(4n+3) {
    position: relative;
    top: -0.85vw;
  }
  .sloped-left .project-tile:nth-child(4n) {
    position: relative;
    top: -2.55vw;
  }
}
/* >= 1500px → 5 columns */
@media (min-width: 1500px) {
  .projects-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .sloped-left .project-tile:nth-child(5n+1) {
    position: relative;
    top: 2.55vw;
  }
  .sloped-left .project-tile:nth-child(5n+2) {
    position: relative;
    top: 1.275vw;
  }
  .sloped-left .project-tile:nth-child(5n+3) {
    position: relative;
    top: 0;
  }
  .sloped-left .project-tile:nth-child(5n+4) {
    position: relative;
    top: -1.275vw;
  }
  .sloped-left .project-tile:nth-child(5n) {
    position: relative;
    top: -2.55vw;
  }
}
/* Outer tile */
.project-tile {
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Title + date area */
.project-header {
  padding: 1rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
}

.project-header .username {
  display: none;
}

.project-header .brand-logo-wrapper {
  height: 70px;
  justify-content: left;
  padding-bottom: 10px;
}
.project-header .brand-logo-wrapper .logo-alt {
  font-size: 25px;
  color: #25306c;
  /* NEW: limit to two lines */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  line-height: 1.2rem;
}

.project-header .brand-logo {
  max-height: 50px;
  max-width: 100%;
  display: block;
}

.project-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.project-tile .total-views {
  font-size: 18px;
  margin-bottom: 5px;
}

/* 9×16 image wrapper */
.project-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #f3f3f3;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stronger & earlier fade-to-black */
.project-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
  z-index: 1; /* behind the caption */
}

/* Caption text */
.project-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.85rem;
  color: white;
  font-size: 0.75rem;
  line-height: 1rem;
  /* Allow 2–6 lines depending on your needs */
  max-height: 7.8rem; /* ~6 lines @ 1.3rem */
  overflow: hidden;
  z-index: 2; /* above gradient */
}
@media (min-width: 600px) {
  .project-caption {
    font-size: 0.85rem;
    line-height: 1.1rem;
  }
}
@media (min-width: 770px) {
  .project-caption {
    font-size: 0.95rem;
    line-height: 1.3rem;
  }
}
.project-caption .date {
  display: block;
  font-family: "brandon", Arial;
  font-weight: bold;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrapper .logo-alt {
  /* NEW: limit to two lines */
  display: none;
  font-family: burpee, tahoma;
  font-size: 34px;
}

/* BRANDS SHOWCASE */
.zero-views {
  display: none;
}

.project__id {
  display: none;
}

.showcase .brand-logo-wrapper {
  height: 100px;
}
.showcase .brand-logo-wrapper .brand-logo {
  max-height: 100px;
  max-width: 100%;
  display: block;
}
.showcase .brand-logo-wrapper .logo-alt {
  font-size: 30px;
}

.play-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.campaign-panel .content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2.5rem 0;
}
.campaign-panel .content:last-child {
  border-bottom: none;
}

.campaign__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.campaign-panel.sloped-right {
  padding-top: 4.25vw;
}
.campaign-panel.sloped-right .campaign__left {
  margin-top: -5.95vw;
}

.campaign__header {
  padding-bottom: 40px;
}

.campaign__info {
  max-width: 520px;
}

.campaign__caption {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  font-family: "gotham-book", Arial;
}

.campaign__date {
  font-size: 1rem;
  display: block;
  color: #638599;
  margin-bottom: 1.5rem;
}

.campaign__stats {
  font-size: 0.75rem;
}

.campaign__total {
  font-size: 1rem;
}

.campaign__platforms {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.3rem;
}

.campaign__platforms li {
  margin: 0;
}

/* Entire row is still the link */
.platform {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Platform logo */
.platform__logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

/* Views + likes */
.platform__stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.platform__views,
.platform__likes {
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 500px) {
  .platform__stats {
    font-size: 0.95rem;
  }
  .campaign__date {
    font-size: 1.15rem;
  }
  .campaign__stats {
    font-size: 0.95rem;
    margin-top: auto;
  }
  .campaign__total {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 800px) {
  .campaign__caption {
    font-size: 1.8rem;
  }
  .campaign__date {
    font-size: 1.3rem;
  }
  .campaign__platforms {
    margin: 1.5rem 0 0;
    gap: 1rem;
  }
  /* Platform logo */
  .platform__logo {
    height: 40px;
  }
  .panel:has(+ .sloped-right) .campaign__stats {
    margin-bottom: 4.25vw;
  }
}
.campaign__video {
  display: flex;
  justify-content: flex-end;
}

.campaign__right {
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 500px) {
  .campaign__right {
    width: 350px;
  }
}
@media (min-width: 800px) {
  .campaign__right {
    width: 280px;
  }
}

.video-embed {
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 800px) {
  .campaign-panel .content {
    grid-template-columns: 1fr;
  }
  .campaign__video {
    justify-content: flex-start;
  }
}
main .tiktok-embed {
  /*width:325px;*/
}

.insta-embed {
  /*width:325px;*/
}

.overlay-header {
  height: 80px;
  width: 100%;
  position: absolute;
  top: 0;
  margin: 10px;
}

.overlay-close-button {
  background-image: url("/img/layout/close-icon.png");
  width: 50px;
  height: 50px;
  background-size: cover;
  display: block;
}
.overlay-close-button:hover {
  background-image: url("/img/layout/close-icon-hover.png");
}

#reel-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); /* white background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.overlay-content {
  position: absolute; /* or fixed, depending on use */
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  resize: both;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 600px) {
  .overlay-content {
    top: 0;
    left: 70px;
    right: 70px;
  }
}

.reel-wrapper {
  height: 100%;
  aspect-ratio: 9/16;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-player {
  width: 100%;
  aspect-ratio: 9/16;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#player {
  width: 100%;
  height: 100%;
}

/* Add a class to show it when active */
#reel-overlay.is-active {
  display: flex;
}

@font-face {
  font-family: "brandon";
  src: url("fonts/brandon_grotesque_bold-webfont.eot");
  src: url("fonts/brandon_grotesque_bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/brandon_grotesque_bold-webfont.woff2") format("woff2"), url("fonts/brandon_grotesque_bold-webfont.woff") format("woff"), url("fonts/brandon_grotesque_bold-webfont.ttf") format("truetype"), url("fonts/brandon_grotesque_bold-webfont.svg#brandon_grotesquebold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-book";
  src: url("fonts/Gotham-Book.eot?") format("eot"), url("fonts/Gotham-Book.woff") format("woff"), url("fonts/Gotham-Book.ttf") format("truetype");
}
@font-face {
  font-family: "burpee";
  src: url("fonts/burpee.woff2") format("woff2"), url("fonts/burpee.woff?") format("woff");
}
/* Paints the Safari rubber-band overscroll area (top + bottom).
   Safari paints the overscroll region from html's background-COLOR only;
   it ignores background-image/gradient, so this has to be a solid color.
   #404d66 is the midpoint between $left-gradient-color (#3f466c) and
   $right-gradient-color (#41535f). */
html {
  background-color: #404d66;
}

body {
  /* No background here on purpose — body::before paints the visible
     gradient. If body itself has a background, Safari paints that into
     the TOP overscroll area asymmetrically, causing the overscroll
     color to look like the gradient's left edge instead of the html
     background-color. */
  margin: 0;
  font-family: gotham-book, Arial;
  overflow-x: hidden;
  color: #3f3f3f;
}

body.no-scroll {
  overflow: hidden;
}

a, a:visited {
  text-decoration: none;
  color: #00a8ff;
}

a, img {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: #25306c;
  font-family: burpee, tahoma;
  text-transform: uppercase;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 24px;
}

header {
  z-index: 1000;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 100, 0.4));
}

main {
  z-index: 50;
  display: block;
  background-color: #eff3fd;
}

main > section:first-of-type h1 {
  padding-top: 30px;
}

main.press h1, main.press h2 {
  text-align: left;
}

main .content {
  margin: 0 20px 0 20px;
}
@media only screen and (min-width: 500px) {
  main .content {
    margin: 0 30px 0 30px;
  }
}

main .content:not(.flexy, .project, .campaign):before, main .content:not(.flexy, .project, .campaign):after {
  content: "";
  display: table;
}
main .content:not(.flexy, .project, .campaign):after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  main .content, header .content, footer .content {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 880px) {
  main .content, header .content, footer .content {
    width: 791px;
  }
}
@media only screen and (min-width: 1000px) {
  main .content, header .content, footer .content {
    width: 911px;
  }
}
@media only screen and (min-width: 1320px) {
  main .content, header .content, footer .content {
    width: 1232px;
  }
}

.page-title {
  padding-top: 40px;
  text-align: center;
  padding-bottom: 17px;
}
.page-title h1 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 3px;
  position: relative;
  z-index: 11;
}
@media only screen and (min-width: 768px) {
  .page-title h1 {
    font-size: 30px;
  }
}
.page-title .divider {
  width: 270px;
  position: relative;
  z-index: 10;
  top: -10px;
}
@media only screen and (min-width: 768px) {
  .page-title .divider {
    top: -12px;
    width: 380px;
  }
}

.page-blurb {
  padding-bottom: 30px;
  text-align: center;
}
@media (min-width: 500px) {
  .page-blurb {
    font-size: 20px;
  }
}

section {
  position: relative;
  width: 100%;
}

.panel {
  overflow: visible;
}
.panel h1, .panel h2 {
  text-align: center;
}
.panel:nth-of-type(odd) {
  z-index: 0;
}
.panel:nth-of-type(odd)::after {
  bottom: -4.25vw;
}
.panel:nth-of-type(odd)::after, .panel:nth-of-type(odd)::before {
  background-color: #eff3fd;
}
.panel:nth-of-type(odd)::before {
  top: -4.25vw;
}
.panel:nth-of-type(even) {
  z-index: 1;
}
.panel:nth-of-type(even)::before, .panel:nth-of-type(even)::after {
  background-color: rgb(255, 255, 255);
}
.panel:nth-of-type(even) {
  filter: drop-shadow(0 0 30px rgba(0, 0, 100, 0.3));
}
.panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  bottom: 48%;
  z-index: 1;
}
.panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  top: 48%;
  z-index: 1;
}
.panel {
  /* ------------------------------
     Angle variations
     ------------------------------ */
}
.panel:nth-of-type(even).sloped-left::before {
  top: -4.25vw;
  clip-path: polygon(0 8.5vw, 100% 0, 100% 100%, 0 100%);
}
.panel:nth-of-type(even).sloped-right::before {
  top: -4.25vw;
  clip-path: polygon(0 0, 100% 8.5vw, 100% 100%, 0 100%);
}
.panel:nth-of-type(even):has(+ .sloped-left)::after {
  bottom: -4.25vw;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.5vw), 0 100%);
}
.panel:nth-of-type(even):has(+ .sloped-right)::after {
  bottom: -4.25vw;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 8.5vw));
}

@media only screen and (max-width: 499px) {
  .split_b {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 500px) {
  .split .split_a {
    width: 48%;
    float: left;
  }
  .split .split_b {
    width: 48%;
    float: right;
  }
}
section h1, section h2 {
  margin-top: 0;
}

section h1:last-child, section h2:last-child {
  margin-bottom: 0;
}

.heading h2 {
  margin-bottom: 0;
}

section .content {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
  z-index: 2;
}

.heading {
  text-align: center;
  margin-bottom: 0.83em;
}

.heading .biline {
  margin-top: 8px;
  display: block;
}

.section_a h2, .section_b h2 {
  font-size: 18px;
}
@media only screen and (min-width: 500px) {
  .section_a h2, .section_b h2 {
    font-size: 21px;
  }
}
@media only screen and (min-width: 768px) {
  .section_a h2, .section_b h2 {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1000px) {
  .section_a h2, .section_b h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1320px) {
  .section_a h2, .section_b h2 {
    font-size: 33px;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tile {
  border: solid 1px #a2a2a2;
}
.tile .info {
  background-color: #ffffff;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-left: 12px;
  padding-right: 12px;
}
.tile h4 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 0;
}
.tile span {
  display: inline-block;
  padding-top: 3px;
}
.tile.feature span.viewcount {
  float: right;
  font-size: 15px;
}
.tile.feature .ago {
  float: right;
}
.tile img {
  width: 100%;
}

.divider {
  height: 67px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/img/layout/h-divider-middle.png");
  background-repeat: repeat-x;
  margin-top: -33px;
  margin-bottom: -33px;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .divider {
    width: 97%;
  }
}
@media only screen and (min-width: 768px) {
  .divider {
    width: 770px;
  }
}
@media only screen and (min-width: 880px) {
  .divider {
    width: 841px;
  }
}
@media only screen and (min-width: 1000px) {
  .divider {
    width: 961px;
  }
}
@media only screen and (min-width: 1320px) {
  .divider {
    width: 1282px;
  }
}
.divider .divider-left {
  background-image: url("/img/layout/h-divider-left.png");
  background-repeat: no-repeat;
  width: 80px;
  height: 67px;
  float: left;
}
.divider .divider-right {
  background-image: url("/img/layout/h-divider-right.png");
  background-repeat: no-repeat;
  width: 80px;
  height: 67px;
  float: right;
}

.content .divider {
  margin-left: -20px;
  margin-right: -20px;
  width: auto;
}

.nav-panel .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 600px) {
  .nav-panel .content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
.nav-panel .content .back-link {
  font-size: 14px;
}
@media (min-width: 500px) {
  .nav-panel .content .back-link {
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  .nav-panel .content .back-link {
    padding-top: 4px;
    font-size: 18px;
    grid-column: 1;
    justify-self: start;
  }
}
@media (min-width: 700px) {
  .nav-panel .content .back-link {
    font-size: 20px;
  }
}
@media (min-width: 600px) {
  .nav-panel .content .nav-title {
    grid-column: 2;
    justify-self: center;
  }
}

img.missing {
  display: none !important;
}

img.missing + .logo-alt {
  display: -webkit-box;
}

/*# sourceMappingURL=main.css.map */
