/*----------------------------- Font -----------------------------*/

@font-face {
  font-family: "Space Grotesk";
  src: url("../font/SpaceGrotesk-500.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik.ttf") format("truetype");
  font-display: swap;
}

/*----------------------------- General -----------------------------*/
html {
  width: 99vw;
}

a {
  cursor: pointer;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.start {
  justify-content: start;
}

.center {
  justify-content: center;
  align-items: center;
}

.mt-72 {
  margin-top: 72px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-72 {
  margin-bottom: 72px;
}

.mr-5 {
  margin-right: 5px;
}

.ml-20 {
  margin-left: 20px;
}

.w-base {
  width: 636px;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.mb-8 {
  margin-bottom: 8px;
}

.font-space {
  font-family: "Space Grotesk";
}

.font-rubik-400 {
  font-family: "Rubik";
  font-weight: 400;
}

.font-rubik-500 {
  font-family: "Rubik";
  font-weight: 500;
}

.size-13 {
  font-size: 13px;
}

.size-14 {
  font-size: 14px;
}

.size-16 {
  font-size: 16px;
}

.size-24 {
  font-size: 24px;
}

b {
  color: #565656;
}

.orange {
  color: #565656;
  font-weight: bold;
}

/*----------------------------- Class ----------------------------- */
.base-body {
  width: 100%;
  line-height: 21px;
}

.title {
  line-height: 24px;
  text-align: center;
}

.title-box {
  line-break: auto;
}

.top-image {
  width: 250px;
  height: 216px;
}

.bot-image {
  width: 210px;
  height: 300px;
}

.box {
  width: 636px;
  padding: 24px;
  border-radius: 16px;
  background-color: #f3f4f5;
}

.box-2 {
  width: 636px;
  padding: 24px;
}

.resumo {
  border-radius: 24px;
  padding: 16px;
  border: 2px solid #565656;
}

li {
  margin-bottom: 12px;
}

li::marker {
  color: #565656 !important;
  font-size: 20px;
}

.center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #565656;
  text-decoration: underline;
}

a {
  color: #565656;
  font-size: bold;
}

@media screen and (max-width: 750px) {
  .box {
    width: 436px;
  }

  .box-2 {
    width: 436px;
  }

  .w-base {
    width: 436px;
  }
}

@media screen and (max-width: 500px) {
  .box {
    width: 300px;
  }

  .box-2 {
    width: 300px;
  }

  .w-base {
    width: 300px;
  }
}
