:root {
  --site-width: 1200px;
  --black: #000;
  --white: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #fcfaf2;
  justify-content: flex-start;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

p {
  margin-bottom: 10px;
}

a {
  color: #333;
  text-decoration: none;
}

.body {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #fff;
  padding-top: 84px;
  padding-bottom: 84px;
}

.image {
  width: 200px;
}

.image-2 {
  width: 200px;
  margin-bottom: 30px;
}

.section {
  object-fit: fill;
  width: auto;
  padding-top: 84px;
  padding-bottom: 84px;
}

.container {
  max-width: 840px;
  margin-top: 64px;
  margin-bottom: 64px;
  position: static;
}

.heading {
  color: #000;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-style: normal;
}

.paragraph {
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  margin-bottom: 0;
  padding-top: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  display: block;
  position: static;
}

.paragraph.lowercase {
  text-transform: lowercase;
  margin-left: 20px;
  padding-top: 0;
}

.button {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border: 2px solid #000;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}

.heading-2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 500;
  line-height: 100px;
}

.body-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.body-3 {
  background-color: #fcfaf2;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.paragraph-3 {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}

.body-4 {
  background-color: #fcfaf3;
  justify-content: center;
  align-items: center;
}

.section-2 {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.contentdiv {
  width: 70%;
}

.code-embed {
  -webkit-text-stroke-color: black;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  min-height: 32px;
  font-size: 24px;
  display: flex;
}

.flex-block {
  justify-content: flex-start;
  align-items: center;
}

.div-block {
  background-color: #0000;
  border-bottom: 2px solid #000;
  width: 100px;
  height: 20px;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 18px;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: var(--site-width);
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 550px;
  }

  .contentdiv {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 520px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .heading-2 {
    font-size: 60px;
  }

  .contentdiv {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: 300px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .heading-2 {
    font-size: 48px;
    line-height: 60px;
  }

  .contentdiv {
    width: 100%;
  }

  .flex-block {
    flex-flow: wrap;
  }

  .div-block {
    width: 40px;
  }
}


