/* BASE */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
	font-size: 16px;
}

body {
    background-color: white;
    color: #222;
    font-size: 1em;
	line-height: 1.4;
	font-family: sans-serif;
}

img:-moz-loading {
    visibility: hidden;
}

/* UTILITY */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  content: "";
  display: table;
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

/* FORMS */
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=number],
input[type=search],
input[type=time],
input[type=url],
input[type=email],
textarea,
select {
    border:1px solid #BEBEBE;
    padding: 7px;
    margin:0px;
    -webkit-transition: all 0.20s ease-out;
    -moz-transition: all 0.20s ease-out;
    -ms-transition: all 0.20s ease-out;
    -o-transition: all 0.20s ease-out;
    outline: none;
    width: 100%;
    max-width: 700px;
}

input[type=text]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=email]:focus,
textarea:focus,
select:focus {
    box-shadow: 0px 0px 8px 2px rgba(64, 85, 114, 0.40);
}

input[type="submit"], input[type="button"] {
    padding: 8px 15px 8px 15px;
    border: none;
    background: #000;
    color: #fff;
}

fieldset {
    border: 0 none;
    padding: 0;
    margin: 0;
}

/* GRID */
.container {
    margin: 0 auto;
    padding: 0 1em;
    position: relative;
    width: 100%;
}

/* 0 - 991px */
@media only screen and (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

/* 992px - 1199px */
@media only screen and (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

/* 1200px - 1439px */
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* 1440px+ */
@media only screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}