@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300);
@media (min-width: 768px) {
  .no-pad {
    padding: 0 !important;
  }
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: 'Material Icons', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-style: normal;
}

@media (min-width: 1200px) {
  .container {
    width: 1300px;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 767px) {
  body > .container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .row {
    margin: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

p {
  font-size: 15px;
}

header, main, footer {
  margin: auto;
}

a.button:hover {
  text-decoration: none;
  color: #fff;
}

.button {
  min-height: 40px;
  line-height: 40px;
  padding: 0 35px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 150px;
  text-align: center;
  font-size: 14px;
  border: none;
}

@media (max-width: 767px) {
  .button {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

.button:focus {
  outline: none;
}

.button.wide {
  width: 100%;
}

.button.blue {
  background: #3d4f77;
  transition: background 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.blue:hover {
  background: #4b6192;
}

.button.dark-blue {
  background: #232d43;
  transition: background 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.dark-blue:hover {
  background: #313f5e;
}

.button.outline {
  background: transparent;
}

.button.outline.dark-blue {
  border: 1px solid #232d43;
  color: #232d43;
  transition: background 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.outline.dark-blue:hover {
  background: rgba(35, 45, 67, 0.05);
}

.button.outline.blue {
  border: 1px solid #3d4f77;
  color: #3d4f77;
  transition: background 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.outline.blue:hover {
  background: rgba(61, 79, 119, 0.05);
}

.button.outline.white {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: background 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.outline.white:hover {
  background: rgba(255, 255, 255, 0.05);
}

form input {
  width: 100%;
  border: none;
  padding: 9px 10px;
  font-size: 16px;
  transition: all 195ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

form input:focus, form input:active {
  outline: none;
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.6);
}

form label {
  width: 100%;
  overflow: hidden;
}

.typeahead {
  overflow: visible;
}
.tt-query { /* UPDATE: newer versions use tt-input instead of tt-query */
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999;
}

.tt-menu { /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
    width: 422px;
    margin-top: 12px;
    padding: 8px 0;
    background-color: #000;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
    padding: 3px 20px;
    font-size: 18px;
    line-height: 24px;
}

.tt-suggestion.tt-is-under-cursor { /* UPDATE: newer versions use .tt-suggestion.tt-cursor */
    color: #fff;
    background-color: #0097cf;

}

.tt-suggestion p {
    margin: 0;
}

form input, form button, form select, form textarea {
  color: #333;
  resize: none;
}

form input.wide, form button.wide, form select.wide, form textarea.wide {
  width: 100%;
}

form input[disabled], form input:disabled, form button[disabled], form button:disabled, form select[disabled], form select:disabled, form textarea[disabled], form textarea:disabled {
  color: #999;
}

form input option[disabled], form input option:disabled, form button option[disabled], form button option:disabled, form select option[disabled], form select option:disabled, form textarea option[disabled], form textarea option:disabled {
  color: #999;
}

form input[type=radio] {
  width: 25px;
}

form textarea {
  height: 150px;
  padding: 10px;
}

form select {
  -moz-appearance: none;
  width: 100%;
  margin-right: -20px;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  border: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  padding-left: 14px;
  background: #FFFFFF url(../image/select-down-small.jpg) no-repeat right;
  background-size: 40px 40px;
}

@media (max-width: 1024px) {
  form select {
    background: #FFFFFF url(../image/select-down.jpg) no-repeat right;
    background-origin: content-box;
    background-size: 40px;
  }
}

@media (max-width: 1024px) and (max-width: 768px) {
  form select {
    background: #FFFFFF url(../image/select-down.jpg) no-repeat right;
    background-origin: content-box;
    background-size: 40px;
  }
}

form select::-ms-expand {
  display: none;
}

form select:focus {
  outline: none;
}

main .hero {
  height: 200px;
}

main .hero.home {
  height: 600px;
}

main .container {
  width: 100%;
  background: #cbcbcb;
}

main .container > section:first-child {
  margin-top: -120px;
  text-align: center;
}

@media (max-width: 767px) {
  main .container > section:first-child {
    margin-top: -80px;
  }
}

main .container > section:first-child .actions a:first-child {
  margin-right: 15px;
}

main .container section {
  background: #FFFFFF;
  margin-bottom: 30px;
  box-shadow: 0 0 2px 2px rgba(100, 100, 100, 0.2);
  padding: 20px 70px;
}

main .container section.thanks-message {
  padding: 20px 5px;
}

@media (max-width: 767px) {
  main .container section {
    padding: 20px;
  }
}

main .container section.no-pad {
  padding: 20px 35px;
}

main .container section.no-bg {
  background: transparent;
  box-shadow: none;
}

main .container section h1 {
  font-weight: bold;
  font-size: 22px;
  color: #232d43;
}

main .container section h2 {
  font-weight: bold;
  font-size: 18px;
  color: #232d43;
}

main .container section hr {
  width: 100px;
  border-color: #cbcbcb;
}

main .container section .actions {
  margin: 40px 0 20px 0;
}

main .container section.dark-blue {
  background: #232d43;
  color: #fff;
  padding: 0;
}

main .container section.blue {
  background: #3d4f77;
  color: #fff;
  padding: 0;
}

@media (max-width: 767px) {
  main .container section p {
    text-align: left;
  }
}

a {
  text-decoration: underline;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

img.wide {
  width: 100%;
  margin: auto;
}

.white {
  background: #FFFFFF;
}

.dark-blue {
  background: #232d43;
}

.light-grey {
  background: #cbcbcb;
}

ul.links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb {
  text-transform: uppercase;
  background: none;
  padding-top: 20px;
  padding-left: 0;
}

.breadcrumb a {
  text-decoration: none;
  color: #9B9B9B;
}

i.material-icons {
  font-size: 18px;
  vertical-align: middle;
  padding-left: 5px;
  margin-right: -10px;
}

.full-width {
  width: 100%;
  height: auto;
}

.auto {
  width: auto !important;
}

.shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.left {
  float: left;
}

.right {
  float: right;
}

img.right {
  margin: 3px 0 10px 15px;
}

img.left {
  margin: 0 15px 10px 0;
}

button:focus, button:active {
  outline: none;
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.6);
}

span.small {
  vertical-align: middle;
}

.gallery {
  padding-top: 20px;
  /* fluid 5 columns */
}

.gallery img {
  display: none;
}

.gallery .grid-sizer,
.gallery figure {
  padding: 8px;
  width: 25%;
}

@media (max-width: 767px) {
  .gallery .grid-sizer,
  .gallery figure {
    width: 50%;
  }
}

.country-title {
  font-weight: bold;
  color: #3d4f77;
  font-size: 24px;
}

.country-title a {
  text-decoration: none;
}

.faqs {
  text-align: left;
}

.faqs p:first-line {
  font-weight: bold;
}

.gallery {
  display: none;
}

.g-recaptcha > div {
  margin: auto;
}

@media (max-width: 320px) {
  .g-recaptcha {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    margin-left: -20px;
  }
}

.flash {
  display: block;
  padding: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  background: #98cbde;
}

.flash.error {
  background: #f03;
}

header {
  min-height: 100px;
}

header .logo {
  height: 100px;
  line-height: 100px;
}

header .logo img {
  height: auto;
  max-width: 100%;
}

@media (max-width: 767px) {
  header .logo img {
    padding-left: 10px;
  }
}

header .cta-container {
  height: 100px;
  line-height: 100px;
  text-align: right;
}

@media (max-width: 991px) {
  header .cta-container {
    display: none;
  }
}

@media (min-width: 991px) {
  header .cta-container {
    display: block !important;
  }
}

header .cta-container .button {
  height: 62px;
  line-height: 62px;
}

@media (min-width: 426px) and (max-width: 1024px) {
  header .cta-container {
    margin-left: -20px;
  }
}

@media (max-width: 425px) {
  header .cta-container {
    text-align: center;
  }
}

nav {
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  padding: 0 12px;
}

nav ul li a {
  display: inline-block;
  line-height: 100px;
  height: 100px;
  color: #232d43;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 425px) {
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    line-height: 45px;
    height: 45px;
    width: 100%;
  }
}

.menu button {
  margin-top: 30px;
  color: #fff;
  background: #232d43;
  border: none;
  text-align: center;
  padding: 0;
  width: 40px;
  height: 40px;
}

.menu button i {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

@media (max-width: 991px) {
  .nav-container {
    display: none;
  }
}

@media (min-width: 991px) {
  .nav-container {
    display: block !important;
  }
}

.sub-nav-container {
  z-index: 1;
  margin-top: -60px;
  margin-left: -40px;
  background: #F9F9F9 !important;
}

@media (max-width: 1024px) {
  .sub-nav-container {
    margin-left: 8.33333333%;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .sub-nav-container {
    margin-left: 0;
  }
}

.sub-nav-container .sub-navigation ul li {
  width: 100%;
}

.sub-nav-container .sub-navigation ul li a {
  min-height: 35px;
  line-height: 17px;
  display: block;
  text-decoration: none;
  width: 100%;
  height: auto;
}

.hero {
  height: 600px;
  background: #212121;
  margin-bottom: 18px;
  background: url(../image/hero-banner.jpg);
}

.hero .row {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero h2 {
  text-transform: none;
  color: #fff;
  text-align: center;
}

.hero form {
  text-align: center;
  margin: 30px 0 40px 0;
}

.hero form label {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}

.hero form .forename, .hero form .surname {
  text-align: left;
  width: 270px;
  display: inline-block;
  margin-right: 10px;
}

.hero form .submit {
  display: inline-block;
}

@media (max-width: 767px) {
  .hero form .submit {
    width: 270px;
    margin-left: -10px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero form .submit {
    margin-top: 15px;
  }
}

.hero p {
  color: #fff;
  text-align: center;
}

.hero p a {
  text-decoration: underline;
  color: inherit;
}

main .container .split {
  padding: 0;
}

@media (min-width: 768px) {
  main .container .split > div:first-child {
    padding-left: 0;
  }
  main .container .split > div:last-child {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  main .container .split div {
    padding: 0;
  }
}

main .container .cta {
  color: #fff;
  height: 260px;
  text-align: center;
}

@media (max-width: 767px) {
  main .container .cta {
    height: 320px;
  }
}

main .container .cta .cta-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 600;
  padding: 0 55px;
}

main .container .cta .cta-content .actions {
  margin-top: 20px;
}

main .container .cta .cta-content img {
  margin-bottom: 20px;
}

main .container .cta .cta-content p {
  font-size: 16px;
}

@media (min-width: 768px) {
  main .container .cta .cta-content.wide {
    padding: 0 140px;
  }
}

@media (max-width: 767px) {
  main .container .cta .cta-content.wide {
    padding: 0 15px;
  }
}

main .container .cta .cta-content.wide p {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  margin: 15px 0;
}

main .container .cta h2 {
  margin: 0;
  padding-bottom: 10px;
  color: #fff;
}

main .container .cta.bg {
  background: url(../image/soldiers-cta.jpg);
  background-size: cover;
}

.search {
  background: #EFEFEF;
  padding-bottom: 100px;
}

.search h1 {
  font-size: 24px;
  color: #9B9B9B;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1;
}

.search h1 span {
  color: #232d43;
}

.search .your-search {
  color: #ffffff;
  padding: 0 20px 40px 20px;
}

.search .your-search .show-refine {
  display: none;
}

@media (max-width: 767px) {
  .search .your-search {
    margin-bottom: 20px;
    padding-bottom: 0;
  }
  .search .your-search .show-refine {
    display: inline-block;
    float: right;
    font-size: 32px;
    margin-top: -2px;
  }
  .search .your-search .refine-form {
    display: none;
    padding-bottom: 40px;
  }
  .search .your-search .refine-form.active {
    display: block;
  }
}

.search .your-search h2 {
  margin: 30px 0;
  font-size: 24px;
}

.search .your-search button, .search .your-search a {
  margin-top: 20px;
}

.search .your-search label {
  text-transform: uppercase;
  font-size: 13px;
}

.search .result-count {
  font-weight: bold;
  padding-bottom: 20px;
  color: #232d43;
}

.search .card {
  background: #FFFFFF;
  box-shadow: 0 0 2px 2px rgba(100, 100, 100, 0.2);
  padding: 15px 20px;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .search .card {
    margin: 20px -30px 20px -30px;
  }
}

@media (max-width: 786px) {
  .search .card {
    text-align: center;
  }
}

.search .card h3 {
  font-weight: bold;
  color: #3d4f77;
  margin-bottom: 5px;
}

.search .card p {
  margin-bottom: 0;
}

.search .card .actions {
  height: 100px;
  text-align: center;
}

@media (min-width: 1024px) {
  .search .card .actions {
    text-align: right;
  }
}

.search .card .actions .content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search img.card {
  padding: 3px;
  box-shadow: 0 3px 1px 0 rgba(100, 100, 100, 0.2);
}

.photograph-details {
  padding-bottom: 60px;
}

.photograph-details .head {
  margin-bottom: 20px;
  padding: 30px 30px 0 15px;
}

.photograph-details .head h1 {
  line-height: 48px;
  font-size: 36px;
  color: #232d43;
  display: inline-block;
  width: auto;
  margin: 0;
}

.photograph-details .head .actions {
  padding: 16px 0 0 0;
  margin-left: -15px;
  text-align: right;
}

.photograph-details .head .actions a {
  text-transform: uppercase;
}

.photograph-details .head .actions a i {
  margin-right: 2px;
}

.photograph-details .content p {
  font-weight: 400;
  font-size: 14px;
}

.photograph-details .card img {
  margin: auto;
}

@media (max-width: 767px) {
  .photograph-details {
    text-align: center;
  }
  .photograph-details .head .actions {
    text-align: center;
    margin-left: 0;
  }
  .photograph-details .content {
    text-align: center;
  }
  .photograph-details .content img {
    margin: auto auto 20px auto;
  }
}

.photograph-request-form {
  margin-top: -40px;
  background: #F9F9F9;
}

@media (max-width: 767px) {
  .photograph-request-form {
    margin-top: 20px;
  }
}

.photograph-request-form form {
  padding: 0 40px 60px;
}

@media (max-width: 767px) {
  .photograph-request-form form {
    padding: 0 0 40px 0;
  }
}

.photograph-request-form h1 {
  color: #232d43;
  text-align: center;
  padding-top: 40px;
}

.photograph-request-form p {
  text-align: center;
}

.photograph-request-form textarea {
  border: none;
}

.photograph-request-form input[type=text], .photograph-request-form input[type=email], .photograph-request-form textarea {
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.photograph-request-form label {
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 10px;
}

.photograph-request-form label input, .photograph-request-form label textarea {
  margin-top: 10px;
}

.photograph-request-form .terms p {
  text-align: left;
}

.photograph-request-form .terms input {
  margin: 20px 0;
}

footer {
  background: #212121;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 40px 10px;
  overflow: hidden;
}

footer .copyright {
  padding: 10px 15px 20px 15px;
  color: #cbcbcb;
}

footer .links li a {
  text-decoration: none;
  line-height: 1.8;
  font-size: 14px;
}

/*# sourceMappingURL=main.css.map */
