html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* Sticky Footer
 * @author https://css-tricks.com/couple-takes-sticky-footer/
 */
#wrapper {
  min-height: 100%;
  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -464px;
}

.push,
#footer {
  height: 464px;
}

/*
 * Micro clearfix
 * @author http://nicolasgallagher.com/micro-clearfix-hack/
 */

header:before,
header:after,
section:before,
section:after,
.container:before,
.container:after,
.row:before,
.row:after,
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

header:after,
section:after,
.container:after,
.row:after,
.cf:after {
    clear: both;
}

/** For IE 6/7 only **/
header,
section,
.container,
.row,
.cf {
    *zoom: 1;
}

/* Normalise headers */
h1,h2,h3,h4,h5 {
    font-weight: normal;
}

/* Reponsive Image */
.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100% \9;
}

/* Lists */
.list-inline-center {
   list-style: none;
   padding: 0;
   text-align: center;
}

.list-inline-center li {
   display: inline-block;
}

.list-inline {
   list-style: none;
   padding: 0;
   text-align: left;
    margin: 0;
}

.list-inline li {
   display: inline-block;
}

.list-inline-center.pipe-delimited li:after,
.list-inline.pipe-delimited li:after {
    content: "|";
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0 0.5rem;
}

.list-inline-center.pipe-delimited li:last-child:after,
.list-inline.pipe-delimited li:last-child:after {
    content: "";
    margin: 0;
    padding: 0;
}

.list-unstyled,
.list-unstyled ul,
.list-arrow,
.list-arrow ul {
    padding: 0;
}

.list-arrow li,
.list-unstyled li {
    position: relative;
    list-style: none;
}

.list-arrow li:before {
    font-family: "theme_icons";
    position: relative;
    display: inline-block;
    content: "\e902";
    padding-right: 1rem;
    font-size: 1.2rem;
}

/* Placeholder styles */
::-webkit-input-placeholder {
    font-family: "metropolisregular", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: right;
    color: #738f9e;
    opacity: 1;
}

:-moz-placeholder {
    font-family: "metropolisregular", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: right;
    color: #738f9e;
    opacity: 1;
}

::-moz-placeholder {
    font-family: "metropolisregular", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: right;
    color: #738f9e;
    opacity: 1;
}

:-ms-input-placeholder {
    font-family: "metropolisregular", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: right;
    color: #738f9e;
    opacity: 1;
}

/* Forms */
input {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ddd;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Custom Animations */
.pulse,
.pulse-caption {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.pulse-transition {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}