@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: url(../../assets/img/bg-desk.webp);
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1000px) {
  body {
    background: url(../../assets/img/bg-mob.webp);
    background-size: cover;
    background-attachment: fixed;
  }
}
html {
  font-size: 18px;
}
body, html {
  height: 100%;
  font-family: "archivo-expanded";
  line-height: 1.5em;
}
body {
  font-size: 1em;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 0.85em;
  }
}
.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.content {
  width: 100%;
  overflow-x: hidden;
  color: #07079b;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 5em;
  padding-bottom: 5em;
}
a {
  text-decoration: none;
}
hr {
  border-top: 2px solid #07079b;
  margin-top: 3em;
  margin-bottom: 3em;
}
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1em;
}
/*--- FOOTER ---*/
#footer {
  background: rgba(7, 7, 155, 0.95);
  padding: 1em;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #feff00;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-size: 0.8em;
  line-height: 1.2em;
}
@media screen and (max-width: 1180px) {
  .footer-inner {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.footer-social {
  font-size: 1.25em;
}
.footer-social i {
  margin-right: 0.5em;
}
@media screen and (max-width: 1180px) {
  .footer-social i {
    margin-right: 0.5em;
    margin-left: 0.5em;
    margin-top: 0.5em;
  }
}
/*--- MENU ---*/
#header {
  background: rgba(7, 7, 155, 0.95);
  padding: 1em;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.menu-logo {
  width: 30%;
  max-width: 250px;
}
.menu-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1180px) {
  .menu-logo {
    width: 150px;
    max-width: 150px;
  }
}
@media screen and (min-width: 1180.1px) {
  .menu-mobile, .menu-mob-trig, #menu-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1180px) {
  .menu-desk {
    display: none !important;
  }
}
.links-menu-mobile, .links-menu-desk {
  text-transform: uppercase;
  font-family: "archivo-expanded";
  font-weight: 700;
  font-size: 1em;
}
@media screen and (max-width: 1400px) {
  .links-menu-mobile, .links-menu-desk {
    font-size: 0.9em;
  }
}
.menu-desk {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.menu-desk input, .menu-desk .sub-menu-arrow {
  display: none;
}
.menu-desk .links-menu-desk {
  padding-top: 0px;
}
.menu-desk .links-menu-desk a {
  color: #fff;
}
.menu-desk .links-menu-desk a:hover, .menu-desk .links-menu-desk label:hover {
  color: #feff00;
}
.menu-desk .links-menu-desk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-desk .links-menu-desk ul.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  top: 100%;
  padding-top: 0.2em;
  text-align: left;
}
.menu-desk .links-menu-desk ul.nav-drop > li {
  display: block;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.menu-desk .links-menu-desk ul.nav-drop:not(.menu-level-1):not(.menu-level-0) {
  left: 100%;
  top: 0;
}
.menu-desk .links-menu-desk ul li {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.menu-desk .links-menu-desk ul li:hover {
  transition: background-color 0.6s linear;
}
.menu-desk .links-menu-desk ul li:hover > ul.nav-drop {
  transition: opacity 0.6s linear;
  opacity: 1 !important;
  overflow: visible;
}
.menu-desk .links-menu-desk ul li:not(:hover) {
  transition: background-color 0.6s linear;
  /* transition-delay: -0.3s; */
}
.menu-desk .links-menu-desk ul li:not(:hover) > ul.nav-drop {
  transition: opacity 0.6s linear;
  /* transition-delay: -0.3s; */
  pointer-events: none;
}
.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #07079b;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  translate: 0% -100%;
  opacity: 0;
}
.menu-mobile .mm-wrap {
  width: 90%;
}
.menu-mobile .links-menu-mobile label {
  position: relative;
}
.menu-mobile .links-menu-mobile label span.sub-menu-arrow {
  position: absolute;
  right: 0em;
  text-align: right;
}
.menu-mobile .links-menu-mobile .hidden-checkbox {
  display: none;
}
.menu-mobile .links-menu-mobile ul {
  list-style: none;
  padding: 0;
}
.menu-mobile .links-menu-mobile ul li {
  margin: 1.5em 0;
}
.menu-mobile .links-menu-mobile ul li a, .menu-mobile .links-menu-mobile ul li label {
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-family: "archivo-expanded";
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 1.25em;
}
.menu-mobile .links-menu-mobile ul a:hover, .menu-mobile .links-menu-mobile ul label:hover {
  color: #feff00;
}
.menu-mobile .links-menu-mobile ul.nav-drop {
  display: grid;
  font-size: 0.8em;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-left: 2em;
}
.menu-mobile .links-menu-mobile ul.nav-drop > div {
  overflow: hidden;
}
.menu-mobile .links-menu-mobile .submenu-trig:not(:checked) + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label + ul {
  grid-template-rows: 1fr;
}
#menu-mob-trig {
  display: none;
}
#menu-icon {
  position: relative;
  z-index: 1010;
  margin-top: 40px;
}
#menu-icon .hamburger-menu {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#menu-icon .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  /* You can adjust the color */
}
#menu-icon .close-menu {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#menu-icon .close-menu .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  /* You can adjust the color */
  transform-origin: center;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
}
#menu-icon .close-menu .line:first-child {
  transform: rotate(45deg);
}
#menu-icon .close-menu .line:last-child {
  transform: rotate(-45deg);
}
#menu-mob-trig:not(:checked) + #menu-icon .close-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon .hamburger-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon + .menu-mobile {
  translate: 0% 0%;
  opacity: 1;
}
/*--- HOME ---*/
.home-content {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  background: #fff;
  border: 5px solid #07079b;
}
/*--- CONTACT ---*/
.contact-form {
  width: 80%;
  max-width: 800px;
  margin: 3em auto 1em;
  display: block;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 0.25em;
  color: #07079b;
}
.contact-form label {
  font-family: "archivo-expanded";
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
}
.contact-form .wpcf7-text, .contact-form .wpcf7-submit {
  height: 50px;
}
.contact-form .wpcf7-text, .contact-form .wpcf7-textarea {
  border: 2px solid #07079b;
  padding: 0.5em;
  width: 100%;
  background: none;
  margin-top: 0.25em;
  font-family: "archivo-expanded";
  color: #07079b;
  border-radius: 0.1em;
}
.contact-form .wpcf7-submit {
  border-radius: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "archivo-expanded";
  background: #07079b;
  color: #fff;
  border: 0;
  font-size: 1.25em;
  line-height: 1em;
  height: auto;
  margin: 0 auto;
  display: table;
  padding: 0.75em;
}
.contact-form .wpcf7-submit:hover {
  background: #07079b;
  cursor: pointer;
}
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output {
  text-align: center !important;
  border: 0 !important;
  padding: 0em !important;
  font-family: "archivo-expanded";
  font-size: 1.5em;
}
/*--- EVENTS ---*/
.events {
  text-align: center;
}
.event {
  padding-bottom: 2em;
}
/*--- NEWS ---*/
.more {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1em;
  color: #07079b;
  border: 2px solid #07079b;
  padding: 0.5em;
  display: table;
}
.more:hover {
  background: #07079b;
  color: #fff;
}
.b-post {
  margin-bottom: 2em;
}
.blog-grid-inner {
  text-align: left;
  grid-gap: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: top;
  align-items: top;
}
.blog-grid-inner h3 {
  margin-bottom: 0.5em;
}
.blog-grid-inner .more {
  padding: 0.25em;
  margin-top: 0em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 0.8em;
}
@media screen and (max-width: 1024px) {
  .blog-grid-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*--- MUSIC - NEW ---*/
.ai-wrap .ai-btn {
  background: #07079b;
  color: #fff !important;
}
.ai-wrap .ai-btn svg {
  fill: #fff !important;
}
.ai-wrap .ai-volume-bar {
  background: #07079b;
  border-right: 1px solid #000;
}
.ai-wrap .ai-scroll-wrap .ai-tracklist {
  margin-right: 0;
}
.ai-track-info, .ai-track-title, .ai-track-name {
  color: #fff;
}
.ai-wrap .ai-track:hover, .ai-wrap .ai-track.ai-track-active {
  background: red !important;
}
.ai-wrap .ai-scroll-wrap > div:last-child div {
  background-color: #fff !important;
}
.ai-wrap .ai-audio-control, .ai-wrap .ai-audio-control:hover, .ai-wrap .ai-audio-control:focus, .ai-wrap .ai-track-progress, .ai-wrap .ai-scroll-wrap > div:last-child div {
  background: red !important;
}
.ai-wrap .ai-volume-bar.ai-volume-bar-active::before {
  background: #fff !important;
}
.ai-with-typography {
  font-family: "archivo-expanded";
}
.ai-track-info p {
  text-align: left !important;
  font-family: "archivo-expanded";
}
.ai-wrap {
  background: #07079b;
}
.ai-wrap .ai-track {
  background: #07079b;
}
.ai-wrap .ai-track-name {
  font-size: 15px;
}
.ai-with-typography .ai-track-title {
  font-size: 20px;
}
.ai-with-typography .ai-track-subtitle {
  font-size: 15px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .ai-wrap .ai-track-name {
    font-size: 11px;
  }
}
/*--- VIDEOS ---*/
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1em;
}
.videos .video {
  margin-bottom: 1em;
  padding-bottom: 0;
}
@media screen and (max-width: 980px) {
  .videos {
    grid-template-columns: repeat(1, 1fr);
  }
  .videos .video {
    margin-bottom: -1em;
    margin-top: 0.5em;
  }
}
/*# sourceMappingURL=https://domain136638.ekstaging.com/wp-content/themes/bb-theme-master/assets/css/cs.map */