<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('./header.css');
@import url('./footer.css');
@import url('./sliders.custom.css');
@import url('./common-style.css');

.video-section {
  width: 100%;
}

.video-section .archived-news-header h1 {
    font-size: 400%;
    font-family: 'FbForma-medium';
    color: #3072fe;
    text-align: center;
    margin-bottom: 50px;
}

.video-section .archived-news-header h1 {
    font-size: 225%;
    font-family: sans-serif;
    font-weight: bold;
}

.video-section .main-video-player {
  margin-bottom: 100px;
}

.video-section .main-video-player iframe.main-video {
  width: 100%;
  height: 50vw;
  display: none;
}

.video-section .main-video-player .main-video-thumbnail {
  position: relative;
  height: 50vw;
  z-index: 1;
  cursor: pointer;
}

.video-section .main-video-player .main-video-thumbnail img.thumbnail {
  width: 100%;
  height: 100%;
}

.video-section .main-video-player .main-video-thumbnail:hover:after {
  content: '';
  position: absolute;
  background-color: rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
}

.video-section .main-video-player .main-video-thumbnail .player {
  position: absolute;
  top: calc(50% - 55px);
  right: calc(50% - 55px);
  width: 110px;
  cursor: pointer;
  display: block;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;  
  z-index: 999;
}

.video-section .main-video-player .main-video-thumbnail:hover .player {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1) 
}

.video-section .main-video-player .main-video-title {
  font-size: 150%;
  text-align: center;
  margin-top: 30px;
  font-family: 'FbForma-medium';
}
.video-section .main-video-player .main-video-title.en {
    font-size: 125%;
    font-family: sans-serif;
    text-align: left;
    direction: ltr;
}

.video-section .videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  margin-bottom: 50px;
}

.video-section .videos-grid .video .video-title {
  padding: 10px;
}

.video-section .videos-grid .video .video-title.en {
    text-align: left;
    direction: ltr;
}

.video-section .videos-grid .video .video-title a {
    font-family: 'FbForma-medium';
    font-size: 120%;
    color: #000000;
}
.video-section .videos-grid .video .video-title.en a {
    font-family: sans-serif;
    font-size: 105%;
    
}

.video-section .videos-grid .video:hover .video-title a {
  color: #3072fe;
}

.video-section .videos-grid .video .video-thumbnail img {
  max-width: 100%;
  width: 100%;
}
.video-thumbnail img,
.video-thumbnail img:hover,
.video-title,
.video-title:hover,
.btnPlay,
.btnPlay:hover,
.video img,
.video imh:hover {
    cursor: pointer;
}

.video {
    position: relative;
}

.btnPlay {
    width: 64px !important;
    height: 64px !important;
    position: absolute;
    top: 75px;
    left: 130px;
}

@media screen and (max-width: 767px) {
    .archived-news-section .archived-news-grid {
    grid-template-columns: 1fr;
  }

  .archived-news-section .archived-news-grid .article .article-img img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }
}


@media screen and (max-width: 1024px) {
  .video-section .main-video-player .main-video-thumbnail .player {
    position: absolute;
    top: calc(50% - 25px);
    right: calc(50% - 25px);
    width: 50px;
    cursor: pointer;
  }

  .video-section .videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 30px;
  }

  .video-section h1.video-header {
    font-size: 200%;
    margin-bottom: 25px;
  }

  .video-section .main-video-player .main-video-title {
    font-size: 150%;
  }

  .video-section .main-video-player {
    margin-bottom: 70px;
  }
  .btnPlay {
        top: calc(50% - 64px);
        left: calc(50% - 32px);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-section .videos-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .video-section .videos-grid:after {
    content: '';
    flex: auto;
  }

  .video-section .videos-grid .video {
    width: 25%;
    margin-bottom: 50px;
  }

  .video-section .videos-grid .video .video-thumbnail,
  .video-section .videos-grid .video .video-title {
    padding-right: 15px;
    padding-left: 15px;
  }

  .video-section .videos-grid .video .video-title a {
    color: inherit;
  }
  
  .video-section .main-video-player .main-video-thumbnail .player {
    height: 110px;
  }
}

/* IE10+ CSS styles in small screens */
@media screen and (max-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-section .videos-grid .video {
    width: 50%;
    margin-bottom: 30px;
  }
}</pre></body></html>