@font-face {
  font-family: "gotham";
  src:url("/css/application/fonts/gotham-black-webfont-webfont.eot"),
      url("/css/application/fonts/gotham-black-webfont-webfont.ttf") format("truetype"), 
      url("/css/application/fonts/gotham-black-webfont-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "gotham";
  src:url("/css/application/fonts/gotham-book-webfont-webfont.eot"), 
      url("/css/application/fonts/gotham-book-webfont-webfont.ttf") format("truetype"), 
      url("/css/application/fonts/gotham-book-webfont-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "gotham";
  src:url("/css/application/fonts/gotham-bold-webfont-webfont.eot"), 
      url("/css/application/fonts/gotham-bold-webfont-webfont.ttf") format("truetype"), 
      url("/css/application/fonts/gotham-bold-webfont-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}


body {
	background-color: rgb(243, 245, 247);
	font-family: "gotham", sans-serif;
}

.container-logo {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	background-color: rgb(243, 245, 247);
	padding: 0 0 0 0;
	transition: height 0.3s ease-out 0s;
}

.title_header {
	width: 100%;
    height: 50px;
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
    background-color: rgb(49, 96, 148);
}

.logo {
	width: 100%;
	padding: 0 45px;
	height: 130px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 50px 0px;
}

.logo img {
	margin: 23px 0 0 0;
	width: 120px;
}

#outer_content_wrapper {
	margin-top: 225px;
}

h2 {
	color: rgb(29, 53, 91);
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.09375rem;
}

h3 {
	color: rgb(29, 53, 91);
	text-transform: uppercase;
	letter-spacing: 0.075rem;
}

label {
	color: rgb(29, 53, 91);
	text-transform: uppercase;
	letter-spacing: 0.075rem;
	font-weight: normal;
}

.btn-info {
  color: rgb(29, 53, 91);
  background-color: rgb(253, 182, 27);
  border-color: rgb(253, 182, 27);
  border-radius: 0.3125rem;
  border-width: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, color 0.3s ease 0s;
}

.btn-info:hover, 
.btn-info:active, 
.btn-info:focus,
.btn-info.active {
  color: rgb(253, 182, 27);
  background-color: rgb(29, 53, 91);
  border-color: rgb(253, 182, 27);
  border-radius: 0.3125rem;
  border-width: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, color 0.3s ease 0s;
}

a {
	color: rgb(29, 53, 91);
}

a:hover {
	color: rgb(29, 53, 91);
	text-decoration: underline;
}

@media (max-width: 992px){ 
  .title_header {
  	display: none;
  }

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

  .logo {
  	height: 100px;
  }

  .logo img {
  	margin: 13.5px 0 0 0;
  	width: 104px;
  }

  #outer_content_wrapper {
	margin-top: 120px;
  }
}