.videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 40px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.pointsList {
  width: 100%;
}
.video-page-title {
  font-size: 28px !important;
  margin-bottom: 20px;
}
.video-page-breadcrumb {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.video-page-breadcrumb a {
  font-weight: 400;
  color: #7a7a7a;
}
.video-thumbnail {
  width: 100%;
  border-radius: 8px;
}
.video-title {
  color: #111;
  font-size: 15px;
  margin-top: 10px;
  font-weight: 600;
  display: block;
}
.content {
  padding-left: 20px !important;
}

.videolink {
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.view-more {
  border: none;
  outline: none;
  color: #294a84;
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 35px auto;
  display: block;
  cursor: pointer;
}

.search-container {
  border: 1px solid black;
  border-radius: 3px;
  padding: 13px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.video-search {
  outline: none;
  border: none;
  flex: 1;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.search-submit {
  background-color: transparent;
  border: none;
}

.left-nav-item {
  padding: 34px 0;
  border-bottom: 1px solid black;
}
.nav-title {
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.nav-item {
  display: flex;
  gap: 17px;
  font-size: 17px;
  color: black;
  padding: 12px 0;
}
.nav-item input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.video-lightbox-controls {
  display: flex;
  column-gap: 5px;
  justify-content: center;
  position: absolute;
  width: 100%;
  top: 10px;
}
.video-lightbox-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.video-lightbox-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: black;
  top: 0;
  left: 0;
}
.video-lightbox-item-trigger {
  border: 4px solid #1e5593;
  box-shadow: 4px 4px 4px #000;
  background-color: white;
  -webkit-transition: all 1s;
  z-index: 1;
  max-width: 500px;
  width: 80%;
  position: relative;
}
.video-lightbox-item-trigger-button {
  width: 84px;
  height: 84px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-lightbox-image {
  width: 100%;
}
.video-lightbox-trigger-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.video-lightbox-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #fff;
}
.video-lightbox-container iframe {
  height: 400px;
  width: 800px;
}
@media (max-width: 850px) {
  .videos {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .video-lightbox-container iframe {
    max-height: 300px;
    max-width: 600px;
  }
}
@media (max-width: 700px) {
  .content {
    padding: 10px !important;
  }
}
@media (max-width: 600px) {
  .videos {
    display: flex;
    flex-direction: column;
  }

  .video-page-title {
    font-size: 22px !important;
  }
  
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg);}
  100% { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}