* {
  margin: 0;
  padding: 0;
}

body{
  font-family:"Arial", "Calibri","Helvetica", sans-serif;
  background-color: #f4f4f4;
  overflow-x: hidden;
  margin: 0;
}

.navbar{
  background-color: #444;
  overflow: hidden;
  height: 65px;
}

.navbar a{
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar ul{
  margin: 8px 0 0 0;
  list-style: none;
}

.navbar a:hover{
  background-color: #ddd;
  color: #000;
}

.side-nav{
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  opacity: 0.9;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.side-nav a{
  padding: 10px 10px 10px 30px;
  text-decoration: none;
  font-size: 22px;
  color: #ccc;
  display: block;
  transition: 0.3s;
}

.side-nav a:hover{
  color: :#fff;
}

.side-nav .btn-close{
  position: absolute;
  top: 0;
  right: 22px;
  font-size: 36px;
  margin-left: 50px;
}

.quals ul{
  list-style: none;
}

.quals li{
  position: relative;
  display: block;
  list-style: none;
  padding: 15px;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  max-width: 200px;

}

#main{
  transition: margin-left 0.5s;
  padding: 10px;
  overflow: hidden;
  width: 100%;
}

.footer{
  position: absolute;
  padding: 10px 0;
  bottom: 0;
  background-color: #444;
  display: block;
  color: white;
  width: 100%;
  height: 20px;
  text-align: center;
  font-size: 14px;
}

.logo {
  fill: black;
}

.main_logo {
  position: absolute;
  z-index: 2;
  display: block;
  margin: 0;
  text-align: center;
}

.main_bkgrd {
  position: absolute;
  background: url('./img/background.jpg') no-repeat center center/cover;
  width: 100%;
  height: 90%;
  margin: 0;
}

.video-container {
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}


svg:hover .logo {
  fill:red;
  transition: all 0.5s;
}

.z_path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: dash 3s linear forwards;
}

.m_path {
  animation-delay:300s;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: dash 3s 3s linear forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*For screens less than 568px*/
@media(max-width: 320px) {
  .navbar-nav{display: none;}
  svg.logo {
    transform: scale(0.25);
    display: block;
    margin: 0;
  min-height: 600px;
  }
  .main_logo {
    text-align: left;
  }
  #main {padding: 0;}
}

@media(min-width:568px) {
  /*.open-slide{display: none;}*/

}
