/* #cta .word_container {
    position: relative;
    width: 100vw;
    overflow: hidden;
  } */
  
  /* #cta .word_container .scrolling-text {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
    will-change: transform;
    backface-visibility: hidden;
  }
  
  #cta .word_container .scrolling-text .scrolling-text-content {
    color: #fff;
    font-size: 120px;
    white-space: nowrap;
    transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
    line-height: 1em;
    margin: 50px 0;
  }
   */



   /* ------------------------ */
  /* #cta .word_container {
    position: fixed;
    top: 14rem;
    left: 0;
    height: auto;
    width: 100%;
    z-index: 1;
    pointer-events:painted;
    mix-blend-mode: color-dodge;
  } */

  /* #cta .word_container {
    overflow: hidden;
    animation: marquee 10s linear infinite;
  }
  #cta .word_container:hover {
    animation-play-state: paused;
  }
  #cta .word_container .scrolling-text-content{
    display: inline-block;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    font-size: clamp(2rem,10vw,5.5rem);
    white-space: nowrap;
    
    margin: 0;
    margin-left: 2vw;
    text-transform: uppercase;
    margin-top: 1rem;
    animation: marquee 10s linear infinite;
  }
  #cta .word_container .scrolling-text-content span {
    padding: 0 1em;
    border-right: 4px solid rgba(255,255,255,0.5);
    z-index: -999;
  }

@media (max-width:768px) {
  #cta .word_container .scrolling-text-content{
    display:grid;
    word-wrap: break-word;
    margin-top: 0.5rem;
    text-align: center;
  }
}
@media (max-width:480px) {
  #cta .word_container .scrolling-text-content{
    display: grid;
    text-align: center;
    margin-top: 0.5rem;
    word-wrap: break-word;
  }
} */

#cta .marquee {
  height: 20vh;
  width: 100%;
  align-items: center;
  overflow: hidden;
  position: relative;
  
}

#cta .marquee div span{
  color: rgba(255,255,255,0.4);
  font-size: 15vh;
  text-transform: uppercase;
  margin: 0 2rem;
  padding:0 2rem;
  
}
#cta .marquee div span::after{
  border: 6px solid rgba(255,255,255,0.4);
}
/* would need to be adjusted depending on time */
#cta .marquee .marqueeone{
  animation: marquee 50s linear infinite;
}

/* even out the elements */
#cta .marquee div {
  position: absolute;
  width: 100%;
  left: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
}

#cta .marquee:hover div {
  animation-play-state: paused;
}

/* add delay at the end of animation so you dont start while another div is going */
@keyframes marquee {
  0% { left: 100%; }
  50% { left: -100%; }
  100% {left: -200%}
}


/* --------------------------------------------------------
Top Practice -----
--------------------------------------- 
*/

.top-practice{
  padding: auto 10vw;
  z-index: 2;
}

.top-practice #top-practice-filters {
  padding: 0;
  margin: 0 auto 70px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  background-color: rgba(237, 237, 237, 0.701);
  padding: 2px 20px;
  border-bottom: 2px gray solid;
}

.top-practice #top-practice-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.top-practice #top-practice-filters li:hover{
  cursor: pointer;
  color: var(--old-a-hover-color);
  font-weight: 600;

} 
.top-practice #top-practice-filters li.filter-active {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 18px;
}

.top-practice #top-practice-filters li:last-child {
  margin-right: 0;
}


.top-practice-inactive{
  max-width: 100%;
  max-height: 90px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  word-break: break-all;
  position: relative;
  margin-bottom: 4rem;
  padding: 10px 0;
  filter: grayscale(100);
}

.top-practice img:hover{
  filter: none;
  cursor: pointer;
  transform: scale(1.15);
}
.top-practice-active{
  max-width: 100%;
  max-height: 90px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  word-break: break-all;
  position: relative;
  margin-bottom: 4rem;
  padding: 10px 0;
  filter: none;
  transform: scale(1.30);
}


@media (max-width: 768px) {
  .top-practice-content img{
    max-width: 40%;
  }
}
