@charset "UTF-8";
.news-masonry {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: var(--space-3);
       column-gap: var(--space-3);
}

.news .news_content {
  margin-bottom: var(--space-3);
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.news .news_content .card {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 300ms, transform 300ms;
}
.news .news_content .card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: var(--shadow-soft);
}
.news .news_content .card-body {
  position: relative;
  padding: var(--space-2);
}
.news .news_content .card-body .date {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.news .news_content .card-body .date .material-icons {
  font-size: 1.1rem;
}
.news .news_content .card-body .card-title {
  font-family: "Raleway";
  color: #0369a1;
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 200ms ease;
}
.news .news_content .card-body .card-title:hover {
  color: #0ea5e9;
}
.news .news_content .card-cover-link .image-skeleton {
  min-height: 200px;
}
.news .news_content .card-button {
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  margin: 0 auto;
}
.news .news_content .card-bottom {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
}
.news .news_content img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 200px;
}

.news_detail .news_time {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

div.pagination {
  position: sticky;
  bottom: 10px;
}

@media only screen and (max-width: 992px) {
  .content_box {
    max-width: 100vw;
  }
  .news_detail .buttonset {
    top: 80px;
    margin-right: 0;
    margin-top: -55px;
    padding-bottom: 20px;
    text-align: right;
    z-index: 40;
  }
  .news_detail .buttonset .material-icons {
    box-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px 0px, rgba(255, 255, 255, 0.5) 0px 0px 0px 1px;
  }
}
@media only screen and (max-width: 767.98px) {
  .news-masonry {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .news .news_content .card-body .card-title {
    font-size: 0.95rem;
  }
  .news .news_content img {
    height: 140px;
  }
  .news .news_content .card-cover-link .image-skeleton {
    min-height: 140px;
  }
}
@media only screen and (max-width: 575.98px) {
  .news .news_content img {
    height: 150px;
  }
  .news .news_content .card-cover-link .image-skeleton {
    min-height: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .news-masonry {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #adb5bd;
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div.time {
  position: relative;
  bottom: 0;
  width: 400px;
}

.timeline ul li div.info {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: #d9e8ff;
}

.timeline ul li div.info::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #d9e8ff transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #d9e8ff;
}

time {
  display: block;
  font-size: 0.8rem;
  color: #333;
  padding-top: 6px;
}

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #d9e8ff;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
  .timeline ul li div.info {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}
@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div.time,
.timeline ul li div.info {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #d9e8ff transparent transparent;
  }
}
/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.timeline-heptagon ul li::after {
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.25);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
