* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body {
  font-family: 'tahoma', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: $black;
  margin: 0;
  min-width: 940px;
}
img {
  max-width: none;
}
a {
  color: #000;
  transition: all 0.2s ease-out;
}
a:hover {
  color: #000;
}
.underline {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid $pink;
}
h1 {
  font-size: 42px;
  font-weight: 800;
  padding: 24px 0 0 0;
  margin: 0;
  line-height: 1em;
  text-transform: uppercase;
}
h2 {
  font-size: 42px;
  font-weight: 200;
  margin: 24px 0 48px 0;
}
h3 {
  font-size: 18px;
  text-align: center;
}
p {
  margin: 12px 0;
  line-height: 1.4em;
}
.uppercase {
  text-transform: uppercase;
}
.center {
  text-align: center;
}
.small {
  font-size: 12px;
}
.mini {
  font-size: 11px;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.medium {
  font-size: 21px;
}
.large {
  font-size: 24px;
  line-height: 32px;
}
.gray {
  color: $gray;
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: 940px;
  position: relative;
  padding: 0;
  overflow: visible;
}
.container-yellow {
  background: #fed430;
}
.container-yellow .container {
  padding: 48px 0;
  text-align: center;
}
.container-white .container {
  padding: 48px 0;
}
.container-gray {
  background: #f0f0f0;
  padding: 48px 0;
}
.container-gray .container {
  padding: 48px 0;
}
.menu {
  background: #000;
  color: #fff;
  padding: 12px 0;
}
.btn {
  background: #f15330;
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 21px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}
.btn .thin {
  font-weight: 100;
}
.btn:hover {
  background: #ff7d00;
  color: #fff;
}
