@charset "UTF-8";
/**
 * Theme constants and base styles.
 * SCSS: assets/css/constant/constant.scss
 * CSS (compiled by IDE): assets/css/constant/constant.css
 */
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;
  line-height: 1.3;
}

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

img {
  color: transparent;
}

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

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0;
  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;
  -moz-appearance: none;
       appearance: none;
}

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

button {
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus,
.skip-link:focus {
  clip: auto;
  clip-path: none;
  display: block;
  height: auto;
  left: 8px;
  top: 8px;
  width: auto;
  z-index: 100000;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--additional-c-elements);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--additional-c-elements);
  outline-offset: 2px;
}

.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: 10px;
  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: 10px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

ul.acf-radio-list, ul.acf-checkbox-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.scroll-top {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: var(--btn-up-to-top-bg, #596273);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.scroll-top span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
}
.scroll-top span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 2px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 2px;
}
.scroll-top span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 568px) {
  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}/*# sourceMappingURL=constant.css.map */