@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: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
}

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

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;
}

h1 {
  color: var(--color-for-h1-titles);
}

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

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

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

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

img {
  color: transparent;
}

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

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

.button {
  background: var(--accent-color);
}

.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;
  -moz-appearance: none;
       appearance: none;
}

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

button {
  border: none;
  box-shadow: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          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 {
  padding-left: 20px;
}

ol {
  list-style: none;
  padding-left: 0;
  counter-reset: ordered-list;
}

ol li {
  position: relative;
  counter-increment: ordered-list;
  font-size: 16px;
  line-height: 1.3;
  min-height: 54px;
  padding-left: 66px;
  display: flex;
  align-items: center;
}

ol li::before {
  content: counter(ordered-list);
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--additional-c-elements);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  transform: translateY(-50%);
}

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: var(--button-bg);
  color: var(--button-text-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.title-with-icon__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.title-with-icon__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.title-with-icon__text {
  width: 100%;
}

@media (max-width: 768px) {
  .title-with-icon {
    gap: 10px;
  }
  .title-with-icon__icon {
    width: 32px;
    height: 32px;
  }
}
.bg-block {
  background: var(--block-bg);
}

.bg-block--full {
  position: relative;
  isolation: isolate;
}
.bg-block--full::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--block-bg-full);
}/*# sourceMappingURL=constant.css.map */