*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Layout */
body {
  max-width: 2800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1 0 auto;
  /*min-height: 100vh;*/
}

.main {
  max-width: 2500px;
}

.row {
  margin-left: 0;
  margin-right: 0;
  /*row-gap: 1rem;*/
}

.bold-text {
  font-weight: 700;
}

@media only screen and (max-width: 62em){
  .row {
    row-gap: 1rem;
  }
}
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.row .container {
  padding-left: 0;
  padding-right: 0;
}

/* Color Variables */
:root {
  --dark-green: #0F5514;
  --light-green: #F0F9F1;
  --heading: #FACC37;
  --text: #ffffff;
  --text-dark: #434343;
}

/* TYPOGRAPHY */

body, .article {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
}

a {
  color: var(--text-dark);
}


/* Button, Links */
.btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  width: 135px;
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  margin-bottom: 1rem;  
}

.btn.dark {
  background: var(--dark-green);
  color: #fff;
}

.btn.white-outline {
  color: #fff;
  border: 2px solid #fff;
  width: auto;
}

.btn.green-outline {
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  width: auto;
}

.btn:after {
  content: '→';
  position: absolute;
  opacity: 0;  
  top: 10px;
  right: -20px;
  transition: 0.5s;
}

.btn:hover{
  padding-right: 24px;
  padding-left:8px;
}

.btn:hover:after {
  opacity: 1;
  right: 5px;
}

.link {
  width: 190px;
  display: block;
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 2px;
  padding: 10px;
  margin-bottom: 1rem;  
}


.link a {
  opacity: .7;
  transition: .5s;
}

.link a:after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .85rem;
}

.link a:hover {
  opacity: 1;
}


input[type="submit"] {
  background: var(--dark-green);
  color: #fff;
  border-radius: 0;
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: 2px;
}


/* Main Menu */
#main-nav ul {
  text-align: right;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

#main-nav ul li {
  padding: 1rem .5rem;
  text-align: center;
}

#main-nav ul li a {
  color: var(--text);
  font-size: 1.5rem;
  padding: 5px 8px;
  position: relative;
}


#main-nav ul li a:hover,
#main-nav ul li a:focus {
  background: rgba(255, 255, 255, 0.1);
  /*background: rgba(15, 85, 20, .4)*/
}


/*Mobile Menu*/
.hamburger-menu {
  position: relative;
  z-index: 1000;
}

#main-nav ul li a svg {
  height: 18px;
  width: auto;
}

@media only screen and (max-width: 62em) { 
  #main-nav {
    width: 100%;
    min-height: 100vh;
    top: 0;
    right: 0;
    background-color: #245234;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    position: fixed;
    z-index: 120;
    text-align: center;
  }

  input.hamburger-menu[type="checkbox"] {
    display: none;
  }


  input.hamburger-menu[type="checkbox"]:checked ~ #main-nav {
    transform: translateX(0%);
  }
  
  input.hamburger-menu[type="checkbox"]:checked body {
    background: red;
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .bar {
    background-color: #fff;
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .top {
    -webkit-transform: translateY(7px) rotateZ(45deg);
    -moz-transform: translateY(7px) rotateZ(45deg);
    -ms-transform: translateY(7px) rotateZ(45deg);
    -o-transform: translateY(7px) rotateZ(45deg);
    transform: translateY(7px) rotateZ(45deg);
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .bottom {
    -webkit-transform: translateY(-9px) rotateZ(-45deg);
    -moz-transform: translateY(-9px) rotateZ(-45deg);
    -ms-transform: translateY(-9px) rotateZ(-45deg);
    -o-transform: translateY(-9px) rotateZ(-45deg);
    transform: translateY(-9px) rotateZ(-45deg);
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .middle {
    width: 0;
  }

  .middle {
    margin: 0 auto;
  }

  .hamburger-icon {
    top: 15px;
    right: 15px;
    display: inline-block;
    padding: 7px 10px;
    background-color: #302d45;
    cursor: pointer;
    margin: 10px;
    z-index: 1001;
    position: fixed;
  }

  .bar {
    display: block;
    background-color: #fff;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto;
    transition: background-color 0.4s ease-in, transform 0.4s ease-in,
      width 0.4s ease-in;
  }
  
  #main-nav ul {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 70%;
  }
}

@media only screen and (min-width: 62em) { 
  .hamburger-menu, .hamburger-icon {
    display: none;
  }
  
  
  #main-nav ul li {
    display: inline-block;
    padding: 0 0 0 1rem;
  }
 
  
  #main-nav ul li a {
    font-size: 1rem;
  }  
}

@media only screen and (min-width: 75em){
  #main-nav ul {
    padding: 0;
  }
}

@media only screen and (min-width: 99em) { 
   #main-nav ul li {
    font-size: 1.2rem;
    padding: 0 0 0 1.5rem;
  }
}

/* Secondary Navigation */
.secondary-navigation {
  padding-top: 2rem;
  background: #f5f5f5;
}

.secondary-navigation.event {
  background: none;
}

.secondary-navigation.player {
  background: none;
  color: #fff;
}

.secondary-navigation.player a {
  color: #fff;
}

.secondary-navigation ul {
  list-style: none;
  padding-left: 0;
  display: inline-block;
}

.secondary-nav-item {
  display: inline-block;
}

.cookie {
  letter-spacing: 1px;
}

.cookie a::before {
  content: '\f053';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .8rem;
}

@media only screen and (min-width: 62em) { 
  .secondary-navigation ul {
    display: block;
    text-align: center;
  }
  
  .secondary-nav-item {
    padding: 10px 20px;
  }
}

/* Header */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 130;
  padding: 1rem 1rem 0;
  width: 100%;
}

.main-header img {
  max-width: 150px;
}

.main-header .social-icons {
  list-style: none;
  padding: 0;
  text-align: right;
  position: absolute;
  top: 5rem;
  right: 25px;
}

.main-header .social-icons li {
  padding: 0 .2rem;
  display: inline-block;
}

.main-header .social-icons a {
  color: var(--text);
  opacity: .7;
}

.main-header .social-icons a:hover {
  opacity: 1;
}

.optionbox-trigger {
	justify-content: center;
}

@media only screen and (min-width: 62em){
  .main-header .social-icons {
  	position: absolute;
    top: 2rem;
    right: 5%;
  }
  
  .main-header .social-icons li {
   padding: 0 .5rem;
   display: inline-block;
  }
}

/* Sponsors */
.sponsors {
  background: var(--light-green);
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
}

.sponsors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.sponsors-list img {
  width: 120px;
  object-fit: cover;
  justify-self: center;
  align-self: center;
}

.sponsors .link {
  width: 85%;
  margin: 1rem auto 0;
}

.sponsors .link a {
  color: var(--text-dark);
  letter-spacing: 1px;
}

.sponsors i {
  font-size: .8rem;
}

@media only screen and (min-width: 62em){
  .sponsors-list {
    grid-template-columns: repeat(6, 1fr);
    width: 70%;
    margin: 0 auto;
  }
}


/* Footer */
.main-footer {
  margin: 0;
  padding: 1rem 0;
}

.main-footer p {
  margin: 0 0 .25rem 0;
  line-height: 1.5;
  opacity: .7;
}

.main-footer h4 {
  margin: 0 0 .25rem 0;
  opacity: .7;
}

.main-footer i {
  margin: 0 .5rem;
}

.main-footer a {
  opacity: .7;
}

.main-footer a:hover {
  opacity: 1;
}

.main-footer .contact-item {
  margin: 1.5rem 0 .5rem;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.main-footer .social-icons li {
  display: inline-block;
}

.main-footer .social-icons a {
  margin: 0;
}

.main-footer .footer-nav {
  margin: 1.5rem auto 2rem;
  text-align: left;
  font-family: "Open Sans Condensed", "sans-serif";
  font-weight: 700;
  letter-spacing: 1.3px;
  font-size: 1rem;
}

.main-footer .footer-nav li {
  display: block;
  margin: 0.25rem auto;
  width: 200px;
}

.main-footer #nav-app {
  position: static;
  cursor: pointer;
}

.footer-credits {
  opacity: .7;
  font-size: .9rem;
}

.user-login {
  margin-bottom: .5rem;
}

footer #nav-app ul {
	justify-content: center;
}

@media only screen and (min-width: 62em){
  .main-footer .footer-nav li {
    width: 300px;
  }
  
  .main-footer .footer-nav a {
    font-size: 1rem;
  }
  
  .main-footer h4 {
    font-size: 1.1rem;
  }

  .footer-credits {
    margin-top: 2rem;
  }
}


/* ========== HOME ============= */
/* Spotlight */
.cta-spotlight {
  position: relative;
  min-height: 65vh;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
}

.cta-content {
  position: absolute;
  top: 55%;
  transform: translateY(-55%);
  z-index: 110;
  margin-left: 5%;
  margin-right: 5%;
}

.cta-title {
  color: var(--text);
}

.overlay {
    background-color: black;
    opacity: .5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
}

.cta-link a {
  color: var(--text);
}

/* Scroll down arrow - code revised from https://unused-css.com/blog/animated-down-arrow/ */
.cta-spotlight .scroll-icon {
  left: 50%;
  bottom: 30px;
  z-index: 200;
	display: none;
}

@media only screen and (min-width: 48em){
  .cta-spotlight {
    min-height: 100vh;
  }
  
  .cta-title {
    letter-spacing: 5px;
  }
  
  .cta-content {
    margin-left: 8%;
    width: 70%;
  }
}

@media only screen and (min-width: 62em){
 .cta-content {
    width: 60%;
  }
}

/* News */
.left-col {
  margin-right: 0;
  padding: 2rem 2rem 3rem;
  background: var(--light-green);
}

.news-scroll {
  padding: 0 1rem;
  width: 99%;
  position: relative;
  border-bottom: none;
	max-height: 600px;
	overflow-y: scroll;
}

.news-scroll a {
  color: var(--text-dark);
}

.news-scroll .card {
  margin: 1rem 0 2rem;
}

.news-scroll .card-content {
  margin-top: .5rem; 
}

.news-scroll .card-title {
  margin: 1rem 0 .5rem;
}

.news-scroll .card-photo, 
.news-scroll .card-photo img {
  height: 300px;
  margin: 0 auto;
  background-size: 100%;
}

.news-scroll .scroll-icon {
  bottom: 1rem;
  left: 9rem;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

.news-scroll .scroll-icon svg {
  fill: black;
  stroke: black;
}

.card-photo, .card-photo.no-photo {
    background: none;
}

.card-title-row {
	display: flex;
	margin: .5rem 0 0;
}

.facebook-icon {
	margin: 1rem 10px 0 0;
	color: #B7B7B7;
}

.card-description {
	line-height: 1.4;
}

@media only screen and (min-width: 62em){
  .news-scroll .card {
  	max-width: 500px;
    margin: 0 2rem 2rem auto;
  }
  
  .news-scroll {
    width: 90%;
    margin: 0 auto 0 3rem;
  }
}


/* Mission & Events */
.right-col {
  background: var(--dark-green);
  color: #fff;
  padding: 1rem 2rem;
}

.right-col-container {
    width: 95%;
    margin: 0 auto;
}

.right-col .link {
  margin-left: auto;
  text-align: right;
  width: 200px;
}

.right-col .link i {
  font-size: .85rem;
}

.right-col .link a {
  color: #fff;
}

.mission p {
  line-height: 1.5;
}

.upcoming-games .format-date {
  color: var(--heading);
  opacity: 1;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
}

.upcoming-games .event-name {
  color: #fff !important;
}

.upcoming-events li:hover {
  background: transparent;
}

.upcoming-events .event-details {
  padding: .75rem 0;
  background-position: .5rem 1rem;
}

@media only screen and (min-width: 62em){
  .right-col-container {
    width: 80%;
    max-width: 550px;
    margin: 0 auto 0 3rem;
  }
  
  .no-games {
    min-height: 180px;
  }
}

@media only screen and (min-width: 75em){
  .right-col-container {
    margin: 1rem auto 0 5rem;
  }
}

/* Featured Players */
.featured-players .link {
  margin-left: auto;
}

.featured-players h3 {
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin: .5rem 0 .25rem;
  text-transform: none;
}

.featured-players {
  padding: 1rem;
}


@media only screen and (min-width: 62em){
  .featured-players {
    padding: 3rem 0;
  }
  
  .featured-players h3 {
    font-size: 1.4rem;
  }
  
  /*.featured-players-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }*/
  
  .featured-players .link {
    margin-left: 0;
  }
  
}

/* Second CTA */
.cta2-content {
  padding: 1rem 2rem;
  background: var(--dark-green);
  color: #fff;
  text-align: center;
}

.cta-2 p {
  color: var(--heading);
  font-weight: 600;
}

.cta-2 img {
  max-height: 400px;
  object-fit: cover;
  padding: 0;
  display: block;
}

.cta-2 a {
  color: #fff;
}

.cta-2 .btn.white-outline {
  width: 280px;
}

@media only screen and (min-width: 62em){
  .cta2-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 10%;
  }
}

/* Third CTA */
.cta-3 {
  background: var(--light-green);
  padding: 2rem 1rem;
  text-align: center;
}

.cta-3 a {
  color: var(--dark-green);
}

.cta-3 p {
  font-weight: 600;
}
.cta-3 .btn.green-outline {
  width: 160px;
  margin: 0 auto;
}

@media only screen and (min-width: 62em){
  .cta-3 {
    min-height: 300px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Testimonial Text Slider */
.testimonial h2 {
  text-align: center;
}

.testimonial p {
  margin: 0;
}

.testimonial {
  padding: 2rem 0;  
}

.testimonial img {
  border-radius: 50%;  
  width: 60px;
}

.testimonial .swiper {
  max-width: 1000px;
  width: 95%;
  box-shadow: 2px 2px 41px 7px rgba(15,85,20,0.15);
  border-radius: 15px;
  margin: 2rem auto;
}

.testimonial .swiper-wrapper {
  padding: 1rem 0;
}

.testimonial .swiper-slide {
  position: relative;
  font-size: .8rem;
 
}

.testimonial blockquote:first-child:before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: #C4D9C7;
  opacity: 1;
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  z-index: -10;
}

.testimonial blockquote {
  padding: 1rem;
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial cite {
  font-style: normal;
  line-height: 1.4;
  font-weight: 600;
}

.testimonial cite p:first-child {
  font-weight: 700;
}

.swiper-button-next::after, .swiper-button-prev::after {
   content: "";
}

.swiper-button-next, .swiper-button-prev {
  color: var(--text-dark);
  opacity: .6;
}

.swiper-button-next i, .swiper-button-prev i {
  font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
  background: var(--text-dark);
}

/* Instagram*/
.instagram {
  margin: 2rem auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
}

.instagram-item {
  width: 100%;
  height: 150px;
  background: #eee;
}

@media only screen and (min-width: 48em){
 .instagram-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .instagram-item {
    height: 250px;
  }
}

@media only screen and (min-width: 62em){
 .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* Popular Template */
.featured-img {
  position: relative;
  max-height: 600px;
  min-height: 400px;
  background: #245234;
}

.featured-img img {
  width: 100%;
  min-height: 400px;
  max-height: 600px;
  object-fit: cover
}

.featured-img-text, .featured-img-text.visible {
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  z-index: 100;
	position: absolute;
	width: 100%;
}

.main-content {
  margin-bottom: 4rem;
}

.intro-content {
  padding: 1rem 0;
}

.intro-content h2 {
  margin-left: 1rem;
}

.intro-content p {
  font-size: 100%;
  font-weight: 600;
  margin: 0 1rem;
}

.intro-content h1, .intro-content h2, .intro-content p {
    color: #3E3E3E;
}

.intro-content h2 {
  line-height: 1.3;
}

.contact-card  {
  background: var(--light-green);
  padding: 1rem;
  margin: 1rem 0 0;
}

.contact-card h3, .contact-card h4 {
  text-transform: none;
  letter-spacing: 1.1px;
}

.content-box {
  border-radius: 0;
  min-height: 400px;
}

.content-box.light-grey {
  background: #f5f5f5;
}

.content-box.dark-green {
  background: var(--dark-green);
  color: #fff;
}

.content-box.light-green {
  background: var(--light-green);
}

.content-box.brown {
  background: #7E5E55;
  color: #fff;
}

.content-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-row h3 {
  text-transform: none;
  letter-spacing: 1px;
}

@media only screen and (max-width: 62em){
	.featured-img {
    	position: relative;
    	height: 400px;
    	min-height: unset;
	}
	.featured-img img {
		height: 400px;
    	min-height: unset;
	}
}

@media only screen and (min-width: 62em){
  .container {
    width: 85%;
  }
  
  .intro-content {
    padding: 3rem 0 2rem;
    color: #434343 !important;
  }
  
  .content-box {
    border-radius: 0;
    min-height: 100%;
  }
  
  .featured-img {
    min-height: 600px;
  }
  
  .content-row {
    padding-top: 1rem;
   	padding-bottom: 2rem;
  }
  
  .content-row img {
   height: 450px;
  }
  
  .content-section {
    margin-top: 2rem;
    color: #434343 !important;
  }
}

/* Rich Text Template */
.main-header.relative-header {
  position: static;
  background: #245234;
  width: 100%;
}


/* Content Box w/ Image Slider Template */
.box-item h4 {
  margin-bottom: .5rem;
  text-transform: none;
}

.box-item p {
  line-height: 1.4;
}


.contact form {
  margin-top: 1.5rem;
}

@media only screen and (min-width: 48em){
  .contact form {
    margin-top: 0;
  }
  
  .single-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
}

/* Directory Template */
.directory-item {
  margin-bottom: 3rem;
  position: relative;
}

.directory-item i {
  margin-right: .5rem;
}

.directory-item h4 {
  margin-bottom: .5rem;
  text-transform: none;
  letter-spacing: 1.5px;
}

.directory-item a {
  font-weight: 600;
  color: var(--dark-green);
}

.card-overlay {
  width: 80%;
  max-width: 250px;
  height: 20px;
  background: #f5f5f5;
  position: absolute;
  top: 1rem;
  z-index: -1;
}

/* Player Profile */
.pp-header {
  position: static;
  background: var(--dark-green);
  background: no-repeat url("/images/thomas-park-Nl942-bo_4o-unsplash.jpg?fingerprint=ppb20251217023410");
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: relative;
}

.pp-header .overlay {
  z-index: -1;
}

@media only screen and (min-width: 62em){
  .pp-header {
    min-height: 250px;
  }
}

body.pp {
  background: #245234;
}

body.body--hidden {
  overflow: hidden;
}

body.body--hidden .pp-header,
body.body--hidden .secondary-navigation,
body.body--hidden .profiles-wrapper label,
body.body--hidden .players-section-header,
body.body--hidden .sponsors,
body.body--hidden .main-footer {
  opacity: 0;
}

body .pattern {
  opacity: 0;
}

body.body--hidden .pattern {
  opacity: 1;
}

.pattern {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pattern--hidden {
  visibility: hidden;
  opacity: 0;
}

.pattern--hidden .polygon {
  transition-duration: 0ms;
}

.pattern svg {
  width: 100%;
  height: 100%;
}

.polygon {
  transition: -webkit-transform 300ms ease-in-out, opacity 300ms ease-in-out;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  fill: transparent;
  stroke: var(--light-green);
}

.polygon--hidden {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* disable scale on firefox */

.ff .polygon {
  -webkit-transform: scale(1)!important;
  transform: scale(1)!important;
}

table th {
  background: var(--text-dark);
  color: #fff;
}

.table table td {
  width: auto;
}

/* Schedule Page */
.schedule.table {
  box-shadow: none;
}

.schedule h4 {
  margin-bottom: .5rem;
}

.list-view {
  padding: 1rem 0;
  text-align: right;
  display: block;
  font-weight: 700;
}

.list-view i {
  padding: 0 .5rem;
}

.game-date {
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  opacity: 0.5;
  display: block;
  letter-spacing: 1px;
}

.publish-date {
  display: flex;
  align-items: center;
  padding: 0;
}

.publish-date i {
  padding-right: .5rem;
}

/* Instagram */
.insta-profile-link {
  height: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;  
}

.insta-profile-link span {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

@media(min-width: 99em) {
  .insta-profile-link span {
    font-size: 20px;
  }
}

/* Responsivley Square Images */ 
.insta-item {
  position: relative;
  width: 100%;
  margin-top: 30px;  
  transition: all .1s ease-in-out;
}

.insta-item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.insta-item img,
.insta-item video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
} 
/* */

.insta-item svg {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 0.85;
  z-index: 100;
  width: 25px;
  height: auto;
}

.insta-item:hover {
  filter: brightness(0.5);
}

.insta_row {
  display: flex;
  align-items: center;
}

.insta_profile {
  border-radius: 50%;
  max-width: 80px;
  max-height: 80px;
  margin: 0 1rem;
}

.insta_account {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Alerts */
.banner-alert-wrapper {
	width: calc(100% + 2rem);
	margin: -1rem -1rem 0;
}

/* Home Banner Video Background */
.cta-spotlight.video {
	height: 500px;
	min-height: unset;
}

.spotlight.video-bg {
    padding: 0 0 500px;
}

.spotlight.video-bg .overlay {
	background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

@media (max-width: 62em){
	.spotlight.video-bg iframe {
		height: 100vh;
    	width: 300vw;
	}
}

@media only screen and (min-width: 62em){
	.cta-spotlight.video {
		height: 0;
    	padding-bottom: 100vh;
    	min-height: unset;
	}
	.spotlight.video-bg {
      padding: 0 0 100vh;
      height: 0;
    }
    .spotlight.video-bg iframe {
		height: 150vh;
    	width: 200vw;
	}
}

.sidebar-item h3 {
  font-family: 'Open Sans Condensed', sans-serif;
}