@charset "UTF-8";
.ebkbnr {
  max-width: 1000px;
  margin: 0 auto;
}
div.rightcont p {
  margin-top: 10px;
}
.video-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #cbcbcb;
  padding: 30px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px #f5f5f5;
}
.video-wrapper:hover {
  border: 1px solid #1eabf2;
  border-bottom: 1px solid #1eabf2 !important;
}
.container .video-wrapper:nth-child(1) {
  border-bottom: none;
}
.video-thumbnail {
  width: 40%;
}
.video-content {
  width: 60%;
}
h2.video-heading {
  font: 24px/1.25 'Zoho_puvi_Bold';
  text-align: center;
  margin: 0px 0px 50px 0px;
}
.video-content h3 {
  font-size: 23px;
  margin: 0px 0px 15px 0px;
}
span.heading-span {
    font-family: 'Zoho_Puvi_Regular';
    font-size: 21px;
    line-height: 1.5;
}
.overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .95);
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.7s ease;
  z-index: 100000000;
  display: none;
}
.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  margin: 0 auto;
  z-index: 100000000000000000;
  align-items: center;
  justify-content: center;
}
.popup iframe {
  width: 70vw;
  height: 80vh;
}
.cancel {
  position: absolute;
  cursor: pointer;
  background: url(../images/popup-close.png) no-repeat;
  z-index: 10000;
  top: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
}
button.popup-button {
  border: none;
  background: none;
  cursor: pointer;
}
.video-content h3:hover {
    text-decoration: underline;
    cursor: pointer;
}
@media only screen and (max-width:1024px) {
  .video-thumbnail {
    margin-right: 20px;
  }
  .video-content {
    margin-left: 20px;
  }
  .popup iframe {
    width: 75%;
    height: 450px;
  }
}
@media only screen and (max-width:768px) {
  .popup iframe {
    width: 80%;
    height: 350px;
  }
}
@media only screen and (max-width:600px) {
  .video-wrapper {
    flex-wrap: wrap;
  }
  .video-thumbnail {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 25px;
  }
  .video-content {
    width: 100%;
    margin-left: 0px;
  }
  .popup iframe {
    width: 85%;
    height: 200px;
  }
  .cancel {
    transform: scale(0.75);
  }
}
@media only screen and (max-width:375px) {
  .copyright {
    font-size: 12px;
  }
}