/* about-intro */

.about-intro {
  display: flex;
  flex-direction: column;
}

@media (min-width: 800px) {
  .about-intro {
    flex-direction: row;
  }
}

/* about-intro-text */

.about-intro-text {
  order: 1;
  background: white;
  padding: 50px 30px 50px 30px;
  color: #707070;
}

.about-intro-text h1 {
  font-size: 18px;
  font-weight: 26px;
  margin-bottom: 20px;
}

.about-intro-text p {
  font-size: 14px;
  font-weight: 23px;
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 300;
}

.about-intro-text .pill-btn {
  font-size: 12px;
  line-height: 2.5;
}

@media (min-width: 360px) {
  .about-intro-text {
    padding: 50px 45px 50px 45px;
  }
}

@media (min-width: 800px) {
  .about-intro-text {
    order: 0;
    width: 50%;
    padding: 110px 40px 200px 40px;
  }

  .about-intro-text h1 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .about-intro-text p {
    font-size: 18px;
    line-height: 30px;
  }

  .about-intro-text .pill-btn {
    display: none;
  }
}

@media (min-width: 1000px) {
  .about-intro-text {
    padding: 110px 80px 200px 80px;
  }
}

@media (min-width: 1282px) {
  .about-intro-text {
    padding-left: calc((100vw - 1280px) / 2 + 80px);
  }
}

/* about-intro-map */

.about-intro-map {
  order: 0;
  background: #0CD459;
  color: white;
  padding: 30px 30px 30px 30px;
}

.about-intro-map img {
  width: 80%;
  display: block;
  margin: 20px auto 40px auto;
  cursor: pointer;
}

@media (min-width: 360px) {
  .about-intro-map {
    padding: 30px 45px 30px 45px;
  }
}

.about-intro-map dl {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
}

.about-intro-map dd {
  width: 30%;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  order: 0;
}

.about-intro-map dt {
  width: 30%;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
  order: 1;
}

@media (min-width: 800px) {
  .about-intro-map {
    width: 50%;
    position: relative;
  }

  .about-intro-map img {
    width: 100%;
  }

  .about-intro-map dl {
    max-width: 300px;
    position: absolute;
    bottom: 60px;
    left: 45px;
  }
}

@media (min-width: 1282px) {
  .about-intro-map {
    padding-right: calc((100vw - 1280px) / 2 + 40px);
  }
}


/* about-facts */

.about-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
  background: #383838;
  color: white;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
  padding: 40px 15px 20px 15px;
}

.about-facts li {
  width: 50%;
  max-width: 250px;
  padding: 6px;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 800px) {
  .about-facts {
    max-width: 100%;
    justify-content: space-between;
    padding: 60px 30px 60px 30px;
  }

  .about-facts li {
    width: 25%;
    font-size: 20px;
    padding: 0 10px;
  }
}

@media (min-width: 1000px) {
  .about-facts {
    padding: 60px 70px 60px 70px;
  }
}

@media (min-width: 1200px) {
  .about-facts {
    padding: 100px 70px 100px 70px;
  }
  .about-facts li {
    font-size: 30px;
  }
}

@media (min-width: 1282px) {
  .about-facts {
    padding: 100px calc((100vw - 1280px) / 2 + 40px);
  }
}



/* about-cap */

.about-cap {
  display: flex;
  flex-wrap: wrap;
  background: #1E1E1E;
  color: white;
  padding: 30px 20px 30px 20px;
}

@media (min-width: 360px) {
  .about-cap {
    padding: 30px 40px 30px 40px;
  }
}

.about-cap h2 {
  width: 50%;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  padding-right: 1em;
}

.about-cap p {
  width: 50%;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
}

.about-cap .pill-btn {
  width: 100%;
  font-size: 11px;
  line-height: 2.5;
  margin-top: 30px;
}

@media (min-width: 720px) {
  .about-cap {
    flex-direction: column;
    flex-wrap: wrap;
    height: 380px;
  }

  .about-cap .pill-btn {
    font-size: 11px;
    max-width: 320px;
  }

  .about-cap h2 {
    font-size: 40px;
    line-height: 1.3;
    height: 100%;
  }

  .about-cap p {
    font-size: 30px;
    line-height: 1.3;
  }
}

@media (min-width: 1000px) {
  .about-cap {
    padding: 30px 80px 30px 60px;
  }
}

@media (min-width: 1282px) {
  .about-cap {
    padding: 100px calc((100vw - 1280px) / 2 + 80px);
    padding-bottom: 80px;
  }
}

/* about-postbuy */

.about-postbuy {
  display: flex;
  flex-direction: column;
  background: white;
  color: #707070;
  font-weight: 300;
}

.about-postbuy-text {
  padding: 45px;
  order: 1;
  line-height: 1.65;
}

.about-postbuy-text p a {
  color: inherit;
  text-decoration: none;
}

.about-postbuy-text p a:hover,  .about-postbuy-text p a:active {
  text-decoration: underline;
}

.about-postbuy-img {
  background: #0CD459;
}

.about-postbuy-img > div {
  position: relative;
  height: 300px;
  max-width: 360px;
  margin: 0 auto;
}

.about-postbuy-img img {
  width: 90%;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 410px;
}

.about-postbuy ul, .about-postbuy p {
  margin-bottom: 25px;
}

.about-postbuy h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-postbuy .pill-btn {
  font-size: 11px;
  line-height: 2.5;
}

@media (min-width: 900px) {

  .about-postbuy {
    padding-top: 120px;
  }

  .about-postbuy-img img {
    width: 50%;
  }

  .about-postbuy-img > div {
    height: 150px;
  }

  .about-postbuy {
    flex-direction: row;
    padding-top: 0;
  }

  .about-postbuy-text {
    width: 50%;
    order: 0;
    padding: 70px 70px 100px 40px;
    font-size: 18px;
    line-height: 1.6;
  }

  .about-postbuy-text h2 {
    font-size: 30px;
    font-weight: 300;
    width: 50%;
  }

  .about-postbuy-text p,
  .about-postbuy-text ul {
    max-width: 300px;
  }

  .about-postbuy-img {
    width: 50%;
  }

  .about-postbuy .pill-btn {
    width: 265px;
  }

  .about-postbuy-img > div {
    position: relative;
    height: auto;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .about-postbuy-img img {
    height: 450px;
    width: auto;
    position: absolute;
    bottom: 150px;
    left: -100px;
    z-index: 2;
    max-width: none;
    transform: none;
  }
}

@media (min-width: 1000px) {
  .about-postbuy-text {
    padding-left: 80px;
  }

}

@media (min-width: 1050px) {
  .about-postbuy-img img {
    height: 500px;
    left: -140px;
  }
}

@media (min-width: 1400px) {
  .about-postbuy-img img {
    height: 690px;
    width: auto;
    position: absolute;
    bottom: -2px;
    left: -200px;
  }
}

@media (min-width: 1282px) {
  .about-postbuy-text {
    padding-left: calc((100vw - 1280px) / 2 + 80px);
  }

  .about-postbuy-img {
    padding-right: calc((100vw - 1280px) / 2 + 40px);
  }
}

/* about-loop */

.about-loop {
}

.about-loop-text {
  background: #0CD459;
  color: white;
  font-weight: 500;
  padding: 30px;
}

.about-loop-text h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-loop-text table {
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 2.5;
}

.about-loop-text td.indent:before {
  content: '— '
}

.about-loop-img {
  background: white;
  padding: 60px 30px;
}

.about-loop-img img {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

@media (min-width: 425px) {
  .about-loop-img img {
    max-width: 300px;
  }

  .about-loop-img {
    padding: 60px calc((100vw - 425px) / 2 + 45px);
  }

  .about-loop-text {
    padding: 60px calc((100vw - 425px) + 75px) 60px 45px;
  }
}

@media (min-width: 800px) {
  .about-loop {
    display: flex;
  }

  .about-loop-text {
    order: 1;
    width: 50%;
    padding: 100px 45px 150px 85px;
  }

  .about-loop-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .about-loop-text table {
    width: 100%;
    font-size: 13px;
    line-height: 2;
  }

  .about-loop-text table td:nth-child(2) {
    font-size: 18px;
    width: 40%;
  }

  .about-loop-img {
    width: 50%;
    padding: 200px 30px 150px 30px;
  }

  .about-loop-img img {
    display: block;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (min-width: 1000px) {

  .about-loop-text {
    font-weight: 300;
  }

  .about-loop-img img {
    position: relative;
    top: -110px;
    max-width: 428px;
  }
}

@media (min-width: 1282px) {
  .about-loop-img {
    padding-left: calc((100vw - 1280px) / 2 + 40px);
  }

  .about-loop-text {
    padding-right: calc((100vw - 1280px) / 2 + 40px);
  }
}
