/*set up font family*/

@font-face {
  font-family: Lato-Light;
  src: url("./../fonts/Lato/Lato-Light.ttf");
}

@font-face {
  font-family: Lato;
  src: url("./../fonts/Lato/Lato-Regular.ttf");
}

body, html, h1, h2, h3, h4, h5, h6 {
  font-family: Lato, Arial, Helvetica, sans-serif;
}

html, body {
  width: 100%;
  background: #f7f8f8;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

.market-sounding-site {
  background-color: #f7f8f8;
  margin: 0px 70px;
}

/* center site contents*/

.site-contents {
  margin: auto;
  width: 70%;
  background-color: #fff;
}

.site-contents .w3-panel {
  margin-bottom: 0;
}

/* page title */

.page-title {
  padding-left: 24px;
}

.w3-container.w3-threequarter.contents {
  padding: 20px 34px;
}

@media only screen and (max-width: 1440px) {
  .site-contents {
    width: 75%;
  }
}

@media only screen and (max-width: 1280px) {
  .site-contents {
    width: 90%;
  }
}

@media only screen and (max-width: 1024px) {
  .site-contents {
    width: 90%;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .site-contents {
    width: 90%;
  }
}

@media only screen and (max-width: 425px) {
  .site-contents {
    width: 100%;
  }
}