

/* new hamburger menu css begin */


body {
   padding: 0px;
   margin: 0px;
   font-size: 20px;
   min-height: 200vh;
   font-family: 'Cabin', sans-serif;
}


/* whole website menu */
.site-header .navbar-nav {
  color: #660066;
}
.nav-link{
  color: #000000;

}
.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

/* End whole website menu */

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    background: black;
    z-index: -1;
}

#main-menu {
    display: block;
    height: 100px;
    width: 100px;
    background: #3D0E61;
    margin: 0px;
    z-index: 9;

}

#main-menu ul {
    max-width: 800px;
    width: 100px;
    height: 100px;
    margin: 0px auto;
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9;

}

#main-menu li {
   list-style-type: none;
   font-size: 2rem;
}

#main-menu a {
   color: #B9FAF8;
   font-size: 1.5rem;
   text-decoration: none;
}

#main-menu a:hover {
   text-decoration: underline;
}

#hamburger-input{
   display: none;
}

#hamburger-menu {
   position: fixed;
   top: 20px;
   left: 20px;
   width: 50px;
   height: 50px;
   display: none;
   border: none;
   padding: 0px;
   margin: 0px;
   font-family: 'Cabin', Sans-serif;
   background: linear-gradient(
      to bottom,
      #3D0E61, #3D0E61 20%,
      white 20%, white 40%,
      #3D0E61 40%, #3D0E61 60%,
      white 60%, white 80%,
      #3D0E61 80%, #3D0E61 100%
   );
}

#hamburger-menu #sidebar-menu {
      visibility: hidden;
      position: fixed;
      top: 0;
      left: -250px;
      width: 200px;
      height: 100px;
      background-color: #3D0E61;
      transition: 0.3s;
      padding: 0px 10px;
      box-sizing: border-box;
}

#hamburger-menu h3 {
      color: #B9FAF8;
      font-size: 2.2rem;
}

#hamburger-menu ul {
      padding-left: 0px;
}

#hamburger-menu li {
      list-style-type: none;
      line-height: 3rem;
}

#hamburger-menu a {
      color: #B9FAF8;
      font-size: 1.3rem;
      text-decoration: none;
}

#hamburger-menu a:hover {
      text-decoration: underline;
}

#hamburger-input:checked + #hamburger-menu #sidebar-menu {
      visibility: visible;
      left: 0;
}

#hamburger-input:checked ~ .overlay{
      visibility: visible;
      opacity: 0.4;
}

@media screen and (max-width: 750px) {
  #main-menu {
     display: none;
  }
  #hamburger-menu {
     display: inline;
  }
}
/* new hamburger menu css begin */







.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  height:auto;
  padding-bottom: 25px;

}

.article-title {
  color: #444444;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}
/* end page layout css*/

.video_content {
  position: relative;
  bottom: -80px;
  margin-top: 10px;

}



/*Slide box on web page */
 {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */

.slideshow-container {
  /*max-width: 1000px;*/
  position: relative;
  overflow: hidden;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(255,255,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


/*End slide box on web page*/
