.news-marquee-section-mobile {
  display: none;
}
.cover {
  position: relative;
  min-height: 670px;
}

@media (min-width: 992px) {
  .cover {
    height: 3vh;
  }
}

@media (max-width: 991px) {
  .cover {
    min-height: 400px;
  }
}

.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: top;
  position: relative;

  &:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to top,
      rgb(from #000 r g b / 0.65) 0%,
      transparent 100%
    );
  }
}

.cover .toggle-slick {
  position: absolute;
  top: 125px;
  right: 15px;
  border: 0;
  background-color: rgb(from #fff r g b / 0.5);
  color: #000;
  z-index: 5;
}

@media (max-width: 991px) {
  .cover .toggle-slick {
    top: 25px;
    right: auto;
    left: 20px;
  }
}
.container {
  position: relative;
  width: 100%;
  max-width: 1680px;
}
.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;
  }
}

.gridrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
  overflow-x: clip;

  & > div {
    position: relative;
    grid-column: span 1;
    min-width: 0;
    height: 100%;
  }
}
@media (min-width: 991px) {
  .gridrow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-marquee-section {
  padding-right: 3.5rem;
  display: flex;

  & .wrap {
    position: relative;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  & .news-toggle {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid var(--prime3);
    border-radius: 50%;
    background: rgb(from #fff r g b / 0.5);
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 2rem;
    top: 0.5rem;
  }

  & .news-marquee {
    height: 200px;
    overflow: hidden;
  }

  & h2 {
    font-size: 1.4rem;
    font-weight: bold;
    width: 75%;

    & a {
      color: var(--prime3);
    }
  }

  & ul {
    width: 75%;
    list-style-type: none;
    padding-right: 0;
  }

  & li {
    padding-block: 1.4rem;
    border-bottom: 1px solid var(--prime3);
  }

  & time {
    display: block;
    width: 100%;
    color: var(--prime3);
    font-weight: 700;
  }

  & a {
    color: #fff;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .news-marquee-section .wrap {
    display: none;
  }
}
.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 450px;

    bottom: -99px;
    left: 54%;
    transform: translateX(-50%);
    background-image: url(./images/shape.svg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
  }

  & img {
    width: 100%;
    transform: scale(2.5);
    transition:
      transform 1.5s ease,
      opacity 0.5s ease;
    opacity: 0;
  }

  & img.loaded {
    transform: scale(1);
    opacity: 1;
  }

  & .searching-wrap {
    background-color: rgb(from #fff r g b / 0.5);
    position: absolute;
    border-radius: 20px;

    inset: 0;
    top: auto;
    bottom: -44px;
    padding: 0.955rem;
    width: 95%;
    margin-inline: auto;
    display: flex;
    justify-content: center;
  }

  & .searching-form,
  &.searching-form form {
    width: 100%;
  }

  & .searching {
    position: relative;
    width: 100%;
    max-width: inherit;
    margin: auto;
  }
  .searching-wrap .wrap input {
    position: relative;
    z-index: 5;
    background-color: rgb(255, 255, 255);
    max-width: inherit;
    font-size: 1.4rem;
    width: 100%;
    box-shadow:
      rgba(0, 0, 0, 0.25) 0px 54px 55px,
      rgba(0, 0, 0, 0.12) 0px -12px 30px,
      rgba(0, 0, 0, 0.12) 0px 4px 6px,
      rgba(0, 0, 0, 0.17) 0px 12px 13px,
      rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin: auto;
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 0.5));
    padding: 1rem;
    border-radius: 4px;
    outline: none;
    border: none;
  }

  & .searching button {
    z-index: 5;
    background-color: #fff;
    background-repeat: no-repeat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    position: absolute;
    border-radius: 0;
    background-position: center center;
    inset: 0;
    margin: auto auto auto 8px;
    border: none;
    color: var(--prime2);
  }
  & .searching button:hover {
    background-color: var(--prime6);
  }
  & .searching button > span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    font-size: 2rem;
  }
  & .searching button b {
    color: rgb(255, 255, 255);
    font-size: 1.7rem;
    font-weight: bold;
    margin-right: 12px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 0;
  }
  .message {
    aspect-ratio: 5.2 / 2;
  }

  .symbol {
    width: 75%;
  }

  .message {
    & img.loaded {
      margin-top: -5.5rem;
    }
  }
}

.side-banner {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 0 50px 50px 0;
  background-color: #fff;
  padding: 0.7rem 2.3rem 0.7rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 190px;
  isolation: isolate;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.7);
  transition: all 0.2s ease;
  margin-bottom: 1.82rem;

  &::after {
    content: "";
    position: absolute;
    width: calc(100% + 9px);
    left: 0;
    width: calc(100% + 8px);
    height: calc(100% + 17px);
    border: 8px solid #ffffff4a;
    border-radius: 0 50px 50px 0;
    z-index: -1;
  }

  & span {
    display: block;
    font-size: calc(0.2vw + 16px);
    width: min-content;
    line-height: 1;
    text-align: center;
  }

  &:hover {
    transform: scale(1.1);
  }
}

.side-banner img {
  width: 43px;
  height: 43px;
  object-fit: cover;
}

a.side-banner {
  width: 150px;
  margin-top: 0;
  padding-right: 1.25rem;

  @media (max-width: 991px) {
    position: absolute;
    top: -40px;
    width: 101px;
    padding: 0.5rem 0.5rem 0.5rem 0.2rem;

    & img {
      width: 32px;
      height: 31px;
    }
  }
}
@media (min-width: 992px) {
  .thumb .side-banner:nth-last-child(1 of .side-banner) {
    width: 220px;
  }
}
.thumb {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  & .digital {
    position: absolute;
    left: -500px;
    top: 53%;
    transform: translateY(-50%);
    background-color: rgb(from #fff r g b / 0.5);
    max-width: 400px;
    border-radius: 0 10px 10px 0;
    padding: 0.7rem 0.7rem 0.7rem 0;
    transition: all 0.2s ease;
    z-index: 7;

    &:last-child {
      top: 71.5%;
    }

    &.active {
      left: 0;
    }

    & .wrap {
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem 2rem 1.5rem 1.9rem;
      border-radius: 0 10px 10px 0;
    }

    & .group {
      display: flex;
      flex-direction: column;
    }

    & ul {
      list-style-type: none;
      padding-right: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 0.89rem;
      row-gap: 1.2rem;
      padding-left: 1.75rem;
    }

    & li a {
      font-size: 1rem;
      color: var(--text);
      grid-column: span 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      line-height: 1;
    }

    & img {
      margin-bottom: 0.25rem;
      width: 35px;
    }
  }
}

@media (max-width: 991px) {
  .gridrow {
    padding-top: 9rem;
    grid-template-columns: 1fr;

    & > div:nth-child(3) {
      order: -1;
    }

    & .thumb {
      flex-direction: row-reverse;
      justify-content: space-between;
    }
  }

  .thumb {
    align-items: flex-start;
  }

  .side-banner {
    top: 30px;
    padding: 0.9rem 1.5rem 0.9rem 0.5rem;
    width: 135px;
    &:nth-of-type(2) {
      flex-direction: row-reverse;
      border-radius: 50px 0 0 50px;
      padding: 0.8rem 0.7rem 0.8rem 1.5rem;
      width: 140px;
      margin-top: 0;

      &::after {
        border-radius: 50px 0 0 50px;
        right: 0;
        left: auto;
      }

      & span {
        font-size: 1rem;
      }
    }

    & img {
      width: 39px;
      height: 39px;
    }
  }

  .thumb {
    & .digital {
      top: -50%;
      transform: translateY(50%);
      &.active {
        top: -50%;
        transform: translateY(50%);
      }
      &:last-child {
        top: -50%;
        transform: translateY(50%);
        right: -400px;
        left: auto;
        border-radius: 10px 0 0 10px;
        padding: 0.7rem 0 0.7rem 0.7rem;
      }
      &:last-child.active {
        right: -10px;
        left: auto;
      }
    }
  }
}

/**/

.services {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top: 8rem;

  & .row {
    padding-right: 1rem;
  }
}

@media (max-width: 1600px) {
  .services .row {
    padding-right: 40px;
  }
}

.services-slick {
  width: min(100%, 90%);
  padding: 0.5rem 0.9rem 0.5rem 0.2rem;
  margin: 0 auto;
  position: relative;

  & a {
    position: relative;
    display: block;
    text-align: center;
    margin: 1rem;
    font-size: calc(0.2vw + 16px);
    color: var(--text);

    padding: 0 1rem;
    line-height: 1;

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      width: 1px;
      height: 4.5rem;
      background-color: #dfdfdf;
    }

    &:hover img {
      transform: scale(1.15);
    }
  }

  & .is-last-visible a {
    border-right: none;
  }

  & figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 450;
  }

  & img {
    display: block;
    margin: 0 auto;
    margin-bottom: 0.75rem;
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
}

h2.dot {
  font-size: calc(1.25vw + 16px);
  font-weight: 500;
  color: var(--text);
  width: min-content;
  line-height: 1;
  margin: auto 0;
  & span {
    color: var(--prime1);
  }
}
@media (max-width: 1199px) {
  .services-slick {
    & img {
      width: 50px;
      height: 50px;
    }
  }
}
@media (max-width: 991px) {
  .services {
    & .row {
      padding-right: 0;
    }
  }
  .services-slick {
    & a {
      &::after {
        content: none;
      }
    }
    & a:hover img {
      transform: none;
    }
  }
}
/**/
.slick-arrow {
  z-index: 9;
}
.slick-prev,
.slick-next {
  height: 100%;
  top: 0;

  padding-inline: 1rem;

  &::before {
    background-color: var(--prime1);
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    color: var(--prime1);
    font-size: 1.2rem;
    border-radius: 100vw;
  }
}

@media (max-width: 991px) {
  .slick-prev,
  .slick-next {
    padding-inline: 0;
  }
}
/* promo */

.promo {
  overflow-x: clip;
  margin-bottom: 2rem;
  padding-top: 6rem;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    top: 3rem;
    width: 87vw;
    height: 1px;
    background: #ddd;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      var(--color-blue),
      var(--color-gold),
      var(--color-green)
    );
  }

  & h2 span {
    color: var(--headerBlue);
  }

  & .row {
    position: relative;
    z-index: 3;
    margin-top: 7rem;
  }
}

.promo a {
  & .info {
    padding-inline: 1rem;
  }
  & h3 {
    padding-block: 3rem;
    color: var(--text);
    font-weight: 900;
    line-height: 1;
    font-size: calc(1.4vw + 16px);
    position: relative;
    margin-bottom: 2rem;
    width: 90%;
  }

  & h3::after {
    content: "";
    position: absolute;
    right: 0;
    width: 150px;
    bottom: 10px;
    height: 2px;
    background-color: var(--prime2);
  }

  & p {
    color: var(--text);
    font-size: calc(0.35vw + 16px);
    line-height: 1;
    font-weight: 500;
    width: 90%;
  }

  & p + span {
    margin-top: 1rem;
    transition: all 0.2s ease;
    font-size: calc(0.25vw + 16px);
    color: var(--prime1);
    display: inline-block;
    font-weight: 900;

    & i {
      font-size: 0.9rem;
      margin-right: 0.75rem;
      transition: all 0.2s ease;
      color: var(--prime1);
    }

    &:hover {
      color: var(--prime2b);
    }
    &:hover i {
      color: var(--prime2b);
    }
  }

  &:hover {
    text-decoration: none;
  }

  &:hover p + span {
    transform: scale(1.01);
  }
  &:hover p + span i {
    margin-right: 0.375rem;
  }
}

.slick-promo {
  height: 570px;

  & > div {
    height: 100%;
  }
}
.promo .pic {
  padding-right: 0;
}
.promo .pic > div {
  border-radius: 4.5rem 0 0 4.5rem;
  width: 110%;
  max-height: 500px;
  aspect-ratio: 1.5;
  background-size: cover;
  background-position: center;
  right: -113px;
  top: 25px;
  position: relative;
  border: 2vw solid #fff;
  filter: drop-shadow(0 0 10px rgb(0 0 0 / 0.5));
}
.read-more {
  background: #fff;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-weight: bold;
  color: inherit;
  border: 1px solid #ddd;
}

.all {
  width: 100%;
  display: flex;
  padding-inline: 2rem;
  & i {
    font-size: 0.7rem;
  }

  & a:hover {
    font-weight: 700;
    text-decoration: underline;
  }
}

@media (max-width: 991px) {
  .promo {
    & .row {
      margin-top: 1rem;
      gap: 2rem;
    }

    &::before {
      opacity: 0.5;
      z-index: -1;
    }

    & .pic > div {
      right: -20px;
      max-height: 400px;
    }
  }
}
/* Articles */

.articles {
  margin-top: 1rem;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 65%;
    background: rgb(from var(--prime2b) r g b / 0.1);
  }

  & .title {
    position: relative;
    justify-content: center;
    margin-bottom: 7rem;

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 87vw;
      height: 1px;
      background: #ddd;
      z-index: -1;
      background: linear-gradient(
        90deg,
        var(--color-blue),
        var(--color-gold),
        var(--color-green)
      );
    }
  }

  & .dot {
    padding-inline: 1rem;
    background-color: #fff;
    width: max-content;
  }
}
.articles h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .articles {
    padding: 3rem 2rem;
  }
  .articles .row > div {
    margin-bottom: 30px;
  }
}
.articles a {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #fff;
  color: #000;
  filter: drop-shadow(0 0 7px rgb(0 0 0 / 0.25));
  position: relative;
  height: 100%;
  border-radius: 50px;
  corner-shape: squircle;

  &:hover {
    text-decoration: none;
    color: var(--prime2b);
    transform: scale(1.1);
  }
}
.article img {
  display: block;
  width: 100%;
  border-radius: 50px;
  corner-shape: squircle;
}
.articles .info {
  padding: 2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.articles h3 {
  font-weight: 900;
  min-height: 125px;
  font-size: calc(0.7vw + 16px);
  line-height: 1.1;
}
.articles h3 + span {
  margin-top: auto;
  color: var(--prime1);
  font-size: calc(0.25vw + 16px);
  font-weight: 700;
}
.articles time {
  padding-bottom: 1rem;
  position: relative;
  color: #747474;
}

.articles a.read-more {
  background: rgb(from var(--prime2) r g b / 0.15);
  display: inline-block;
  padding: 0.75rem 3.25rem;
  font-weight: bold;
  color: inherit;
  width: fit-content;
  border-radius: 100vw;
  corner-shape: unset;
  color: var(--prime2b);
  filter: unset;
  font-size: calc(0.15vw + 24px);
  margin-top: 5rem;
  border: 1px solid rgb(from var(--prime2) r g b / 0.1);
  line-height: 1;
}

/**/

/* News * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.news {
  padding: 1rem;
  background: #fff;
}

.news .content {
  position: relative;
}

.news .buttons {
  position: absolute;
  top: 1.9rem;
  left: 1.9rem;
}

.news a {
  color: #000;
  display: block;
}

@media (min-width: 768px) {
  .news a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.news h2 {
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.219rem 0.75rem;
  margin: 0;
  border-radius: 2rem;
  z-index: 7;
}

.news h2 a {
  color: inherit;
}

@media (min-width: 992px) {
  .bn-news {
    padding-right: 100px;
  }
}

.bn-news ul li a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 0.36rem 0;
  color: inherit;
}

.bn-news ul li a:hover {
  color: #000;
}

.bn-effect-scroll .bn-news ul li {
  padding: 0 1rem;
}

.news .date {
  font-weight: bold;
}

.news .date:after {
  content: " | ";
  margin: 0 10px;
}

.bn-controls {
  left: 0;
  right: auto;
}

.bn-controls button {
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  padding: 0;
  margin-right: 5px;
}

.bn-arrow {
  top: -1px;
}

.bn-pause::before,
.bn-pause::after {
  background-color: #fff;
}
.bn-play::after {
  border-left-color: #fff;
}

.bn-controls button:hover {
  background-color: #111;
  color: #fff;
  box-shadow: 0 0 5px rgb(255 255 0 / 90%);
}

/**/

/**/

/* Fast Nav */

.fast-navigation {
  padding: 1rem 0;
  border-radius: 0 0 2rem 2rem;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}

.fast-navigation:after {
  clear: both;
  display: block;
  content: "";
}

@media (min-width: 992px) {
  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    float: right;
    display: block;
  }
}

.fast-navigation label {
  background: #0372ac;
  border-radius: 0 2rem 2rem 0;
  padding: 5px 10px;
  border: 0;
  margin: 0;
}

.fast-navigation select {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 5px 10px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.fast-navigation button {
  background: #0372ac;
  border: 0;
  border-radius: 2rem 0 0 2rem;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 992px) {
  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    float: right;
    display: block;
  }
}

@media (max-width: 991px) {
  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    display: block;
    border-radius: 2rem;
    width: 100%;
  }

  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    display: block;
    border-radius: 2rem;
  }

  .fast-navigation .smart-nav-sub > select {
    width: 100%;
    margin: 0.5rem 0;
  }

  .smart-nav-submit {
    margin: 0 auto;
  }
}

/**/
.blocks {
  margin-top: 12rem;
  padding-inline: 2rem;
}

@media (max-width: 991px) {
  .blocks {
    margin-top: 8rem;
  }
}
.grid-layout {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: 1.25fr 0.5fr 1.25fr;
  grid-auto-rows: min-content;
  grid-template-rows: repeat(2, minmax(auto, 400px));
  column-gap: 3vw;
  row-gap: 3vw;
  margin-inline: auto;
  min-height: 80vh;

  & a {
    padding: 4rem 2.3rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    border: 1.5vw solid #fff;
    border-radius: 50px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    /* corner-shape: squircle; */
    overflow: hidden;

    &:hover {
      text-decoration: none;
      transform: scale(1.1);
    }
  }

  & .wrap {
    line-height: 1;
    position: relative;
    z-index: 2;
  }

  & h3 {
    font-weight: 900;
    font-size: calc(1.65vw + 16px);
    margin: 0;
    line-height: 1;
  }

  & span {
    font-size: calc(0.42vw + 16px);
  }

  & .grade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
      to top,
      rgb(from #000 r g b / 0.9) 0%,
      transparent 100%
    );
  }
}
.div1 {
  grid-column-start: 1;

  & .grade {
    background: linear-gradient(
      to top,
      rgb(from var(--prime1b) r g b / 0.99) 0%,
      transparent 100%
    );
    mix-blend-mode: multiply;
  }

  & .wrap {
    margin-top: auto;
  }
}
.div2 {
  grid-column: span 2 / span 2;

  & .grade {
    background: linear-gradient(
      to top,
      rgb(from var(--prime2) r g b / 0.8) 5%,
      transparent 100%
    );
    filter: drop-shadow(2px 4px 6px black);
  }

  & a {
    justify-content: flex-end;
  }
}

.div3 {
  grid-column: span 2 / span 2;
  grid-row-start: 2;
}

.div4 {
  grid-column-start: 3;
  grid-row-start: 2;
  & .grade {
    background: linear-gradient(
      to bottom,
      rgb(from #000 r g b / 0.7) 0%,
      transparent 75%
    );
    filter: drop-shadow(2px 4px 6px black);
  }

  & a {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .articles::before {
    bottom: -30px;
    height: 60%;
  }
  .articles-slick .col-lg-4 {
    padding: 10px;
  }
  .articles-slick .article {
    height: auto;
  }
  .articles-slick .slick-arrow {
    z-index: 1;
  }
  .articles a.read-more {
    margin-top: 3rem;
  }

  .articles a:hover {
    transform: none;
  }

  .articles .title {
    margin-bottom: 2.5rem;
  }
  .articles-slick h3 {
    min-height: 75px;
  }
  .articles-slick .info {
    padding-bottom: 0.5rem;
  }
  .articles-slick img {
    border-radius: 1rem;
  }
  .articles-slick a {
    corner-shape: unset;
    border-radius: 20px;
  }

  .message {
    &::after {
      left: 50%;
    }
  }
  .grid-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: calc(10vw - 1rem);

    & a {
      padding: 1.5rem 2.3rem;
      height: auto;
      border-radius: 1.65rem;
      min-height: 150px;
      overflow: clip;

      &:hover {
        transform: none;
      }
    }

    & .grade {
      border-radius: 20px;
    }
  }
  .div1,
  .div2,
  .div3,
  .div4 {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
  }
  .div2 {
    & a {
      justify-content: flex-start;
    }
  }
  .div1,
  .div4 {
    aspect-ratio: 3 / 2;

    & > a {
      height: 100%;
    }
  }

  .slick-promo {
    height: auto;
    & .d-flex {
      flex-direction: column;
      gap: 1.5rem;
    }

    & a {
      & p {
        font-weight: 400;
        line-height: 1.2;
      }
    }
  }

  .promo {
    padding-top: 1.5rem;
    margin-bottom: 4rem;
  }
  .promo .pic > div {
    border-radius: 2rem 0 0 2rem;
    width: max(75%, 365px);
  }

  .services {
    margin-top: 5.5rem;
    & .container::after {
      content: none;
    }

    & .row {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    & h2.dot {
      font-weight: 700;
      font-size: calc(3.25vw + 16px);
      width: 100%;
      text-align: center;
      margin-bottom: 1rem;
    }
  }

  .news-marquee-section-mobile {
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 75%;
    margin-inline: auto;

    & .wrap {
      position: relative;
      margin-top: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    & .news-toggle-mobile {
      position: absolute;
      width: 25px;
      height: 25px;
      border: 2px solid #ffffff;
      border-radius: 0;
      background: rgb(from #fff r g b / 0.5);
      color: var(--prime2b);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      left: 0.2rem;
      top: 50%;
      transform: translateY(-50%);

      display: none;
    }

    & .news-marquee-mobile {
      height: 200px;
      overflow: hidden;
      display: none;
      width: 100%;
    }

    & h2 {
      font-size: 1.4rem;
      font-weight: bold;
      width: 100%;
      text-align: center;
      border: 1px solid var(--prime2b);
      padding: 1.8rem 1.5rem;
      position: relative;
      display: flex;
      justify-content: center;
      cursor: pointer;
      z-index: 2;

      &::after {
        content: "\f103";
        border: 1px solid var(--prime2b);
        position: absolute;
        border-radius: 100vw;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Font Awesome 7 Free";
        font-weight: 900;
        color: var(--prime2b);
        background-color: #fff;
        bottom: -1rem;
        transition: transform 0.3s ease;
        font-size: 14px;
      }

      &.open::after {
        transform: rotate(180deg);
      }

      & a {
        color: var(--prime2b);
      }
    }

    & ul {
      width: 100%;
      list-style-type: none;
      padding-right: 0;
    }

    & li {
      padding-block: 1.4rem;
      border-bottom: 1px solid rgb(from var(--prime2b) r g b / 0.25);
    }

    & time {
      display: block;
      width: 100%;
      color: var(--prime2b);
      font-weight: 700;
    }

    & a {
      color: var(--prime2b);
      display: flex;
      flex-direction: column;
    }
  }
}
