@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url(./fonts/0c2090aa39a7707c42236ef78ef0338a.woff2);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(./fonts/4cd0fd34f59af6827ed740223b5ce110.woff2);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url(./fonts/b4c1a1dc7f990c3b92ae0ad6b180bbf8.woff2);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/bbc96d50ab9d8291be82b05f64bfeb11.woff2);
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url(./fonts/da97dfdce086c32f04f74862ee1355f7.woff2);
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url(./fonts/960dc2158fe5e922005012f253b49d39.woff2);
}
* {
  box-sizing: border-box;
  touch-action: manipulation;
}
html {
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  padding: 0;
  font-family: "Montserrat";
  font-weight: 300;
  color: #434343;
  display: flex;
  flex-direction: column;
}
.container {
  width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 1140px) {
  .container {
    width: 768px;
    border: none;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
  }
}
header {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  background: #e6cad3;
}
header h1 {
  font-size: 4em;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 3.5em;
  }
}
header span {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.4em;
  font-weight: 400;
}
.go-to-read-btn {
  width: 4em;
  bottom: 4em;
  left: calc(50% - 2em);
  position: absolute;
  transition: 0.2s;
  cursor: pointer;
}
.go-to-read-btn:hover {
  transform: scale(1.1);
}
.go-to-top {
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  width: 6em;
  display: none;
}
@media (max-width: 1330px) {
  .go-to-top {
    display: none !important;
  }
}
.go-to-top:hover {
  background: rgba(197,86,87,0.11);
}
.go-to-top img {
  position: fixed;
  left: 1.5em;
  bottom: 5em;
  width: 3em;
}
.show {
  display: block;
}
@media (max-width: 768px) {
  .show-on-desc {
    display: none;
  }
}
.show-on-mob {
  display: none;
}
@media (max-width: 768px) {
  .show-on-mob {
    display: block;
  }
}
.fixed-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: left;
}
@media (max-width: 1740px) {
  .fixed-menu {
    display: none;
  }
}
.fixed-menu a {
  display: block;
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 1em;
  color: #434343;
}
.fixed-menu a:hover {
  text-decoration: none;
}
.black-screen {
  background: #f5f1f2;
  padding: 20px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .black-screen {
    padding: 10px 0;
    overflow-x: scroll;
  }
}
h2 {
  font-size: 2.8em;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.8em;
    line-height: 1.2em;
  }
}
h3 {
  font-size: 1.6em;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.4em;
    line-height: 1.6em;
  }
}
h4 {
  font-size: 1.3em;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.2em;
  }
}
p,
span {
  font-size: 1.1em;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  p,
  span {
    font-size: 0.9em;
  }
}
ul,
ol {
  margin: 0;
  padding: 0;
  font-size: 1.1em;
}
@media (max-width: 768px) {
  ul,
  ol {
    font-size: 0.9em;
  }
}
ul li,
ol li {
  line-height: 1.6em;
  margin: 5px 0;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
ul {
  list-style: none;
}
a {
  color: #c55656;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.flex-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.hero-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.hero-icons .hero-item {
  width: 18%;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-icons .hero-item {
    width: 40%;
    margin-bottom: 30px;
  }
  .hero-icons .hero-item:nth-child(3) {
    margin-bottom: 0;
  }
  .hero-icons .hero-item:nth-child(4) {
    margin-bottom: 0;
  }
}
.hero-icons .hero-item img {
  margin-bottom: 10px;
}
.hero-icons .hero-item span {
  font-size: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-icons .hero-item span {
    font-size: 1em;
  }
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stats img {
  width: 48%;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .stats img {
    width: 100%;
  }
}
.stats .stats-text {
  width: 49%;
}
@media (max-width: 768px) {
  .stats .stats-text {
    width: 100%;
  }
}
.choice img {
  width: 30%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .choice img {
    width: 60%;
  }
}
.left-img {
  width: 39%;
  margin-right: 1%;
}
@media (max-width: 768px) {
  .left-img {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
table {
  border-collapse: collapse;
  width: 100%;
}
table td,
table tr {
  border: 1px solid #c19ea7;
}
table td {
  padding: 10px;
}
table tr:first-child td:first-child {
  width: 30%;
}
.little-table {
  width: 60%;
}
@media (max-width: 768px) {
  .little-table {
    width: 100%;
  }
}
.little-table tr:first-child td:first-child {
  width: 10% !important;
}
.table-center tr:first-child td:first-child {
  width: 33.3% !important;
}
.table-center tr:first-child td:nth-child(2) {
  width: 33.3% !important;
}
.table-center tr:first-child td:nth-child(3) {
  width: 33.3% !important;
}
.table-center-double tr:first-child td:first-child {
  width: 50% !important;
}
.table-center-double tr:first-child td:nth-child(2) {
  width: 50% !important;
}
.table-big-l tr:first-child td:first-child {
  width: 80% !important;
}
.table-big-l tr:first-child td:nth-child(2) {
  width: 20% !important;
}
.copyright {
  color: #797979;
}
.copyright p {
  font-size: 0.8em;
  line-height: 1em;
}
footer {
  background: #c19ea7;
  margin-top: 10px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.15);
  font-family: Montserrat;
  font-weight: 300;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer p {
  padding: 0;
  color: #000;
}
footer p a {
  color: #000;
}
footer p a:hover {
  text-decoration: none;
}
.wrapper {
  flex: 1 0 auto;
}
.about-me {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 80px;
  margin-bottom: 100px;
}
.about-me img {
  width: 30%;
  height: intrinsic;
}
.about-me .show-on-mob {
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-me .show-on-mob {
    height: intrinsic;
  }
}
.about-me .about-me-text {
  width: 67%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media (max-width: 768px) {
  .about-me .about-me-text {
    width: 100%;
  }
}
.about-me .about-me-text p {
  margin: 0;
  padding-top: 10px;
}
.about-me a:hover {
  text-decoration: none;
}
.final-screen {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.final-screen h2 {
  color: #c19ea7;
}
@media (max-width: 768px) {
  .final-screen h2 {
    font-size: 1.4em;
    line-height: 1.5em;
  }
}
.final-screen img {
  width: 50%;
  margin: 0 auto;
}
.final-screen .test-link {
  text-align: center;
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .final-screen .test-link {
    margin-bottom: 20px;
  }
}
.final-screen .test-link a {
  background: #c19ea7;
  font-weight: 400;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.6em;
  text-decoration: none;
}
.final-screen .test-link h3 {
  margin-bottom: 40px;
}
.sub-img-title {
  color: #6b6968;
  font-size: 1em;
}
.sub-img-title a {
  color: #6b6968;
}
.sub-img-title a:hover {
  text-decoration: none;
}
.law {
  position: relative;
  padding: 5px 10px;
  border-bottom: 2px solid #c19ea7;
  padding-bottom: 20px;
  padding-left: 0;
}
.law p {
  margin: 0;
  padding-right: 160px;
  font-style: italic;
}
@media (max-width: 768px) {
  .law p {
    padding-right: 0;
    padding-top: 2.5em;
  }
}
.law .law-right {
  width: 150px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.law .law-right img {
  width: 20px;
  height: auto;
}
.law .law-right a {
  color: #c19ea7;
}
.law .law-right a:hover {
  text-decoration: none;
}
.law-bottom {
  margin-bottom: 20px;
}
.blockquote {
  background: rgba(182,157,164,0.141);
  padding: 1px 0;
}
.blockquote p {
  padding: 10px;
  font-style: italic;
}
.object-icons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .object-icons {
    justify-content: space-between;
  }
}
.object-icons .object-icons-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .object-icons .object-icons-item {
    text-align: center;
    width: 40%;
  }
}
.object-icons .object-icons-item img {
  width: 10%;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .object-icons .object-icons-item img {
    margin-right: 0;
    width: 100%;
  }
}
.object-icons .object-icons-item span {
  width: 75%;
}
@media (max-width: 768px) {
  .object-icons .object-icons-item span {
    width: 100%;
  }
}
#show-now {
  margin-top: 100px;
}
.air {
  margin: 30px 0;
}

