html {
  scroll-behavior: smooth;
}

.container {
  min-width: 82%;
  max-width: 87%;
}

.cover {
  overflow-x: clip;
  position: relative;
  min-height: 790px;
  display: flex;
}

.cover-slick::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to left,
      oklch(from #1b0f68 l c h / 75%) 10%,
      oklch(from #fff l c h / 75%) 100%);
}

@media (min-width: 992px) {
  .cover {
    height: 90vh;
  }
}

@media (max-width: 991px) {
  .cover {
    padding: 15px;
    padding-top: 125px;
    /* header height + padding */
  }
}

.cover-slick {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.cover-slick div {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cover .toggle-slick {
  position: absolute;
  top: 125px;
  right: 15px;
  background: none;
  border: 0;
}

@media (max-width: 991px) {
  .cover {
    min-height: 507px;
  }

  .cover .toggle-slick {
    display: none;
  }
}

.cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;

  max-width: 600px;
  margin-top: -60px;
}

/**/

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;
  }
}

.cover {
  & .msg {
    position: absolute;
    top: 250px;
    right: 10%;
    color: #fff;

    & h2,
    & p {
      font-size: calc(3.4vw + 1rem);
      font-weight: 600;
      line-height: 0.8;
      margin-bottom: 0;
      position: relative;
    }

    & span {
      padding-top: 3rem;
      position: relative;
      display: block;
      width: 100%;
      font-size: calc(1.5vw + 1rem);

      &::before {
        position: relative;
        border-radius: 5px;
        display: block;
        width: 200px;
        height: 4px;
        background-color: var(--prime2);
        right: 0;
        top: -1.25rem;
      }
    }
  }
}

/**/

.services {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  &::after {
    content: "";
    position: absolute;
    height: 93%;
    width: 30%;
    background-color: var(--prime4);
    left: 0;
    top: 0;
    z-index: -1;
  }

  & .container {
    padding-block: 4rem;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  & .container > .row > div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .unit {
    width: 75%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;

    & h2 {
      width: min-content;
      font-weight: 700;
      line-height: 0.9;
      font-size: calc(1.95vw + 1rem);
      color: var(--prime1);

      & i {
        letter-spacing: -10px;
        font-style: normal;
        color: var(--prime2);
      }
    }

    & form {
      position: relative;
      width: 100%;
      height: 3rem;
    }

    & input {
      padding: 25px;
      color: var(--prime1);
      padding-inline: 1rem;
      border-radius: 5px;
      border: none;
      outline: none;
      height: inherit;
      width: 100%;
      background-color: rgb(from var(--prime2) r g b / 0.25);

      &::placeholder {
        color: var(--prime1);
      }
    }

    & button {
      font-size: 1.24rem;
      background-color: transparent;
      border: none;
      outline: none;
      color: var(--prime1);
      left: 10px;
      top: 10px;
      position: absolute;
    }
  }

  & .wrap a {
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    border: 2px solid currentColor;
    font-size: calc(0.05vw + 16px);
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    align-items: center;
    grid-column-gap: 10px;
    text-align: right;
    line-height: 1;
    width: min(100%, 180px);

    & span {
      color: var(--text);
    }

    & i {
      display: inline-block;
      margin-left: 2px;
      color: currentColor;
    }
  }

  & .wrap a:nth-child(6n + 1) {
    color: var(--prime2);
  }

  & .wrap a:nth-child(6n + 2) {
    color: var(--prime3);
  }

  & .wrap a:nth-child(6n + 3) {
    color: var(--prime5);
  }

  & .wrap a:nth-child(6n + 4) {
    color: var(--prime4);
  }

  & .wrap a:nth-child(6n + 5) {
    color: var(--prime7);
  }

  & .wrap a:nth-child(6n + 6) {
    color: var(--prime6);
  }

  /** display:none **/
  & .container:has(.see-all) {
    background-color: transparent;
    box-shadow: none;
  }

  /** display:none **/
  & .see-all {
    padding-left: 5rem;
    justify-content: flex-end;

    & a {
      background-color: var(--prime4);
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--prime1);
      font-size: calc(0.2vw + 1rem);
      border: 1px solid var(--prime1);
      border-radius: 100vw;
      padding: 5px 2rem;

      &:hover {
        text-decoration: none;
        transform: scale(1.05);
      }
    }

    & i {
      display: inline-block;
      font-size: 0.8rem;
    }
  }
}



.service {
  text-align: center;
  display: block;

  margin: 0.6rem;
  padding: 1rem;
}

/**/

.news-marquee {
  height: 300px;
  overflow: hidden;
}

/**/


.side-banners {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.side-banners.side-banners-left {
  left: 0;
  border-radius: 0 15px 15px 0;

  & .gridrow {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 0.25fr 0.25fr;
    grid-template-rows: 1fr 0.52fr 1fr;
  }

  & p {
    margin: 0;
    font-size: calc(0.15vw + 1rem);
    color: var(--text);
    line-height: 1.2;
    font-weight: 400;
  }

  & form {
    margin-top: 1rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
  }

  & input {
    width: 100%;
    border: none;
    outline: none;
    height: 1.7rem;

    &::placeholder {
      color: #a9a9a9;
    }
  }

  & .btn {
    background-color: var(--prime2);
    border-radius: 100vw;
    display: grid;
    place-content: center;
    left: 0;
    top: 15px;
    position: absolute;
    width: 40px;
    height: 40px;
    color: #fff;

    &:hover {
      background-color: var(--prime1);
    }
  }

  & .btn.mic {
    left: 60px;
  }

  & .btn.send {
    left: 10px;
  }

  & .wrap {
    z-index: 1;
    top: 40px;
    width: 460px;
    background-color: #fff;
    border-radius: 20px;
    border-top-left-radius: 20px;
    corner-top-left-shape: scoop;
    padding: 1.25rem;
    height: fit-content;
    grid-area: 2 / 1 / 4 / 3;
  }

  & img {
    grid-area: 1 / 2 / 3 / 4;
    width: 280px;
    width: 220px;
  }
}


.news-marquee-section {
  padding-right: 2rem;
  position: relative;
  margin-top: auto;
  width: 700px;
  bottom: 0;
  width: min(75%, 1000px);

  &::after {
    content: "";
    content: none;
    position: absolute;
    background-color: var(--prime6);
    top: -2rem;
    width: 400px;
    height: 450px;
    right: 0;
  }

  & .wrap {
    position: relative;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  & .fcol {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: min(100%, 340px);
    z-index: 1;
  }

  & .unit {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & a {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 2px solid var(--prime2);
      padding: 5px 1.15rem;
      font-size: calc(0.2vw + 16px);
      margin-bottom: 0.5rem;
      width: fit-content;

      &:hover {
        text-decoration: none;
        color: var(--prime4);
        border-color: var(--prime4);
      }

      & i {
        font-size: 0.9rem;
      }
    }
  }

  & h2 {
    font-size: calc(0.25vw + 16px);
    font-weight: bold;
    width: 75%;

    & i {
      font-style: normal;
      color: var(--prime2);
    }
  }

  & a {
    color: #fff;
    font-size: 1.3rem;
  }

  & .news-toggle {
    position: absolute;
    left: 0;
    top: 3rem;
    width: 40px;
    height: 40px;
    border: 3px solid var(--prime2);
    border-radius: 50%;
    background: rgb(from var(--prime1) r g b / 0.25);
    color: var(--prime2);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      background-color: var(--prime1);
    }
  }

  & .news-marquee {
    height: 187px !important;
    width: 360px;
    overflow: clip;
    margin-top: -2rem;
  }

  & ul {
    width: 95%;
    list-style-type: none;
    padding-right: 0;
  }

  & li {
    padding-block: 1.4rem;
    position: relative;

    &::after {
      content: "";
      position: absolute;
      bottom: 1rem;
      right: 0;
      height: 1px;
      width: 100px;
      background-color: #ccc;
    }

    & a {
      color: #fff;
      display: flex;
      flex-direction: column;
    }
  }

  & time {
    display: block;
    width: 100%;
    color: var(--prime7);
    font-weight: 300;
  }
}

.cover .fast {
  position: relative;
  margin-top: auto;
  margin-right: auto;
  margin-left: 5%;
  display: flex;
  gap: 1rem;
  bottom: -1.5rem;
  z-index: 1;


  & span {
    font-size: calc(0.2vw + 1rem);
    color: #fff;
    margin-left: 1rem;
    min-width: max-content;
  }

  & a {
    padding: 0.75rem 2.5rem;
    text-align: center;
    position: relative;
    width: fit-content;
    color: #fff;
    font-size: calc(0.5vw + 16px);

    & i {
      bottom: 8px;
      left: 8px;
      font-size: 1rem;
      position: absolute;
      transform: rotate(45deg);
    }
  }

  & a:first-of-type {
    background-color: var(--prime1);
  }

  & a:nth-of-type(2) {
    background-color: var(--prime5);
  }

  & a:nth-of-type(3) {
    background-color: var(--prime3);
  }

  & a:hover {
    color: var(--prime1);
    background-color: var(--prime4);
    box-shadow: 1px 3px 18px #555;
  }
}

.articles {
  position: relative;
  min-height: 840px;

  &::after {
    content: "";
    position: absolute;
    height: calc(100% + 3rem);
    width: 30%;
    background-color: var(--prime1);
    right: 0;
    top: 0;
    z-index: -1;
  }

  & a:hover {
    text-decoration: none;

    & .to-read {
      margin-right: 1rem;
      transform: scale(1.2);
    }
  }

  & h2 {
    padding-top: 4rem;
    color: #fff;
    font-weight: 700;
    font-size: calc(2vw + 1rem);
    line-height: 1;
    margin-bottom: 2.5rem;

    & span {
      display: block;
      width: 100%;
    }

    & i {
      font-style: normal;
      color: var(--prime2);
    }
  }

  & .pic {
    border: 5px solid #fff;
    border-left: 0;
    width: min(100%, 800px);
  }

  & img {
    width: 100%;
    aspect-ratio: 800 / 550;
    object-fit: cover;
  }

  & .to-read {
    display: inline-block;
    margin-top: 2rem;
    color: var(--prime2);
    font-size: calc(0.1vw + 1rem);
    transition: all 0.2s ease;
    margin-right: 0;

    & i {
      display: inline-block;
      margin-right: 0.7rem;
      font-size: 0.7rem;
    }
  }

  & .see-all {
    margin-top: 4rem;
    padding-right: 3rem;

    & a {
      background-color: var(--prime1);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: calc(0.2vw + 1rem);
      border: 1px solid var(--prime2);
      border-radius: 100vw;
      padding: 0.4rem 2rem;
      color: #fff;
      font-weight: 400;

      &:hover {
        text-decoration: none;
        transform: scale(1.05);
      }

      & i {
        font-size: 0.75rem;
      }
    }
  }

  & h3 {
    font-size: calc(2.2vw + 16px);
    font-weight: 700;
    color: var(--prime1);
    line-height: 1;
    position: relative;
    margin-bottom: 3rem;

    &::before {
      content: "";
      position: absolute;
      border-radius: 5px;
      width: 120px;
      height: 5px;
      background-color: var(--prime2);
      right: 0;
      bottom: -2.5rem;
    }
  }

  & .info {
    padding-right: 2.5rem;
  }

  .blurb {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text);

    & h4 {
      font-weight: 700;
      font-size: calc(0.52vw + 16px);
      margin-bottom: 1rem;
    }

    & h4 + p,
    & h4 + strong {
      padding: 0;
      line-height: 1.3;
      font-weight: 400;
      font-size: calc(0.43vw + 16px);
    }
  }
}

.events {
  height: calc(100% + 5rem);
  position: relative;

  & .to-left {
    margin-top: 4rem;
    justify-content: flex-end;
  }

  & h2 {
    color: #fff;
    font-weight: 700;
    font-size: calc(2vw + 1rem);
    line-height: 1;

    & span {
      display: block;
      width: 100%;
    }

    & i {
      font-style: normal;
      color: var(--prime2);
    }
  }

  &::after {
    content: "";
    position: absolute;
    height: inherit;
    width: 30%;
    background-color: var(--prime5);
    left: 0;
    top: -50px;
    z-index: -1;
  }

  & .see-all {
    padding-left: 0.5rem;
    justify-content: flex-end;

    & a {
      background-color: var(--prime5);
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: calc(0.2vw + 1rem);
      border: 1px solid #fff;
      border-radius: 100vw;
      padding: 5px 2rem;

      &:hover {
        text-decoration: none;
        transform: scale(1.05);
      }
    }

    & i {
      display: inline-block;
      font-size: 0.8rem;
    }
  }
}

[dir="rtl"] .slick-prev {
  z-index: 3;
  right: -9%;
}

[dir="rtl"] .slick-next {
  left: -9%;
  z-index: 3;
}

.slick-prev:before {
  color: var(--prime5);
}

.events-slick .slick-prev::before,
.events-slick .slick-next::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: calc(2.5vw + 16px);
}

.events-slick {
  max-width: 82%;

  margin-inline: auto;
  padding-block: 2rem;
  width: 100%;

  & .slick-slide > div {
    display: flex;
    justify-content: center;
  }

  & a {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 20px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    color: var(--text);
    font-weight: 400;
    margin: 1rem auto;

    &:hover {
      text-decoration: none;
      color: var(--prime5);
    }

    &:hover h3 {
      color: var(--prime5);
    }

    &:hover .to-read {
      background-color: var(--prime5);
    }
  }

  & h3 {
    width: 100%;
    color: var(--prime1);
    font-weight: 700;
    margin-bottom: 2rem;
    height: 70px;
    overflow-y: clip;
  }

  & i {
    font-size: 1rem;
    color: var(--prime2);
  }

  & .info {
    width: 100%;
  }

  & .pic {
    border-radius: 25px;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  & .pic img {
    aspect-ratio: 380 / 280;
    border-radius: 25px;
    width: 100%;
    object-fit: cover;
  }

  & .to-read {
    margin-right: auto;
    background-color: var(--prime2);

    border-radius: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;

    & i {
      color: #fff;
      display: inline-block;
    }
  }
}

.substack {
  height: 750px;
  position: relative;
  overflow-x: clip;

  &::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    background-color: var(--prime3);
    right: 0;
    top: 0px;
    z-index: -1;
  }

  & .container {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  & h2 {
    color: #fff;
    font-weight: 700;
    font-size: calc(2vw + 1rem);
    line-height: 1;

    & span {
      display: block;
      width: 100%;
    }

    & i {
      font-style: normal;
      color: var(--prime2);
    }
  }

  & .fields {
    display: flex;
    width: 100%;
  }

  & .wrap {
    padding: 3rem 4rem;
    width: 75%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  & form {
    width: 100%;
    position: relative;
  }

  & .offset-sm-3 {
    margin-right: 0;
  }

  /* & label {
    visibility: hidden;
    margin: 0;
    position: absolute;
  } */
  & .form-control {
    padding-block: 1.75rem;
  }

  & .form-group.row {
    flex: 1;
  }

  & .form-group {
    position: relative;
    margin-top: 15px;
  }

  & .form-group label {
    position: absolute;
    top: -10px;
    right: 25px;
    z-index: 10;
    background-color: #ffffff;
    padding: 0 5px;
    font-size: 12px;
    color: var(--prime2);

    width: auto;
    max-width: none;
  }

  & .smart-form button[type="submit"] {
    background-color: var(--prime3);
    position: absolute;
    bottom: -100px;
    left: -10rem;
    border: 8px solid #fff;
    max-width: 380px;
    height: 130px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-size: 2rem;
    line-height: 1;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px clamp(20px, 30%, 80px);
    text-align: right;

    &:hover {
      background-color: var(--prime4);
      color: var(--prime3);
    }
  }

  & .smart-form button[type="submit"]:before {
    font-size: 2rem;
    content: "\f658";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
  }
}

@media (max-width:1750px) {
  .events-slick {
    max-width: 100%;
  }

  [dir="rtl"] .slick-prev {
    right: 0;

  }

  [dir="rtl"] .slick-next {
    left: 0;
  }
}



@media (max-width:1400px) {
  .news-marquee-section {
    &::after {
      width: 41%;
    }
  }

  .substack {
    & .wrap {
      width: 100%;
    }

    & .smart-form button[type="submit"] {
      left: -9rem;
      width: 320px;
    }
  }

  .articles {
    min-height: 770px;

    &::after {
      width: 40%;
    }

  }

  .events {
    &::after {
      width: 40%;
    }
  }

  [dir="rtl"] .slick-prev {
    right: -15px;
  }

  [dir="rtl"] .slick-next {
    left: -15px;
  }

  .cover {
    & .msg {
      & span {
        padding-top: 0rem;
      }
    }
  }


  .cover .fast {

    & a {
      padding: 0.95rem 1.1rem;
      font-size: calc(0.15vw + 16px);

      & i {
        font-size: 0.6rem;
      }
    }
  }


  .services {
    height: 720px;

    & .unit {
      padding: 1rem;
      width: 100%;

      & h2 i {
        letter-spacing: -5px;
      }
    }

    & .container {
      padding-block: 2rem;
    }

    & .wrap a {
      grid-column-gap: 1px;
      padding: 0.5rem;
    }

    & .service {
      margin: 0.4rem;
    }

    & .see-all {
      padding-left: 0;

      & a {
        padding: 5px 1rem;
      }
    }
  }

  .events-slick {
    & h3 {
      font-size: 1.5rem;
      height: 60px;
      margin-bottom: 0.5rem;
    }

    & i {
      font-size: 0.9rem;
    }

    & .to-read {
      width: 40px;
      height: 40px;
    }
  }
}

@media (max-width:1199px) {
  .services {
    & .wrap a {
      width: min(100%, 30%);
    }
  }
}

@media (max-width:991px) {



  .news-marquee-section {
    padding-right: 0;

    & h2 {
      display: none;
    }

    &::after {
      z-index: -1;
      width: 67vw;
      height: 530px;
    }


    & .fcol {
      padding-right: 16px;
      width: fit-content;
    }

    & h2 {
      display: none;
    }

    & ul {
      width: 70%;
      padding-right: 20px;
    }

    & .news-toggle {
      top: 0;
      position: relative;
    }

    & .unit {
      flex-direction: unset;
      text-align: right;
      align-items: unset;

      & a {
        background-color: var(--prime2);
      }
    }


    & .wrap {
      flex-direction: column;
    }
  }

  .cover {
    & .msg {
      right: 4%;
      top: 105px;

      & span {
        font-size: calc(1.5vw + 1rem);
      }

      & h2,
      & p {
        font-size: calc(4.5vw + 1rem);
      }
    }
  }

  .cover .fast {
    flex-direction: column;
    margin-left: 0;
    bottom: -2rem;
    align-items: flex-end;

    & span {
      background-color: var(--prime2);
      font-size: calc(0.4vw + 1rem);
      padding: 10px 20px;
      margin-left: 0;

    }

    & a {
      padding: 0.75rem 1.1rem;

      & i {
        font-size: 0.5rem;
      }
    }
  }

  .side-banners.side-banners-left {
    & img {
      width: 165px;
    }

    & .gridrow {
      grid-template-columns: 1fr 0.19fr 0.15fr;
      grid-template-rows: 1fr 0.6fr 1fr;
    }

    & .wrap {
      border-radius: 5px;
      width: 320px;
      padding: 0.9rem;
      border-top-left-radius: 20px;
    }

    & p {
      font-size: calc(0.01vw + 1rem);
    }



    & .btn {
      width: 35px;
      height: 35px;
    }

    & .btn.mic {
      left: 45px;
    }

    .btn.send {
      left: 0px;
    }
  }

  .side-banners {
    top: 72px;
    transform: none;
  }

  .services {
    & .wrap {
      padding: 2rem;
    }
  }

  .services {
    margin-top: 5rem;
    height: auto;

    &::after {
      height: calc(100% + 5rem);
      width: 45vw;
      top: -80px;
    }
  }

  .articles {

    &::after {
      height: calc(100% + 5rem);
    }

    & .see-all {
      padding-right: 0;
      margin-top: 4rem;

      & a {
        padding: 0.4rem 1rem
      }
    }

    & .info {
      background-color: #fff;
      box-shadow: 5px 8px 18px #42424290;
      padding: 2rem;
    }
  }

  .substack {
    &::after {
      width: 50vw;
    }

    & .smart-form button[type="submit"] {
      height: 110px;
      width: 240px;
      font-size: 1.5rem;
      padding: 10px clamp(20px, 30%, 40px);
    }
  }
}

@media (max-width:800px) {
  .side-banners.side-banners-left {
    & .gridrow {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-end;
    }

    & .btn {
      top: 50px;
    }

    & img {
      width: 140px;
      margin-bottom: -30px;
    }

    & .wrap {
      border-top-left-radius: 5px;
      corner-top-left-shape: unset;
      margin-right: auto;
      width: 220px;
    }
  }
}

@media (max-width:799px) {
  .cover {
    padding-inline: 0;

    & .msg {
      top: 95px;
    }
  }

  .side-banners {
    top: 115px;
  }



  .service {
    text-align: center;
  }



  .substack {
    margin-top: 1rem;

    & .smart-form button[type="submit"] {
      width: 200px;
      left: 3.5rem;
      height: 90px;
      font-size: 1.25rem;

      &::before {

        font-size: 1.5rem;
      }
    }

    & .wrap {
      padding: 2rem;
    }

    & .fields {
      flex-direction: column;
    }
  }

  .articles {
    &::after {
      width: 45vw;
    }

    & .blurb {

      & h4 + p,
      & h4 + strong {
        display: none;
      }
    }
  }

  [dir="rtl"] .slick-next {
    left: -5px;
  }

  [dir="rtl"] .slick-prev {
    right: -5px;
  }

  .events {
    & .events-slick {
      & a {
        max-width: 320px;
      }
    }

    &::after {
      width: 59vw;
    }
  }
}

@media (max-width:600px) {
  .services {
    & .wrap {
      padding-inline: 0.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      grid-auto-flow: dense;

      & a {
        width: unset;
      }
    }

    /* a:nth-child(n+9) {
      display: none;
    } */
  }
}

@media (max-width:400px) {
  .cover .fast {
    & span {
      padding: 10px 13px;
      min-width: min-content;
    }
  }

  .news-marquee-section {
    & .unit {
      & a {
        padding: 5px 0.95rem;

        & i {
          display: none;
        }
      }
    }

  }
}