body {
  background-color: #f3ece5;
  font-family: "Poppins", sans-serif;
}

.page-title {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0%;
}

header {
  border-bottom: 1px solid #40403f1a;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px;
}

.h-page {
  min-height: calc(100vh - 60px);
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.btn {
  display: inline-block;
  background: #283ad6;
  padding: 14px 20px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
}

.font-regular {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.underline {
  text-decoration: underline;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

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

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

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

@media only screen and (min-width: 960px) {
  .container {
    padding: 26px 60px;
  }

  .h-page {
    min-height: calc(100vh - 80px);
  }

  .md\:flex {
    display: flex;
  }

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:items-start {
    align-items: start;
  }

  .md\:text-left {
    text-align: left;
  }
}
