* {
  transition: all 0.1s ease-out;
  scroll-behavior: smooth;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #424b54;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.info-card {
  display: block;
  position: relative;
  background-color: #f2f8f9;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}
.info-card:before {
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #424b54;
  height: 50px;
  width: 50px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.info-card:hover:before {
  transform: scale(21);
}

.info-card:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.info-card:hover h2 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

/* added by me */


.hero-text-2{
  font-style: italic;
}

.hero-text>h2 {
  display: none;
}

.hero-text>h2.active {
  display: block;
}

.hero-text>h2.hero-text-1:nth-child(1) {
  animation: slide-in-hero-text-1 0.75s ease-out forwards;
}
.hero-text>h2.hero-text-1:nth-child(2) {
  animation: slide-in-hero-text-1 1s ease-out forwards;
}
.hero-text>h2.hero-text-1:nth-child(3) {
  animation: slide-in-hero-text-1 1.25s ease-out forwards;
}
.hero-text>h2.hero-text-1:nth-child(4) {
  animation: slide-in-hero-text-1 1.5s ease-out forwards;
}

.hero-text>h2.hero-text-2 {
  animation: slide-in-hero-text-2 1s ease-out forwards;
}

@keyframes slide-in-hero-text-1 {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  65% {
    transform: translateX(5%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes slide-in-hero-text-2 {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  65% {
    transform: translateX(5%);
  }

  100% {
    transform: translateX(0%);
  }
}


.container-live-buttons {
  opacity: 0;
  animation: slide-in-live-buttons 1.5s ease-out forwards;
}

@keyframes slide-in-live-buttons {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* FROM WEBFLOW: */

.mask {
  border-bottom: 1px solid #00000036;
  border-left: 1px solid #00000036;
  border-top: 1px solid #00000036;
  border-right: 1px solid #00000036;
}

.container.this-week {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  border-left-width: 0;
  border-radius: 0;
  margin: 0 0 auto;
  padding-top: 12%;
  padding-bottom: 0;
  display: block;
  overflow: visible
}

@media screen and (max-width:991px) {
  .container.this-week {
    width: 100%
  }
}

@media screen and (max-width:767px) {
  .mask {
    border-top: 1px solid #000;
    border-bottom: 0px;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }

  .container.this-week {
    padding-top: 14%;
    border-top: 0px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }
}

@media screen and (max-width:479px) {
  .container.this-week {
    width: 100%;
    padding-top: 40px
  }
  .hero-text > h2 {
    font-size: 26px;
    line-height: 26px;
  }
}


.headshot-circle {
  width: 150px;
}

@media screen and (max-width:786px) {
  .headshot-circle {
    width: 100px;
  }
}
@media screen and (max-width:450px) {
  .headshot-circle {
    width: 85px;
  }
}

.doneaza-button {
  background-color: #6e8b60 !important;
}
.is-live {
  background-color: #864141 !important;
}

.inline-link {
  color: #0d35d4;
  text-decoration: none;
  display: inline;
  font-weight: 600;
}

.button.cc-jumbo-button.cc-jumbo-white.hero-button {
  min-width: 110px !important;
  justify-self: center
}

@media screen and (max-width:820px) { 
  .container-live-buttons {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 50%;
    row-gap: 10px;
  }
  .hero-button {
    margin-top: 0;
  }
}
@media screen and (max-width:685px) { 
  .container-live-buttons { 
    max-width: 60%;
    line-height: 20px !important;
  }
}
@media screen and (max-width:576px) {
  .container-live-buttons {
    max-width: 70%;
  }
  .hero-button{
    font-size: 11px !important;
    line-height: 16px !important;
  }
}
@media screen and (max-width:500px) {
  .container-live-buttons {
    max-width: 80%;
  }
}
@media screen and (max-width:422px) {
  .container-live-buttons {
    max-width: 90%;
  }
}

.news-text {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 0;
  margin: 0 0 auto;
  padding-bottom: 0;
  display: block;
  overflow: visible;
}

.news-container {
  max-width: 940px;
  margin: 20px auto;
  object-fit: contain;
}

.news-slider {
  /* height: 450px; */
  text-align: center;
  clear: both;
  background: #ddd;
  position: relative;
  background-color: rgba(255, 255, 255, 0);
}

.w-slider-mask {
  display: flex;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  /* margin: auto; */
  display: flex;
  flex: 1;
}

.news-slides {
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  height: 100%;
  flex: 1;
  display: none;
}

.news-slides.show {
  opacity: 1;
  display: block;
  transform: translateX(0%);
}

/* .news-slides.hide {
  opacity: 0;
  display: none;
  transform: translateX(-100%);
} */

.news-slider-container {
  height: 528px;
  background-color: #00000036;
}

.news-slides > img {
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

@media screen and (max-width:976px) {
  .news-slider-container {
    height: calc(100vw * 9 / 16); /*keep a 19:9 ratio for the image*/
  }
  .news-grid {
    /* width: 90%; */
    margin: 0 auto;
  }
}


.news-text > div > div > p {
  /* font-weight: 600; */
  font-size: 19px;
}

@media screen and (max-width:976px) {
  .news-text>div>div>p {
    font-size: 16px;
  }
}