/*
Better Box Model
by Paul Irish
http://www.paulirish.com/2012/box-sizing-border-box-ftw/
*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
Reset CSS
by Eric Meyer
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/*--- HOMEPAGE ---*/
.hp-featured {
  position: relative;
  margin: 0 auto 20px;
  width: 100%;
}
@media all and (min-width: 400px) {
  .hp-featured {
    float: left;
    width: 44%;
    margin: 0 3% 5%;
  }
}
@media all and (min-width: 767px) {
  .hp-featured {
    width: 47%;
    margin: 0 0 5% 0;
  }
}

.hp-featured img {
  max-width: 405px;
  width: 100%;
  height: auto;
}

.hp-featured .caption {
  background: rgba(255, 255, 255, 0.8);
  color: #002c5c;
  font-size: 84%;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  padding: 3% 20% 3% 3%;
  line-height: 120%;
}
@media all and (min-width: 1025px) {
  .hp-featured .caption {
    font-size: 130%;
  }
}

.hp-featured a:hover .caption {
  background: rgba(255, 255, 255, 0.9);
}

.hp-featured .caption .fa {
  padding: 4% 3%;
  position: absolute;
  top: 0;
  right: 0;
}

/* carousel */
.carousel-wrapper {
  position: relative;
}
@media all and (min-width: 480px) {
  .carousel-wrapper {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 1025px) {
  .carousel-wrapper {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .carousel-wrapper {
    background: #ccc;
  }
}

#carousel img {
  width: 100%;
  height: auto;
}

#carousel .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 16px 5px;
  height: auto;
}
@media all and (min-width: 480px) {
  #carousel .caption {
    height: auto;
    padding: 10px 30px 5px;
  }
}
@media all and (min-width: 1025px) {
  #carousel .caption {
    padding: 20px 0px;
  }
}
@media screen and (max-width: 640px) {
  #carousel .caption {
    position: relative;
    padding-bottom: 30px;
    background: #ccc;
  }
}

#carousel h1 {
  font-size: 145%;
  color: #002c5c;
  font-weight: 500;
}
@media all and (min-width: 1025px) {
  #carousel h1 {
    font-size: 235%;
  }
}
@media screen and (max-width: 640px) {
  #carousel h1 {
    font-size: 170%;
    line-height: 1.1;
  }
}

#carousel p {
  color: #000;
  font-size: 16px;
  padding: 5px 5px 5px 0px;
  float: left;
}
@media all and (min-width: 1025px) {
  #carousel p {
    font-size: 21px;
    padding: 10px 20px 10px 0px;
  }
}
@media screen and (max-width: 640px) {
  #carousel p {
    font-size: 18px;
    line-height: 1.3;
  }
}

#carousel .carousel-btn {
  float: left;
  background: #414042;
  color: #fff;
  padding: 8px;
  text-transform: uppercase;
  font-size: 12px;
  display: none;
}
@media all and (min-width: 1025px) {
  #carousel .carousel-btn {
    font-size: 16px;
    padding: 12px;
    display: block;
  }
}

#carousel .carousel-btn:hover {
  background: #002859;
}

#carousel .owl-buttons {
  position: absolute;
  top: 40%;
}

.carousel-wrapper .owl-dot {
  display: inline-table;
  margin: 0px 3px 10px;
}

.carousel-wrapper .owl-dot span {
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  display: block;
  border: 1px solid #002c5c;
}
@media all and (min-width: 767px) {
  .carousel-wrapper .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-width: 0;
  }
}

.carousel-wrapper .owl-dot.active span {
  background: #002c5c;
}

.carousel-nav {
  position: absolute;
  top: 38%;
  z-index: 500;
  width: 100%;
  display: none;
}
@media all and (min-width: 768px) {
  .carousel-nav {
    display: block;
  }
}

.video-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}
.video-overlay span {
  background: url(../images/icon-play-outline.png) center center/100% auto no-repeat;
  width: 50px;
  height: 50px;
  display: block;
}
.video-overlay i {
  text-shadow: 0px 3px 3px #000;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.75);
}

.carousel-wrapper .prev {
  position: absolute;
  left: 0;
  cursor: pointer;
}

.carousel-wrapper .next {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.carousel-wrapper .carousel-nav i {
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  font-size: 150%;
  padding: 10px;
}
@media all and (min-width: 767px) {
  .carousel-wrapper .carousel-nav i {
    font-size: 200%;
  }
}

.carousel-wrapper .owl-controls {
  position: absolute;
  bottom: 5px;
  right: 0px;
  height: 20px;
  color: #fff;
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .carousel-wrapper .owl-controls {
    right: 10%;
  }
}

.hp-columns {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hp-columns .ad {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .hp-columns {
    width: 35%;
    float: left;
  }
  .hp-columns .ad {
    margin-bottom: 34px;
  }
  .hp-columns .hp-featured {
    display: block;
    width: 300px;
    height: 250px;
    max-width: 300px;
    margin: 0 0 40px !important;
    text-align: left;
  }
  .hp-columns.column-2 {
    text-align: center;
  }
  .hp-columns.column-2 .hp-featured {
    text-align: left;
    margin: 0 auto 40px !important;
  }
  .hp-columns.column-3 {
    width: 30%;
    text-align: right;
  }
  .hp-columns.column-3 .hp-featured {
    text-align: left;
    float: right;
  }
}
@media screen and (max-width: 550px) {
  .hp-columns {
    float: none;
    display: block;
    width: 287px;
    margin: 0 auto;
  }
  .hp-columns.column-1, .hp-columns.column-2 {
    width: 100%;
  }
  .hp-columns .hp-featured {
    width: 48%;
    float: left;
    margin: 0px 4% 4% 0px;
  }
  .hp-columns .hp-featured:nth-child(even) {
    margin-right: 0;
  }
  .hp-columns .hp-featured img {
    display: block;
  }
  .hp-columns .hp-featured .caption {
    background: #002c5c;
    color: #fff;
    position: relative;
    height: 40px;
    font-weight: normal;
    transition: 0.2s;
  }
  .hp-columns .hp-featured a:hover {
    text-decoration: none !important;
  }
  .hp-columns .hp-featured a:hover .caption {
    background: #00747f;
    border: none !important;
  }
  .hp-columns .ad {
    margin-bottom: 10px;
  }
}

/*@media all and (min-width: 767px) {
	.hp-featured:nth-child(even) {
		margin-left: 5%;
	}
}*/
/* hp-featured */
.blocks-section *, .blocks-section *:before, .blocks-section *:after {
  box-sizing: inherit;
}
.blocks-section .hp-featured {
  display: inline-block;
  width: 43%;
  margin: 0 3% 5%;
  float: none;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .blocks-section .main-featured-column {
    width: 70%;
    float: left;
  }
  .blocks-section .ad-column {
    float: right;
    width: 30%;
  }
  .blocks-section .hp-featured {
    margin-bottom: 35px;
  }
  .blocks-section .hp-featured img {
    height: 250px;
    width: auto;
  }
  .blocks-section .caption {
    height: 65px;
    bottom: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .blocks-section .main-featured-column {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .blocks-section .hp-featured {
    width: auto;
    margin-right: 3.5%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .blocks-section .hp-featured {
    width: 302px;
    margin-right: 4.5%;
    margin-left: 4.5%;
  }
  .blocks-section .hp-columns.column-3 {
    text-align: left;
  }
}
@media screen and (max-width: 550px) {
  .blocks-section .hp-featured .caption {
    height: 45px;
  }
}

@font-face {
  font-family: "StratumBlack";
  src: url("../fonts/Stratum1WebBlack.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/Stratum1WebBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/Stratum1WebBlack.woff2") format("woff2"), url("../fonts/Stratum1WebBlack.woff") format("woff");
}
@font-face {
  font-family: "Stratum";
  src: url("../fonts/Stratum1WebRegular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/Stratum1WebRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/Stratum1WebRegular.woff2") format("woff2"), url("../fonts/Stratum1WebRegular.woff") format("woff");
}
/* All Pages */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #646469;
  font-size: 16px;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 30px;
  color: #002c5c;
  font-family: "Stratum";
  font-weight: bold;
  text-transform: uppercase;
}

h2 {
  font-size: 24px;
  color: #002c5c;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
  height: 0;
}

/* scaling header */
@media screen and (min-width: 768px) {
  #header {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -ms-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
  }
  #header #logo img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header nav a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header.smaller {
    height: 149px;
  }
  #header.smaller #header-top {
    height: 100px;
  }
  #header.smaller #logo {
    padding-top: 17px;
  }
  #header.smaller #logo img {
    width: auto;
    height: 75px;
  }
}
#ieWarning {
  background: red;
  color: #fff;
  padding: 20px;
  font-weight: bold;
  margin: 0;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: red;
  color: #fff;
  text-align: center;
}

/*--- GRID SYSTEM ---*/
.wrapper {
  margin: 0 auto;
  position: relative;
}

/* header*/
#header {
  background: #002859;
}

.social-header {
  background: #999;
  text-align: center;
  padding: 8px 8px 3px;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .social-header {
    display: none;
  }
}

.social-header a {
  color: #fff;
  font-size: 185%;
  margin: 10px;
}

.social-header a:hover {
  color: #feeddf;
}

.countdown {
  margin: 10px auto;
  width: 210px;
}
.countdown.complete {
  display: none;
}
.countdown .clock {
  float: left;
  background: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/icon_clock.png) no-repeat scroll left top/30px auto transparent;
  width: 30px;
  height: 32px;
  margin-right: 6px;
}
.countdown table {
  float: left;
}
.countdown th {
  color: #00747f;
  font-size: 120%;
}
.countdown td {
  padding: 3px 6px;
  font-size: 70%;
  color: #002c5c;
}

.countdown-timer {
  font-size: 120%;
  color: #00747f;
  text-align: center;
  margin: 7px 10px 0px;
}
.countdown-timer.complete {
  margin-top: 10px;
  margin-bottom: 15px;
}
.countdown-timer span {
  color: #002c5c;
  margin: 0 5px;
}

#header-top .countdown-clock {
  color: #fff;
  position: absolute;
  top: 130px;
  right: 58px;
  border-radius: 0 0 4px 4px;
  text-align: center;
}
#header-top .countdown-clock.complete {
  display: none;
}
#header-top .countdown-clock > div {
  display: inline-block;
  margin-left: 0px;
  padding: 0px;
  width: 40px;
}
#header-top .countdown-clock span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 0.9;
}
#header-top .countdown-clock small {
  font-size: 10px;
}
@media screen and (min-width: 767px) {
  #header-top .countdown-clock {
    padding: 6px;
    background: #00747f;
    top: 0;
    right: 0;
  }
  #header-top .countdown-clock span {
    font-size: 20px;
  }
  #header-top .countdown-clock > div {
    width: 42px;
    background: #002c5c;
    padding: 6px 2px;
  }
}
@media screen and (min-width: 1024px) {
  #header-top .countdown-clock {
    right: 3%;
    padding: 8px;
  }
  #header-top .countdown-clock > div {
    width: 50px;
  }
  #header-top .countdown-clock span {
    display: block;
    font-size: 32px;
  }
  #header-top .countdown-clock small {
    font-size: 11px;
  }
}
#header-bar {
  background: #fff;
  min-height: 31px;
  color: #414042;
  padding-top: 0px;
}
#header-bar .date {
  text-transform: uppercase;
  font-size: 18px;
}
#header-bar .top-register {
  display: none;
}
#header-bar .header-left {
  padding: 0px;
  vertical-align: center;
  display: table;
}
#header-bar .header-right {
  padding-top: 12px;
}
@media screen and (max-width: 640px) {
  #header-bar {
    transition: 0.2s;
    min-height: 75px;
  }
  #header-bar .header-left img {
    width: 89px;
    height: 27px;
    margin-left: 5px;
  }
  #header-bar a:hover {
    /* background: $orange-hover;*/
  }
  #header-bar .languages {
    padding-top: 0;
    width: 100%;
  }
  #header-bar .top-register {
    display: block;
    color: #fff;
    float: none;
    padding-top: 2px;
    padding-right: 18px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    padding: 10px 20px;
    background: #002859;
  }
  #header-bar .top-register i {
    font-size: 12px;
    margin-left: 2px;
  }
  #header-bar .header-right {
    width: 100%;
  }
  #header-bar .header-logos {
    border: none;
    padding-left: 5px;
    padding-top: 11px;
    padding-bottom: 0px;
  }
  #header-bar .header-logos:hover {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #header-bar .date {
    text-align: center;
    background: #fff;
    color: #00747f;
    padding: 12px;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #header-bar .header-left {
    text-align: center;
  }
}

#logo {
  margin: 0 auto;
  padding: 20px 22px 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #logo {
    padding-top: 12px;
    padding-bottom: 0px;
  }
}

#logo a {
  display: block;
}

#logo img {
  height: auto;
  max-width: 280px;
  width: auto;
}

.register-btn {
  text-transform: uppercase;
  display: block;
  text-align: center;
  background: #00747f;
}

.volunteer-btn {
  display: none;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0px;
  font-size: 89%;
}
.volunteer-btn i {
  margin-left: 9px;
}
.volunteer-btn a {
  color: #002c5c;
}
.volunteer-btn a:hover {
  color: #454a83;
}

.languages {
  text-align: center;
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 6px;
  float: left;
}
.languages a {
  color: #414042 !important;
  line-height: 1.3;
  margin-left: 2px;
  margin-right: 2px;
}
.languages a:hover {
  text-decoration: underline;
}
.languages a.selected {
  cursor: default;
  opacity: 0.9;
}
.languages a.selected:hover {
  text-decoration: none;
}
@media screen and (min-width: 641px) {
  .languages {
    display: block;
    float: none;
  }
}
@media screen and (min-width: 768px) {
  .languages {
    float: left;
    text-align: left;
    padding-right: 40px;
  }
}

.register-btn:hover {
  background-color: #00747f;
}

#nav li.register-btn a {
  background: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/icon_runner.png) 12px center/26px auto no-repeat;
  color: #fff;
  display: inline-block;
  line-height: 48px;
  padding: 0px 17px 0px 43px !important;
}
#nav li.register-btn a:hover {
  background: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/icon_runner.png) 12px center/26px auto no-repeat;
  color: #fff !important;
}

.register-btn i {
  margin-left: 8px;
}

.header-logos {
  opacity: 0.65;
  padding: 6px 20px;
  border-right: 1px solid #ccc;
  display: table-cell;
  vertical-align: middle;
}
.header-logos:hover {
  opacity: 0.85;
}
@media screen and (max-width: 960px) {
  .header-logos {
    border: none;
  }
  .header-logos:not(:first-child) {
    display: none;
  }
}

/* Navigation */
#navbar {
  background: #646469;
}

#nav {
  list-style: none;
  float: none;
  display: none;
}
#nav li {
  text-transform: uppercase;
  float: none;
  position: relative;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
}
#nav li a, #nav li span.top-row {
  color: #fff;
  font-weight: bold;
  display: block;
  line-height: 17px;
  padding: 10px 17px;
  cursor: pointer;
}
#nav li a:hover, #nav li span.top-row:hover {
  color: #002859;
}
@media all and (max-width: 767px) {
  #nav li span.top-row:hover {
    background: none !important;
    cursor: default;
  }
  #nav li a:hover {
    background: none;
  }
}
#nav ul {
  padding-left: 15px;
}
#nav ul li:hover > a {
  background: #454a83;
}
@media all and (max-width: 767px) {
  #nav ul li:hover > a {
    background: none;
  }
}
#nav .sub-collapser {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 25px;
  background-color: transparent;
  position: absolute;
  right: 0px;
  top: 5px;
  cursor: pointer;
  padding-right: 10px;
  width: 100%;
  text-align: right;
}
#nav .sub-collapser i {
  color: #fff;
  font-size: 14px;
}
#nav .sub-collapser .fa-chevron-right {
  padding-left: 3px;
}
#nav .sub-collapser .fa-chevron-down {
  padding-left: 0;
}
#nav .menu-hover {
  background: #454a83;
}

/* Search */
#search {
  position: absolute;
  right: 10px;
  top: 260px;
  background: none;
  border-bottom: 1px solid #fff;
  padding: 0px;
  margin: 0px 0px 0px 20px;
  z-index: 301;
  display: none;
}
#search input {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 100%;
  padding: 2px 6px;
}
#search button {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 110%;
  padding: 0;
}
#search .fa {
  color: #f4f3f3;
}
@media screen and (max-width: 640px) {
  #search {
    top: 250px;
    right: 10px;
  }
}
@media screen and (min-width: 767px) {
  #search {
    top: 10px;
    background: #fff;
    border-bottom: 1px solid #414042;
    width: 215px;
    padding: 0 5px;
  }
  #search input {
    color: #414042;
  }
  #search button {
    float: right;
  }
  #search .fa {
    color: #414042;
  }
}

#search-icon {
  top: 250px;
  right: 10px;
  color: #f4f3f3;
  font-size: 140%;
  line-height: 35px;
  z-index: 300;
  margin: 8px;
  cursor: pointer;
  position: absolute;
}
@media screen and (max-width: 640px) {
  #search-icon {
    top: 232px;
  }
}
@media screen and (min-width: 767px) {
  #search-icon {
    top: -5px;
    color: #414042;
    right: 0;
    font-size: 110%;
  }
}

/*--- MAIN CONTENT AREA ---*/
#content {
  padding: 20px 17px;
  font-size: 100%;
  line-height: 150%;
  font-weight: 300;
}
#content h1 {
  line-height: 2rem;
}
#content h2 {
  margin-bottom: 15px;
  line-height: 132%;
  font-weight: 500;
}
#content h3 {
  margin-top: 20px;
  margin-bottom: 2px;
  color: #002859;
  font-weight: 500;
  font-size: 96%;
}
#content p {
  margin-bottom: 10px;
}
#content a {
  color: #002859;
}
#content a:hover {
  text-decoration: underline;
}
#content .matrix .img-container-left img {
  float: left;
  margin: 0px 16px 20px 0px;
  max-width: 400px;
}
#content .matrix .img-container-right img {
  float: right;
  margin: 0px 0px 20px 16px;
  max-width: 400px;
}
#content .matrix .img-container-center {
  text-align: center;
  padding: 10px 0px;
}
#content .matrix .img-container-center img {
  max-width: 400px;
}
#content .matrix .img-container-full {
  text-align: center;
  padding: 10px 0px;
}
#content .matrix .img-container-full img {
  max-width: 100%;
}
#content .matrix .matrix-body table th {
  text-align: left;
  font-weight: bold;
  padding-right: 20px;
}
#content .matrix .matrix-body table td {
  padding-right: 20px;
}
#content .matrix div.qa h2 {
  cursor: pointer;
  outline: none;
}
#content .matrix table.ambassador {
  margin-top: 20px;
}
#content .matrix table.ambassador td {
  vertical-align: top;
}
#content .matrix td.ambassador-photo {
  width: 146px;
}
#content .matrix td.ambassador-photo img {
  max-width: 146px;
  margin-right: 10px;
}

.subheader .wrapper {
  padding: 0px 24px;
}

.subheader a:hover {
  color: #002c5c;
}

.col-main form {
  margin: 10px 0px 20px;
}

.col-main input[type=text], .col-main input[type=password] {
  border: 1px solid #cccccc;
  background: #fff;
  padding: 8px;
  font-size: 16px;
  color: #999;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  margin-right: 10px;
}

.col-main input[type=submit] {
  border: 0;
  border-radius: 0;
  background: #00747f;
  padding: 8px 13px;
  font-size: 16px;
  color: #ffffff;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.col-main input[type=submit]:hover {
  background: #1e988a;
}

.col-main img {
  max-width: 100%;
  height: auto;
}

.col-main h4 {
  background: #002c73;
  color: #fff;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  padding: 8px;
}

.col-main .video-container, #content .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.col-main .video-container iframe, .col-main .video-container object, .col-main .video-container embed, #content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* footer */
.signup {
  padding: 20px 12px;
  background: #ccc;
}
.signup .button {
  margin: 0px auto;
  display: block;
  color: #002c5c;
  background-color: #eaeaea;
  padding: 12px 24px;
  transition: color 0.2s linear, background 0.2s linear, border-color 0.2s linear, text-shadow 0.2s linear;
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 300px;
  font-weight: 700;
  font-size: 1.25rem;
  border: 1px solid #002859;
}
.signup .button:hover {
  background: #fff;
}

/* Search Results */
#search-results h2 {
  margin: 20px 0px 3px;
}

.col-sidebar {
  width: 300px;
  margin-top: 30px;
  margin-left: -8px;
}
.col-sidebar img {
  margin-bottom: 25px;
}

.hub-widget {
  background: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/bg_stripe_footer.png);
  text-align: center;
  margin-bottom: 44px;
}

.hub-widget .logo {
  max-width: 250px;
  height: auto;
  margin: 20px auto 18px;
}

.hub-widget-img {
  border: 9px solid #fff;
  margin: 0px 12px;
  max-width: 276px;
}

.hub-widget-caption {
  background: #fff;
  color: #002c5c;
  text-align: left;
  margin: -6px 12px 0px;
  padding: 4px 12px 17px;
  font-size: 110%;
}

.hub-widget-caption i {
  color: #002859;
  font-size: 120%;
}

.hub-widget table {
  width: 90%;
  margin: 28px 5% 21px;
}

.hub-widget td, .hub-widget th {
  width: 50%;
  text-align: center;
}

.hub-widget th {
  font-size: 190%;
  color: #fff;
  line-height: 106%;
}

.hub-widget td {
  font-size: 93%;
  color: #002859;
}

.hub-widget-btn {
  display: block;
  background: #00747f;
  color: #002c5c !important;
  padding: 22px 0px;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}

.hub-widget-btn strong {
  color: #fff;
}

.hub-widget-btn:hover {
  text-decoration: none !important;
  background: #1e988a;
}

/*--- FOOTER ---*/
#sponsor_footer {
  background: #002859;
  color: #d7d9e2;
  text-align: center;
  font-size: 70%;
  padding: 34px 25px 22px;
}

#city_logos {
  margin: 30px 0px 14px;
}

#city_logos img {
  height: 35px;
  width: auto;
}

#parner_logos img {
  height: 50px;
  width: auto;
  max-width: 350px;
}

#sponsor_footer a {
  margin: 0px 5px;
  display: inline-block;
}

#sponsor_footer a:hover {
  opacity: 0.85;
}

#sponsor_footer a.active {
  outline: none;
}

footer {
  background: #414042;
  color: #002859;
  text-transform: uppercase;
  font-size: 80%;
  line-height: 140%;
  padding: 0px 0px 13px;
  text-align: center;
}

footer .back-to-top {
  text-align: center;
  margin-bottom: 10px;
}

footer .back-to-top i {
  color: #fff;
  background: rgba(0, 40, 89, 0.6);
  cursor: pointer;
  padding: 9px 14px;
  font-size: 120%;
  line-height: 100%;
}
footer .back-to-top i:hover {
  background: #002859;
}

footer .col {
  line-height: 150%;
  margin-top: 20px;
  color: #fff;
}

footer .col.col3 {
  text-align: none;
  padding: 20px 10px 0 20px;
}

.footer-logo img {
  max-width: 100%;
  margin-bottom: 0px;
}

footer .col3 a {
  margin-right: 10px;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #bdbece;
}

footer h4 {
  margin-bottom: 15px;
}

.about-box img {
  display: none;
}

footer .social-footer {
  margin-bottom: 10px;
  padding-top: 20px;
}

footer .social-footer a {
  font-size: 350%;
  margin: 0 10px;
}

footer .social-footer a:hover i {
  color: #bdbece;
}

/*--- SUBPAGES ---*/
.subheader {
  background: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/bg_stripe.png) repeat #eaebf1;
  padding: 34px 0px 28px;
  color: #989ab2;
  font-size: 88%;
}

.subheader h1 {
  margin-bottom: 8px;
}

.subheader a {
  color: #989ab2;
}

.subheader .current {
  color: #002c5c;
}

/* course map */
.smartmap-mapcanvas {
  height: 450px;
  margin-bottom: 30px;
  clear: both;
  background-image: url(https://s3-us-west-1.amazonaws.com/lamarathon.com/_template-images/course-map-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.smartmap-mapcanvas.loaded {
  background: transparent;
}

#map-marker-options {
  background-color: #eeeeee;
  border: 3px solid #666666;
}
#map-marker-options span {
  display: inline-block;
  padding: 5px 13px;
  cursor: pointer;
  float: left;
  font-size: 15px;
}
#map-marker-options span.show-markers {
  color: #ffffff;
}

#map-markers-route {
  background-color: rgba(0, 44, 92, 0.1);
}
#map-markers-route.show-markers {
  background-color: #002c5c;
}

#map-markers-landmark {
  background-color: rgba(0, 116, 127, 0.1);
}
#map-markers-landmark.show-markers {
  background-color: #00747f;
}

#map-markers-water {
  background-color: rgba(9, 44, 116, 0.1);
}
#map-markers-water.show-markers {
  background-color: #092C74;
}

#map-markers-medical {
  background-color: rgba(160, 21, 13, 0.1);
}
#map-markers-medical.show-markers {
  background-color: #a0150d;
}

#map-markers-shuttle {
  background-color: rgba(27, 150, 94, 0.1);
}
#map-markers-shuttle.show-markers {
  background-color: #1b965e;
}

#map-markers-clif {
  background-color: rgba(160, 82, 13, 0.1);
}
#map-markers-clif.show-markers {
  background-color: #a0520d;
}

#map-markers-leaderboard {
  background-color: rgba(81, 81, 81, 0.1);
}
#map-markers-leaderboard.show-markers {
  background-color: #515151;
}

#map-markers-entertainment {
  background-color: rgba(157, 44, 102, 0.1);
}
#map-markers-entertainment.show-markers {
  background-color: #9D2C66;
}

#map-markers-activations {
  background-color: rgba(242, 98, 29, 0.1);
}
#map-markers-activations.show-markers {
  background-color: #F2621D;
}

/* charities */
#goal-thermometer-container {
  float: none;
  width: 235px;
  margin: 0 auto;
  padding-left: 18px;
  overflow: hidden;
}
@media all and (min-width: 500px) {
  #goal-thermometer-container {
    float: right;
    width: 200px;
    margin: 0;
    padding: 0;
  }
}

#goal-thermometer-container h3 {
  margin: 0px 20px 10px;
}

.logo-matrix {
  margin: 26px auto 24px;
  text-align: center;
}
.logo-matrix h4 {
  margin: 16px auto 20px;
}
.logo-matrix .logo-img {
  padding: 0 20px 10px;
  display: inline-block;
}
.logo-matrix .logo-img img {
  display: inline-block;
  max-width: 200px;
  margin: 10px auto;
  vertical-align: middle;
}
.logo-matrix .matrix-body img {
  margin: 20px 0 5px !important;
}

/* our team */
a.employee {
  display: inline-block;
  padding: 10px 10px 12px;
  text-align: center;
  width: 200px;
  vertical-align: top;
}
a.employee img {
  border: 1px solid #002c5c;
}
a.employee span {
  display: block;
}
a.employee span.employee-name {
  color: #002c5c;
  font-size: 18px;
}
a.employee span.employee-job-title {
  font-size: 14px;
}
a.employee:hover {
  background-color: #f3f3f7;
  text-decoration: none !important;
}

div.employee-individual img.employee-photo {
  border: 1px solid #002c5c;
}
@media screen and (min-width: 600px) {
  div.employee-individual img.employee-photo {
    float: left;
  }
}
@media screen and (min-width: 600px) {
  div.employee-individual div.employee-info {
    margin-left: 274px;
  }
}
div.employee-individual div.employee-info h2 {
  margin-bottom: 6px !important;
}
div.employee-individual div.employee-info h3 {
  margin: 0px 0px 12px !important;
}

/* news items */
.news-item {
  background: #eaeaea;
  padding: 30px;
  margin-bottom: 20px;
}
.news-item .img-container-full img {
  width: 100%;
  height: auto;
}
.news-item a:not(.btn):hover {
  color: #002c5c !important;
  text-decoration: none !important;
}
.news-item .btn {
  width: 100% !important;
  background: #002859;
  color: #fff !important;
  padding: 8px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  text-align: center;
}
@media all and (min-width: 1025px) {
  .news-item .btn {
    font-size: 18px;
    padding: 12px;
  }
}
.news-item .btn:hover {
  background: rgba(0, 40, 89, 0.9);
  text-decoration: none !important;
}

.sidebar.box {
  background: #002859;
  padding: 18px 22px;
  margin-bottom: 20px;
}
.sidebar.box h5 {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sidebar.box ul {
  margin-left: 15px;
}
.sidebar.box li {
  list-style: disc;
  line-height: 20px;
  margin-bottom: 7px;
  color: #fff !important;
}
.sidebar.box li a {
  color: #fff !important;
}

.news-buttons {
  width: 100%;
  margin: 8px 0px 12px;
}
.news-buttons > div {
  width: 49.5%;
  display: inline-block;
}
.news-buttons .btn-right {
  text-align: right;
}

.btn.blue-button {
  background: #002c5c;
  color: #fff !important;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  padding: 12px;
  text-transform: uppercase;
}
.btn.blue-button:hover {
  background: #292f70;
  text-decoration: none !important;
}

.pagination {
  text-align: right;
  font-size: 140%;
}
.pagination hr {
  height: 1px;
  border: 0;
  background: #eaeaea;
  margin-bottom: 14px;
}
.pagination span, .pagination a {
  margin-left: 4px;
  margin-right: 4px;
  font-weight: 500;
}
.pagination a:hover {
  color: #292f70 !important;
  text-decoration: none !important;
}

/* faq */
div#faq hr {
  margin: 22px 0 18px;
}

div#faq h3 {
  font-size: 110%;
  margin-bottom: 6px;
  margin-top: 20px;
}

div#faq h3:first-child {
  margin-top: 0px;
}

div#faq h2 {
  cursor: pointer;
  outline: none;
}

div#faq h2:hover {
  color: #454a83;
}

.faq {
  background: #f3f3f7;
  padding: 20px;
}

.faq .fa {
  font-size: 20px;
  margin-right: 6px;
  width: 16px;
}

.faq .fa {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.faq.open .fa {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.faq-content {
  padding: 0px 20px 20px;
}

/* fancybox customization */
/* we want the close icon inside the container */
.fancybox-wrap {
  z-index: 9999;
}

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.zoom {
  text-align: center;
  padding: 10px 0px;
}
.zoom img {
  max-width: 400px;
}
@media screen and (max-width: 480px) {
  .zoom img {
    max-width: 260px;
  }
}

footer .col4 img {
  margin-bottom: 15px;
}

/* large mobile query */
@media screen and (max-width: 640px) {
  #partner_logos img {
    max-width: 80%;
    height: auto;
    margin: 0px auto 20px !important;
  }

  .ad img {
    max-width: 100%;
    height: auto;
  }
}
/* ipad & small desktop query */
@media all and (min-width: 767px) {
  body {
    padding-top: 244px;
  }

  /* header */
  #header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 500;
  }

  #header-top {
    background: #002859;
    background-size: 100% auto;
    background-position: center bottom;
    height: 154px;
  }

  #header .wrapper {
    overflow: visible;
  }

  .social-header {
    position: fixed;
    top: 100px;
    left: 0px;
    z-index: 600;
    padding: 0;
  }

  .social-header a {
    display: block;
  }

  .header-right {
    position: absolute;
    right: 0;
    top: 0;
  }

  .countdown-timer {
    margin-top: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    float: left;
  }
  .countdown-timer.complete {
    margin-right: 193px;
  }

  .countdown-timer span {
    display: inline-block;
  }

  .countdown {
    float: left;
    margin-top: 5px;
    margin-right: 176px;
  }

  .register-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
  .register-btn:hover {
    background-color: rgba(0, 40, 89, 0.8);
    color: #fff !important;
  }

  .volunteer-btn {
    position: absolute;
    right: 20px;
    top: 55px;
    padding: 10px 0px;
  }

  .register-btn a {
    font-size: 120%;
  }

  /* navigation */
  #navbar {
    padding-left: 50px;
    height: 41px;
  }

  #nav {
    display: block;
    height: 40px;
  }
  #nav .register-btn {
    float: right;
  }

  #nav ul ul {
    border-top: 1px solid #ccc;
  }

  #nav li {
    position: relative;
    float: left;
  }

  #nav li a,
#nav li span.top-row {
    font-size: 70%;
    padding: 12px 10px;
    display: block;
  }

  /*--- DROPDOWN ---*/
  #nav ul {
    background: #f3f3f7;
    list-style: none;
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding-bottom: 25px;
    min-width: 188px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #d9d9df;
    padding-left: 0;
  }

  #nav ul li {
    float: none;
    display: block;
  }

  #nav ul a {
    white-space: nowrap;
    padding: 12px 23px 0px 23px !important;
    font-size: 85% !important;
    text-transform: none;
  }

  #nav li:hover ul {
    left: 0;
    margin-top: -1px;
    overflow: visible;
  }

  #nav li:hover ul a {
    color: #002859;
  }

  #nav ul li:hover > a {
    background: none;
  }

  #nav li:hover ul li a:hover {
    color: rgba(0, 40, 89, 0.7);
    background: none;
  }

  #nav li ul li ul {
    display: none;
  }

  #nav li ul li:hover ul {
    display: block;
    margin-left: 185px;
    position: absolute;
    margin-top: -30px;
    padding-bottom: 15px;
    /* background: $orange; */
  }

  .sub-collapser {
    display: none !important;
  }

  /* content area */
  #content {
    padding: 30px 24px 30px 24px;
  }

  .col-sidebar {
    float: right;
    width: 250px;
    margin-top: 0;
    margin-left: 0;
  }

  .col-sidebar .ad {
    margin-bottom: 40px;
  }

  .col-sidebar img {
    width: 100%;
    height: auto;
  }

  .col-main {
    float: left;
    padding-right: 32px;
    width: 65%;
  }

  .staff .col-main {
    width: 70%;
  }

  .staff .col-sidebar {
    width: 150px;
    float: left;
  }

  /* footer */
  footer {
    text-align: left;
    padding: 0px 10px 43px;
  }

  #city_logos img, #partner_logos img {
    height: auto;
  }

  footer .col {
    float: left;
    line-height: 190%;
    font-size: 95%;
  }

  footer .col3 {
    text-align: left;
    width: 220px;
  }

  footer .col4 {
    width: 150px;
  }

  footer .col5 {
    width: 450px;
  }

  footer h4 {
    display: block;
  }

  footer .social-footer {
    margin-top: 0px;
  }

  footer .social-footer a:last-child {
    margin-right: 0;
  }

  .about-box {
    background: #1e988a;
    padding: 15px;
    margin: 0px 20px;
    text-align: center;
  }
  .about-box h4 {
    margin-bottom: 0;
  }

  .about-box img {
    display: block;
    margin: 13px auto 0px;
    width: 100%;
    height: auto;
  }
}
/* just iPad */
@media screen and (min-width: 767px) and (max-width: 1025px) {
  #nav li.register-btn a {
    line-height: 41px;
  }

  .volunteer-btn {
    top: 45px;
  }

  .social-header a {
    font-size: 150%;
    margin: 8px;
  }

  .subheader {
    padding-left: 39px;
  }

  .col-main {
    padding-left: 39px;
  }

  #header-bar {
    padding-left: 60px;
  }

  #logo img {
    max-height: 115px;
    max-width: 450px;
  }

  /*
  #search-icon {
  	display: none !important;
  	font-size: 100%;
  	line-height: 25px;
  }
  #search {top: -3px; }
  #search input {font-size: 70%;}
  #search button {font-size: 100%;}
  */
  /* homepage */
  #carousel .caption {
    padding-left: 63px;
  }

  /* staff */
  .staff .col-main {
    width: 77%;
  }

  /* sidebar */
  .hub-widget .logo {
    max-width: 230px;
  }

  .hub-widget-btn {
    font-size: 90%;
  }

  /* footer */
  footer .col4 {
    width: 39%;
    padding-left: 53px;
    margin-bottom: 70px;
  }

  footer .col.col3 {
    text-align: left;
  }

  footer .social-container {
    display: block;
    width: 100%;
    text-align: center !important;
    padding-top: 0;
  }

  footer .social-footer {
    margin-top: 0px;
  }

  footer .social-footer a {
    font-size: 300%;
  }

  footer .social-footer a:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  /*#search {
  	display: block;
  	float: right;
  	position: relative;
  	top: -5px;
  }
  */
}
/* large mobile query */
@media screen and (min-width: 800px) {
  #nav li span.top-row {
    display: block;
  }

  .footer-logo-carousel {
    max-width: 780px;
    margin: 30px auto;
  }
}
/* medium desktop query */
@media all and (min-width: 1025px) {
  .wrapper {
    max-width: 990px;
  }

  #navbar {
    height: 49px;
  }

  #nav {
    height: 46px;
  }
  #nav .register-btn {
    margin-right: 35px;
  }

  #nav li a,
#nav li span.top-row {
    font-size: 92%;
    padding: 12px;
    padding: 16px 14px;
  }

  #nav li.register-btn a {
    line-height: 49px;
  }

  #logo {
    left: 0;
  }

  #logo img {
    max-height: 125px;
    max-width: 450px;
  }

  /* content */
  .col-main {
    width: 640px;
  }

  .col-sidebar {
    width: 300px;
  }

  /* footer */
  footer .col3 {
    text-align: left;
    width: 220px;
  }

  footer .col4 {
    width: 230px;
  }

  footer .col5 {
    width: 500px;
  }
}
/* large desktop query */
@media all and (min-width: 1280px) {
  .wrapper {
    max-width: 1180px;
    margin: 0 auto;
  }

  #nav {
    margin-left: -35px;
  }
  #nav li a, #nav li span.top-row {
    padding: 16px 20px;
  }
  #nav li.register-btn a {
    width: 196px;
    font-size: 120%;
    background-size: 30px auto;
    padding-left: 63px;
    background-position: 20px center;
  }
  #nav li.register-btn a:hover {
    background-size: 30px auto;
    background-position: 20px center;
    color: #fff !important;
  }

  /*
  #search-icon {
  	display: none;
  }
  */
  /* content */
  .col-main {
    width: 830px;
  }

  /* footer */
  footer .col3 {
    width: 24%;
  }

  footer .col4 {
    width: 28%;
  }

  footer .col5 {
    width: 41.66666666%;
  }
}
.footer-links a {
  text-transform: none;
  font-size: 16px;
  line-height: 1.8;
}
.footer-links h4 {
  color: #ccc;
  text-transform: none;
  font-size: 24px;
}

.footer-logo-carousel .pt {
  padding-top: 45px;
}
.footer-logo-carousel .pt20 {
  padding-top: 32px;
}
.footer-logo-carousel .item {
  display: table-cell;
  overflow: hidden;
  height: 90px;
  vertical-align: middle;
}
.footer-logo-carousel img {
  height: auto;
  /*
  max-width: 100%;
  width: auto !important;
  height: auto;
  max-height: 110px;

  */
  margin-left: auto;
  margin-right: auto;
}
.footer-logo-carousel img.medium {
  max-height: 90px;
  margin-top: 12px;
}
.footer-logo-carousel img.small {
  max-height: 80px;
  margin-top: 22px;
}
.footer-logo-carousel img.x-small {
  max-height: 70px;
  margin-top: 28px;
}
.footer-logo-carousel h5 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 25px;
}
.footer-logo-carousel .owl-dot {
  display: inline-table;
  margin: 12px 3px 10px;
}
.footer-logo-carousel .owl-dot span {
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  display: block;
  border: 1px solid #002c5c;
}
@media all and (min-width: 767px) {
  .footer-logo-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-width: 0;
  }
}
.footer-logo-carousel .owl-dot.active span {
  background: #646469;
}
.footer-logo-carousel .owl-prev {
  position: absolute;
  left: -40px;
  top: 24px;
  cursor: pointer;
  font-size: 40px;
}
.footer-logo-carousel .owl-next {
  position: absolute;
  right: -40px;
  top: 24px;
  cursor: pointer;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .footer-logo-carousel .owl-nav {
    display: none;
  }
}

.pdf-container {
  margin: 20px auto;
  max-width: 100%;
  width: 800px;
}
@media screen and (max-width: 767px) {
  .pdf-container {
    border: 3px solid #999;
  }
  .pdf-container embed {
    overflow-y: scroll;
  }
}

.btn-green {
  border-color: #20aa97;
  background: #20aa97;
  color: white !important;
  text-decoration: none !important;
  width: 100%;
  font-weight: bold;
  padding: 24px;
  font-family: Roboto;
  border-radius: 7px;
  width: 290px;
  display: block;
  margin: 20px auto;
  font-size: 18px;
}

.btn-green:hover {
  background: #002c5c;
}

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