
/* ------------------------- */
/* SETTING UNIVERSAL STYLES  */
/* ------------------------- */

:root {
  --primary: #ffffff;
  --secondary: #EC0000;
  --background-color: #000000;
  overflow-x: hidden;
  font-family: 'National', sans-serif;
  min-height: 100vh;
}

html,body{
  overflow-x: clip; 
}
body {
  color: var(--primary);
  background-color: var(--background-color);
}

button {
  border: none;
  border-radius: 20px;
  margin: 10px;
  font-family: 'National-Bold', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--secondary);
  width: 205px;
  height: 54px;
}

button:hover {
  cursor: pointer;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  height: 100%; 
} 

::selection {
  background: var(--secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  font-family: 'National-Bold', Arial, sans-serif;
  font-size: 16px;
}

a:hover {
  color: var(--secondary);
}

h1{
  font-family: 'National-Condensed', Arial, sans-serif;
  font-size: 22px;
  color: var(--primary);
  line-height: 125%; 
  position: absolute;
  margin: 360px 0 0 0;
  padding: 0 30px;
  word-wrap: break-word;
}

h2 {
  font-family: 'National-Bold', Arial, sans-serif;
  color: var(--primary);
  line-height: 28px;
  font-size: 24px;
  margin: 0 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Enable smooth scrolling on the whole document */
html {
	scroll-behavior: smooth;
}

li {
  list-style-position: outside;
  margin: 0 0 0 35px;
}


/* Font imports */
@font-face {
  font-family: 'National-Bold';
  src: url("fonts/National2-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'National-Condensed';
  src: url("fonts/National2Condensed-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'National-Condensed-Med';
  src: url("fonts/National2Condensed-Medium.otf") format("opentype");
}

@font-face {
  font-family: 'National-Regular';
  src: url("fonts/National2-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'National-Medium';
  src: url("fonts/National2-Medium.otf") format("opentype");
}



/* ------------------------- */
/* MAIN CONTAINER STRUCTURE  */
/* ------------------------- */

.header-container {
  display: flex;
  min-height: 56px;
  padding: 25px 40px;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-height: 450px;
}



/* ------------------- */
/*   SVG & VIDEO TOP   */
/* ------------------- */

.svg-container {
  position: absolute;
  display: flex;
  justify-content: center;
  margin: -40px 0 0 0;
}

.bally-top-logo {
  width: 294px;     
  z-index: 5; 
  margin: 100px 0 0 0;
  position: absolute
}

.overlay-video {
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* setting clip path here to create video overlay effect */
.clip-wrap {
  transform: translateZ(0);
  -webkit-clip-path:url(#overlay);
  clip-path: url(#overlay);
  /* position: absolute; */
}

.clip-wrap, .overlay-video {
  width: 139px;
  height: 106px;
}

.bg-image {
  display: inline-block;
  background-size: cover;
  width: 100%;
}

.title-svg {
  margin: 215px 0 0 34px
}

.hide {
  display: none;
}



/* ------------------ */
/*   FILTER SECTION   */
/* ------------------ */

.container-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-filter {
  display: flex;
  justify-content: center;
  max-width: 1080px;
  flex-wrap: wrap;
}

.button-filter {
  display: flex;
  position: relative;
  align-items: center;
  padding: 20px;
  background: var(--background-color);
  color: var(--primary);
  height: 100px;
  width: 520px;
  font-size: 20px;
  border: 1px solid var(--primary);
}

.icon-filter {
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.button-filter.active, .button-filter.selected {
  color: var(--background-color) !important;
  background-color: var(--primary) !important;
  animation-name: fadeOut;
  animation-duration: 1s;
}

.button-filter:hover .icon-filter {
  filter: invert(100%);
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}

.button-filter:hover, .view-all:hover {
  background-color: var(--primary);
  color: var(--background-color);
}

.button-bally:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.icon-close {
  display: none;
  position: absolute;
  right: 20px;
}



/* ------------------ */
/*   FAQ ACCORDION    */
/* ------------------ */

.trending-title {
  display: flex;
  align-items: center;
  margin: 50px 0 0 0;
}

.titles-condensed {
  font-family: 'National-Condensed', Arial, sans-serif;
  font-size: 22px;
  color: var(--primary);
  line-height: 125%; 
  margin: 0 0 0 15px;
}

.container-faq {
  max-width: 1000px;
  padding: 15px 30px 50px 30px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: var(--background-color);
  color: var(--primary);
  display: flex;
  margin: 40px 0 0 0;
  align-items: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
  text-align: left;
  border: none;
  animation-duration: 3.5s;
  animation-name: slideDown;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.expand-collapse-icon {
  pointer-events: none;
}

.rotate-clockwise {
  animation-name: rotate;
  animation-duration: 0.4s;
}

.rotate-counter {
  animation-name: rotate-counter;
  animation-duration: 0.4s;
}

.question-content {
  pointer-events: none;
}

.trending-icon {
  pointer-events: none;
  margin: 0 24px 0 0;
}

.trending-icon.false {
  margin: 0 42px 0 0;
}

.answer-content {
  white-space: pre-wrap;
  font-family: 'National-Regular', Arial, sans-serif;
}

.panel.active {
  max-height: 100vh;
  visibility: visible;
  padding: 16px 82px 0 82px;
}

/* ANIMATIONS */
@keyframes slideDown {
  0% {
   max-height: 20px;
  }
  100% {
   max-height: 200px;
  }
 }

@keyframes fadeIn {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeOut {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(90deg);
  }
}

@keyframes rotate-counter {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(-180deg);
  }
}

.accordion:hover img, .accordion:hover h2 {
  filter: invert(50%) sepia(92%) saturate(7452%) hue-rotate(359deg) brightness(90%) contrast(113%);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 82px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
  /* transition: max-height 0.6s ease-in-out; */
}

.view-all {
  background: var(--background-color);
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 16px;
  margin: 
  24px 0;
}

.view-all:disabled,
.view-all[disabled]{
  pointer-events: none;
  border: 1px solid #666666;
  background-color: #cccccc;
  color: #666666;
}

.container-streaming {
  margin: 75px 0 100px 0;
  display: flex;
  align-items: center;
}

.start-streaming {
  font-size: 18px;
  margin: 24px;
}



/* ------------------ */
/*    FOOTER AREA     */
/* ------------------ */

.footer-container {
  width: 100%;
  overflow-x: hidden;
  max-width: 1728px;
  margin: 16px auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-container div a {
  color: var(--primary);
  text-decoration: none;
  font-family: 'National-Bold', Arial, sans-serif;
  font-size: 14px;
}

.bally-plus-svg {
  margin-left: 48px;
  position: relative;
  overflow: visible;
  grid-area: 1 / 1 / 2;
  padding-right: 15%;
  max-width: 735px;
  max-height: 190px;
}

.bally-plus-svg a img {
  width: 100%;
  height: 100%;
}

.social-content {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  width: 216px;
  height: 24px;
  grid-row-start: 1;
  grid-column: 2;
}

.instagram-container {
  width: 24px;
  height: 24px;
}

.col-1-links {
  grid-area: 1 / 2 / 2;
  margin-top: 44px;
  line-height: 2.5;
}

.col-2-links {
  grid-area: 1 / 3 / 2;
  margin-top: 44px;
  line-height: 2.5;
  margin-right: 48px;
}

.footer-divider {
    background-color: #1D1D1D;
    height: 1px;
    border: none;
    margin: 40px 30px;
    grid-area: 2 / 1 / auto / 4;
}

.copyright {
  margin-left: 48px;
  grid-area: 4 / 1;
  padding-right: 24px;
}

.privacy-policy {
  grid-area: 4 / 2;
}

.terms {
  grid-area: 4 / 3;
  margin-right: 48px;
}




/* ------------------ */
/* RESPONSIVE SECTION */
/* ------------------ */

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {

  /* FILTER SECTION */
  .container-filter {
    margin: 0 18px;
  }
  .button-filter {
    width: 100%;
  }
  .container-streaming {
    flex-direction: column;
  }

  /* FOOTER SECTION */
  .footer-container {
    grid-template-columns: 1fr;
  }
  .bally-plus-svg {
    padding-right: 24px;
    margin-left: 0px;
    grid-column: 1 / 3;
    margin-bottom: 24px;
  }
  .social-content {
    margin-top: 24px;
    grid-row-start: 2;
    grid-column: 1;
  }
  .col-1-links {
    margin-top: 72px;
    grid-area: 2 / 1 / 3;
  }
  .col-2-links {
    margin-top: 72px;
    grid-area: 2 / 2;
  }
  .footer-divider {
    grid-row: 3;
    margin-left: 0px;
    margin-right: 0px;
  }
  .copyright {
    grid-area: 5 / 1 / auto / 3;
    margin-left: 0px;
    margin-top: 24px;
  }
  .privacy-policy {
    grid-column: 1;
  }
  .terms {
    grid-column: 2;
    margin-right: 0px;
  }
  button:hover {
    background-color: transparent !important;
    color: var(--primary) !important;
  }
  .button-filter:hover .icon-filter {
    filter: invert(0%);
    margin: 0;
  }

    /* ANIMATIONS */
    @keyframes slideDown {
      0% {
       max-height: 40px;
      }
      100% {
       max-height: 200px;
      }
    }
  

}

@media screen and (max-width: 500px) {

  h2 {
    margin: 0 16px;
  }

  /* FILTER SECTION */
  .button-filter {
    height: 80px;
    font-size: 16px;
  }
  .trending-icon {
    margin: 0 24px 0 0;
  }
  .icon-filter {
    transition: none;
    margin-right: 10px;
  }


  /* FOOTER AREA */
  .container-faq {
    max-width: 380px;
  }
  .panel {
    padding: 0 65px;
  }
  .panel.active {
    padding: 12px 65px;
  }

  /* ANIMATIONS */
  @keyframes slideDown {
    0% {
      max-height: 100px;
    }
    100% {
      max-height: 200px;
    }
  }

}





 
  


