﻿/* COLORS */
/* BASICS */
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: #f9f8f1;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #586a5c;
  text-align: center;
}
a {
  text-decoration: none;
  border: none;
  outline: none;
  color: #5e2a14;
  transition: color 0.2s;
}
strong {
  font-weight: 700;
}
.floatLeft {
  float: left;
  display: inline;
}
.floatRight {
  float: right;
  display: inline;
}
.clearIt {
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* CONTENT AREA */
.content {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}
.content .intro {
  max-width: 710px;
  margin: 0 auto;
}
.content .logo {
  width: 300px;
  height: 93px;
  margin: 20px auto;
  background-image: url('http://wearetrue.com/newquist/images/logo.png');
  background-size: contain;
}
.content .contact {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #c8cdc4;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
}
.content .container {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 0 10px 10px 10px;
  float: left;
  display: inline;
}
.content .container img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 544px) {
  /* BASICS */
  * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  /*html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	}
	*/
  /* CONTENT AREA */
  .content {
    min-width: 320px;
  }
  .content .contact span {
    display: block;
    line-height: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .content .container {
    width: 100%;
    float: none;
    display: block;
    padding-bottom: 0;
  }
}