@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&family=Archivo+Black&family=Nunito&display=swap');
:root {
  --bs-gutter-x: 20px;
  --color-blue-light: #6dc8e0;
  --color-blue-dark: #005d88;
  --color-green: #369967; }

@media (min-width: 1366px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px; } }
/*.button { display: inline-block; padding: 5px 10px; font-size: 22px; text-decoration: none; font-weight: 600; background: $blue-dark; color: #fff; text-transform: uppercase; font-family: $font-condensed; letter-spacing: 1px; }*/
.button:hover {
  background: var(--color-blue-dark);
  color: #fff;
  text-decoration: none; }

.button {
  display: inline-block;
  background: #6dc8e0;
  background: linear-gradient(125deg, #6dc8e0, #005d8c);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 16px; }
  .button i {
    margin-left: 10px; }

a {
  color: #005d88; }

a:hover {
  color: #191919; }

h3 a {
  color: #005d88;
  text-decoration: none; }

h3 a:hover {
  color: #191919; }

html, body {
  font-family: 'Rubik', sans-serif; }

body {
  overflow-x: hidden; }

.menu-mobile-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 8000; }

.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  background: white;
  z-index: 9999;
  padding: 60px 40px 40px 40px;
  width: clamp(250px, 50%, 299px);
  transition: all 300ms; }
  .menu-mobile.open {
    right: 0; }
  .menu-mobile button {
    position: absolute;
    right: 30px;
    top: 30px;
    border: none;
    background: none;
    appearance: none; }
  .menu-mobile nav a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    text-decoration: none;
    color: black; }

body > header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  top: 0;
  z-index: 100;
  height: 80px;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6194852941) 100%); }
  body > header, body > header * {
    transition: all 150ms linear; }
  body > header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
  body > header .search-panel {
    position: absolute;
    top: -100%;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    background: white; }
    body > header .search-panel.open {
      top: 0; }
    body > header .search-panel form {
      flex-grow: 1; }
    body > header .search-panel input[type=text] {
      width: 100%;
      border: 0;
      padding: 10px 0;
      border-bottom: 2px solid black; }
    body > header .search-panel input[type=text]:focus {
      outline: none; }
    body > header .search-panel button {
      appearance: none;
      background: none;
      border: none;
      padding: 20px; }
  body > header .logo a {
    display: block;
    padding: 10px 10px 10px 0; }
    body > header .logo img {
      filter: brightness(0) invert(1);
      width: auto;
      height: 35px; }
  body > header .menu {
    display: none;
    flex-grow: 1;
    justify-content: end;
    align-items: center; }
    body > header .menu a {
      position: relative;
      display: inline-block;
      color: white;
      font-weight: 500;
      font-size: 14px;
      text-decoration: none;
      opacity: 0.8; }
    body > header .menu a:hover {
      opacity: 1; }
    body > header .menu nav {
      padding-left: 50px;
      flex-grow: 1;
      display: flex;
      justify-content: space-evenly; }
      body > header .menu nav a:after {
        position: absolute;
        bottom: -1px;
        left: 0;
        content: '';
        height: 2px;
        background: white;
        width: 0;
        transition: all 200ms ease-in-out; }
        body > header .menu nav a:hover:after {
          width: 100%; }
        body > header .menu nav a.active {
          opacity: 1; }
        body > header .menu nav a.active:after {
          width: 100%; }
    body > header .menu .social {
      margin: 0 30px; }
      body > header .menu .social a {
        display: inline-block;
        font-size: 18px;
        padding: 5px; }
    body > header .menu .search {
      font-size: 20px; }
  body > header .mobile {
    display: flex;
    align-items: center; }
    body > header .mobile .search {
      display: block;
      color: white;
      opacity: 0.8;
      padding: 10px;
      margin-right: 10px;
      font-size: 18px;
      margin-top: 2px; }
    body > header .mobile .burger {
      appearance: none;
      background: none;
      border: none;
      padding: 10px;
      width: 45px; }
      body > header .mobile .burger span {
        display: block;
        height: 2px;
        margin: 4px 0;
        background: white; }
      body > header .mobile .burger span:last-of-type {
        width: 80%; }
  body > header.scrolled {
    background: white;
    color: black;
    height: 70px; }
    body > header.scrolled .logo img {
      filter: brightness(1) invert(0);
      height: 35px; }
    body > header.scrolled .menu a {
      color: black; }
    body > header.scrolled .menu a:after {
      background: black; }
    body > header.scrolled .mobile .search {
      color: black; }
      body > header.scrolled .mobile .burger span {
        background: black; }
  @media (min-width: 992px) {
  body > header {
    height: 144px; }
    body > header .logo img {
      height: 60px; }

    body > header .mobile {
      display: none; }

    body > header .menu {
      display: flex; }

    body > header.scrolled {
      height: 100px; }
      body > header.scrolled .logo img {
        height: 54px; } }

body > footer {
  background: url('/v2/template/footer-bg.jpg') center center;
  background-size: cover;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 70px 0; }
  body > footer .container {
    position: relative;
    text-align: center;
    z-index: 1; }
  body > footer .social {
    margin: 50px 0; }
  body > footer .social a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    text-decoration: none;
    font-size: 20px;
    color: white;
    transition: all 200ms linear; }
    body > footer .social a:hover {
      color: var(--color-blue-dark);
      border-color: var(--color-blue-dark); }
  body > footer .copyright {
    font-size: 14px;
    font-weight: 400;
    color: white; }
  body > footer:after {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5; }

body > main {
  background-color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 500px; }

section.text {
  padding-top: 80px;
  padding-bottom: 80px; }
  section.text .content > *:last-child {
    margin-bottom: 0; }

section.hero2022 {
  position: relative;
  background: black; }
  section.hero2022 .slide {
    display: flex;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    color: white; }
    section.hero2022 .slide .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1; }
    section.hero2022 .slide .container {
      z-index: 2; }
    section.hero2022 .slide h4 {
      font-size: 16px; }
    section.hero2022 .slide h3 {
      font-size: calc(1.3rem + 1.5vw);
      font-family: 'Archivo Black';
      font-weight: 400;
      text-transform: uppercase;
      margin: 20px 0;
      line-height: 1; }
  section.hero2022 .tagline {
    position: absolute;
    color: white;
    width: 100%;
    z-index: 2;
    top: 80px;
    font-size: 18px;
    font-weight: 500; }
    @media (min-width: 992px) {
  section.hero2022 .tagline {
    top: 130px;
    font-size: 21px; } }
  section.hero2022 .trending {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: white;
    padding: 25px 0; }
    section.hero2022 .trending h2 {
      display: none;
      border-right: 1px solid white;
      padding-right: 30px;
      margin: 0; }
    section.hero2022 .trending > div {
      padding-left: 30px;
      padding-right: 30px;
      display: flex; }
      section.hero2022 .trending > div .links {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 10px;
        flex-grow: 1;
        justify-content: left;
        align-items: center; }
        section.hero2022 .trending > div .links a {
          display: block;
          position: relative;
          color: white;
          text-decoration: none; }
          section.hero2022 .trending > div .links a:after {
            position: absolute;
            bottom: -1px;
            left: 0;
            content: '';
            height: 2px;
            background: white;
            width: 0;
            transition: all 200ms ease-in-out; }
          section.hero2022 .trending > div .links a:hover:after {
            width: 100%; }
      @media (min-width: 1200px) {
  section.hero2022 .trending > div .links {
    justify-content: space-evenly; } }
    @media (min-width: 768px) {
  section.hero2022 .trending h2 {
    display: block;
    margin-right: 20px; } }

section.cat-videos {
  background: #141414;
  text-align: center;
  padding: 80px 0; }
  section.cat-videos h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-blue-light); }
  section.cat-videos h3 {
    font-size: 30px;
    font-family: 'Archivo Black';
    color: white;
    margin-bottom: 50px; }
  section.cat-videos .row > * {
    padding-left: 5px;
    padding-right: 5px; }
  section.cat-videos .postinfo {
    text-align: left;
    min-height: 350px;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    background-size: auto 110%;
    background-position: center center;
    text-decoration: none;
    transition: all 250ms ease-in-out; }
    section.cat-videos .postinfo .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      border-radius: 5px;
      background: rgba(0, 0, 0, 0.3);
      transition: all 200ms; }
    section.cat-videos .postinfo h4 {
      position: relative;
      z-index: 2;
      color: white;
      font-size: 14px;
      font-family: 'Rubik';
      font-weight: 500; }
    section.cat-videos .postinfo h3 {
      position: relative;
      z-index: 2;
      color: white;
      font-size: 22px;
      font-family: 'Rubik';
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 0px; }
    section.cat-videos .postinfo:hover {
      background-size: auto 120%; }
    section.cat-videos .postinfo:hover .overlay {
      opacity: 0.3; }

section.cat-posts {
  text-align: center;
  background: linear-gradient(0deg, rgba(54, 153, 103, 1) 0%, rgba(54, 153, 103, 1) 40%, rgba(255, 255, 255, 0) 40%);
  padding: 80px 0; }
  section.cat-posts h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-green); }
  section.cat-posts h3 {
    font-size: 30px;
    font-family: 'Archivo Black';
    color: var(--color-blue-dark);
    margin-bottom: 50px; }
  section.cat-posts .carousel-cell {
    position: relative;
    width: 75%;
    margin: 20px; }
    section.cat-posts .carousel-cell .image {
      position: relative;
      width: 100%;
      padding-bottom: 130%;
      border-radius: 5px;
      background-size: auto 115%;
      background-position: center center;
      transition: all 250ms ease-in-out; }
      section.cat-posts .carousel-cell .image .overlay {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 5px;
        transition: all 200ms; }
    section.cat-posts .carousel-cell .info {
      position: absolute;
      bottom: 0;
      z-index: 2;
      text-align: left;
      padding: 30px; }
      section.cat-posts .carousel-cell .info h4 {
        color: white;
        font-size: 14px;
        font-family: 'Rubik';
        font-weight: 500; }
      section.cat-posts .carousel-cell .info h3 {
        color: white;
        font-size: 22px;
        font-family: 'Rubik';
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 30px; }
      section.cat-posts .carousel-cell .info a {
        color: white; }
      section.cat-posts .carousel-cell .info .button {
        padding: 8px 15px;
        background: var(--color-blue-dark);
        font-size: 14px; }
    section.cat-posts .carousel-cell:hover .image {
      transform: scale(1.07) translateZ(0);
      background-size: auto 100%;
      /*width: 110%; margin-left: -5%; padding-bottom: 135%; margin-top: -5%;*/ }
    section.cat-posts .carousel-cell:hover .image .overlay {
      opacity: 0.4; }
    @media (min-width: 576px) {
  section.cat-posts .carousel-cell {
    width: 40%; } }
    @media (min-width: 768px) {
  section.cat-posts .carousel-cell {
    width: 33%; } }
    @media (min-width: 992px) {
  section.cat-posts .carousel-cell {
    width: 25%; } }

section.supporters {
  text-align: center;
  padding: 80px 0; }
  section.supporters h3 {
    display: inline-block;
    background: var(--color-blue-dark);
    color: white;
    padding: 0 3px;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 44px; }
  section.supporters h4 {
    margin-bottom: 30px; }
  section.supporters .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px; }
    section.supporters .grid > div {
      flex: 45% 0 0;
      display: flex;
      text-align: center;
      padding: 10px;
      margin: 0 auto;
      align-items: center;
      justify-content: center; }
    section.supporters .grid > div img {
      width: 90%;
      max-width: 200px;
      filter: grayscale(1);
      transition: filter 300ms; }
    section.supporters .grid > div:hover img {
      filter: grayscale(0); }
    @media (min-width: 768px) {
  section.supporters .grid > div {
    flex: 23% 0 0; } }
    @media (min-width: 992px) {
  section.supporters .grid > div {
    flex: 20% 0 0; } }

section.trending {
  overflow: hidden;
  background: #d8eaef;
  padding: 80px 0; }
  section.trending .container {
    padding-left: 20px;
    padding-right: 20px; }
  section.trending .row {
    margin-left: -20px;
    margin-right: -20px; }
  section.trending .row > * {
    padding-left: 20px;
    padding-right: 20px; }
  section.trending .button {
    margin-bottom: 30px; }
  @media (min-width: 768px) {
  section.trending .button {
    margin-bottom: 0; } }
  section.trending .posts {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr; }
    section.trending .posts .postcard {
      border-radius: 5px;
      overflow: hidden;
      background: white;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      color: black; }
      section.trending .posts .postcard .image {
        width: 100%;
        height: 200px;
        background-size: auto 110%;
        background-position: center center;
        transition: all 250ms; }
      section.trending .posts .postcard time {
        font-size: 12px;
        font-weight: 400;
        color: #999; }
      section.trending .posts .postcard h3 {
        font-weight: 500;
        font-size: 22px;
        line-height: 1;
        text-transform: uppercase;
        margin: 5px 0 10px; }
      section.trending .posts .postcard p {
        margin-bottom: 0; }
      section.trending .posts .postcard > div {
        padding: 30px; }
      section.trending .posts .postcard:hover .image {
        background-size: auto 120%; }
    @media (min-width: 992px) {
  section.trending .posts {
    grid-template-columns: repeat(2, 1fr); } }
  section.trending .sideposts .postcard {
    display: flex;
    text-decoration: none;
    color: black;
    align-items: center;
    margin-bottom: 20px; }
    section.trending .sideposts .postcard img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 20px; }
    section.trending .sideposts .postcard time {
      font-size: 14px;
      color: #333; }
    section.trending .sideposts .postcard h3 {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 0; }
    section.trending .sideposts .postcard > div {
      padding: 5px; }

section.columns-two {
  padding: 80px 0; }
  section.columns-two .container {
    padding-left: 50px;
    padding-right: 50px; }
  section.columns-two .row {
    margin-left: -50px;
    margin-right: -50px; }
  section.columns-two .row > * {
    padding-left: 50px;
    padding-right: 50px; }
  section.columns-two h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-green); }
  section.columns-two h3 {
    font-size: 54px;
    font-weight: 400;
    color: var(--color-blue-dark);
    margin: 30px 0; }
  section.columns-two p {
    font-size: 16px;
    font-weight: 400;
    color: #333; }
  section.columns-two p em {
    font-size: 19px;
    font-family: 'Nunito'; }
  section.columns-two img {
    width: 100%;
    height: auto; }
  section.columns-two .bar {
    height: 50px;
    width: 1px;
    background: #333;
    margin: 40px auto; }

section.hero {
  position: relative;
  display: flex;
  font-family: 'gothamcondensed', sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  border-top: 12px solid #005d88;
  background-size: cover;
  background-position: center center; }
  section.hero h1 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: uppercase; }
  section.hero a {
    color: #fff;
    text-decoration: none;
    transition: all 100ms ease; }
  section.hero a.active, section.hero a:hover {
    background: #369967; }
  section.hero .button {
    display: inline-block;
    text-align: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 22px;
    font-weight: 600;
    background: #005d88;
    color: #fff;
    text-transform: uppercase;
    font-family: 'gothamcondensed', sans-serif; }
  section.hero .bar {
    border-left: 1px solid #fff;
    width: 0; }
  section.hero .trending {
    font-size: 27px; }
  @media (min-width: 992px) {
  section.hero h1 {
    max-width: 65%; } }
  section.hero .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0.0399510146) 100%); }
  section.hero .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1; }
  section.hero .row.postinfo {
    flex-grow: 1; }
    section.hero .row.postinfo .col {
      display: flex;
      flex-direction: column;
      justify-content: center; }
    section.hero .row.postinfo .col > div {
      padding: 150px 0 10vh 0;
      height: 100%; }

section.content-hero-container {
  position: relative; }

section.content-hero {
  position: relative;
  display: flex;
  font-family: 'gothamcondensed', sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  border-top: 12px solid #005d88;
  background-size: cover;
  background-position: center center; }
  section.content-hero h1 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: uppercase; }
  section.content-hero a {
    color: #fff;
    text-decoration: none;
    transition: all 100ms ease; }
  section.content-hero a.active, section.content-hero a:hover {
    background: #369967; }
  section.content-hero .button {
    display: inline-block;
    text-align: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 22px;
    font-weight: 600;
    background: #005d88;
    color: #fff;
    text-transform: uppercase;
    font-family: 'gothamcondensed', sans-serif; }
  section.content-hero .bar {
    border-left: 1px solid #fff;
    width: 0; }
  section.content-hero .trending {
    font-size: 27px; }
  @media (min-width: 1200px) {
  section.content-hero h1 {
    max-width: 75%; } }
  section.content-hero .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0.0399510146) 100%); }
  section.content-hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1; }
  @media (min-width: 1200px) {
  section.content-hero .container {
    height: 400px; } }
  section.content-hero .row.postinfo {
    flex-grow: 1; }
    section.content-hero .row.postinfo .col {
      display: flex;
      flex-direction: column;
      justify-content: center; }
    section.content-hero .row.postinfo .col > div {
      padding: 5vh 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start; }
  section.content-hero .row.links .col {
    padding-bottom: 2vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 22px; }
    section.content-hero .row.links nav {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between; }
    section.content-hero .row.links nav a {
      width: 100%; }
    @media (min-width: 576px) {
  section.content-hero .row.links nav {
    flex-direction: row; }
  section.content-hero .row.links nav a {
    width: 50%; } }
    @media (min-width: 768px) {
  section.content-hero .row.links nav a {
    width: 33.33%; } }
    @media (min-width: 1200px) {
  section.content-hero .row.links nav a {
    width: auto; } }
    section.content-hero .row.links .button {
      font-family: 'Rubik', sans-serif;
      margin-bottom: 20px; }
    @media (min-width: 1200px) {
  section.content-hero .row.links .col {
    flex-direction: row; }
  section.content-hero .row.links .button {
    margin-bottom: 0; } }
    section.content-hero .row.links a, section.content-hero .row.links span {
      display: flex;
      align-items: center; }
    section.content-hero .row.links a {
      padding-left: 10px;
      padding-right: 10px; }

section.ads {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px; }
  @media (min-width: 768px) {
  section.ads {
    margin-top: 80px;
    margin-bottom: 80px; } }
  section.ads .ad {
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center; }
  section.ads.leaderboard .ad {
    width: 728px;
    height: 90px; }
  section.ads.leaderboard-large .ad {
    width: 970px;
    height: 90px; }
  section.ads img {
    max-width: 100%; }

section.content-featured label {
  position: absolute;
  top: -20px;
  left: 0;
  display: inline-block;
  padding: 5px 10px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  background: #005d88;
  color: #fff;
  text-transform: uppercase;
  font-family: 'gothamcondensed', sans-serif;
  letter-spacing: 1px; }
  section.content-featured img {
    width: 100%;
    height: auto;
    object-fit: cover; }
  section.content-featured .image {
    position: relative;
    background-size: cover;
    background-position: center center;
    padding-bottom: 50%; }
  section.content-featured .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #efefef;
    padding: 25px; }
  section.content-featured h3 {
    text-transform: uppercase;
    color: #005d88;
    font-weight: 600; }
  section.content-featured .play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center; }
  section.content-featured .play i {
    color: white;
    font-size: 30px;
    padding-left: 4px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center; }
  @media (min-width: 768px) {
  section.content-featured img {
    height: auto;
    object-fit: initial; } }
  section.content-featured:hover hr {
    display: block; }
    section.content-featured:hover h3 {
      color: #005d88; }
    section.content-featured:hover .play i {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
  @media (min-width: 768px) {
  section.content-featured .image {
    padding-bottom: 0; } }

section.heading {
  background: #005d88;
  color: white;
  border-bottom: 10px solid #6dc8e0;
  text-transform: uppercase;
  padding-top: 150px;
  margin-bottom: 0; }
  section.heading .container {
    padding-top: 30px;
    padding-bottom: 30px; }
  section.heading h1 {
    margin: 0;
    font-weight: 600; }
  section.heading h2 {
    margin: 0;
    font-size: calc(0.8rem + .9vw); }

section.filter-content {
  background: #e6eff4;
  padding: 25px; }
  section.filter-content h3 {
    font-family: 'gothamcondensed', sans-serif;
    font-weight: 700;
    margin-bottom: 15px; }
  section.filter-content select {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 7px 10px;
    border-radius: 25px;
    border: 0; }

section.posts .sticky {
  /* sidebar */
  position: sticky; }
  section.posts.padded {
    padding: 80px 0; }

.frm-search {
  background-color: #e6eff4;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex; }
  .frm-search .inputwrapper {
    flex-grow: 1;
    position: relative;
    margin-right: 5px; }
    .frm-search .inputwrapper input[type=text] {
      outline: none;
      background-color: white;
      border: none;
      padding: 5px 10px;
      width: 100%; }
    .frm-search .inputwrapper a {
      position: absolute;
      right: 6px;
      top: 6px; }
  .frm-search input[type=submit] {
    display: inline-block;
    flex-grow: 0;
    appearance: none;
    background-color: #005d88;
    color: white;
    border: none; }

.posts-grid .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px; }
  @media (min-width: 768px) {
    .posts-grid .grid {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) {
    .posts-grid .grid {
      grid-template-columns: 1fr 1fr 1fr; }
      .posts-grid .grid.col4 {
        grid-template-columns: 1fr 1fr 1fr 1fr; } }
  .posts-grid .grid .ad {
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #191919; }
  .posts-grid nav {
    margin-top: 25px;
    border-top: 2px solid #369967;
    padding-top: 25px;
    color: #005d88;
    font-weight: 600; }
  .posts-grid nav .links {
    position: relative;
    margin-left: -6px; }
  .posts-grid nav a {
    color: #005d88;
    text-decoration: none;
    margin: 0 6px; }
  .posts-grid nav a:hover {
    color: black; }
  .posts-grid nav a.active {
    border-bottom: 3px solid #369967; }
  .posts-grid nav em {
    font-weight: normal;
    font-style: normal; }
  .posts-grid nav p {
    margin: 0; }

section.sponsors hr {
  margin: 50px 0 50px 0; }
  section.sponsors .grid {
    margin-bottom: 50px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr; }
  @media (min-width: 576px) {
    section.sponsors .grid {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) {
    section.sponsors .grid {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (min-width: 1200px) {
    section.sponsors .grid {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  section.sponsors .grid .sponsor {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #6dc8e0;
    border-radius: 10px;
    padding: 15px; }
  section.sponsors .grid .sponsor img {
    width: 100%;
    filter: grayscale(100%);
    transition: all 100ms ease; }
  section.sponsors .grid .sponsor .info {
    display: none;
    z-index: 10;
    position: absolute;
    width: 300px;
    max-width: 100vw;
    background: #bfd6e2;
    padding: 15px;
    border-radius: 10px;
    top: calc(100% + 10px); }
    section.sponsors .grid .sponsor .info .description {
      font-size: 0.8rem; }
    section.sponsors .grid .sponsor .info .description p {
      margin-bottom: 10px; }
    section.sponsors .grid .sponsor .info .arrow-container {
      position: absolute;
      top: -10px;
      width: 100%;
      text-align: center;
      left: 0; }
    section.sponsors .grid .sponsor .info .arrow {
      margin: 0 auto;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #bfd6e2; }
  section.sponsors .grid .sponsor:hover .info {
    display: block; }
  section.sponsors .grid .sponsor:hover img {
    filter: grayscale(0%); }
  section.sponsors .grid .sponsor .website {
    display: block;
    margin-bottom: 10px; }
  section.sponsors .grid .sponsor p {
    margin-bottom: 0; }
  section.sponsors .grid .sponsor a {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    text-decoration: none; }
  section.sponsors .grid .sponsor a i {
    font-size: 1.8rem;
    color: #005d88;
    transition: all 100ms ease; }
  section.sponsors .grid .sponsor a:hover i {
    color: black; }
  section.sponsors .grid .sponsor h3 {
    font-size: 25px;
    font-weight: 600;
    font-family: 'gothamcondensed', sans-serif;
    margin-bottom: 10px; }

article.post h3 {
  font-family: 'gothamcondensed', sans-serif;
  color: #191919;
  font-weight: 700;
  text-transform: uppercase; }
  article.post a {
    color: #005d88; }
  article.post .hero.videos {
    background-color: #005d88; }
  article.post .hero.videos.no-image-override .overlay {
    background: none; }
  article.post .hero h2 {
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem; }
  article.post .summary {
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
    font-size: 1rem;
    z-index: 10; }
  article.post .summary h4, article.post .summary address, article.post .summary .categories a {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: #7e88a5;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none; }
  article.post .summary .categories a {
    color: #005d88;
    margin-right: 10px; }
  article.post .summary address span {
    color: #005d88; }
  article.post .summary .padded {
    padding: 25px;
    /* last child within the col (usually a <p>)*/ }
  article.post .summary .padded *:last-child {
    margin-bottom: 0; }
  article.post .summary .postedin {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  article.post .summary .button {
    padding: 2px 10px; }
  article.post .summary .button.print {
    position: absolute;
    right: 0;
    top: -20px;
    color: white; }
  article.post .summary .share a {
    font-size: 32px;
    color: #005d88;
    opacity: 0.8;
    transition: all 200ms ease;
    display: inline-block;
    margin-right: 5px;
    line-height: 1; }
  article.post .summary .share a:hover {
    opacity: 1; }
  article.post hr {
    height: 0;
    border-bottom: 2px solid #bfd6e2;
    background: none;
    opacity: 1;
    margin: 50px 0 0 0; }
  article.post .morefrom {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #bfd6e2; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

section.papers {
  padding: 80px 0; }
  section.papers .intro {
    padding-bottom: 50px; }
  section.papers .intro > *:last-of-type {
    margin-bottom: 0; }
  section.papers h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.3rem; }
  section.papers article {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #f3f3f3; }
  section.papers article img {
    width: 100%; }
  section.papers article .image {
    position: relative;
    border: 5px solid #f3f3f3;
    margin-bottom: 15px; }
  section.papers article .image .overlay {
    opacity: 0;
    display: flex;
    transition: opacity 200ms ease;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); }
  section.papers article .image:hover .overlay {
    opacity: 1; }
  section.papers article a:not(.button) {
    color: #005d88;
    text-decoration: none;
    font-weight: 700; }
  section.papers article .share {
    font-size: 150%; }
  section.papers article .share h3 {
    color: white; }
  section.papers article .share a {
    color: white; }
  section.papers article .share a:hover {
    color: #6dc8e0; }
  section.papers article a.button {
    margin-bottom: 0; }
  section.papers article .description {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; }
  section.papers nav {
    margin: 10px 0; }
  section.papers .page-item.active .page-link {
    background: #005d88;
    border-color: #005d88; }
  section.papers .page-item a {
    color: #005d88; }
  section.papers .advertisement {
    margin-top: 50px; }
  @media (min-width: 768px) {
  section.papers nav {
    margin: 20px 0; } }
/* .papers */
section.category-posts {
  margin-top: 80px;
  margin-bottom: 80px; }
  section.category-posts h2 {
    margin-bottom: 20px;
    font-family: 'gothamcondensed', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    color: #005d88; }
  section.category-posts img {
    width: 100%; }

a.post {
  position: relative;
  display: block;
  background: #333; }
  a.post hr {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    border-top: 12px solid #005d88;
    height: 0;
    margin: 0;
    opacity: 1;
    display: none; }
  a.post h3 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    margin: 0;
    font-family: 'gothamcondensed', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    color: #191919;
    padding-top: 10px; }
  a.post img {
    width: 100%;
    object-fit: cover;
    height: 200px; }
  a.post .image {
    position: relative; }
  a.post .play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
  a.post .play i {
    color: white;
    font-size: 30px;
    padding-left: 4px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center; }
  @media (min-width: 768px) {
  a.post img {
    height: auto;
    object-fit: initial; } }
  a.post:hover hr {
    display: block; }
  a.post:hover h3 {
    color: #005d88; }
  a.post:hover .play i {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

div.events .hero2022 .slide {
  height: auto;
  min-height: 60vh;
  padding-top: 100px;
  align-items: flex-end; }
  @media (min-width: 992px) {
    div.events .hero2022 .slide {
      padding-top: 140px; } }
  div.events .hero2022 .col {
    padding-bottom: 4vh; }
  div.events .hero2022 .button {
    margin-top: 30px; }
  div.events .description {
    padding-top: 80px;
    padding-bottom: 80px; }
  div.events .speakers {
    background: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: hidden; }
  div.events .speakers h4 {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic; }
  div.events .speakers article {
    margin-bottom: 50px; }
  div.events .speakers article .image {
    flex: 40% 0 0;
    margin-bottom: 30px; }
  div.events .speakers article .image img {
    width: 100%; }
  div.events .speakers article .bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; }
  div.events .speakers article:last-of-type {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    div.events .speakers article {
      display: flex; }

    div.events .speakers article:nth-child(even) .image {
      order: 2;
      padding-left: 50px; }

    div.events .speakers article:nth-child(odd) .image {
      padding-right: 50px; } }
  div.events .supporters hr {
    width: 50%;
    height: 2px;
    background: #eee;
    margin: 80px auto 0 auto;
    opacity: 1; }
  div.events .supporters + .supporters {
    padding-top: 0; }
  div.events .posts-grid {
    text-align: center;
    padding: 0 80px 80px 80px; }
  div.events .posts-grid .grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
  div.events .posts-grid .grid .post {
    width: 100%; }
  @media (min-width: 768px) {
      div.events .posts-grid .grid .post {
        width: 45%; } }
  @media (min-width: 992px) {
      div.events .posts-grid .grid .post {
        width: 30%; } }
  div.events .posts-grid h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-green); }
  div.events .posts-grid h3.title {
    font-size: 30px;
    font-family: 'Archivo Black';
    color: var(--color-blue-dark);
    margin-bottom: 50px; }

.page1 .events-grid {
  background: #efefef; }
  .page1 .events-grid h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-green); }
  .page1 .events-grid h3 {
    font-size: 30px;
    font-family: 'Archivo Black';
    color: var(--color-blue-dark);
    margin-bottom: 50px; }

.events-grid {
  padding-top: 80px;
  padding-bottom: 80px; }
  .events-grid h2 {
    margin-bottom: 50px; }
  .events-grid .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 25px;
    row-gap: 25px;
    margin-bottom: 50px; }
  .events-grid .grid .event {
    width: 100%;
    position: relative; }
  @media (min-width: 768px) {
      .events-grid .grid .event {
        width: 45%; } }
  @media (min-width: 992px) {
      .events-grid .grid .event {
        width: 30%; } }
  .events-grid .grid .event h4, .events-grid .grid .event h3 a {
    color: white; }
  .events-grid .grid .event h4 {
    color: white;
    font-size: 14px;
    font-family: 'Rubik';
    font-weight: 500; }
  .events-grid .grid .event h3 {
    color: white;
    font-size: 22px;
    font-family: 'Rubik';
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px; }
  .events-grid .grid .event .image {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    border-radius: 5px;
    background-size: auto 115%;
    background-position: center center;
    transition: all 250ms ease-in-out; }
  .events-grid .grid .event .overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    transition: all 200ms; }
  .events-grid .grid .event .info {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    bottom: 0;
    z-index: 2;
    text-align: left;
    padding: 30px; }
  .events-grid .grid .event .button {
    padding: 10px 20px; }
  .events-grid .grid .event:hover .image {
    transform: scale(1.03) translateZ(0);
    background-size: auto 100%; }
    .events-grid .grid .event:hover .overlay {
      opacity: 0.5; }

.alert {
  border-radius: 0; }

.alert-info a {
  color: #055160;
  text-decoration: none; }

#text196 {
  border-top: 1px solid #005d88; }

@media print {
  body > header, body > footer {
    display: none; }

  article.post {
    margin-top: 0 !important; }

  div.morefrom {
    display: none; }

  div.share-container {
    display: none; }

  .button.print {
    display: none; }

  .postedin {
    margin-bottom: 0 !important; } }
