main[role="main"] {
  overflow-x: clip;
}

.cover {
  position: relative;
  min-height: 670px;
}

@media (min-width: 992px) {
  .cover {
    height: 100vh;
    margin-bottom: 5rem;
  }
}

@media (max-width: 991px) {
  .cover {
    min-height: 400px;
    padding: 15px;
    padding-top: 125px; /* header height + padding */
  }
}

.articles-slick {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.articles-slick div {
  height: 100%;
}
.articles-slick .slick-slide > div > div {
  background-size: cover;
  background-position: center;
}

.articles-slick .inner {
  display: flex;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(24, 52, 116, 0.82) 90%
  );
  padding-right: 5rem;
  padding-bottom: 10rem;
}
.articles-slick .wrap {
  position: relative;

  height: fit-content;
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 2rem;
  margin-top: auto;
  border-right: 10px solid var(--prime2);

  & a {
    color: #fff;
    &:hover {
      text-decoration: none;

      & i {
        margin-right: 1rem;
      }
    }
  }
}
.articles-slick h2 {
  width: 87%;
  font-weight: 700;
  line-height: 0.9;
  font-size: calc(3.25vw + 16px);
}

@media (max-width: 1550px) {
  .articles-slick h2 {
    width: 98%;
  }
}
.articles-slick h2 + span {
  margin-top: 0.5rem;
  font-size: calc(1vw + 16px);
  line-height: 1;
}
.articles-slick em {
  display: block;
  font-style: normal;
  color: var(--prime2);
  font-size: calc(0.5vw + 16px);

  & i {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
  }
}
.cover .toggle-slick {
  position: absolute;
  top: 125px;
  right: 3vw;
  background: none;
  z-index: 2;
  border-radius: 2px;
  border: 1px solid #fff;
  background-color: rgb(from #fff r g b / 0.7);
}

@media (max-width: 991px) {
  .articles-slick .inner {
    height: 100%;
    align-items: center;
    padding-right: 1rem;
    padding-bottom: unset;
  }
  .articles-slick .wrap {
    width: 90%;
    margin-top: unset;
    padding-right: 1rem;
    border-right: 7px solid var(--prime2);
  }
  .cover .toggle-slick {
    display: none;
  }
}

.slick-dots {
  list-style-type: none;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.15rem;
  margin: auto;
  bottom: 100px;
  padding-right: 6.5%;
}
.slick-dots li {
  margin-inline: 1px;
  list-style-type: none;
}
.slick-dots li.slick-active button {
  background-color: var(--prime2);
}
.slick-dots li button {
  position: relative;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 0.15rem;
  cursor: pointer;
  color: transparent;
  border: 2px solid #fff;
  outline: none;
  background: rgb(from #ffffff r g b / 0.275);
  font-size: 0;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .slick-dots {
    bottom: 55px;
  }
}

/**/

video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: 1s opacity;
  object-fit: cover;
  z-index: -1;
}

#toggle-video {
  position: absolute;
  top: 125px;
  right: 15px;
  background: none;
  border: 0;
}

@media (max-width: 991px) {
  video,
  #toggle-video {
    display: none;
  }
}

/* CSS GRID ONLY */
@media (min-width: 992px) {
  .gridded {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    row-gap: 25px;
    column-gap: 25px;
    width: 100%;
    height: 768px;
  }
  .gridded .div1 {
    grid-column: span 2 / span 2;
  }
  .gridded .div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
  }
  .gridded .div3 {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .gridded .div4 {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
  }
  .gridded .div5 {
    grid-column-start: 4;
    grid-row-start: 2;
  }
}
/* CSS STYLE */
.gridded {
  & a {
    display: flex;
    color: #fff;
    font-weight: 500;
    font-size: calc(1.5vw + 16px);
    position: relative;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    line-height: 1;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.5);

    &:nth-of-type(odd) {
      padding: 2rem 2rem 4rem;
    }
    &:nth-of-type(even) {
      padding: 4rem 5rem;
    }

    &::after {
      content: "";
      position: absolute;
      background: rgb(from var(--prime3) r g b / 0.1);
      width: 100%;
      height: 100%;
      z-index: -1;
      mix-blend-mode: multiply;
      inset: 0;
    }
  }

  @media (min-width: 992px) {
    & a.item1 {
      align-items: center;

      & figcaption {
        padding-top: 5rem;
      }
    }
    & a.item2 {
      align-items: center;
    }

    & a.item3 {
      align-items: flex-end;
    }

    & a.item4 {
      align-items: flex-start;
      padding-top: 7rem;
      background-position: bottom;
    }
    & a.item5 {
      background: linear-gradient(
        0deg,
        rgba(251, 200, 10, 0.1) 1%,
        rgba(251, 200, 10, 1) 100%
      );
      z-index: 1;

      & img {
        right: -50px;
        position: absolute;
        width: 90%;
        height: auto;
        max-height: 90%;
        object-fit: cover;
        bottom: 0;
      }
    }
  }
}

@media (max-width: 991px) {
  .gridded {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .gridded {
    & a {
      font-size: calc(3vw + 16px);
      &:nth-of-type(odd),
      &:nth-of-type(even) {
        padding: 4rem 2.5rem;
        align-items: center;
        aspect-ratio: 3 / 1.5;
      }
      &::after {
        background: rgb(from var(--prime1) r g b / 0.4);
      }
      & img {
        position: absolute;
        height: 100%;
        left: 1rem;
      }
    }
  }
}

.yay {
  margin-block: 8rem;
  color: var(--prime1);
  & .wrap {
    display: flex;
  }
  & .wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;

    &::after {
      content: "";
      position: absolute;
      bottom: 109px;
      width: 53%;
      right: 47%;
      height: 1px;
      background-color: var(--prime2);
      z-index: 0;
    }
  }

  & .data {
    position: relative;

    & strong,
    & h3 {
      margin: 0;
      font-weight: 700;
      font-size: calc(2.25vw + 16px);
      line-height: 1;
    }
    p {
      padding: 0;
      margin: 0;
      font-weight: 500;
      font-size: calc(1.25vw + 16px);
    }
    p + p {
      margin-top: 2.5rem;
      line-height: 1;
      font-size: calc(0.65vw + 16px);
    }

    a {
      margin-top: 2.7rem;
      background-color: #66c430;
      border-radius: 100vw;
      color: #fff;
      font-size: calc(0.75vw + 16px);
      padding: 0.2rem 1.75rem;
      position: relative;
      z-index: 1;
      width: max-content;

      &:hover {
        background-color: var(--prime1);
      }
    }
  }
  & .framed {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding: 40px;
    z-index: -1;
    aspect-ratio: 1;

    &::before {
      content: "";
      position: absolute;
      background: url(./images/bday_frame.png?v=1) center/100% 100% no-repeat;
      width: 100%;
      height: 100%;
      inset: 0;
      margin: auto;
    }
  }
  & .emp {
    width: 100%;
    margin-inline: auto;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    padding: 1rem;
  }

  & .balloons {
    display: flex;
    height: 120%;
    align-items: center;
    & img {
      width: min(90%, 320px);
    }
  }
  & .bottom {
    padding-right: 7rem;
  }
}
.upcoming-birthdays {
  li {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    &::after {
      content: " | ";
      position: relative;
      position: relative;
      display: inline-block;
      margin-inline: 1rem;
      left: 0;
      top: auto;
      width: 1px;
      height: 100%;
    }
  }
}
@media (max-width: 1500px) {
  .yay {
    & .wrap {
      &::after {
        bottom: 50px;
      }
    }
  }
}
@media (max-width: 991px) {
  .yay {
    margin-top: 3rem;
    margin-bottom: 8rem;
    & .wrap {
      flex-direction: column;
    }
    & .framed {
      margin: auto;
    }
    & .wrap {
      &::after {
        content: none;
      }
    }

    & .data {
      text-align: center;
    }
    & .data {
      & strong,
      & h3 {
        display: inline;
      }

      & p + p {
        margin-top: 1rem;
      }
    }
    & .balloons {
      justify-content: flex-end;

      & img {
        position: absolute;
        width: 120px;
      }
    }
    & .bottom {
      padding-right: unset;
      margin-top: 3.5rem;
    }
    & .breaking-news-ticker h2 {
      text-align: center;
      margin-bottom: 1rem;
    }
  }
}

@media (max-width: 767px) {
  .yay {
    & .wrap {
      flex-direction: column;
    }
  }
}
@media (max-width: 500px) {
  .yay {
    & .balloons {
      & img {
        width: 82px;
      }
    }
  }
}
/* Articles */

.eom {
  position: relative;
  color: #fff;
  left: -20px;
  width: 100%;

  display: flex;
  margin-block: 8rem;

  & h2 {
    margin-bottom: 3rem;
    font-size: calc(2vw + 16px);
  }

  & h3 {
    line-height: 1;
    margin: 0;
    font-size: calc(1.6vw + 16px);

    & + span {
      line-height: 1;
      font-size: calc(0.7vw + 16px);
    }
  }

  & p {
    margin-top: 2rem;
    font-size: calc(0.7vw + 16px);
    line-height: 1.1;
  }

  & > div {
    padding: 5rem 10rem;
    background-color: var(--prime1);
    border-radius: 0 50px 50px 0;
  }

  & img {
    width: min(100%, 360px);
    margin: auto;
    border-radius: 40px;
  }

  & > div:last-child > .row > div:last-child {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 1600px) {
  .eom {
    & > div {
      padding: 4.5rem;
    }
  }
}

@media (max-width: 991px) {
  .eom {
    left: 0;
    & > div {
      padding: 2.5rem;
    }
    & .row {
      flex-direction: column;
    }
    & .offset-2 {
      margin-right: 8.666667%;
    }
  }
}

.lined h2 {
  position: relative;
  padding-block: 1rem;
  & a {
    color: #fff;
  }
}
.lined h2::after {
  content: "";
  display: block; /* allow width/height */
  position: absolute;
  width: 150px;
  height: 5px;
  right: 0;
  bottom: -1rem;
  background: linear-gradient(
    to left,
    var(--prime2) 0%,
    var(--prime1) 23%,
    var(--prime3) 25%,
    var(--prime4) 48%,
    var(--prime4) 50%,
    var(--prime5) 73%,
    var(--prime6) 75%,
    var(--prime6) 100%
  );
}
.gall {
  width: 100vw;
  margin-block: 10rem;

  & h2 {
    text-align: center;
    font-size: calc(2vw + 16px);
    & a {
      color: var(--prime1);
    }

    &::after {
      inset: 0;
      top: auto;
      bottom: -1rem;
      margin-inline: auto;
      width: 120px;
    }
  }
}

.gall-slick {
  margin-top: 5rem;
  height: 400px;
  width: 100%;
}
.gall-slick div {
  height: inherit;
}
.gall-slick p {
  position: relative;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 100%;

  & span {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.5rem 1rem;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: calc(0.25vw + 16px);
    background-color: var(--prime3);
  }
}
.gall-slick .slick-slide img {
  max-height: 250px;
}
.gall-slick .slick-slide {
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .gall-slick {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .lined h2 {
    font-size: calc(3vw + 16px);
  }
  .gall {
    margin-block: 8rem;
    & h2 {
      font-size: calc(3vw + 16px);
    }
  }
}
/* News * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.updates {
  margin-top: 2.5rem;
  margin-bottom: 6rem;
}
.news {
  background: linear-gradient(
    0deg,
    rgba(35, 129, 59, 1) 50%,
    rgba(25, 94, 43, 1) 100%
  );
  margin-top: 60px;
  margin-right: 105px;
}
.newsbtn {
  position: relative;
  display: block;
  top: 12rem;
}
.news .container {
  min-width: unset;
  width: 100%;
  max-width: 98%;
  padding-right: 6.5rem;
  margin-left: 0;
  padding-left: 0;
}
.news .content {
  position: relative;
}
.breaking-news-ticker {
  overflow-x: clip;
  overflow-y: visible;
  padding-block: 1.82rem;
  height: 140px !important;
}
.news .buttons {
  position: absolute;
  top: 1.9rem;
  left: 1.9rem;
}

.news a {
  color: #000;
  display: block;
  line-height: 1.1;
}
.bn-direction-rtl .bn-controls {
  bottom: -40px;
  top: auto;
  right: 10px;
  background-color: transparent;
}
.bn-controls {
  height: 42px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid #fff;
}

.news h2 {
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 0.219rem 0.75rem;
  margin: 0;
  border-radius: 2rem;
  z-index: 5;
}

.all {
  display: flex;
  justify-content: flex-end;
  padding-inline: 1rem;
  & a {
    color: var(--prime1);
  }
}

.news h2 a {
  color: inherit;
}

.bn-news {
  left: 0 !important;
}
.bn-news h2 a {
  color: var(--prime1);
}
.bn-news ul li a {
  height: 100%;
  border: none;
  color: var(--text);
  background-color: rgb(from var(--prime2) r g b / 0.15);
  padding-block: 0.5rem;
  white-space: initial;
  font-size: 1.35rem;
  line-height: 1.1;
  width: 425px;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: visible;
  border-radius: 0;
  height: 7.4rem;
  border-right: 10px solid var(--prime2);
}

.bn-news ul li a:hover {
  color: #000;
}

.bn-effect-scroll .bn-news ul li {
  padding: 0 1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

time.date {
  width: fit-content;
  position: relative;
  font-weight: bold;
  padding-block: 0.25rem;
  z-index: 2;
  margin-right: 2rem;
  font-size: calc(0.1vw + 16px);
}

.updates span.name {
  position: relative;
  padding-inline: 1.8rem;
  font-size: calc(0.2vw + 16px);
}

.news-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #111;
  color: #fff;
  background: none;
  font-size: 14px;
}

.bn-controls {
  left: 0;
  right: auto;
}

.bn-controls button {
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--prime1);
  color: #fff;
  padding: 0;
  margin-right: 5px;
}

.bn-arrow {
  top: -1px;
}
.bn-direction-rtl .bn-controls button {
  border: none;
}
.bn-direction-rtl .bn-controls button:hover {
  background-color: var(--prime2);
}
.bn-pause {
  top: 3px;
  height: 1rem;
  left: -2px;
}
.bn-pause::before,
.bn-pause::after {
  background-color: #fff;
  width: 4px;
  border-radius: 50px;
}

.bn-arrow::after {
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-right-style: solid;
  border-right-width: 3px;
  content: "";
  display: inline-block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

.bn-pause::before {
  left: 4px;
}
.bn-play::after {
  border-left-color: #fff;
}

.bn-controls button:hover {
  background-color: var(--site1);
  color: #fff;
  box-shadow: none;
}

.updates .wrapper {
  width: 100%;
}
