.section-videos .video-gallery .video-item {
  display: block;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
}
.section-videos .video-gallery .video-item .title {
  color: black;
  font-size: 1rem;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.2rem;
  height: calc(3 * 1.2rem);
}
.section-videos .video-gallery .video-item .date {
  color: grey;
  font-size: 0.8rem;
  margin: 10px 0px;
}
.section-videos .video-gallery .video-item .date i {
  color: grey;
  font-size: 0.8rem;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .section-videos .video-gallery .video-item .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    line-height: 1.2rem;
    height: calc(5 * 1.2rem);
  }
}

.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-popup .video-popup-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
}
.video-popup .video-popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 36px;
  padding: 10px;
  color: white;
  cursor: pointer;
  touch-action: manipulation;
  z-index: 10;
}
.video-popup .video-popup-content .video-wrapper {
  position: relative;
  padding-top: 56.25%;
}
.video-popup .video-popup-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.section-news {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}
.section-news .news-card {
  border: 1px solid lightgrey;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  margin-bottom: 20px;
  background-color: white;
}
.section-news .news-card .thumbnail {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-news .news-card .info {
  padding: 15px;
}
.section-news .news-card .info .news-date {
  font-size: 0.8rem;
  color: grey;
}
.section-news .news-card .info .news-title {
  color: black;
  font-family: "Lato", sans-serif;
}
.section-news .news-card:hover {
  box-shadow: 0 0 10px rgba(211, 211, 211, 0.5);
}
@media (min-width: 768px) {
  .section-news .news-card .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.3rem;
    height: calc(2 * 1.3rem);
  }
}
@media (max-width: 768px) {
  .section-news .news-card .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 1.3rem;
    height: calc(3 * 1.3rem);
  }
  .section-news .news-card .thumbnail {
    height: 120px;
  }
}

.section-single-news .content-wrapper {
  margin-top: 1rem;
}
.section-single-news .content-wrapper .thumbnail {
  float: left;
  width: 50%;
  margin-right: 1rem;
  margin-bottom: 1rem;
  max-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.section-single-news .content-wrapper .content {
  text-align: justify;
}
.section-single-news .content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 768px) {
  .section-single-news .content-wrapper .thumbnail {
    float: none;
    width: 100%;
    margin: 0 0 1rem 0;
    max-height: 40vh;
  }
}
.section-single-news .recent-news {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}
.section-single-news .recent-news .recent-news-card > a {
  display: flex;
}
.section-single-news .recent-news .recent-news-card .thumbnail {
  flex: 2;
  margin-right: 5px;
}
.section-single-news .recent-news .recent-news-card .thumbnail img {
  width: 100%;
  height: 50px;
  border-radius: 5px;
}
.section-single-news .recent-news .recent-news-card .info {
  flex: 5;
}
.section-single-news .recent-news .recent-news-card .info .news-title {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: black;
}
.section-single-news .recent-news .recent-news-card .info .date {
  font-size: 0.8rem;
  color: grey;
}
.section-single-news .recent-news .recent-news-card:hover .news-title {
  color: #007bd9;
}
.section-single-news .recent-news .recent-news-card:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid lightgrey;
}
@media (max-width: 768px) {
  .section-single-news .recent-news .recent-news-card > a {
    align-items: center;
  }
  .section-single-news .recent-news .recent-news-card .thumbnail img {
    height: 70px;
  }
  .section-single-news .recent-news .recent-news-card .info .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1rem;
    height: calc(2 * 1rem);
  }
}
@media (min-width: 768px) {
  .section-single-news .recent-news .recent-news-card .info .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1rem;
    height: calc(2 * 1rem);
  }
}

.section-gallery {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}
.section-gallery .col-album .album {
  position: relative;
  margin-bottom: 20px;
}
.section-gallery .col-album .album .album-link .thumbnail {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.section-gallery .col-album .album .album-link .info {
  padding: 10px 0;
}
.section-gallery .col-album .album .album-link .info .album-title {
  color: black;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.2rem;
  height: calc(2 * 1.2rem);
}
.section-gallery .col-album .album .album-link .info .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-gallery .col-album .album .album-link .info .bottom .date {
  color: #36454F;
  font-size: 0.8rem;
}
.section-gallery .col-album .album .album-link .img-count {
  color: black;
  font-size: 0.7rem;
  position: absolute;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: white;
  top: 5%;
  right: 5%;
}
.section-gallery .col-album .album .album-link:hover .album-title {
  color: #007bd9;
}
@media (max-width: 768px) {
  .section-gallery .col-album .album .thumbnail {
    height: 150px !important;
  }
}

.section-gallery-single .masonry-gallery {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.section-gallery-single .masonry-gallery img {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media (max-width: 768px) {
  .section-gallery-single .masonry-gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}

.section-csr {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}
.section-csr .csr-card {
  margin-bottom: 20px;
}
.section-csr .csr-card .thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.section-csr .csr-card .thumbnail-wrapper .thumbnail {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-csr .csr-card .thumbnail-wrapper .place {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: small;
}
.section-csr .csr-card .thumbnail-wrapper .place .inner {
  display: flex;
  justify-content: start;
  align-items: center;
}
.section-csr .csr-card .thumbnail-wrapper .place .inner i {
  margin-right: 10px;
}
.section-csr .csr-card .info {
  padding: 10px 0;
}
.section-csr .csr-card .info .title {
  margin-bottom: 0;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-height: 1.2rem;
  height: calc(1 * 1.2rem);
}
.section-csr .csr-card .info .date {
  font-size: small;
  color: grey;
}
.section-csr .csr-card .info .date i {
  margin-right: 5px;
  color: grey;
}
.section-csr .csr-card:hover .title {
  color: #007bd9;
}
.section-csr .csr-card:hover .place {
  background-color: #007bd9;
}

.paperclips-section .macy-item {
  border: 2px solid black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=media.css.map */