<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 .video-header-container {
  background: linear-gradient(#72437A 96%, transparent 4%) no-repeat;
  background: -webkit-linear-gradient(#72437A 96%, transparent 4%) no-repeat;
  background: -moz-linear-gradient(#72437A 96%, transparent 4%) no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-section .video-header-container .video-header {
  padding-top: 50px;
  color: #ffffff;
}

.video-section .video-header-container .video-header .title h1 {
  justify-content: center;
  font-size: 300%;
  font-family: 'FbForma-medium';
  text-align: center;
  max-width: 80%;
  margin: 0 auto 30px auto;
  line-height: 1;
}

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

.video-section .video-header-container .video-header .main-video-player .main-video-thumbnail,
.video-section .all-videos .all-vidoes-grid .video-item .small-video-thumbnail {
  position: relative;
}

.video-section .video-header-container .video-header .main-video-player .main-video-thumbnail {
  height: 50vw;
  cursor: pointer;
}

.video-section .video-header-container .video-header .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 .video-header-container .video-header .main-video-player .main-video-thumbnail img.thumbnail {
  width: 100%;
  height: 100%;
}

.video-section .video-header-container .video-header .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 .video-header-container .video-header .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 .header-title {
  width: 70vw;
  max-width: 70vw;
  margin: 30px auto;
  color: #000000;	
  font-family: 'FbForma-medium';	
  font-size: 300%;	
  line-height: 1.2;	
  text-align: center;
}

.video-section .all-videos {
  width: 70vw;
  max-width: 70vw;
  margin: 0 auto 50px auto;
}

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

.video-section .all-videos .all-vidoes-grid .video-item .small-video-thumbnail img.thumbnail { 
  max-width: 100%;
}

.video-section .all-videos .all-vidoes-grid .video-item .small-video-thumbnail .player  {
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
  width: 30px;
}

.video-section .all-videos .all-vidoes-grid .video-item .video-title {
  margin: 5px 0;
  text-align: right;
}

.video-section .all-videos .all-vidoes-grid .video-item .video-title a {
  color: initial;
  font-size: 85%;
}

.btnPlay {
    width: 24px !important;
    height: 24px !important;
    position: absolute;
    top: 10px;
    left: 10px;
}

@media screen and (max-width: 1024px) {
  .video-section .video-header-container .video-header .title h1,
  .video-section .header-title {
    font-size: 150%;
  }

  .video-section .all-videos {
    width: 90vw;
    max-width: 90vw;  
  }

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

  .video-section .video-header-container .video-header .main-video-player .main-video-thumbnail .player {
    position: absolute;
    top: calc(50% - 25px);
    right: calc(50% - 25px);
    width: 50px;
    cursor: pointer;
  }
  #mediaplayer {
        display: inline-block;
  }
  iframe {
        max-width: 90%;
  }
}

/* IE10+ CSS styles */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-section .all-videos .all-vidoes-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .video-section .all-videos .all-vidoes-grid .video-item {
    width: 25%;
    min-width: 170px;
    margin: 0px 0px 50px 0px;
    
  }

  .video-section .all-videos .all-vidoes-grid .video-item .video-title,
  .video-section .all-videos .all-vidoes-grid .video-item .small-video-thumbnail {
    padding-right: 10px;
    padding-left: 10px;
  }

  .video-section .all-videos .all-vidoes-grid .video-item .small-video-thumbnail .player {
    height: 35px;
    left: 15px;
  }

  .video-section .video-header-container .video-header .main-video-player .main-video-thumbnail .player {
    height: 110px;
  }

  .video-section .all-videos .all-vidoes-grid .video-item .video-title a {
    color: inherit;
  }
}

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