
/* This makes a video responsive */
.videowrapper {
    float: none;
    clear: both;
    width: 90%;
    position: relative;
    padding-bottom: 52.25%;
    padding-top: 25px;
    height: 0;
    margin-bottom: 25px;
    margin-top: 30px;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box {
    border:groove; 
    border-radius: 25px;
    width: 80%; 
    background-color: rgba(13, 13, 13, 0.7);
    opacity: 0.7;
    margin-bottom: 25px;

}

h3 {
    font-family: Jaldi;
    color: #337ab7;
}

h4 {
    font-family: Jaldi;
    display: inline;
    color: #337ab7;
}

textarea, input {
    font-family: Jaldi;
}

label {
    font-family: Jaldi;
    color: #337ab7;
    font-size: 14px;
}

p {
    font-family: Jaldi;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    color: white;
}

p.submit-success {
    font-family: Jaldi;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: 20px;
    color: #00cc00;
}

p.submit-errors {
    font-family: Jaldi;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: 20px;
    color: #ff0000;
}

form {
    margin-left: 10px;
    margin-right: 10px;
}

/* make site take up 100% of screen */
html, body { height: 100%; }

/* make body transparent so the background image in html shows */
html, body, nav { 
    background: none;
    border: none; 
}

.glyphicon {
    color: #337ab7;
}

.navbar-default {
    background: none;
    border: none; 
}

.navbar {
    background: none;
    border: none; 
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 80px; /*brand name padding*/
  font-size: 18px;
  line-height: 20px;
}

.navbar-static-top {
    background: none;
    border: none; 
}

.navbar-header {
    background: none;
    border: none; 
}

.collapse {
    background: none;
    border: none; 
}

.navbar-collapse {
    background: rgba(13, 13, 13, 0.7);
    border: none; 
    margin-bottom: 0px;
}

.navbar-tab {
    background: none;
    border: none; 
    padding-top: 8px; /*tab button padding*/
}

.nav-justified {
    background: none;
    border: none; 
}

/*.nav-justified > li > a:hover{
  background-color: #303136 !important;
    border: medium none;
    border-radius: 0;
    color:#fff;
}*/

.nav > li > a {
    transition: all 0.5s ease 0s;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #fff;
  /*opacity: 0.8;*/
  box-shadow: 
      0 8px 12px 0 rgba(230, 230, 230,0.5), 
      0 12px 16px 0 rgba(230, 230, 230,0.24), 
      0 17px 50px 0 rgba(230, 230, 230,0.19);
}

/*.nav-justified > li:> a:focus{
  background-color: #303136 !important;
    border: medium none;
    border-radius: 0;
    color:#fff;
}

.nav-justified > li:> a:active{
  background-color: #303136 !important;
    border: medium none;
    border-radius: 0;
    color:#fff;
}*/

/*.nav {
    background-color: #000 !important;
}*/

/*.nav>li>a {
    background-color: #666 !important;
    color: #fff;
}*/

.navbar-toggle {
    background: none;
    border: none; 
    transition: all 0.5s ease 0s;
}

.nav-tabs {
    background-color:#161616;
}   

/* make scrollbar appear always */
html {
    overflow: scroll;
}

/* Tick animation */
#check {
  fill: none;
  stroke: #00cc00;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 55;
  stroke-dashoffset: 55;
  animation: draw 2s forwards ease;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  box-shadow: 
      0 8px 12px 0 rgba(230, 230, 230,0.5), 
      0 12px 16px 0 rgba(230, 230, 230,0.24), 
      0 17px 50px 0 rgba(230, 230, 230,0.19);
}


/* Hamburger animation */

.navbar-default .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #337ab7;
  transition: all 0.2s;
}


/*.navbar-toggle {
.top-bar{
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.middle-bar {
    opacity: 0;
}

.bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
}*/

/*.navbar-toggle.collapsed {
    .top-bar{
        transform: rotate(0);
        transform-origin: 10% 10%;
    }
    .middle-bar {
        opacity: 1;
    }
    .bottom-bar {
        transform: rotate(0);
        transform-origin: 10% 90%;
    }
}*/

