@charset "utf-8";
 

/*===========================================================================================================*/
/*=========================================== GENERAL SETTINGS ==============================================*/
/*===========================================================================================================*/
body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  background-color: #FFF;
  -webkit-font-smoothing: antialiased;
  color: #3a3a3a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
  font-family: "indivisible", sans-serif;
}
b, strong {
	font-weight: bold;
}
strong.stronger {
  font-weight: 900;
}
* {
  margin: 0;
  box-sizing: border-box;
}
.break-word {
  -webkit-word-wrap: break-word;
  -moz-word-wrap: break-word;
  -ms-word-wrap: break-word;
  -o-word-wrap: break-word;
  word-wrap: break-word;
}
p {
color: var(--secondary, #0C1B33);
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.list-unstyled {
	list-style: none;
	padding: 0;
}
.list-unstyled li {
	display: block;
	margin: 0;
}
.list-inline {
	list-style: none;
	padding: 0;
}
.list-inline li {
	display: inline-block;
	margin: 0;
}
.list-inline li:not(:last-child) {margin-right: 5px;}
ul, ol {
  margin: 0 0 0;
  padding-left: 22px;
}
ul *, ol * {
  vertical-align: inherit;
   /* 133.333% */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* padding-left:5px; */
}
li{}
li::marker  {font-size:11px;font-weight:400;/* align-self:center; */}
td, th {}
a {
  text-decoration: none;
  color: var(--green2, #648B55);
  font-family: 'open-sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
a:hover, a:focus {/* text-decoration: underline; */}
a img {
  border: none;
}
img {
  max-width: 100%;
  width: auto;
}

.fa-solid.fa-arrow-right{
  /* color: var(--white, #F9F9F9); */
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h1{
color: var(--dark, #333);
font-family: Montserrat;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.h1-eyebrown{
color: var(--dark, #333);
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.h1-subtitle{
  color: var(--dark, #333);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.h1-bnn-eyebrown{
  display: flex;
  color: var(--white, #FBF9FF);
  text-align: center;
  font-family: 'playfair-display';
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.bottom-bnn {width: 100%;display: grid;gap: 6px;max-width: 750px;}

 
.h1-bnn {
   /* 98.592% */
   color: var(--white, #FBF9FF);
   font-family: playfair-display;
   font-size: 158px;
   font-style: normal;
   font-weight: 400;
   line-height: 73.075%; /* 115.459px */
}

 

h2 {color: #1E1E1E;font-family: 'montserrat';font-size: 50px;font-style: normal;font-weight: 900;line-height: normal;}

 

h3 {
  color: var(--secondary, #0C1B33);
  font-family: "playfair-display";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h4 {
  color: var(--dark, #333);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 750px) {
  h1{
    font-size:45px;
  }

  h2{font-size: 45px;}

h1.h1-bnn-eyebrown{
	font-size: 25px;
}
h1.h1-bnn-eyebrown.down{
	font-size: 19px!important;
}
a.home-a {
 font-size:21px!important;
}
}

.green{
color:#648B55
}
 
.bg-white{
  background-color:#FFF;
}
.bg-grey{
  background-color:#F9F9F9;
}
.center {
    justify-self: anchor-center;
}

:root{
  --brand-gradient: linear-gradient(90deg, var(--blue, #12B6E1) 0%, var(--yellow, #FFE200) 100%);
}

.underline{
  position: relative;
  padding-bottom: 20px;
}

.underline::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 1px; /* opcional */
}

.green{
  color:#648B55;
}

.blackText{
  color:#333;
}

.white{
  color:#FFF;
}

.cream{
  background: #F8F7F3!important;
}
html {
  scroll-behavior: smooth;
}

/*===========================================================================================================*/
/*=========================================== TOP ===========================================================*/
/*===========================================================================================================*/
.menu {
  display: block;
  position: relative;
  z-index: 11;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  transition: all .4s ease;
  opacity: 1;
  background: #F9F9F9;
  margin: 0 auto;
}
.menu.ready {
  opacity: 1;
  animation: fadeInDown .6s both;
}
.menu.actived {
  padding: 10px 20px;
  box-shadow: 0 0 12px rgb(0 0 0 / 8%);
}
.menu.behaved {
  background-color: transparent;
  height: 94px;
  overflow: hidden;
  box-shadow: none;
  box-shadow: none!important;
  position: fixed;
}
.menu.home {
	position: absolute;
	top: 0;
	background: transparent;
}
.menu > .container {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 40px 50px;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1850px; */
}
.menu.home > .container {
	align-items: start;
}
.menu.behaved > .container {
  position: static;
}
.customize-support .menu.home {
  top: 32px;
}
.menu.actived:before {
  top: -43px;
}
.menu.actived:behaved {
  top: -200px;
}
.menu .mobile-nav {}
.menu .mobile-nav ul {
	margin: 0 0;
}
.menu .mobile-nav ul li:not(:last-child) {
	margin-right: 23px;
}
.menu > div .navigation {
  display: block;
  background: none;
  color: var(--teal, #230704);
  letter-spacing: 0px;
  font-weight: 400;
  line-height: 1em;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  margin: 29px 0;
  float: right;
  width: 24px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.menu > div .navigation:hover, .menu > div .navigation:focus {
  text-decoration: none;
}
.menu.actived > div .navigation {
 margin: 23px 0;
 margin-right: 36px;
}
.menu.behaved > div .navigation {
  color: var(--main-color, #003865);
  margin: 22px 0;
  margin-right: 0;
  top: 0;
  width: 24px;
}
.menu.behaved > div .navigation:hover {
	color: var(--main-color, #230704);
}
.menu > div a.navigation > .txt {
	position: absolute;
	right: 100%;
	top: 2px;

	margin-right: 6px;
}
.menu > div a.navigation > .txt:before {
  content: '';
  font-size: 16px;
  font-weight: 600;
  color: var(--teal, #fff);
  letter-spacing: 0;
  position: relative;
  text-transform: lowercase;
  top: -2px;
}
.menu.behaved > div a.navigation > .txt:before {color: #fff;}
.menu > div a.navigation > .bar {
  position: absolute;
  left: 0;
  width: 24px;
  height: 3px;
  border-radius: 32px;
  background-color: var(--teal, #fff);
  -webkit-transition: top .3s ease, transform .4s ease, opacity .3s ease;
  -moz-transition: top .3s ease, transform .4s ease, opacity .3s ease;
  -ms-transition: top .3s ease, transform .4s ease, opacity .3s ease;
  -o-transition: top .3s ease, transform .4s ease, opacity .3s ease;
  transition: top .3s ease, transform .4s ease, opacity .3s ease;
}
.menu.actived > div a.navigation > .bar {
  
}
.menu.behaved > div a.navigation > .bar {
  background-color: var(--teal, #fff);
  width: 17px;
}
.menu > div a.navigation > span:first-child {
  top: 0px;
}
.menu > div a.navigation > span:nth-child(2) {
  top: 8px;
}

.menu > div a.navigation > span:nth-child(3) {
  top: 16px;
}
/*
.menu > div a.navigation:hover > span:first-child {
  top: -2px;
}
.menu > div a.navigation:hover > span:nth-child(3) {
  top: 18px;
}
*/
.menu > div a.navigation.behaved > span:first-child {
  top: 7px;
  transform: rotate(135deg);
}
.menu > div a.navigation.behaved > span:nth-child(2) {
  display: none;
}
.menu > div a.navigation.behaved > span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}
.menu .logo-nav {
  display: block;
  max-width: 250px;
  transition: all .3s ease;
  display: flex;
  width: 350px;
  height: auto;
  padding: 0.008px 0.016px 0px 0px;
  gap: 15.988px;
  flex-shrink: 0;
  /* aspect-ratio: 442/63; */
}
.menu .logo-nav img.logo-home {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
}
.menu .logo-nav:hover { opacity: .9!important }

.menu .logo-nav img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.menu.actived .logo-nav {
}
.menu.behaved .logo-nav {
 opacity: 0;
 width: 0;
 overflow: hidden;
 top: -50%;
}
.menu.behaved .social-nav {
  opacity: 0;
}
.menu > div {
  position: relative;
  max-width: 100%;
  padding: 30px;
}
.menu.behaved > div {
  background-color: transparent;
  border-color: transparent;
}


.menu .collapse-menu > li > ul {
  /* display: none; */
  background: #ffff;
  backdrop-filter: blur(2px);
  box-shadow: 0px 6px 10px 0px rgba(6, 28, 24, 0.15), 0px 3px 3px -5px rgba(6, 28, 24, 0.20);
  position: absolute;
  top: 100%;
  left: -8px;
  right: unset;
  z-index: 5;
  padding: 0;
  width: 250px;
  margin-top: 0!important;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all .3s ease;
  display: block;
  border-radius: 8px;
}
.menu .collapse-menu > li > ul:focus-within,
.menu .collapse-menu > li:hover > ul {
	padding: 7px 0;
	opacity: 1;
	margin-top: 0!important;
	height: auto;
	/* display: block!important; */
}
.menu .collapse-menu > li > ul > li {
  display: block;
  padding: 0;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  text-align: left;
  text-transform: capitalize;
  margin: 0 0!important;
}
.menu .collapse-menu > li > ul > li:hover {
	background-color: #fcfcfc
}
.menu .collapse-menu > li > ul > li a {
  display: block;
  position: relative;
  color: #000;
  text-shadow: none;
  padding: 10px 18px!important;
  border-bottom: solid 0px transparent;
}
.menu .collapse-menu > li > ul > li a:hover {
  color: var(--teal, #0C1B33);
}
.menu .collapse-menu > li > ul > li a:focus {
  color: var(--teal, #230704);
  text-decoration: none;
}
.menu .collapse-menu > li > ul > li.current-menu-item a {
  color: var(--teal, #230704);
}
.menu .collapse-menu > li > ul > li a:before,
.menu .collapse-menu > li > ul > li a:after {
  content: '\f105';
  font-family: 'Font Awesome 6 Pro';
  position: relative;
  top: -1px;
  transition: all .3s ease;
  opacity: 0;
  font-size: .8em;
}
.menu .collapse-menu > li > ul > li a:before {
  left: 0;
  position: absolute;
  top: 12px;
}
.menu .collapse-menu > li > ul > li.current-menu-item a:before {
  opacity: 1;
  left: 6px;
}
.menu .collapse-menu > li > ul > li a:after {
  margin-left: 0;
  background: none;
  background: none!important;
}
.menu .collapse-menu > li > ul > li:not(.current-menu-item) a:not(:focus):hover:after {
  opacity: 1;
  margin-left: 4px;
  background: none;
}
.menu .collapse-menu {
	width: 100%;
	/* max-width: 710px; */
	margin: 0;
	display: flex;
	/* padding: 7px; */
	gap: 10px;
	justify-content: flex-end;
	/* justify-content: space-around; */
}
.menu .collapse-menu li {
	color: var(--main-color, #0C1B33);
	font-family: 'montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.menu .collapse-menu li:not(:last-child) {/* margin-right: 13px; */}
.menu .collapse-menu li .fal {
	margin-top: 3px;
}
.menu .collapse-menu li a {
	display: inline-block;
	position: relative;
	padding: 10px;
	color: #FFF;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 24px */
}
.menu .collapse-menu li.current-menu-item > a,
.menu .collapse-menu li.current-page-ancestor > a {
	color: var(--teal, #FFF);
	background: none;
}
.menu .collapse-menu li strong {
	margin-right: 5px
}
.menu .collapse-menu li:hover a,
.menu .collapse-menu li:focus a,
.menu .collapse-menu li a:hover,
.menu .collapse-menu li a:focus {
	color: var(--teal, #F9f9f9);
	text-decoration: none;
}
.menu .collapse-menu li a:after {
  content: '';
  position: absolute;
  top: 100%;
  left: unset;
  right: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: all .3s ease;
}
.menu .collapse-menu li.current-menu-item > a:after,
.menu .collapse-menu li.current-page-ancestor > a:after,
.menu .collapse-menu li:hover a:after,
.menu .collapse-menu li:focus a:after{
 left: 0;
 right: unset;
 width: 100%;
 background-color: var(--teal, #FFF);
}

.menu.home .collapse-menu > li > a {
	color: #fff;
}
.menu.home .collapse-menu > li.current-menu-item > a,
.menu.home .collapse-menu > li.current-page-ancestor > a {
	color: #fff;
}
.menu.home .collapse-menu > li:hover > a,
.menu.home .collapse-menu > li:focus > a,
.menu.home .collapse-menu > li > a:hover,
.menu.home .collapse-menu > li > a:focus {
	color: #fff;
}
.menu.home .collapse-menu > li.current-menu-item > a:after,
.menu.home .collapse-menu > li.current-page-ancestor > a:after,
.menu.home .collapse-menu > li:hover a:after,
.menu.home .collapse-menu > li:focus a:after{
 background-color: #fff;
}

.menu.home > div a.navigation:not(.behaved) > .bar {
	background-color: #fff;
}

.menu i.fa.fa-caret-down {
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding-left: 5px;
}

.social-icons-header {
    display: flex;
    gap: 15px;
    color: var(--main-color, #648B55);
    font-family: "Font Awesome 6 Brands";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu .menu-item-has-children {
  position: relative;
}

.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  display: none;
  z-index: 99;
}

.menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.navigation-overlay {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -105px;
  bottom: 0;
  width: 100%;
  padding: 98px 35px 50px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: right .6s ease;
  background: var(--gray, #000);
  opacity: 0.9;
  border: none;
}
.navigation-overlay.behaved {
  right: 0;
}


.navigation-overlay > ul {
  opacity: 0;
  margin: 0;
  padding: 0;
}
.navigation-overlay.behaved > ul {
  opacity: 1;
}
.navigation-overlay > ul > li {margin-bottom: 18px!important;}
.navigation-overlay > ul > li > a {
	background: none;
	color: #FFF;
	font-size: 26px;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}
.navigation-overlay > ul > li > a span {
	border-bottom: solid 2px transparent;
}
.navigation-overlay > ul > li > a:hover {
	color: #12B6E1;
}
.navigation-overlay > ul > li > a:focus {
  color: #0e385e;
  text-decoration: none;
}
.navigation-overlay > ul > li > a:focus span {
  border-color: #0e385e;
}
.navigation-overlay > ul > li > a i {
	/* float: right; */
}
.navigation-overlay > ul > li.current-menu-item > a,
.navigation-overlay > ul > li.current-menu-ancestor > a {
  text-decoration: none;
  color: #FFF;
}
.navigation-overlay > ul > li.current-menu-item > a > span,
.navigation-overlay > ul > li.current-menu-ancestor > a > span {
	border-color: transparent
}
.navigation-overlay > ul > li ul {
  display: block;
  border-left: solid 2px #EDB458;
  padding-left: 23px;
  margin-left: 17px;
  margin-top: 12px;
  margin-bottom: 10px;
}


.navigation-overlay > ul > li > ul li {margin-bottom: 11px!important;}
.navigation-overlay > ul > li > ul li a {
  text-transform: capitalize;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  font-family: 'Montserrat';
  line-height: normal;
  text-decoration: none;
  color: #FFF;
  background: none;
}
.navigation-overlay > ul > li > ul li a span {
	border-bottom: solid 2px transparent;
}
.navigation-overlay > ul > li > ul li a:hover {
  text-decoration: none;
  color: #F9f9f9;
}
.navigation-overlay > ul > li > ul li a:focus {
  text-decoration: none;
  color: #f9f9f9;
}
.navigation-overlay > ul > li > ul li a:focus span {
	border-color: #f9f9f9;
}
.navigation-overlay > ul > li.current-menu-ancestor > ul li.current-menu-item a {
  text-decoration: none;
  color: #FFF;
}
.navigation-overlay > ul > li.current-menu-ancestor > ul li.current-menu-item a span {
	border-color: transparent;
}
.navigation-overlay > ul > li.current-menu-ancestor > ul li.current-menu-item a:before {
  content: '\f105';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  position: relative;
  top: -3px;
  margin-right: 5px;
  font-size: .7em;
}
.navigation-overlay > ul > li > a .fal  {
	display: none
}


body.behaved {
  overflow: hidden;
}
body.actived {
  overflow: hidden;
}
.page {
  background-color: #F9F9F9;
  position: relative;
  overflow: hidden;
}
 
@media screen and (min-width: 993px) {
  /*============== TOP ================*/
  .menu .navigation,
  .menu .mobile-nav,
  
  .navigation-overlay {
    display: none !important;
  }
	
	
}
@media screen and (max-width: 991px) {
	.menu > .container {
		padding: 50px 30px;
		align-items: start;
		gap: 20px;
		align-items: anchor-center;
	}
 
	 
	 
	.menu.home > .container {
		padding: 30px 50px;
	}
  .menu .collapse-menu { display: none }
  h1 > span, .h1-style > span { font-size: 16px }
  /*============== TOP ================*/
  body.actived {
    overflow: auto !important;
  }
  .menu {top: 0;padding: 0;}
  .menu.actived {
    background: #fff;
    padding: 5px 2vw;
}
  .menu.behaved,
  .menu.behaved:before {
    background-image: none;
    border: transparent;
    background: transparent;
  }
  .menu.behaved:after {
	background-color: transparent;
  }
  .menu > div .navigation {
    /* margin: 18px 0 0; */
    margin-right: 0;
  }
  .menu.actived > div .navigation {
    margin: 0;
    margin-right: 0px;
  }
  .menu .services-menu,
  .menu .bottom {
    display: none;
  }
  .menu .logo-nav {
  top: 8px;
  left: 10px;
  font-size: 65px;
  color: var(--chas-blue, #fff);
  }
  .menu.actived .logo-nav {
  top: 4px;
  font-size: 49px;
  max-width: 105px;
  }
}
@media screen and (max-width: 650px) {
  .menu.home > .container {
		padding: 30px 20px;
	}

  /*============== TOP NAV ================*/
  /*.menu div > a > .txt {
    display: none;
  }*/
  .menu.behaved > div .navigation {
  	width: 24px;
  	padding: 0;
  	margin-right: 0;
  }
  .navigation-overlay > ul > li > a {
  }
  .navigation-overlay > ul > li > ul > li a {
  }
  .menu .donate {
    top: 7px
  }
  .menu.actived .donate {
    top: 1px
  }
}
@media screen and (max-width: 910px) {
  .customize-support .menu.home, .customize-support .menu.actived{
    top: 32px;
  }
  .customize-support .navigation-overlay,
  .customize-support .menu.actived + .navigation-overlay {
    /* margin-top: 34px; */
  }
}
@media screen and (max-width: 782px) {
  .customize-support .menu.home, .customize-support .menu.actived{
    top: 46px;
  }
  .customize-support .navigation-overlay,
  .customize-support .menu.actived + .navigation-overlay {
    /* margin-top: 46px; */
  }
}
@media screen and (max-width: 600px) {
  .customize-support .menu.home {
    top: 46px;
  }
  .customize-support .menu.actived {
    top: 0;
  }
  .customize-support .navigation-overlay {
    /* margin-top: 46px; */
  }
  .customize-support .menu.actived + .navigation-overlay {
    margin-top: 0;
  } 
}
@media (max-width: 370px) {
	.menu .mobile-nav ul li:not(:last-child) {
		margin-right: 5px;
	}
}

 

/*===========================================================================================================*/
/*=========================================== 1920fix ======================================================*/
/*===========================================================================================================*/


.section-white {
  padding: 50px 0;
  background: #FBF9FF;
}
.section-white.grey {
  background: #F9F9F9;
}
.section-white > .container,
.section-white > .container-fluid {
  opacity: 0;
}
.section-white > .container,
.section-white > .container-fluid {
  opacity: 1;
  animation: fadeIn 1.2s both;
}

/* Container */
.container,
.container-lg {
	/* margin: auto; */
	max-width: 100%;
	padding: 0 50px;
}
.container {
	/* max-width: 1140px; */
	padding: 0 clamp(20px, 8vw, 150px);
}
@media (max-width: 1174px) {
	.container {
	 	padding: 0 20px;

	}
}





/*===========================================================================================================*/
/*=========================================== FOR ALL ======================================================*/
/*===========================================================================================================*/

/* ===== Upcoming Shows ===== */
.upcoming{
  padding: clamp(28px,5vw,64px) 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.83) 0%, rgba(255, 255, 255, 0.83) 100%),
              url('https://thecommitmentissues.d09.colophonhosting.com/wp-content/uploads/2025/11/upcoming-background.webp')
              lightgray 50% / cover no-repeat;
}

.upc-title{
  text-align:center;
  margin: 0 0 clamp(18px,3vw,50px);
}

.upc-wrap{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  aspect-ratio: 4;
  gap: clamp(14px,2.6vw,30px);
}

.show-card{
  position:relative;
  /* border-radius:14px; */
  overflow:hidden;
  min-height: 560px;
  display:flex;
  align-items:flex-end;
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
}

.show-media{position:absolute; inset:0; margin:0}
.show-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter: saturate(.9);
}

/* overlay escuro suave para legibilidade */
.show-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 80%);
}

/* conteúdo */
.show-info{
  position:relative;
  z-index:2;
  width:100%;
  padding: clamp(12px,2.4vw,30px);
  color:#fff;
  display: flex;
  gap:.6rem;
  place-items: f;
  justify-content: space-between;
}

.show-title a{margin:0;color: #FFF;font-family: Indivisible;font-size: 24px;font-style: normal;font-weight: 700;line-height: normal;margin-bottom: 15px;}

.show-meta{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  opacity:.95;
  margin-top: 15px;
}
.show-meta li{display:flex;align-items:center;gap: .65rem;color: #FFF;font-family: Indivisible;font-size: 16px;font-style: normal;font-weight: 700;line-height: normal;}
.show-meta i{opacity:.9}

/* botão do card encostado à direita em telas médias+ */
.show-cta{justify-self:end;}

/* botão central abaixo */
.upc-actions{display:flex;justify-content:center;margin-top: clamp(25px,3.2vw,50px);}
.upc-actions .btn-layout{display:inline-flex; align-items:center; gap:.5rem}

/* o overlay não deve bloquear cliques no <a> */
.show-card::after{ pointer-events:none; }

/* link cobrindo a imagem */
.show-media{ position:absolute; inset:0; margin:0; }
.show-media .show-link{
  position:absolute; inset:0; display:block; cursor:pointer;
}

/* efeito de movimento na imagem */
.show-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1) translate3d(0,0,0);
  transition: transform .7s ease, filter .35s ease;
}

/* hover no card OU foco no link (teclado) */
.show-card:hover .show-media img,
.show-media .show-link:focus-visible img{
  transform: scale(1.08) translate3d(0,-6px,0);
}

/* foco visível acessível no link que cobre a imagem */
.show-media .show-link:focus-visible{
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: -2px;
}

/* opcional: leve realce no hover */
.show-card:hover .show-media img{ filter: saturate(1.05); }


/* responsivo */
@media (max-width: 1200px){
  .upc-wrap{grid-template-columns:1fr}
  .show-cta{justify-self:start}
   .show-info{flex-flow:column;align-items: flex-start;}
    .show-info  .show-cta{
	align-self: flex-start;
	margin-top: 25px;
	}

}

 
.past-shows{
  padding: clamp(28px,5vw,56px) 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.83) 100%),
    url('/wp-content/uploads/2025/11/upcoming-background.webp')
    lightgray 50% / cover no-repeat;
  color:#fff;
}

/* cabeça da seção */
.past-head{
  display:flex;
  max-width: 200px;
  width: 100%;
  /* align-items:center; */
  /* justify-content:space-between; */
  gap: 50px;
  align-self: center;
  padding-left: 80px;
  flex-flow: column;
  /* margin-bottom: clamp(18px,3.2vw,26px); */
}
.past-title{margin:0;line-height:1.1;color: #FFF;}
.past-all{ display:inline-flex; align-items:center; gap:.5rem }

/* grid de cards */
.past-grid{
  display:grid;
  gap: clamp(14px,2.2vw,20px);
  /* padding-left: 0; */
  grid-template-columns: repeat(4, 1fr);
}

/* card base */
.past-card{
  position:relative;
  /* border-radius:14px; */
  overflow:hidden;
  min-height: 430px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:#0f1620; /* fallback enquanto a imagem carrega */
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* imagem com link e movimento */
.past-media{ position:absolute; inset:0; margin:0; }
.past-media .past-link{ position:absolute; inset:0; display:block; cursor:pointer; }
.past-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1) translate3d(0,0,0);
  transition: transform .7s ease, filter .35s ease;
  filter: saturate(.9);
}
/* hover e foco acessível */
.past-card:hover .past-media img,
.past-media .past-link:focus-visible img{
  transform: scale(1.06) translate3d(0,-6px,0);
  filter: saturate(1.05);
}
.past-media .past-link:focus-visible{
  outline:2px solid rgba(255,255,255,.9);
  outline-offset:-2px;
}

/* faixa inferior */
.past-info{
  position:relative;
  z-index:2;
  background: #0E385E;
  padding: 20px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:12px;
  align-items: flex-end;
}
.past-copy{display:grid; gap:.35rem}
.past-name{margin: 0 0 10px;color: #FFF;font-family: Indivisible;font-size: 22px;font-style: normal;font-weight: 700;line-height: normal;}
.past-info p{margin:0;font-size:.92rem;color: #FFF;font-family: Indivisible;font-size: 16px;font-style: normal;font-weight: 400;line-height: normal;}

 .past-cta{
  /* width: 10px; */
  /* height: 10px; */
  display:grid;
  place-items:center;
  border-radius:50%;
  border: 1px solid #fFf;
  background: transparent;
  color:#fff;
  padding: 7px;
  transition: background .25s ease, transform .25s ease;
}
.past-cta .arrow i{font-size: 10px;transition: transform .25s ease;font-weight: 400!important;}
.past-cta:hover{ background:rgba(255,255,255,.25); transform: translateY(-1px); }
.past-cta:hover .arrow i{ transform: translateX(3px) }

section.past-shows {
    display: flex;
    flex-flow: row;
}

.container.past-head .btn-layout {
    font-size: 15px;
    width: 187px;
}


.past-shows.bottom.past-shows {
    display: flex;
    flex-flow: column;
    max-width:100%;
    width: 100%;
    gap: 30px;
	 
}

.past-shows.bottom .past-head {
    display: flex;
    flex-flow: column;
    max-width:100%;
    width: 100%;
    padding: revert-layer;
    gap: 30px;
    align-items: anchor-center;
}
.past-shows.bottom .past-grid {
    padding: 0 80px;
}

/* responsivo */
@media (max-width: 1300px){
  .past-grid{/* padding-left: 20px; */grid-template-columns: repeat(2, 1fr);}
section.past-shows {
    display: flex;
    flex-flow: column;
    gap:35px;
     
}
.past-shows.bottom .past-grid {
    padding: 0 20px;
}

.container.past-head {max-width: 100%;gap: 30px;padding-left: inherit;align-items: anchor-center;}
}
@media (max-width: 820px){
  .past-grid{ grid-template-columns: repeat(1, 1fr); }
.past-title{margin:0 20px;line-height:1.1;color: #FFF; font-size:35px; text-align:center;}

}
@media (max-width: 520px){
  .past-grid{ grid-template-columns: 1fr; }
  .past-head{ flex-direction:column; align-items:flex-start; gap:10px }
}


/*===========================================================================================================*/
/*=========================================== BOTTOM ======================================================*/
/*===========================================================================================================*/

/*===========================================================================================================*/
/*=========================================== PARALLAXX ====================================================*/
/*===========================================================================================================*/


/*===========================================================================================================*/
/*=========================================== KEY FRAMES ====================================================*/
/*===========================================================================================================*/
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20%);
		-webkit-transform: translateY(-20%);
		-moz-webkit-transform: translateY(-20%);
		-o-webkit-transform: translateY(-20%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20%);
		-webkit-transform: translateY(20%);
		-moz-webkit-transform: translateY(20%);
		-o-webkit-transform: translateY(20%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
		-webk9t-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20%);
		-webkit-transform: translateX(20%);
		-moz-transform: translateX(20%);
		-o-transform: translateX(20%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
		-webk9t-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
	}
}

/*===========================================================================================================*/
/*=========================================== FOOTER ========================================================*/
/*===========================================================================================================*/
/* ===== Footer ===== */
.site-footer{
  padding: clamp(28px,5vw,80px) 0;
  color:#0C1B33;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.83) 0%, rgba(255, 255, 255, 0.83) 100%),
              url('https://thecommitmentissues.d09.colophonhosting.com/wp-content/uploads/2025/11/bnn-2.webp')
              lightgray 50% / cover no-repeat;
}

.foot-grid{
  display: flex;
  gap: 150px;
  align-items: center;
  justify-content: center;
}

 
.foot-logo{
  margin: 0 0 12px;
  font-size: clamp(28px,4vw,52px);
  line-height: .92;
  font-weight: 800;
  color:#0C1B33;
  display:flex; flex-direction:column;
}

/* Social */
.foot-social{
  list-style:none;
  margin: 50px 0 20px;
  padding:0;
  font-size: 30px!important;
  display:flex;
  gap: 30px;
  justify-self: center;
}
.foot-social a{
  /* width: 36px; */
  height: 36px;
  font-size: 30px!important;
  display:grid;
  place-items:center;
  /* border-radius:50%; */
  /* background:#0C1B33; */
  color: #0E385E;
  transition: transform .2s ease, background .2s ease;
}
.foot-social a:hover{ transform: translateY(-2px);   }

 
.foot-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content: center;
  margin: 0 0 50px;
}
.foot-nav a{
  text-decoration:none;
  transition: opacity .2s ease;
  color: #0E385E;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.foot-nav a:hover{ opacity:1; }

 ul.foot-social i {
    font-size: 30px;
}
.foot-copy{color: #1E1E1E;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 100%; /* 18px */}

 
.foot-form-title{margin: 0 0 20px;color: #0E385E;font-family: Montserrat;font-size: 24px;font-style: normal;font-weight: 700;line-height: 100%; /* 24px */}
.foot-form{max-width: 480px;color: #1E1E1E;font-family: Montserrat;font-size: 18px;font-style: normal;font-weight: 400;line-height: 100%;}

 
ul#menu-anchor-menu-2 {
    margin-bottom: 0;
    padding-left: 0;
   
}

ul#menu-anchor-menu-2 li::marker {
   display:none!important;
   color: transparent;
}
 
@media (max-width: 980px){
  .foot-grid{flex-flow:column-reverse;gap: 60px;align-items: flex-start;}
   .foot-social{
    justify-self: flex-start;
}
.foot-nav{
	justify-self: flex-start;
}
ul#menu-anchor-menu-2 {
 
    justify-content: flex-start;
    flex-flow: column;
}
  .foot-form{ max-width: 100%; }
}


/*===========================================================================================================*/
/*=========================================== MOBILE ========================================================*/
/*===========================================================================================================*/
 
@media (max-width: 1200px) {
  
}

@media (max-width:1114px){
.container-lg.home{
	padding-left: 20px;
	padding-right: 20px;
}
 
}
@media (max-width:930px){
 	
}
 @media (max-width:990px){
 
 }
 @media (min-width:1920px){
  
 }

@media (max-width:850px){
 
	
}

@media (max-width: 768px) {
 
	.h1-bnn{
		font-size: 40px!important;
	}

}
@media (max-width:595px){
 
}
@media (max-width:530px){
.container-lg.home{
	padding-left:20px;
	padding-right:20px;
}
 
}

 

