/*==========================================================================
== PUBLIC HELPER CLASSES CSS
========================================================================== */

/*----  HELPER CLASSES ------*/
/**Colors**/
/**GRID**/
/**GRID**/
/**FLEX**/
.blue-txt {
  color: #214197;
}
.blue-bg {
  background-color: #214197;
}
.ltblue-txt {
  color: #6698d7;
}
.dkblue-txt {
  color: #00285e;
}
.ltgray-txt {
  color: #bbc4ca;
  /**Fonts**/
}
.prox-nova {
  font-family: proxnova-semi;
}
.sullivan {
  /*$sullivan;*/
  font-family: ;
}
.goth {
  font-family: ;
}
.goth-bold {
  font-family: gothic-bold;
}
.goth-light {
  font-family: gothic-light;
  /**TEXT**/
}
.txt-c {
  text-align: center;
}
.txt-l {
  text-align: left;
}
.txt-r {
  text-align: right;
  /**IMAGES**/
}
.img-wrap.cover img, .img-cnt.cover img, img.cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;
  object-fit: cover;
}
.img-wrap.contain img, .img-cnt.contain img, img.contain {
  width: 100%;
  max-width: inherit;
  height: 100%;
  max-height: inherit;
  object-fit: contain;
}
img.bg-cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*Lazy Load*/
}
img.lazy {
  transition: 0.25s;
  opacity: 0;
}
img.lazy.loaded {
  opacity: 1;
}
.lazy.lazy-bg {
  position: relative;
  background-size: 0% !important;
  /**POSITION**/
}
.lazy.lazy-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: inherit;
  background-position: inherit;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.lazy.lazy-bg.loaded::after {
  opacity: 1;
}
.pos-abs {
  position: absolute;
}
.pos-abs.top {
  top: 0;
}
.pos-abs.bottom {
  bottom: 0;
}
.pos-abs.left {
  left: 0;
}
.pos-abs.right {
  right: 0;
}
.pos-abs.top-50 {
  top: 50%;
}
.pos-abs.top-100 {
  top: 100%;
}
.pos-abs.bottom-50 {
  bottom: 50%;
}
.pos-abs.bottom-100 {
  bottom: 100%;
}
.pos-abs.left-50 {
  left: 50%;
}
.pos-abs.left-100 {
  left: 100%;
}
.pos-abs.right-50 {
  right: 50%;
}
.pos-abs.right-100 {
  right: 100%;
}
.pos-abs.full-w-h {
  width: 100%;
  height: 100%;
}
.pos-abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pos-abs-before, .pos-abs-after {
  position: relative;
}
.pos-abs-before::before, .pos-abs-after::after {
  position: absolute;
  content: "";
}
.pos-abs-before.top::before, .pos-abs-after.top::after {
  top: 0;
}
.pos-abs-before.bottom::before, .pos-abs-after.bottom::after {
  bottom: 0;
}
.pos-abs-before.left::before, .pos-abs-after.left::after {
  left: 0;
}
.pos-abs-before.right::before, .pos-abs-after.right::after {
  right: 0;
}
.pos-abs-before.full-w-h::before, .pos-abs-after.full-w-h::after {
  width: 100%;
  height: 100%;
}
.pos-abs-before-cover, .pos-abs-after-cover {
  position: relative;
}
.pos-abs-before-cover::before, .pos-abs-after-cover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  /*Containers*/
}
.inner-wrap.max-width {
  max-width: ;
  margin-left: auto;
  margin-right: auto;
  /**FLEX**/
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-col {
  flex-direction: column;
}
.flex-col-rev {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-rev {
  flex-direction: row-reverse;
  /**GRID**/
}
.grid-cnt {
  display: grid;
}
.grid-cnt.two-col {
  grid-template-columns: 1fr 1fr;
}
.grid-cnt.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cnt.four-col {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cnt.five-col {
  grid-template-columns: repeat(5, 1fr);
}
.screenreader-content {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  clip: rect(1px 1px 1px 1px) !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  /*-----------------------------------------------------
--  MEDIA QUERIES
-----------------------------------------------------*/
}
@media only screen and (max-width: 1023px) {
  /*1023px*/  .grid-cnt.three-col {
    grid-template-columns: 1fr;
  }
  .grid-cnt.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cnt.five-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  /*767px*/  .grid-cnt.four-col {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-cnt.five-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  /*500px*/  [class^="flex"] {
    display: flex;
  }
  [class^="flex"].two-col > * {
    flex-basis: 100%;
  }
  [class^="flex"].three-col > * {
    flex-basis: 100%;
  }
  [class^="flex"].four-col > * {
    flex-basis: 100%;
  }
  [class^="flex"].five-col > * {
    flex-basis: 100%;
  }
}


/*==========================================================================
== PUBLIC MAIN THEME CSS
========================================================================== */

/*-----------------------------------------------------
--  MAIN STYLES
-----------------------------------------------------*/
:root {
  --blue: #214197;
  --ltBlue: #6698d7;
  --dkBlue: #00285e;
  --ltGray: #bbc4ca;
  --goth: ;
  --goth-bold: ;
  --goth-light: gothic-light;
  /*---- BASIC STYLE RESETS -----*/
}
body {
  overflow-x: hidden;
  /*body*/
  /*----  HEADER NAVIGATION -----*/
}
body p, body a {
  text-decoration: none;
  outline: none;
}
body p:visited, body a:visited {
  color: #214197;
}
body p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 2;
}
body ul {
  list-style-type: none;
}
body button {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
body::-webkit-scrollbar {
  width: 0px;
}
#page {
  display: flex;
  /*** HEADER ***/
  justify-content: flex-end;
  /*#page*/
  /*-----------------------------------------------------
--  MEDIA QUERIES
-----------------------------------------------------*/
}
#page #site-header {
  height: 100vh;
  width: 375px;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(0%, 0, 0);
  transition: 0.25s;
  background: #214197;
  color: #6698d7;
  z-index: 9;
  /*#site-header*/
  /*---- Mobile Header ----*/
}
#page #site-header > .inner-wrap {
  height: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  padding: 60px 0 20px;
  /*-- Logo --*/
}
#page #site-header .site-branding, #page #site-header #header-logo {
  display: block;
  width: 100%;
  text-align: center;
  /*-- Nav --*/
}
#page #site-header .site-branding img, #page #site-header #header-logo img {
  width: 200px;
}
#page #site-header #site-navigation {
  margin-top: 50px;
  flex-grow: 1;
  /*#site-navigation*/
  /*-- Close Button --*/
}
#page #site-header #site-navigation ul.menu {
  /*ul.menu*/
}
#page #site-header #site-navigation ul.menu li {
  display: block;
  margin-bottom: 10px;
  float: none;
  /*li*/
}
#page #site-header #site-navigation ul.menu li a {
  font-family: gothic-bold;
  font-size: 18px;
  color: #6698d7;
  text-transform: uppercase;
  transition: 0.25s;
}
#page #site-header #site-navigation ul.menu li.current-menu-item > a, #page #site-header #site-navigation ul.menu li:hover > a {
  color: white;
}
#page #site-header #main-nav-close {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 17px;
  right: 0;
  padding: 0;
  transform: translateX(50%);
  background: #214197;
  border-radius: 50%;
  outline: none;
  /*#main-nav-close*/
  /*-- Social Media --*/
}
#page #site-header #main-nav-close svg {
  width: 23px;
  overflow: visible;
  transform: rotate(0deg);
  transition: 0.25s;
}
#page #site-header #main-nav-close:hover svg {
  transform: rotate(45deg);
}
#page #site-header .social-media-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  /*.social-media-links*/
  /*-- Copyright --*/
}
#page #site-header .social-media-links a {
  display: block;
  opacity: 0.5;
  transition: 0.25s;
}
#page #site-header .social-media-links a:hover {
  opacity: 1;
}
#page #site-header .social-media-links a img {
  width: 20px;
}
#page #site-header .social-media-links a:nth-child(2) img {
  width: 12px;
}
#page #site-header .copyright {
  margin: 10px auto 0;
  /*.copyright*/
}
#page #site-header .copyright p, #page #site-header .copyright span {
  color: white;
}
#page #site-header .copyright span {
  margin-right: 5px;
}
#page #mobile-site-header {
  display: none;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: sticky;
  top: 0;
  transition: 0.25s height;
  z-index: 9;
  background: #214197;
  /*#mobile-site-header*/
  /*----  FOOTER -----*/
}
#page #mobile-site-header .site-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100%;
}
#page #mobile-site-header .logo-cnt {
  display: flex;
  width: 140px;
  max-width: calc(100% - 40px);
  max-height: inherit;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transition: 0.25s;
}
#page #mobile-site-header #mobile-menu-btn {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  /*#mobile-menu-btn*/
}
#page #mobile-site-header #mobile-menu-btn span {
  display: block;
  width: 40px;
  height: 3px;
  background: white;
}
#page #mobile-site-header #mobile-menu-btn span.a {
  margin-bottom: 8px;
}
#page #footer {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*-- Logo --*/
  padding: 30px 20px;
  /*#footer*/
  /*---- PAGE CONTENT -----*/
}
#page #footer a#footer-logo {
  width: 100%;
  max-width: 240px;
  margin-bottom: 20px;
  /*-- Social Media --*/
}
#page #footer .social-media-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 230px;
  margin-bottom: 20px;
  /*.social-media-links*/
}
#page #footer .social-media-links a {
  display: block;
  opacity: 1;
  transition: 0.25s;
}
#page #footer .social-media-links a:hover {
  opacity: 0.5;
}
#page #footer .social-media-links a img {
  width: 20px;
}
#page #footer .social-media-links a:nth-child(2) img {
  width: 12px;
}
#page #footer .copyright p {
  margin-bottom: 0;
}
#page #content {
  width: calc(100% - 375px);
  transition: 0.25s;
  /*---- NAV CLOSED -----*/
}
#page.nav-closed #site-header {
  transform: translate3d(-98%, 0, 0);
}
#page.nav-closed #site-header #main-nav-close svg {
  transform: rotate(45deg);
}
#page.nav-closed #site-header #main-nav-close:hover svg {
  transform: rotate(0deg);
}
#page.nav-closed #content {
  width: 100%;
}
#page.mobile-nav-active #site-header {
  transform: translate3d(0, 0, 0) !important;
}
@media only screen and (max-width: 1200px) {
  /*1200px*/  #page #site-header {
    width: 300px;
    /*Page Content*/
  }
  #page #site-header #header-logo {
    width: 240px;
  }
  #page #content {
    width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 1023px) {
  /*1023px*/}
@media only screen and (max-width: 1023px) {
  /*$mobileNavBreakpoint*/  #page {
    display: block;
    /*#page*/
    /*-- Sticky Header --*/
  }
  #page #site-header {
    width: 100vw;
    transform: translate3d(-100%, 0, 0) !important;
    overflow-y: scroll;
    touch-action: pan-y;
    z-index: 99;
    /*#site-header*/
  }
  #page #site-header > .inner-wrap {
    height: auto;
    min-height: 100%;
  }
  #page #site-header #site-navigation {
    margin: 30px 0;
  }
  #page #site-header #site-navigation ul.menu {
    display: flex;
    flex-direction: column;
  }
  #page #site-header #site-navigation ul.menu li a {
    font-size: 26px;
  }
  #page #site-header #header-logo {
    width: 280px;
  }
  #page #site-header #main-nav-close {
    transform: none;
    right: 50px;
    /*#main-nav-close*/
  }
  #page #site-header #main-nav-close svg.nav-close-btn {
    width: 50px;
  }
  #page #site-header #main-nav-close svg.nav-close-btn .st0 {
    stroke-width: 4px;
  }
  #page #site-header #main-nav-close svg.nav-close-btn .st1 {
    stroke-width: 3px;
  }
  #page #site-header .copyright {
    display: none;
  }
  #page #mobile-site-header {
    display: flex;
  }
  #page #content {
    width: 100%;
    /*Footer*/
  }
  #page #footer {
    display: flex;
  }
  body.at-top #page #mobile-site-header {
    height: 65px;
  }
}
@media only screen and (max-width: 767px) {
  /*767px*/  body #page #mobile-site-header {
    height: 65px !important;
  }
  #page #site-header .site-branding img, #page #site-header #header-logo img {
    width: 130px;
  }
  #footer {
    border-top: 1px solid #bbc4ca;
  }
}
@media only screen and (max-width: 500px) {
  /*500px*/  #page {
    /*#page*/
  }
  #page #site-header {
    /*#site-header*/
  }
  #page #site-header #site-navigation ul.menu li a {
    font-size: 22px;
  }
  #page #site-header .social-media-links {
    margin-bottom: 30px;
  }
  #page #site-header #main-nav-close {
    right: 20px;
  }
  #page #site-header #main-nav-close svg.nav-close-btn {
    width: 35px;
  }
  #page #mobile-site-header {
    justify-content: space-between;
    padding: 5px 20px;
    /*#mobile-site-header*/
  }
  #page #mobile-site-header .site-branding {
    display: block;
  }
  #page #mobile-site-header #mobile-menu-btn {
    position: initial;
    transform: none;
  }
  #page #mobile-site-header #mobile-menu-btn span {
    width: 34px;
  }
}
@media only screen and (max-width: 350px) {
  /*350px*/}
@media only screen and (max-height: 750px) {
  /*750px tall*/  #page #site-header > .inner-wrap {
    padding-top: 50px;
  }
  #page #site-header > .inner-wrap #site-navigation ul.menu li.current-menu-item > a {
    font-size: 20px;
  }
}
@media only screen and (max-height: 750px) and (min-width: 1024px) {
  /*Desktop and 750px tall*/  #page #site-header > .inner-wrap {
    padding-top: 5px;
  }
  #page #site-header #site-navigation {
    margin-top: 30px;
  }
  #page #site-header .social-media-links {
    margin-top: 30px;
  }
}


/*==========================================================================
== PUBLIC COMMON CSS
========================================================================== */

/*-----------------------------------------------------
--  COMMON STYLES
-----------------------------------------------------*/
/*-- Archive Page Header (filters and view options) --*/
/*-- Article Modals --*/
/*Page Filters*/
/*Page Filters*/
.page-filters {
  padding: 0 20px;
  /*.page-filters*/
}
.page-filters > .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 30px;
}
.page-filters button {
  font-family: gothic-bold;
  font-size: 18px;
  color: #bbc4ca;
  text-transform: uppercase;
  transition: 0.25s;
  /*Filters*/
}
.page-filters button:hover, .page-filters button.active {
  color: #214197;
}
.page-filters .col.filter-links {
  display: flex;
  /*.col.filter-links*/
  /*Options*/
}
.page-filters .col.filter-links .filter {
  padding: 0 5px 30px;
  margin-right: 20px;
  position: relative;
  order: 3;
}
.page-filters .col.filter-links .filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5px;
  width: 100%;
  height: 2px;
  background: #214197;
  opacity: 0;
  transition: 0.25s;
}
.page-filters .col.filter-links .filter:hover::after, .page-filters .col.filter-links .filter.active::after {
  opacity: 1;
}
.page-filters .col.filter-links .filter[data-filter='all'], .page-filters .col.filter-links .filter[data-filter='shark tank'] {
  order: 2;
}
.page-filters .col.options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 30%;
  max-width: 350px;
  padding-bottom: 28px;
  /*.col.options*/
}
.page-filters .col.options.two-col {
  align-items: flex-start;
  padding-bottom: 0px;
}
.page-filters .col.options .filters {
  position: relative;
  margin-right: 6vw;
  /*.filters*/
}
.page-filters .col.options .filters .select-ui {
  position: relative;
  top: 3px;
  font-family: gothic-bold;
  min-width: 150px;
  font-size: 18px;
  text-transform: uppercase;
  text-align: right;
  line-height: 1;
  /*.select-ui*/
}
.page-filters .col.options .filters .select-ui .selected {
  margin: 0;
  padding-right: 35px;
  position: relative;
  color: #214197;
  line-height: inherit;
  white-space: nowrap;
}
.page-filters .col.options .filters .select-ui .selected::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #214197;
}
.page-filters .col.options .filters .select-ui .options-cnt {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  padding: 12px 20px;
  background: #214197;
  color: white;
  text-align: left;
  white-space: nowrap;
  z-index: 9;
  transition: 0.25s;
  clip-path: inset(0% 0% 100% 0%);
}
.page-filters .col.options .filters .select-ui .options-cnt.active {
  display: block;
  clip-path: inset(0% 0% 0% 0%);
}
.page-filters .col.options .filters .select-ui .options-cnt .option {
  cursor: pointer;
  margin-bottom: 8px;
  font-size: 20px;
  opacity: 1;
  transition: 0.25s;
}
.page-filters .col.options .filters .select-ui .options-cnt .option:hover {
  opacity: 0.8;
}
.page-filters .col.options .filters .select-ui .options-cnt .close-btn {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  margin-right: 0;
}
.page-filters .col.options .filters .select-ui .options-cnt .close-btn svg {
  width: 30px;
  border-radius: 50%;
}
.page-filters .col.options .filters .select-ui .options-cnt .close-btn svg .st0 {
  fill: none;
}
.page-filters .col.options select {
  display: none;
  max-width: 150px;
  margin-right: 20px;
  background: none;
  border: none;
  font-family: gothic-bold;
  text-transform: uppercase;
  color: #214197;
  font-size: 18px;
}
.page-filters .col.options .view-options {
  display: flex;
  /*Films*/
  align-items: center;
}
.page-filters .col.options .view-options .accolades-info {
  display: flex;
  text-transform: uppercase;
  /*.accolades-info*/
}
.page-filters .col.options .view-options .accolades-info .star-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2019/06/accolade-star-icon_ltgray.svg) no-repeat center;
  margin-left: 10px;
  margin-right: 50px;
}
.page-filters .col.options button {
  margin-right: 20px;
}
.page-filters .col.options button svg {
  width: 18px;
}
.page-filters .col.options button svg .st0 {
  fill: #bbc4ca;
}
.page-filters .col.options button.active svg .st0 {
  fill: #214197;
}
#pg-content {
  border-top: 1px solid #bbc4ca;
  /*-- GRID VIEW ELEMENTS --*/
}
article.grid-item {
  width: calc((100vw - 375px) / 4);
  height: calc((100vw - 375px) / 4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-right: 1px solid #bbc4ca;
  border-bottom: 1px solid #bbc4ca;
  position: relative;
  overflow: hidden;
  /*article.grid-item*/
}
article.grid-item > .inner-wrap {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}
article.grid-item img:not(.bg-cover) {
  max-width: 200px;
  max-height: 130px;
  margin-bottom: 30px;
  object-fit: contain;
  transform: scale(1);
  transition: 0.25s;
}
article.grid-item:hover img:not(.bg-cover) {
  transform: scale(1.05);
}
article.grid-item .title {
  display: none;
  flex-basis: 35%;
  margin-bottom: 0px;
  font-size: 26px;
  text-align: left;
  line-height: 1;
  text-transform: uppercase;
}
article.grid-item .content-cnt {
  display: block;
  justify-content: space-between;
  align-items: center;
  flex-basis: 60%;
  position: relative;
}
article.grid-item .content-cnt p {
  color: #bbc4ca;
  margin-bottom: 0;
}
article.grid-item .loading-bar {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
  /*.loading-bar*/
  /*ALTERNATE LAYOUT ITEMS*/
}
article.grid-item .loading-bar .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #214197;
}
article.grid-item.alt-layout {
  justify-content: flex-start;
  align-items: flex-end;
  /*.alt-layout*/
}
article.grid-item.alt-layout::before {
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}
article.grid-item.alt-layout > .inner-wrap {
  width: 100%;
  max-width: 100%;
  text-align: left;
  z-index: 1;
}
article.grid-item.alt-layout img.bg-cover {
  transform: scale(1);
  transition: 0.25s ease-out;
}
article.grid-item.alt-layout:hover img.bg-cover {
  transform: scale(1.05);
}
article.grid-item.alt-layout .title {
  display: block;
  color: #00285e;
}
article.grid-item.alt-layout .blue-txt {
  color: #214197;
}
article.grid-item.alt-layout .accolades-cnt {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  z-index: 9;
  /*.accolades-cnt*/
}
article.grid-item.alt-layout .accolades-cnt .accolades-text {
  position: absolute;
  left: 32px;
  top: -30px;
  padding: 20px;
  color: var(--blue);
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translate(-100%, -100%);
  transition: 0.25s ease-out;
  /*.accolades-text*/
}
article.grid-item.alt-layout .accolades-cnt .accolades-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 9px;
  width: 0;
  height: 0;
  transform: translateY(100%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid white;
}
article.grid-item.alt-layout .accolades-cnt .accolades-text ul.accolades {
  padding-left: 10px;
  margin: 0;
  width: 220px;
  list-style-type: disc;
}
article.grid-item.alt-layout .accolades-cnt:hover .accolades-text {
  opacity: 1;
  visibility: visible;
  top: -20px;
}
article.grid-item.alt-layout a {
  z-index: 2;
}
body.nav-closed #pg-content:not(.list-view) article.grid-item {
  width: calc(100vw / 5);
  height: calc(100vw / 5);
  /*-- LIST VIEW ELEMENTS --*/
}
.list-view article.grid-item {
  width: 100%;
  height: auto;
  padding: 30px 0;
  /*.list-view article.grid-item*/
  /*-- Article Modals --*/
}
.list-view article.grid-item > .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 30px;
}
.list-view article.grid-item img {
  display: none;
}
.list-view article.grid-item .title {
  display: block;
}
.list-view article.grid-item .content-cnt {
  display: flex;
  /*.content-cnt*/
}
.list-view article.grid-item .content-cnt p {
  max-width: 450px;
  text-align: left;
  margin-right: 20px;
}
.list-view article.grid-item .content-cnt p.name {
  display: none;
}
.list-view article.grid-item .content-cnt p.blue-txt {
  font-size: 18px;
  text-transform: uppercase;
  font-family: gothic-bold;
}
.list-view article.grid-item .content-cnt::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/wp-content/uploads/2019/05/list.article-button.svg) no-repeat center center;
  background-size: contain;
}
.list-view article.grid-item .accolades-cnt {
  top: 50%;
  bottom: auto;
  right: 100px;
  transform: translateY(-50%);
  /*- Films -*/
}
.list-view article.grid-item .content-cnt p::after {
  content: attr(data-category);
  color: #bbc4ca;
  margin-left: 40px;
}
body {
  /*body*/
  /*iPhone Scrolling Fix*/
}
body .mfp-bg {
  background: white;
}
body .mfp-content {
  vertical-align: top;
}
body .mfp-wrap {
  height: 100vh !important;
  position: fixed !important;
  top: 0 !important;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  /*Open Modal*/
}
body .mfp-bg, body .mfp-wrap {
  transform: scale(0) translateZ(0);
  transition: 0.5s ease-out;
}
body .mfp-bg::-webkit-scrollbar, body .mfp-wrap::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
body .mfp-bg.mfp-ready, body .mfp-wrap.mfp-ready {
  transform: scale(1) translateZ(0);
}
body .mfp-close-btn-in .mfp-close {
  display: none;
  /*Custom Close Button*/
}
body button.modal-close {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .75);
  border-radius: 50%;
  transition: background 0.25s;
}
body button.modal-close:hover {
  background: #fff;
}
body.article-modal-open {
  overflow: hidden;
}
body.article-modal-open #content, body.article-modal-open #site-header, body.article-modal-open #mobile-site-header, body.article-modal-open #footer {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
body.ios .mfp-container .mfp-content {
  padding-bottom: 60px;
}
html.mfp-helper {
  height: 100%;
  overflow: hidden;
  /*-- Single Post Articles --*/
}
html.mfp-helper body {
  overflow: hidden;
  height: 100vh;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
article.single-post {
  display: flex;
  height: 100%;
  /*article.single-post*/
  /*-- Article Gallery Lightbox --*/
}
article.single-post h1 {
  font-size: 40px;
  color: #214197;
  text-transform: uppercase;
  font-family: gothic-bold;
  line-height: 1;
  /** Companies **/
}
article.single-post .col.left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-basis: 50%;
  max-height: 100vh;
  overflow-y: scroll;
  padding: 120px 20px 60px;
  /*.col.left*/
}
article.single-post .col.left > .inner-wrap {
  max-width: 500px;
}
article.single-post .col.left .post-thumbnail {
  width: 350px;
  max-width: 100%;
}
article.single-post .col.left .post-thumbnail img {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: contain;
}
article.single-post .col.left::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
article.single-post .col.right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-basis: 50%;
  height: 100vh;
  overflow-y: scroll;
  padding: 60px 20px 30px;
  background: white;
  /*.col.right*/
  /** End Of Companies **/
  /** Default Posts **/
}
article.single-post .col.right > .inner-wrap {
  width: 100%;
  max-width: 700px;
}
article.single-post .col.right .row {
  display: flex;
  /*Company Info*/
  margin-bottom: 40px;
  /*.row*/
}
article.single-post .col.right .row.top-info {
  flex-wrap: wrap;
  margin-bottom: 0;
  /*Products*/
}
article.single-post .col.right .row.top-info > .col {
  margin-bottom: 40px;
}
article.single-post .col.right .row.top-info > .col .founder, article.single-post .col.right .row.top-info > .col .founding-year {
  margin-bottom: 0;
}
article.single-post .col.right .row.top-info .websites + .founders {
  order: 3;
}
article.single-post .col.right .row.top-info .websites + .founders + .socials {
  order: 2;
}
article.single-post .col.right .row.products {
  /*&.products*/
}
article.single-post .col.right .row.products .shopify-buy-frame--product {
  /*.shopify-buy-frame--product*/
}
article.single-post .col.right .row.products .shopify-buy-frame--product button.carousel-button {
  /*button.carousel-button*/
}
article.single-post .col.right .row .col {
  flex-basis: 50%;
  /*.col*/
}
article.single-post .col.right .row .col a {
  color: #214197;
}
article.single-post .col.right .row.video {
  /*&.video*/
}
article.single-post .col.right .row.video.uploaded {
  height: 16vw;
  min-height: 270px;
  max-height: 550px;
}
article.single-post .col.right .row.video .iframe-cnt {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
article.single-post .col.right .row.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article.single-post .col.right .row.video .img-cnt {
  position: relative;
  /*.img-cnt*/
}
article.single-post .col.right .row.video .img-cnt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}
article.single-post .col.right .row.video .img-cnt .play-btn-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  border: 2px solid #bbc4ca;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  /*.play-btn-cnt*/
}
article.single-post .col.right .row.video .img-cnt .play-btn-cnt:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
  background: #fff;
}
article.single-post .col.right .row.video .img-cnt .play-btn-cnt span.arrow {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #214197;
}
article.single-post .col.right .row.video .img-cnt video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article.single-post .col.right .row.video .img-cnt video + button.play-btn-cnt {
  background: transparent;
}
article.single-post .col.right .row.images {
  justify-content: space-between;
  /*&.images*/
}
article.single-post .col.right .row.images .col {
  max-width: calc(50% - 15px);
  max-height: 500px;
}
article.single-post .col.right .row.images .col .img-cnt {
  height: 100%;
}
article.single-post .col.right .row .img-cnt:not(.video-item) {
  cursor: pointer;
}
article.single-post .col.right .row .img-cnt:not(.video-item) img {
  transform: scale(1);
  transition: 0.25s ease-out;
}
article.single-post .col.right .row .img-cnt:not(.video-item):hover img {
  transform: scale(1.025);
}
article.single-post .col.right .content-cnt.social-cnt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
article.single-post .col.right a.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  margin-right: 20px;
}
article.single-post .col.right a.social-icon:last-child {
  margin-right: 0;
}
article.single-post .col.right a.social-icon[data-platform=Facebook] {
  width: 12px;
}
article.single-post .col.right .title {
  margin-bottom: 5px;
  font-family: gothic-bold;
  font-size: 22px;
  color: #bbc4ca;
  text-transform: uppercase;
  /*.title*/
}
article.single-post .col.right .content-cnt p {
  font-size: 18px;
}
article.single-post .col.right::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
article.single-post.post_default {
  /*&.post_default*/
}
article.single-post.post_default > .inner-wrap {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}
article.single-post.post_default .content-cnt {
  margin-top: 100px;
  padding-bottom: 60px;
  /*.content-cnt*/
}
article.single-post.post_default .content-cnt .post-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;
  object-fit: cover;
}
article.single-post.post_default .content-cnt .img-cnt {
  position: relative;
  /*.img-cnt*/
}
article.single-post.post_default .content-cnt .img-cnt:not(.no-img)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}
article.single-post.post_default .content-cnt .img-cnt .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  border: 2px solid #214197;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  /*.play-btn*/
}
article.single-post.post_default .content-cnt .img-cnt .play-btn:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
  background: #fff;
}
article.single-post.post_default .content-cnt .img-cnt .play-btn span.arrow {
  width: 0;
  height: 0;
  position: relative;
  left: 3px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #214197;
}
article.single-post.post_default .content-cnt .img-cnt .iframe-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}
article.single-post.post_default .content-cnt .entry-content {
  text-align: center;
}
article.single-post.post_default .content-cnt .entry-content h2.subtitle {
  font-size: 20px;
  color: #214197;
  margin-bottom: 40px;
}
article.single-post.post_default .content-cnt .entry-content a.external-link {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: #214197;
  border-radius: 5px;
  font-family: gothic-bold;
  letter-spacing: 3px;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  transition: 0.25s;
}
article.single-post.post_default .content-cnt .accolades {
  margin: 0 auto 30px;
  padding: 0;
}
.lb-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .85);
  z-index: 9999;
  /*.lb-cnt*/
  /*-----------------------------------------------------
--  MEDIA QUERIES
-----------------------------------------------------*/
  /*----  COMMON -----*/
}
.lb-cnt > .inner-wrap {
  max-height: calc(100vh - 40px);
}
.lb-cnt button {
  position: fixed;
  color: white;
  /*button*/
}
.lb-cnt button.nav {
  bottom: 50%;
  transform: translateY(-50%);
}
.lb-cnt button.nav.prev {
  left: 20px;
}
.lb-cnt button.nav.next {
  right: 20px;
}
.lb-cnt button.nav::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}
.lb-cnt button.nav.prev::after {
  transform: rotate(45deg);
}
.lb-cnt button.nav.next::after {
  transform: rotate(-135deg);
}
.lb-cnt button.close-btn {
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url(/wp-content/uploads/2019/06/lb-close_white-v2.svg) no-repeat center;
  background-size: 20px;
}
.lb-cnt.header-video button.nav {
  display: none;
}
.lb-cnt img {
  max-height: inherit;
}
.lb-cnt video {
  width: 100%;
  max-height: inherit;
}
.lb-cnt .iframe-cnt {
  width: 100vw;
  max-width: 720px;
  height: auto;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.lb-cnt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 2000px) {
  /*2000px and up*/  article.grid-item {
    width: calc((100vw - 375px) / 5);
    height: calc((100vw - 375px) / 5);
  }
  body.nav-closed #pg-content:not(.list-view) article.grid-item {
    width: calc(100vw / 6);
    height: calc(100vw / 6);
  }
}
@media only screen and (max-width: 1650px) {
  /*1650px*/  article.grid-item {
    width: calc((100vw - 375px) / 3);
    height: calc((100vw - 375px) / 3);
  }
  body.nav-closed #pg-content:not(.list-view) article.grid-item {
    width: calc(100vw / 4);
    height: calc(100vw / 4);
  }
}
@media only screen and (max-width: 1400px) {
  /*1400px*/  article.grid-item {
    width: calc((100vw - 375px) / 2);
    height: calc((100vw - 375px) / 2);
  }
  body.nav-closed #pg-content:not(.list-view) article.grid-item {
    width: calc(100vw / 3);
    height: calc(100vw / 3);
  }
}
@media only screen and (max-width: 1200px) {
  /*1200px*/  .page-filters .col.options .filters {
    margin-right: 30px;
  }
  article.grid-item {
    width: calc((100vw - 300px) / 2);
    height: calc((100vw - 300px) / 2);
  }
}
@media only screen and (max-width: 1023px) {
  /*1023px*/  body .mfp-container {
    height: auto;
    position: initial;
    /*-- Single Post Articles --*/
  }
  article.single-post {
    /*article.single-post*/
  }
  article.single-post.companies {
    flex-direction: column;
    height: auto;
    /*&.companies*/
  }
  article.single-post.companies .col.left {
    flex-basis: initial;
    max-height: none;
    overflow-y: initial;
  }
  article.single-post.companies .col.left > .inner-wrap {
    max-width: 100%;
  }
  article.single-post.companies .col.left .post-thumbnail {
    margin: 0 auto;
  }
  article.single-post.companies .col.left h1 {
    text-align: center;
  }
  article.single-post.companies .col.right {
    flex-basis: auto;
    height: auto;
    overflow-y: initial;
  }
}
@media only screen and (max-width: 1023px) {
  /*$mobileNavBreakpoint*/  #pg-content:not(.list-view) article.grid-item {
    width: calc(100vw / 3) !important;
    height: calc(100vw / 3) !important;
  }
}
@media only screen and (max-width: 900px) {
  /*900px*/  #pg-content:not(.list-view) article.grid-item {
    width: calc(100vw / 2) !important;
    height: calc(100vw / 2) !important;
  }
}
@media only screen and (max-width: 767px) {
  /*767px*/  .page-filters {
    padding-right: 0;
    /*.page-filters*/
    /*FILMS*/
  }
  .page-filters > .inner-wrap {
    display: block !important;
    max-width: none !important;
  }
  .page-filters .col.filter-links {
    display: flex;
    white-space: nowrap;
    overflow-x: scroll;
    /*.col.filter-links*/
  }
  .page-filters .col.filter-links::after {
    content: "";
    display: block;
    padding: 0 1px;
    order: 4;
  }
  .page-filters .col.filter-links::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  .page-filters .col.filter-links .filter {
    padding: 12px 25px;
    padding-bottom: 9px;
    margin-bottom: 30px;
    background: #bbc4ca;
    color: white;
    border-radius: 5px;
    order: 3;
    /*.filter*/
  }
  .page-filters .col.filter-links .filter:hover, .page-filters .col.filter-links .filter.active {
    background: #214197;
    color: white;
  }
  .page-filters .col.filter-links .filter[data-filter='all'], .page-filters .col.filter-links .filter.active {
    order: 1;
  }
  .page-filters .col.filter-links .filter::after {
    display: none;
  }
  .page-filters .col.options {
    max-width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    /*.col.options*/
  }
  .page-filters .col.options.two-col {
    justify-content: space-between;
  }
  .page-filters .col.options .filters {
    /*.filters*/
  }
  .page-filters .col.options .filters .select-ui {
    text-align: left;
  }
  .page-filters .col.options .filters .select-ui .selected {
    padding-left: 35px;
    line-height: 1.2;
  }
  .page-filters .col.options .filters .select-ui .selected::after {
    right: auto;
    left: 6px;
  }
  .page-filters .col.options .filters .select-ui .options-cnt {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    transform: translate3d(-100%, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex !important;
    flex-direction: column;
    text-align: center;
    clip-path: inset(0% 0% 0% 0%) !important;
    /*.options-cnt*/
  }
  .page-filters .col.options .filters .select-ui .options-cnt.active {
    transform: translate3d(0, 0, 0);
  }
  .page-filters .col.options .filters .select-ui .options-cnt .option {
    margin-bottom: 20px;
  }
  .page-filters .col.options .filters .select-ui .options-cnt .close-btn {
    display: block;
  }
  .page-filters .col.options .filters select {
    width: 100%;
    max-width: none;
    margin-right: 0;
    padding: 10px 12px;
    border: 1px solid #bbc4ca;
    border-radius: 5px;
  }
  .page-filters .col.options .view-options {
    /*&::before {
                    content: "VIEW:";
                    position: absolute;
                    left: -60px;
                    top: 0;
                }*/
    position: relative;
    /*.view-options*/
  }
  .page-filters .col.options .view-options button:nth-child(2) {
    margin-right: 0;
  }
  body.post-type-archive-films {
    /*- Archive Article Pages -*/
  }
  body.post-type-archive-films .page-filters .col.options {
    justify-content: center;
  }
  body.post-type-archive-films .page-filters .col.options button[data-option=grid] {
    margin-right: 20px !important;
  }
  body.post-type-archive-films .page-filters .col.options button[data-option=list] {
    margin-right: 0px;
  }
  #pg-content.shuffle-group {
    width: calc(100% - 40px);
    margin: 20px auto;
    border-top: none;
  }
  #pg-content.shuffle-group:not(.list-view) article.grid-item {
    width: calc((100vw / 2) - 31px) !important;
    height: calc((100vw / 2) - 31px) !important;
  }
  #pg-content.shuffle-group:not(.list-view) article.grid-item.alt-layout .title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.25;
  }
  article.grid-item {
    margin-bottom: 20px;
    border: 1px solid #bbc4ca;
    border-radius: 20px;
  }
  article.grid-item > .inner-wrap {
    flex-direction: column;
  }
  article.grid-item img:not(.bg-cover) {
    max-width: 100%;
    margin-bottom: 0;
  }
  article.grid-item .title {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 0px;
    font-size: 20px;
  }
  article.grid-item .content-cnt {
    display: none;
  }
  article.grid-item.alt-layout .accolades-cnt {
    width: 22px;
    bottom: auto;
    top: 20px;
    right: 10px;
  }
  .list-view {
    /*.list-view*/
    /*Article Modals*/
  }
  .list-view article.grid-item .title {
    margin-bottom: 10px;
  }
  .list-view article.grid-item .content-cnt {
    justify-content: flex-end;
    flex-grow: 0;
    flex-basis: auto;
  }
  .list-view article.grid-item .content-cnt > * {
    display: none;
  }
  body .mfp-container {
    /*body .mfp-container*/
    /*- Single Article -*/
  }
  body .mfp-container article.single-post .col.left {
    padding-top: 90px;
  }
  article.single-post {
    /*article.single-post*/
    /*- Lightbox -*/
  }
  article.single-post .col.left {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  article.single-post .col.left .post-thumbnail {
    max-height: 200px;
  }
  article.single-post .col.right {
    padding-top: 30px;
  }
  article.single-post .col.right .row.video.uploaded {
    min-height: 200px;
  }
  .lb-cnt button.nav {
    bottom: 30px;
    transform: none;
  }
}
@media only screen and (max-width: 500px) {
  /*500px*/  .page-filters {
    /*.page-filters*/
    /*Page Content*/
  }
  .page-filters .col.options {
    /*.col.options*/
  }
  .page-filters .col.options .filters {
    /*.filters*/
  }
  article.grid-item .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 350px) {
  /*350px*/  .page-filters .col.options.two-col {
    flex-direction: column;
  }
  .page-filters .col.options.two-col .filters .select-ui .options-cnt {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-filters .col.options.two-col .view-options {
    margin-top: 30px;
  }
}


/*==========================================================================
== PUBLIC HOMEPAGE CSS
========================================================================== */

/*-----------------------------------------------------
--  HOME PAGE / SHARK TANK / HEALTHCARE
-----------------------------------------------------*/
@media only screen and (max-width: 1500px) {
  /*1500px*/  body.page-template-home-page, body.page-template-companies-posts {
    /*body.page-template-home-page*/
  }
  body.page-template-home-page .page-filters, body.page-template-companies-posts .page-filters {
    /*.page-filters*/
  }
  body.page-template-home-page .page-filters > .inner-wrap, body.page-template-companies-posts .page-filters > .inner-wrap {
    max-width: calc(100% - 10px);
    margin-right: 0;
  }
  body.page-template-home-page .page-filters .col.options .filters, body.page-template-companies-posts .page-filters .col.options .filters {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  /*768px - 1300px*/  body.page-template-home-page, body.page-template-companies-posts {
    /*body*/
  }
  body.page-template-home-page .page-filters, body.page-template-companies-posts .page-filters {
    /*.page-filters*/
  }
  body.page-template-home-page .page-filters > .inner-wrap, body.page-template-companies-posts .page-filters > .inner-wrap {
    display: block;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
  body.page-template-home-page .page-filters .col.filter-links, body.page-template-companies-posts .page-filters .col.filter-links {
    display: flex;
    white-space: nowrap;
    overflow-x: scroll;
    /*.col.filter-links*/
  }
  body.page-template-home-page .page-filters .col.filter-links::-webkit-scrollbar, body.page-template-companies-posts .page-filters .col.filter-links::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  body.page-template-home-page .page-filters .col.filter-links .filter, body.page-template-companies-posts .page-filters .col.filter-links .filter {
    padding: 12px 25px;
    margin-bottom: 30px;
    background: #bbc4ca;
    color: white;
    border-radius: 5px;
    order: 3;
    /*.filter*/
  }
  body.page-template-home-page .page-filters .col.filter-links .filter:hover, body.page-template-companies-posts .page-filters .col.filter-links .filter:hover, body.page-template-home-page .page-filters .col.filter-links .filter.active, body.page-template-companies-posts .page-filters .col.filter-links .filter.active {
    background: #214197;
    color: white;
  }
  body.page-template-home-page .page-filters .col.filter-links .filter[data-filter='shark tank'], body.page-template-companies-posts .page-filters .col.filter-links .filter[data-filter='shark tank'] {
    order: 2;
  }
  body.page-template-home-page .page-filters .col.filter-links .filter[data-filter='all'], body.page-template-companies-posts .page-filters .col.filter-links .filter[data-filter='all'], body.page-template-home-page .page-filters .col.filter-links .filter.active, body.page-template-companies-posts .page-filters .col.filter-links .filter.active {
    order: 1;
  }
  body.page-template-home-page .page-filters .col.filter-links .filter::after, body.page-template-companies-posts .page-filters .col.filter-links .filter::after {
    display: none;
  }
  body.page-template-home-page .page-filters .col.options, body.page-template-companies-posts .page-filters .col.options {
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    margin-bottom: 20px;
    /*.col.options*/
  }
  body.page-template-home-page .page-filters .col.options .filters, body.page-template-companies-posts .page-filters .col.options .filters {
    /*.filters*/
  }
  body.page-template-home-page .page-filters .col.options .filters .select-ui, body.page-template-companies-posts .page-filters .col.options .filters .select-ui {
    text-align: left;
  }
  body.page-template-home-page .page-filters .col.options .filters .select-ui .selected, body.page-template-companies-posts .page-filters .col.options .filters .select-ui .selected {
    padding-left: 35px;
  }
  body.page-template-home-page .page-filters .col.options .filters .select-ui .selected::after, body.page-template-companies-posts .page-filters .col.options .filters .select-ui .selected::after {
    right: auto;
    left: 6px;
  }
  body.page-template-home-page .page-filters .col.options .filters .select-ui .options-cnt, body.page-template-companies-posts .page-filters .col.options .filters .select-ui .options-cnt {
    right: auto;
    left: 0;
  }
  body.page-template-home-page .page-filters .col.options .filters select, body.page-template-companies-posts .page-filters .col.options .filters select {
    width: 100%;
    max-width: none;
    margin-right: 0;
    padding: 10px 12px;
    border: 1px solid #bbc4ca;
    border-radius: 5px;
  }
  body.page-template-home-page .page-filters .col.options .view-options, body.page-template-companies-posts .page-filters .col.options .view-options {
    position: relative;
    /*.view-options*/
  }
  body.page-template-home-page .page-filters .col.options .view-options button:nth-child(2), body.page-template-companies-posts .page-filters .col.options .view-options button:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 350px) {
  /*350px*/  body.page-template-home-page .page-filters .col.options.two-col, body.page-template-companies-posts .page-filters .col.options.two-col {
    align-items: center;
  }
  body.page-template-home-page .page-filters .col.options.two-col .filters, body.page-template-companies-posts .page-filters .col.options.two-col .filters {
    margin-right: 0;
  }
}


/*==========================================================================
== PUBLIC LANDING PAGE CSS
========================================================================== */

/*-----------------------------------------------------
--  MARK'S BIO PAGE
-----------------------------------------------------*/
body.page-template-bio-page {
  /*body.page-template-bio-page*/
  /*-----------------------------------------------------
--  MEDIA QUERIES
-----------------------------------------------------*/
}
body.page-template-bio-page h1, body.page-template-bio-page h2 {
  text-transform: uppercase;
}
body.page-template-bio-page section {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 80px;
}
body.page-template-bio-page section h2 {
  margin-top: 0;
  font-size: 40px;
}
body.page-template-bio-page section .text-cnt {
  margin-top: 25px;
}
body.page-template-bio-page #page {
  padding-bottom: 40px;
  /*-- Header --*/
}
body.page-template-bio-page #pg-header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 36vw;
  min-height: 375px;
  position: relative;
  padding: 0 20px;
  overflow: hidden;
  /*#pg-header*/
  /*-- Intro --*/
}
body.page-template-bio-page #pg-header .bg-img-cnt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 21, 65, .8));
}
body.page-template-bio-page #pg-header .content-cnt {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1080px;
  margin-bottom: 100px;
  padding-top: 30px;
  border-top: 1px solid white;
  z-index: 1;
  /*content-cnt*/
}
body.page-template-bio-page #pg-header .content-cnt .title-cnt {
  margin-left: 30px;
}
body.page-template-bio-page #pg-header .content-cnt .title-cnt h1 {
  margin-top: 0;
  font-size: 48px;
  color: white;
  white-space: nowrap;
  letter-spacing: 3px;
  line-height: 1;
}
body.page-template-bio-page #pg-header .content-cnt .text-cnt {
  font-size: 20px;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.page-template-bio-page .intro-sec {
  display: flex;
  justify-content: flex-end;
  /*-- Slider --*/
}
body.page-template-bio-page .intro-sec .content-cnt {
  max-width: 400px;
  margin-left: 20px;
  /*.content-cnt*/
}
body.page-template-bio-page .intro-sec .content-cnt .title-cnt {
  position: relative;
}
body.page-template-bio-page .intro-sec .content-cnt .title-cnt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100px;
  height: 2px;
  background: #214197;
}
body.page-template-bio-page .intro-sec .img-cnt {
  width: 400px;
  margin-left: 40px;
  /*.img-cnt*/
}
body.page-template-bio-page .slider-sec {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
body.page-template-bio-page .slider-sec .content-cnt {
  max-width: 400px;
  /*.content-cnt*/
}
body.page-template-bio-page .slider-sec .slider-cnt {
  margin-right: 40px;
}
body.page-template-bio-page .slider-sec .slider-cnt .bio-slider {
  width: 400px;
  /*.bio-slider*/
}
body.page-template-bio-page .slider-sec .slider-cnt .bio-slider .slide {
  width: 400px;
}
body.page-template-bio-page .slider-sec .slider-cnt .bio-slider .slide img {
  width: 100%;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  /*.slider-nav-cnt*/
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .download-cnt {
  margin-right: 40px;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .download-cnt a img {
  display: inline-block;
  margin-left: 10px;
  width: 30px;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .download-cnt a:hover {
  color: #214197;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  /*.arrows-cnt*/
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav {
  /*.slick-nav*/
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav.slick-prev {
  margin-right: 10px;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav.slick-next {
  margin-left: 10px;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav span {
  display: block;
  width: 15px;
  height: 15px;
  border-left: 1px solid #bbc4ca;
  border-bottom: 1px solid #bbc4ca;
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav.slick-prev span {
  transform: rotate(45deg);
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt .slick-nav.slick-next span {
  transform: rotate(-135deg);
}
body.page-template-bio-page .slider-sec .slider-nav-cnt .arrows-cnt span.counter {
  width: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  /*767px*/  body.page-template-bio-page {
    /*body.page-template-bio-page {*/
  }
  body.page-template-bio-page section {
    padding: 60px 20px 0;
  }
  body.page-template-bio-page section h2 {
    font-size: 32px;
  }
  body.page-template-bio-page #pg-header .content-cnt {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    border-top: none;
  }
  body.page-template-bio-page #pg-header .content-cnt .title-cnt {
    margin-left: 0;
  }
  body.page-template-bio-page #pg-header .content-cnt .title-cnt h1 {
    font-size: 40px;
  }
  body.page-template-bio-page #pg-header .content-cnt .text-cnt {
    font-size: 16px;
    text-align: center;
  }
  body.page-template-bio-page .intro-sec {
    flex-direction: column;
    align-items: center;
  }
  body.page-template-bio-page .intro-sec .content-cnt {
    margin: 0 0 20px;
  }
  body.page-template-bio-page .intro-sec .img-cnt {
    margin-left: 0;
  }
  body.page-template-bio-page .slider-sec {
    flex-direction: column-reverse;
    align-items: center;
  }
  body.page-template-bio-page .slider-sec .content-cnt {
    margin-bottom: 20px;
  }
  body.page-template-bio-page .slider-sec .slider-cnt {
    margin-right: 0;
  }
  body.page-template-bio-page .slider-sec .arrows-cnt {
    padding-right: 30px;
  }
  body.page-template-bio-page .slider-sec .slider-nav-cnt {
    font-size: 13px;
  }
}


/*==========================================================================
== PUBLIC PAGE 1 CSS
========================================================================== */

/*-----------------------------------------------------
--  FULL WIDTH TEMPLATE
-----------------------------------------------------*/
body.page-template-full-width-page {
  /*body.page-template-full-width-page*/
  /*-----------------------------------------------------
--  MEDIA QUERIES
-----------------------------------------------------*/
}
body.page-template-full-width-page .pg-header {
  height: 20vw;
  min-height: 200px;
  max-height: 800px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 40px;
  /*.pg-header*/
}
body.page-template-full-width-page .pg-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 21, 65, .8));
}
body.page-template-full-width-page .pg-header .content-cnt {
  width: 100%;
  z-index: 1;
}
body.page-template-full-width-page .pg-header h1 {
  margin-bottom: 20px;
  color: white;
}
body.page-template-full-width-page .pg-header .subtitle {
  margin-top: 20px;
  color: white;
  font-size: 26px;
}
body.page-template-full-width-page .pg-header a.btn.cta {
  display: inline-block;
  padding: 12px 25px;
  color: white;
  background: #214197;
  border-radius: 5px;
}
body.page-template-full-width-page .text-content-row {
  /*.text-content-row*/
}
body.page-template-full-width-page .text-content-row > .inner-wrap {
  max-width: 1400px;
  margin: 0 auto;
}
body.page-template-full-width-page .text-content-row .content-cnt {
  color: #00285e;
}
@media only screen and (max-width: 767px) {
  /*767px*/  body.page-template-full-width-page {
    /*body.page-template-full-width-page*/
  }
  body.page-template-full-width-page .pg-header {
    padding: 20px;
  }
}


/*==========================================================================
== PUBLIC PAGE 2 CSS
========================================================================== */



/*==========================================================================
== PUBLIC PAGE 3 CSS
========================================================================== */

