@charset "UTF-8";
/**
 * Theme constants and base styles.
 * SCSS: assets/css/constant/constant.scss
 * CSS (compiled by IDE): assets/css/constant/constant.css
 */
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: "Lato", sans-serif;
  color: var(--text-color);
}

main {
  min-height: calc(100vh - 80px);
  margin-top: 120px;
}

body,
html {
  background: var(--bg-body);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h2 {
  color: var(--color-for-h2-titles);
  font-size: 2rem;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  color: var(--color-for-h3-titles);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}

h4 {
  color: var(--color-for-h4-titles);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

h5 {
  color: var(--color-for-h5-titles);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

img {
  color: transparent;
}

img:not([src]) {
  visibility: hidden;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1050px;
  padding: 0 15px;
  margin: 0 auto;
}

.padding {
  padding: 0 15px;
}

.margin {
  margin: 50px 0;
}

@media (max-width: 990px) {
  .margin {
    margin: 40px 0;
  }
}
a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

input,
button {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  box-shadow: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
}

.main-content table.tablepress {
  --border-color: transparent;
  border-collapse: separate;
  border-spacing: 0 5px;
  border-radius: 10px;
}
.main-content table.tablepress thead tr th {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  background: var(--block-bg, transparent);
  border-bottom: none;
  border-radius: 10px;
}
.main-content table.tablepress tbody tr td {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  background: var(--block-bg, transparent);
  border-right: none;
  border-bottom: none;
}

ul, ol {
  padding-left: 20px;
}

ol li {
  font-size: 16px;
  line-height: 1.3;
  padding-left: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.3;
  padding-left: 30px;
}

ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.button {
  display: inline-flex;
  width: auto;
  padding: 12px 24px;
  background: var(--button-bg);
  color: var(--button-text-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.button--secondary {
  display: inline-flex;
  width: auto;
  padding: 12px 24px;
  background: #444e66;
  color: var(--button-text-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

/*# sourceMappingURL=constant.css.map */
