:root {
  --sans: "Satoshi", sans-serif;
  --serif: "Erode", sans-serif;
  --black: #0f0f0f;
  --bg: #f8f8f8;
  --white: #fcfcfc;
  --greenText: #558806;
  --darkGreenBg: #497307;
  --greenBg: #c0ea7e;
  --lightGreenBg: #e0f1c6;
  --border: #cdcdcd;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/subset-Satoshi-Medium.woff2") format("woff2"), url("./fonts/subset-Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/subset-Satoshi-Regular.woff2") format("woff2"), url("./fonts/subset-Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Erode";
  src: url("./fonts/subset-Erode-Bold.woff2") format("woff2"), url("./fonts/subset-Erode-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Erode";
  src: url("./fonts/subset-Erode-Medium.woff2") format("woff2"), url("./fonts/subset-Erode-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--sans);
  color: var(--black);
  background-color: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--serif);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

input,
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 16px;
}

input[type=email],
input[type=text],
input[type=password],
input[type=search] {
  display: block;
  width: 100%;
}

a,
button,
label,
input[type=submit],
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wrapper {
  padding: 30px 20px 120px 20px;
}
@media (min-width: 960px) {
  .wrapper {
    padding: 30px;
  }
}

.logo {
  width: 70px;
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .logo {
    width: 90px;
    margin-bottom: 64px;
  }
}

.heading {
  font-size: 32px;
  font-weight: 500;
}
@media (min-width: 960px) {
  .heading {
    font-size: 48px;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1030px;
}
@media (min-width: 960px) {
  .content {
    flex-direction: row;
    gap: 64px;
  }
}
@media (min-width: 960px) {
  .content__right {
    flex: 1;
  }
}
.content__right > * + * {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .content__right > * + * {
    margin-top: 25px;
  }
}
@media (min-width: 960px) {
  .content__right p {
    font-size: 20px;
  }
}
.content__right p a {
  text-decoration: underline;
  color: var(--black);
  transition: 0.2s opacity;
}
.content__right p a:hover {
  opacity: 0.7;
}
.content__right p strong {
  font-weight: 500;
}

.contact {
  margin-top: 36px;
}
@media (min-width: 960px) {
  .contact {
    display: block;
  }
  .contact__anchor {
    font-size: 20px;
  }
}
.contact__heading {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 8px;
}
.contact__anchor {
  background-color: var(--lightGreenBg);
  color: var(--greenText);
  line-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  display: inline-flex;
  padding-bottom: 2px;
  transition: 0.2s opacity;
}
.contact__anchor:hover {
  opacity: 0.7;
}

.overlay-button {
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  background: #fcfcfc;
  color: var(--black);
  box-shadow: 0 2px 5px 0 rgba(15, 15, 15, 0.1);
  padding: 0 16px;
  font-family: var(--serif);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 42px;
  transition: 0.2s opacity, 0.2s transform;
}
.overlay-button.overlay-open {
  position: fixed;
  top: 20px;
  right: 20px;
}
.overlay-button.overlay-open .overlay-button__corner {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media (min-width: 960px) {
  .overlay-button.overlay-open {
    bottom: 30px;
    left: 30px;
    top: auto;
    right: auto;
  }
}
.overlay-button.overlay-close {
  position: absolute;
  bottom: 100%;
  right: 0;
  bottom: 100%;
  left: auto;
  margin-bottom: 12px;
}
.overlay-button.overlay-close .overlay-button__corner {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
@media (min-width: 960px) {
  .overlay-button.overlay-open {
    padding: 0 20px;
    line-height: 50px;
  }
}
.overlay-button:hover {
  opacity: 0.7;
  transform: scale(1.015);
}

.overlay {
  background: rgba(252, 252, 252, 0.7);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 30px 20px;
  left: -9999px;
  opacity: 0;
  transition: left 0s 0.2s, opacity 0.2s;
}
@media (min-width: 960px) {
  .overlay {
    padding: 30px;
  }
}
.overlay--active {
  opacity: 1;
  left: 0;
  transition: left 0s, opacity 0.2s;
}
.overlay__content {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.2s opacity, 0.2s transform;
}
.overlay--active .overlay__content {
  opacity: 1;
  transform: none;
}

.table {
  width: 100%;
  box-shadow: 0 2px 5px 0 rgba(15, 15, 15, 0.1);
  border-radius: 8px;
  display: none;
}
@media (min-width: 960px) {
  .table {
    display: block;
  }
}
.table__row {
  display: flex;
  background-color: var(--white);
  overflow: hidden;
}
.table__row:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.table__row:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.table__row--head {
  background-color: var(--black);
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.table__row--head .table__cell {
  height: 40px;
}
.table__row--dashed {
  border-bottom: 1px dashed var(--border);
}
.table__row--green {
  background-color: var(--greenBg);
  font-weight: 500;
}
.table__cell {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  min-height: 60px;
}
.table__cell--dark-green {
  background-color: var(--darkGreenBg);
  color: var(--white);
}
.table__cell--upcase {
  text-transform: uppercase;
  font-size: 12px;
}

.accordion {
  width: 100%;
  box-shadow: 0 2px 5px 0 rgba(15, 15, 15, 0.1);
  border-radius: 8px;
  background-color: var(--white);
  overflow: hidden;
}
@media (min-width: 960px) {
  .accordion {
    display: none;
  }
}
.accordion__section-header {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 12px;
  padding: 0 16px;
  cursor: pointer;
  user-select: none;
}
.accordion__section-header--green {
  background-color: var(--darkGreenBg);
}
.accordion__section-header h2 {
  font-size: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
}
.accordion__section-header svg {
  transition: 0.2s transform;
}
.accordion__section--active .accordion__section-header svg {
  transform: rotate(180deg);
}
.accordion__section-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s max-height;
}
.accordion__section--active .accordion__section-body {
  max-height: 340px;
}

.accordion-row {
  display: flex;
}
.accordion-row + .accordion-row .accordion-row__left,
.accordion-row + .accordion-row .accordion-row__right {
  border-top: 1px dashed rgba(15, 15, 15, 0.2);
}
.accordion-row__left, .accordion-row__right {
  min-height: 60px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}
.accordion-row__left {
  width: 120px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.accordion-row__right {
  flex: 1;
  font-weight: 500;
}
.accordion-row__right--green {
  background-color: var(--greenBg);
}

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