
@font-face {
  font-family: 'Lato';
  src: url("/css/application/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; 
}
Lato-Bold.ttf
@font-face {
  font-family: 'Lato-Bold';
  src: url("/css/application/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; 
}
@font-face {
  font-family: 'Lato-Italic';
  src: url("/css/application/fonts/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; 
}

body {
    color: #424242;
    font-size: 14px;
    line-height: 18px;
    font-family: Lato,Helvetica,Helvetica Neue,Helvetica,Arial,sans-serif;
    background-color: #FFF;
}

.container {
}

.container-logo {
  padding: 0 0;
  background-color: #141414;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,.15);
  position: fixed;
  top: 0;
  left: 0;
  height: 163px;
  z-index: 100;
  width: 100%;
}

.title_header {
  height: 40px;
  background-color: #141414;
  border-bottom: 1px solid hsla(0,0%,100%,.2);
  position: relative;
  width: 100%;
}


.logo {
    padding: 0 30px;
    width: 100%;
}

.logo img {
    width: 133px;
    margin: 2px 0 0 5px;
}

.title_header {
    height: 40px;
    color: #474747;
}

#outer_content_wrapper {
    margin: 200px auto 0 auto;
    max-width: 90%;
}

h2 {
    margin-top: 0;
    font-size: 42px;
    font-weight: bold;
    color: #474747;
}
h3 {
    font-size: 32px;
}

.btn-info {
    color: #FFF;
    background-color: #59558e;
    border-color: #59558e;
    text-transform: uppercase;
    border-radius: 0px;
    transition: background .3s ease,color .3s ease,border .3s ease;
}

.btn-info:hover, 
.btn-info:focus, 
.btn-info:active, 
.btn-info.active {
    background-color: #362c66;
    border-color: #362c66;
    border-radius: 0px;
    transition: background .3s ease,color .3s ease,border .3s ease;
}

.text-primary {
    color: #59558e; 
}

a { 
    color: #59558e; 
}

a:hover { 
    color: #362c66; 
    text-decoration:none; 
}

.question-block {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    width: 50%;
}

.question-block .text-center {
    text-align: left;
}

.question-block .col-md-6 {
    width: 100%;
}

.question-block .col-md-offset-3 {
    margin-left: 0px;
}

@media screen and (max-width: 1010px) {

    .title_header {
        display: none;
    }    
    .container-logo {
        height: 60px;
    }

    .logo {
        text-align: center;
    }  

    .logo img {
        height: 45px;
        margin: 5px 0 0 0;
    }
    #outer_content_wrapper {
        margin: 80px auto 0 auto;
    }   
}