/* ----------------------------------------------------------------
links
----------------------------------------------------------------- */
.grid-container {
  max-width: 960px;
  margin: auto;
  padding: 100px 20px;
}
.grid-container .box {
  border: 2px solid #ddd;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .grid-container .box {
    margin-bottom: 10px;
  }
}
.grid-container .box h2 {
  position: relative;
  font-size: 1.2em;
}
.grid-container .box h2 a {
  display: block;
  padding: 0.5em;
  background: #f5f5f5;
  text-decoration: none !important;
}
.grid-container .box h2 a:hover {
  opacity: 0.7;
}
.grid-container .box h2 a::after {
  content: '\f105';
  float: right;
  font-size: 12px;
  font-family: 'FontAwesome';
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 40%;
  color: #009dcc;
}
.grid-container .box h2 a[href*='http']::after {
  content: '\f2d2';
}
.grid-container .box ul {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 1em 1em 1em 2em;
}
.grid-container .box ul li::before {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-left: -1em;
  width: 1em;
  display: inline-block;
  color: #009dcc;
  font-size: 12px;
}
.grid-container .area ul {
  display: flex;
  flex-wrap: wrap;
}
.grid-container .area ul li {
  flex: 0 0 50%;
}

@media screen and (min-width: 767px) {
  .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-areas: "home home" "sell buy" "faq owner" "sumstock area" "privacy contact" "satei links" "sitemap .";
    grid-gap: 20px;
  }

  .home {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: home;
  }

  .sell {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: sell;
  }

  .buy {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    grid-area: buy;
  }

  .faq {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: faq;
  }

  .owner {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
    grid-area: owner;
  }

  .sumstock {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-area: sumstock;
  }

  .area {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
    grid-area: area;
  }

  .privacy {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
    grid-area: privacy;
  }

  .contact {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
    grid-area: contact;
  }

  .satei {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
    grid-area: satei;
  }

  .links {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
    grid-area: links;
  }

  .sitemap {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
    grid-area: sitemap;
  }
}
