html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input,
hr,
figure,
article {
  margin: 0;
  padding: 0;
  outline: none;
}

article,
figure {
  display: block;
}

body {
  font: 15px/normal 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  padding: 0;
  background-color: #000000;
  width: 100%;
}

.clearfix:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

b {
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif
}

.table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.table .table-row {
  display: table-row;
}

.table .table-cell {
  display: table-cell;
  vertical-align: middle;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.page-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #000000;
}


/* Header start here */

.header {
  padding: 0 32px;
  background-color: #2357d7;
  position: relative;
  z-index: 10;
}

.header .brand-name{
  float: left;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 34px;
  width: 220px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'Roboto Condensed', sans-serif
}

.header .brand-name a{
  color: #ffffff;
}

.menuWrapper{
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -15px;
  cursor: pointer;
  display: none
}
.menuWrapper > div {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
}

.header .nav {
  float: right;
}


.header .navigation {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  float: left;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.50px;
  padding:25px 20px;
}
.header .navigation-wrapper{
    list-style:none;
    margin: 0;
    padding: 0;
}
.header .navigation-menu {
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.50px;
  float: left;
}
.header .navigation-menu > a{  
    padding:25px 15px;
    display:block;
    color: rgba(255, 255, 255, 0.8);
}
.header .navigation-menu .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    display: none;
    list-style:none;
    background-color: #2357d7;
    min-width: 160px;
    font-size: 12px;
}
.header .navigation-menu:hover .sub-menu{
    display:block;
}
.header .navigation-menu .sub-menu  a{  
    padding:15px 25px;
    display:block;
    color: rgba(255, 255, 255, 0.8);
}
.header .navigation:focus,
.header .navigation.active,
.header .navigation-menu:focus a,
.header .navigation-menu.active a{
  color: #ffffff;
}

.header .navigation:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Header end here */