body,
html {
  padding: 0;
  margin: 0;
}

body {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #37302c;
  background-color: white;
  font-family: "DMsans", "Raleway", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DMsans-sb", "Raleway", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 18px;
  line-height: 23px;
}

h2 {
  font-size: 36px;
  line-height: 44px;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  line-height: 32px;
}

@media screen and (max-width: 480px) {
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
}

h5 {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 480px) {
  h5 {
    font-size: 18px;
    line-height: 24px;
  }
}

h6 {
  font-size: 22px;
  line-height: 28px;
}

@media screen and (max-width: 480px) {
  h6 {
    font-size: 18px;
    line-height: 26px;
  }
}

* {
  box-sizing: border-box;
  font-family: "DMsans", "Raleway", Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: "DMsans";
  src: url("../fonts/DM_Sans-regular/dmsans-regular-webfont.woff2") format("woff2"),
    url("../fonts/DM_Sans-regular/dmsans-regular-webfont.woff") format("woff"),
    url("../fonts/DM_Sans-regular/DMSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DMsans-sb";
  src: url("../fonts/DM_Sans-semi/dmsans-medium-webfont.woff2") format("woff2"),
    url("../fonts/DM_Sans-semi/dmsans-medium-webfont.woff") format("woff"),
    url("../fonts/DM_Sans-semi/DMSans-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DMsans-b";
  src: url("../fonts/DM_Sans-bold/dmsans-bold-webfont.woff2") format("woff2"),
    url("../fonts/DM_Sans-bold/dmsans-bold-webfont.woff") format("woff"),
    url("../fonts/DM_Sans-bold/DMSans-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

button {
  background: none;
  border: none;
}

.main {
  flex: 1;
}

@media screen and (max-width: 480px) {
  .main {
    margin-top: 80px;
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}

.container--middle {
  max-width: 768px;
}

.container--large {
  max-width: 1480px;
  position: relative;
}

@media screen and (min-width: 1540px) {
  .container--large {
    max-width: 1500px;
  }
}

.container--no-padding {
  padding: 0;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.u-cf {
  content: "";
  display: table;
  clear: both;
}

.vertical-centered img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}