@font-face {
  font-family: Dmsans Variablefont Opsz Wght;
  src: url('../images/') format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppwriter;
  src: url('../fonts/PPWriter-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --grid-gray: #d9d9d9;
  --sea-green: #238d44;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

a {
  color: #000;
  text-decoration: none;
  transition: all .2s;
}

a:hover {
  color: #00a743;
}

.nj-body {
  color: #0009;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  line-height: 1.4;
}

.nav__container {
  justify-content: space-between;
  align-items: center;
  height: 120px;
  display: flex;
}

.logo-txt {
  color: #000;
  font-family: Ppwriter, sans-serif;
  font-size: 22px;
}

.is--grey {
  color: #0009;
}

.nav-links {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.container {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--grid-gray);
  max-width: 980px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.container.is-hero {
  z-index: 20;
  border-top-width: 0;
  border-bottom-width: 0;
  height: 100%;
  position: relative;
}

.container.is--no-bottom {
  border-bottom-width: 0;
}

.button {
  color: #fff;
  letter-spacing: .2px;
  white-space: nowrap;
  background-color: #000;
  border-radius: 40px;
  margin: .1rem .2rem;
  padding: .5rem 1.2rem .6rem;
  font-family: Ppwriter, sans-serif;
  font-size: 18px;
}

.button:hover {
  background-color: var(--sea-green);
  color: #fff;
  margin: 0;
  padding: .6rem 1.4rem .7rem;
}

.button.is--small {
  padding-top: .4rem;
  padding-bottom: .5rem;
  font-size: 18px;
}

.button.is--small:hover {
  padding-top: .5rem;
  padding-bottom: .6rem;
}

.button.is--nav {
  color: #0009;
  background-color: #0000;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
}

.button.is--nav:hover {
  color: var(--sea-green);
  background-color: #238d441a;
}

.button.is--small-alt {
  color: var(--sea-green);
  background-color: #238d441a;
  padding-top: .4rem;
  padding-bottom: .5rem;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-size: 16px;
}

.button.is--small-alt:hover {
  background-color: var(--sea-green);
  color: #fff;
  padding-top: .5rem;
  padding-bottom: .6rem;
}

.button.is--small-alt.is--enter.is--nolink {
  color: #b4b4b4;
  background-color: #9797971a;
}

.button.is--small-alt.is--enter.is--nolink:hover {
  margin: .1rem .2rem;
  padding: .4rem 1.2rem .5rem;
}

.button.is--small-alt-no-anim {
  color: var(--sea-green);
  background-color: #238d441a;
  padding-top: .4rem;
  padding-bottom: .5rem;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-size: 16px;
}

.button.is--small-alt-no-anim:hover {
  background-color: var(--sea-green);
  color: #fff;
  padding-top: .5rem;
  padding-bottom: .6rem;
}

.h-img {
  border-radius: 30px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.h-img__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.h-img__image.is--mobile {
  display: none;
}

.h-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.h1 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppwriter, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
}

.h1.is--hero {
  display: inline;
}

.body__large {
  margin-bottom: 0;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.z-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.z-grid.is--v-middle {
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

.h2 {
  color: #000;
  margin-top: 60px;
  margin-bottom: 40px;
  font-family: Ppwriter, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2;
}

.separator {
  background-color: var(--grid-gray);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 33%;
}

.separator.is--66 {
  left: 66%;
}

.separator.is--basic {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: static;
}

.separator.is--basic.is--no-margin2 {
  margin-top: 0;
  margin-bottom: 0;
}

.separator.is--50 {
  left: 50%;
}

.h3 {
  color: #000;
  margin-top: 0;
  font-family: Ppwriter, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.h3.is--inline {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.body__regular {
  margin-bottom: 0;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.body__regular.is--bottom-margin {
  margin-bottom: 4px;
}

.z-price {
  grid-column-gap: 20px;
  align-items: flex-end;
  margin-top: 10px;
  display: flex;
}

.z-price.is--modal {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}

.div-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.h-joga {
  height: 106px;
  margin-top: -40px;
  margin-right: 10px;
}

.grid {
  grid-template-rows: auto;
  margin-top: 5%;
  margin-bottom: 5%;
}

.omnie__img {
  z-index: 100;
  border-radius: 500em;
  height: 0;
  margin-bottom: 20px;
  padding-top: 50%;
  padding-bottom: 50%;
  position: relative;
  right: -5%;
  overflow: hidden;
  transform: scale(1.1);
}

.omnie__img.is--rectangle {
  z-index: 99;
  border-radius: 1em;
  left: -5%;
  right: auto;
}

.z-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.z-grid__vertival {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.z-grid__box {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--grid-gray);
  padding: 30px;
}

.z-ico {
  width: 40%;
  margin-bottom: 10px;
}

.z-ico.is--small {
  width: 40%;
}

.z-grid__zajecia {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
}

.body__link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  text-decoration: underline;
  display: flex;
}

.body__link:hover {
  color: #238d44;
}

.form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  margin-left: 0;
  margin-right: 10px;
}

.close {
  background-color: #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: -20px -20px auto auto;
  transform: rotate(45deg);
}

.close:hover {
  background-color: var(--sea-green);
}

.n-bgd {
  z-index: 700;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0006;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.n-bgd.is--close {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #0000;
  padding-top: 0;
}

.n-bgd.is--grupowe {
  display: none;
}

.form__box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.n-modal {
  z-index: 701;
  background-color: #fff;
  border-radius: 24px;
  width: 650px;
  margin-bottom: 42px;
  padding: 40px;
  position: relative;
}

.text__input {
  color: #000;
  background-color: #0000000d;
  border: 0 solid #000;
  border-radius: 30px;
  margin-bottom: 0;
  padding: 0 15px;
  font-size: 16px;
  transition: all .2s;
}

.text__input:hover {
  background-color: #00000008;
}

.text__input:focus {
  background-color: #f8feff;
  border: 1px solid #e9e9e9;
}

.error-message {
  color: #000;
  text-align: center;
  border-radius: 20px;
}

.form__box-input {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 10px;
  display: grid;
}

.form__box-input.is--adress {
  margin-top: 30px;
  margin-bottom: 0;
}

.h-grid__form {
  background-image: linear-gradient(349deg, #ffe7e7, #f8f8f8 36%);
  border-radius: 24px;
  margin-bottom: 0;
  padding: 30px;
  position: sticky;
  top: 10px;
}

.h-grid__form.is--newsletter {
  background-image: none;
  padding: 0;
}

.checkbox__container {
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.success-message {
  color: #0009;
  background-color: #dffdcc;
  border-radius: 8px;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.heading__h3 {
  color: #000;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.3;
}

.close-bar {
  background-color: #fff;
  border-radius: 4px;
  width: 50%;
  height: 2px;
}

.close-bar.is--vertical {
  position: absolute;
  transform: rotate(90deg);
}

.is--no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.checkbox-conainer {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.z-tab {
  text-align: center;
  background-color: #0000;
  border-radius: 50px;
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
}

.z-tab:hover {
  background-color: #fff;
}

.z-tab.w--current {
  color: #fff;
  background-color: #000;
  flex: 1;
}

.z-tabs {
  margin-top: 20px;
}

.div-block-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tab-content {
  margin-top: 20px;
  margin-bottom: 0;
}

.h3-anim {
  color: #000;
  margin-top: 0;
  font-family: Ppwriter, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.h3-anim.is--inline {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.body__regular-no-anim {
  margin-bottom: 0;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.body__regular-no-anim.is--bottom-margin {
  margin-bottom: 4px;
}

.tabs-menu {
  background-color: #f1f1f1;
  border-radius: 50px;
  justify-content: space-between;
  padding: 6px;
  display: flex;
}

.h2-anim {
  color: #000;
  margin-top: 60px;
  margin-bottom: 40px;
  font-family: Ppwriter, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2;
}

.link-ico {
  width: 11px;
  height: 15px;
}

.h-img__container {
  padding-left: 10px;
  padding-right: 10px;
}

.html-embed {
  width: 0;
  height: 0;
  position: absolute;
}

.f-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  margin-bottom: 60px;
}

.f-grid__ico {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 60px;
}

.f-grid__ico-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.h4 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppwriter, sans-serif;
  font-weight: 400;
}

.is--top-margin-m {
  margin-top: 32px;
}

.is--top-margin-s {
  margin-top: 10px;
}

@media screen and (min-width: 1280px) {
  .logo-txt {
    font-size: 26px;
  }

  .container {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button {
    font-size: 20px;
  }

  .button.is--small-alt, .button.is--small-alt-no-anim {
    font-size: 18px;
  }

  .h-img {
    max-width: 1400px;
    height: 600px;
  }

  .h-grid {
    grid-template-columns: 1.25fr 1fr;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .body__large {
    font-size: 22px;
    line-height: 1.8;
  }

  .z-grid {
    grid-column-gap: 100px;
  }

  .z-grid.is--v-middle {
    margin-top: 70px;
  }

  .h2 {
    font-size: 65px;
  }

  .separator {
    left: 33.3%;
  }

  .separator.is--66 {
    left: 66.6%;
  }

  .h3 {
    font-size: 36px;
  }

  .body__regular {
    font-size: 18px;
    line-height: 1.8;
  }

  .grid {
    margin-top: 7%;
  }

  .omnie__img.is--rectangle {
    z-index: -1;
    transform: scale(1.08);
  }

  .form__checkbox {
    margin-top: 8px;
  }

  .n-modal {
    width: 700px;
  }

  .h3-anim {
    font-size: 36px;
  }

  .body__regular-no-anim {
    font-size: 18px;
    line-height: 1.8;
  }

  .h2-anim {
    font-size: 65px;
  }
}

@media screen and (max-width: 991px) {
  .nav__container {
    height: 80px;
  }

  .nav-links {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .container {
    margin-left: 40px;
    margin-right: 40px;
  }

  .container.is-hero {
    margin-left: 30px;
    margin-right: 30px;
  }

  .container.is--desktop, .button.is--small {
    display: none;
  }

  .button.is--nav {
    margin-left: .1rem;
    margin-right: .1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 16px;
  }

  .button.is--nav:hover {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .h-img {
    border-radius: 20px;
  }

  .h-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .h1.is--hero {
    font-size: 60px;
  }

  .body__large {
    font-size: 17px;
  }

  .z-grid.is--zajecia {
    grid-template-columns: 1fr;
  }

  .h2 {
    margin-top: 50px;
    font-size: 45px;
  }

  .h3 {
    font-size: 28px;
  }

  .body__regular {
    font-size: 15px;
  }

  .h-joga {
    height: 85px;
    margin-top: -33px;
  }

  .grid {
    margin-top: 7%;
  }

  .z-grid__vertival {
    margin-left: 40px;
    margin-right: 40px;
    display: block;
  }

  .z-ico {
    width: 120px;
    margin-top: 13px;
  }

  .z-ico.is--small {
    width: 45%;
  }

  .z-grid__zajecia {
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
  }

  .form__checkbox {
    margin-right: 7px;
  }

  .form__box {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .n-modal {
    width: 600px;
  }

  .text__input {
    padding: 10px;
  }

  .h-grid__form {
    padding: 20px;
  }

  .success-message {
    color: #0009;
  }

  .heading__h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
  }

  .z-tab {
    font-size: 17px;
  }

  .h3-anim {
    font-size: 28px;
  }

  .body__regular-no-anim {
    font-size: 15px;
  }

  .h2-anim {
    margin-top: 50px;
    font-size: 45px;
  }
}

@media screen and (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .container.is-hero {
    margin-left: 20px;
    margin-right: 20px;
  }

  .h-img {
    margin-left: 10px;
    margin-right: 10px;
  }

  .h-img__image {
    display: none;
  }

  .h-img__image.is--mobile {
    display: inline-block;
  }

  .h-grid {
    grid-template-columns: 1fr;
  }

  .h1.is--hero {
    font-size: 38px;
  }

  .h-joga {
    height: 54px;
    margin-top: -20px;
    margin-right: 8px;
  }

  .omnie__img.is--rectangle {
    border-radius: .6em;
  }

  .z-ico.is--small {
    width: 30%;
  }

  .form__checkbox {
    margin-top: 3px;
  }

  .n-modal {
    width: 450px;
    padding: 30px;
  }

  .h-grid__form {
    position: static;
  }

  .heading__h3 {
    font-size: 20px;
  }

  .tabs-menu {
    display: flex;
  }

  .f-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .f-grid__ico {
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .logo-txt {
    font-size: 20px;
  }

  .container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .container.is-hero {
    margin-left: 10px;
    margin-right: 10px;
  }

  .button, .button.is--small {
    display: none;
  }

  .button.is--small-alt, .button.is--small-alt-no-anim {
    display: block;
  }

  .h-img {
    border-radius: 10px;
    height: 300px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .z-grid {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 38px;
  }

  .h2.is--bottom-margin {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .separator {
    width: 100%;
    height: 1px;
    display: none;
    top: 50%;
    left: auto;
  }

  .separator.is--66 {
    display: none;
  }

  .separator.is--basic {
    display: block;
  }

  .body__regular.is--enter.is--center {
    text-align: left;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .z-grid__vertival {
    margin-left: 20px;
    margin-right: 20px;
  }

  .z-grid__box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .z-ico {
    width: 80px;
    margin-top: 0;
    margin-bottom: 13px;
  }

  .z-ico.is--small {
    width: 100%;
    margin-bottom: 0;
  }

  .z-grid__zajecia {
    grid-template-columns: 1fr;
  }

  .close {
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
  }

  .n-modal {
    border-radius: 18px;
    width: 87%;
    padding: 20px;
  }

  .text__input {
    padding: 0 18px;
  }

  .form__box-input {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .form__box-input.is--adress {
    margin-top: 0;
  }

  .heading__h3 {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .z-tab {
    text-align: center;
    margin-right: 0;
    padding: 6px 12px;
    font-size: 15px;
  }

  .div-block-3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs-menu {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .h2-anim {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 38px;
  }

  .h2-anim.is--bottom-margin {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .h-img__container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .f-grid {
    margin-bottom: 20px;
  }

  .f-grid__ico {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .f-grid__ico-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 20% 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}

#w-node-e598038a-9172-c823-3ca6-b2d3e2ef8e49-f7b828d0, #w-node-e598038a-9172-c823-3ca6-b2d3e2ef8e5f-f7b828d0, #w-node-e598038a-9172-c823-3ca6-b2d3e2ef8e6f-f7b828d0, #w-node-_823e590d-7a51-2d7c-4f58-b2853d43d607-f7b828d0, #w-node-_41bef25c-a671-390d-eb25-0b2462a5ec4f-f7b828d0, #w-node-_8d283233-5af6-353d-92a7-6fbbeb9d95ed-f7b828d0, #w-node-b15cc7cc-244a-3771-d38e-a6b081aec02e-f7b828d0, #w-node-_20806571-6f6c-2585-6838-f632a25b012c-f7b828d0, #w-node-aa947526-8be2-9631-56a3-e13331f5ac43-f7b828d0, #w-node-_550b2ef6-633e-e74f-ee41-2100bf8b64a3-f7b828d0, #w-node-_8103a35d-7369-96cd-f77e-77a13e74aaf6-f7b828d0, #w-node-_05575d8b-e841-dc41-3f17-e499c2222aca-f7b828d0, #w-node-_28c7bf63-d2c4-577e-6dcb-709b3da09786-f7b828d0, #w-node-_20d8744c-ca95-4b1e-8333-a4bd01e702d3-f7b828d0, #w-node-beaab1e9-b60d-fc47-4c99-906da22495ee-f7b828d0, #w-node-_723834ac-8597-98c8-937c-69a2a3478be8-f7b828d0, #w-node-_9a96fc4f-1616-91b3-6334-5d946adada8b-f7b828d0, #w-node-c240d3df-1643-eb1a-a9c8-a3f870b9c93b-f7b828d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77522dc7-f909-1ab2-d63b-0e6be40e7b35-f7b828d0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ef173180-b09f-1a9e-7e7a-470aecaa2ab8-f7b828d0, #w-node-bb3f6c60-3c68-b6aa-2644-b99694fcf1be-f7b828d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a10aec96-61d4-bc30-5733-588982f653d8-f7b828d0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a10aec96-61d4-bc30-5733-588982f653da-f7b828d0, #w-node-_4be710b8-e128-5086-e19d-8c42d8dfc625-f7b828d0, #w-node-_24926148-3dd6-3033-b1cf-50ba45ab24b2-f7b828d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-db5594fe-f228-568f-f0e8-f2a2349e1c2f-f7b828d0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_28c7bf63-d2c4-577e-6dcb-709b3da09787-f7b828d0, #w-node-_77522dc7-f909-1ab2-d63b-0e6be40e7b32-f7b828d0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a10aec96-61d4-bc30-5733-588982f653d8-f7b828d0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Dmsans Variablefont Opsz Wght';
  src: url('../images/') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppwriter';
  src: url('../fonts/PPWriter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}