body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
}

/* Buttons style */
button {
    display: table;
    width: 130px;
    height: 30px;
    background-color: transparent;
    outline: none;
}
button:focus {outline:0;}
button.color-white {
    border: 2px solid white;
}
button.color-white:hover {
	background-color: white;
    color: #4b4b4b;
    border: solid 2px rgba(75, 75, 75, 0.33);
}
button.color-darkblue {
    border: 2px solid #292a3d;
}
button.color-darkblue:hover {
    background-color: #292a3d;
    color: white;
    border: solid 2px rgba(75, 75, 75, 0.33);
}

button.color-darkgray {
    background-color: #494949;
    color: #FFFFFF;
}
button.color-darkgray:hover {
    background-color: #494949;
    color: #FFFFFF;
}

button > i{
  font-size: 21px;
  padding-right: 10px;
  padding-bottom: 2px;
}
/* End of Button style */

a,
a:hover,
a:visited {
    text-decoration: none;
    color: #333;
}
.np {
    padding: 0px !important;
}
.nm {
    margin: 0px !important;
}
.color-white {
    color: white
}
.color-darkblue {
    color: #292a3d;
}
.text-shadow {
    -moz-text-shadow: 1px 2px 5px black;
    -webkit-text-shadow: 1px 2px 5px black;
    text-shadow: 1px 2px 5px black;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: table-cell;
    width: 100%;
    height: 100%;
    background-color: #757575;
    z-index: 2;
    opacity: 0.5;
    transition: 200ms opacity ease-in;
}
.overlay:hover {
    opacity: 0;
}

hgroup > h1::after {
    content: '';
    display: table;
    width: 100%;
    height: 30px;
    margin-top: 10px;
    margin-bottom: 50px;
    background-image: url('/images/title_line-dark.png');
    background-size: contain;
    background-repeat: no-repeat;
}
hgroup > h1.white::after {
    background-image: url('/images/title_line-white.png');
}
.back {
    position: absolute;
    width: 50px;
    top: 60px;
    left: 1%;
    font-size: 50px;
    opacity: 0.3;
    transition: 1s opacity;
    text-align: center;
    z-index: 1;
}
.back:hover{
  opacity: 1;
}
.back i{
  color: white;
}
@media all and (max-width:768px){
  .back{
    display: none;
  }
}