:root {
  --black: #0d0d0d;
  --green: #4bba6f;
  --white: white;
  --light-green: #fff;
  --grey: #f5f2f0;
  --blue-black: #161722;
  --alt: #ffe8d1;
}

.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-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--black);
  font-family: Roboto Condensed, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  transition: color .2s;
}

a:hover {
  color: var(--green);
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid var(--green);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.form-message-success {
  background-color: var(--green);
  color: var(--black);
  padding: 1.25rem;
}

.z-2 {
  z-index: 2;
  position: relative;
}

.text-color-black {
  color: #000;
}

.fs-styleguide_row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.fs-styleguide_row.is-for-social-icons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_3-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-light {
  font-weight: 300;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.show {
  display: block;
}

.fs-styleguide_color-sample {
  background-color: #f5f5f5;
  margin-top: .5rem;
  padding: 5rem;
}

.fs-styleguide_color-sample.is-background2 {
  background-color: var(--white);
}

.fs-styleguide_color-sample.is-text-color {
  background-color: var(--black);
}

.fs-styleguide_color-sample.is-secondary {
  background-color: var(--light-green);
}

.fs-styleguide_color-sample.is-background1 {
  background-color: var(--grey);
}

.fs-styleguide_color-sample.is-primary {
  background-color: var(--green);
}

.fs-styleguide_color-sample.is-others {
  background-color: var(--blue-black);
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.button {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding: 1rem 3rem;
  font-weight: 400;
  transition: filter .2s;
}

.button:hover {
  background-color: var(--alt);
  filter: brightness(95%);
  color: var(--black);
}

.button.is-nav {
  color: var(--white);
  margin-bottom: 0;
  transition: background-color .2s;
}

.button.is-nav:hover {
  color: var(--black);
}

.button.align-center {
  text-align: center;
  margin-top: 40px;
}

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-large {
  padding-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-large.text-color-white {
  margin-left: 40px;
  padding-bottom: 10px;
}

.heading-large.page-padding {
  color: var(--white);
}

.text-weight-bold {
  font-weight: 700;
}

.text-size-large {
  font-size: 1.5rem;
}

.icon-medium {
  height: 3rem;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-normal {
  font-weight: 400;
}

.fs-styleguide_section {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

.text-align-center {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.z-1 {
  z-index: 1;
  position: relative;
}

.icon-small {
  height: 2rem;
}

.show-mobile-portrait {
  display: none;
}

.text-style-italic {
  font-style: italic;
}

.background-color-grey {
  background-color: var(--grey);
}

.hide {
  display: none;
}

.fs-styleguide_section-type {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.text-size-medium {
  font-size: 1.25rem;
}

.text-align-left {
  text-align: left;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.form-wrapper {
  margin-bottom: 0;
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  padding-bottom: 10px;
  font-size: .875rem;
}

.text-rich-text {
  padding-bottom: 60px;
}

.text-rich-text h1 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.text-rich-text h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.text-rich-text h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}

.text-rich-text p {
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-bottom: .75rem;
}

.text-rich-text ul {
  margin-bottom: 1.5rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.icon-large {
  height: 4rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.form-radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.heading-xlarge {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.form-input {
  background-color: var(--grey);
  border-style: none;
  border-radius: 2px;
  min-height: 3rem;
  margin-bottom: 1rem;
  padding: 2rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.form-input.is-footer-input {
  background-color: #0000;
  border-radius: 0;
  height: auto;
  min-height: auto;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.form-checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  background-color: #dc9853;
  background-size: 90%;
  border-color: #dc9853;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.background-color-black {
  background-color: var(--black);
  color: #f5f5f5;
}

.text-style-quote {
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.fs-styleguide_classes {
  display: none;
}

.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_1-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_1-col.gap-medium {
  grid-row-gap: 2.5rem;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.page-padding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.page-padding.text-color-grey {
  margin-bottom: 40px;
}

.fs-styleguide_2-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: start;
  display: grid;
}

.text-align-right {
  text-align: right;
}

.show-tablet {
  display: none;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-color-grey {
  color: gray;
}

.form-radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form-radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.show-mobile-landscape {
  display: none;
}

.background-color-white {
  background-color: #fff;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-1x1-large {
  width: 4rem;
  height: 4rem;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form-message-error {
  color: var(--black);
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.button-secondary {
  background-color: var(--black);
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  font-weight: 400;
  transition: color .2s;
}

.button-secondary:hover {
  color: var(--light-green);
}

.button-text {
  color: var(--black);
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.25rem;
  font-weight: 600;
}

.margin-tiny {
  margin: .125rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
  padding-top: 60px;
  padding-bottom: 100px;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .125rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-style-allcaps {
  text-transform: uppercase;
  padding-top: 60px;
  padding-bottom: 0;
}

.text-style-allcaps.text-weight-bold.text-color-gradient {
  padding-top: 40px;
}

.text-style-allcaps.text-color-gradient {
  background-image: linear-gradient(to right, #a54e2b, #dc9853);
}

.text-style-allcaps.text-color-white {
  margin-top: 20px;
  margin-bottom: 60px;
  margin-left: 40px;
}

.margin-top, .margin-top.margin-medium, .margin-top.margin-medium, .margin-top.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom, .margin-bottom.margin-small, .margin-bottom.margin-xsmall, .margin-bottom.margin-medium {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  margin-bottom: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.fs-styleguide_background-spacer {
  height: 5rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.heading-small {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-xsmall {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

.text-weight-medium {
  font-weight: 500;
}

.fs-styleguide_version-details {
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.fs-styleguide_page-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-color-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #a54e2b, #dc9853);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.nav_component {
  background-color: var(--white);
  width: 100%;
  position: sticky;
  top: 0;
}

.footer_component {
  background-color: var(--blue-black);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.nav_container {
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_logo {
  height: 5rem;
  color: var(--white);
}

.nav_menu-wrapper {
  border-left: .125rem solid #ffffff1a;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 2rem;
  display: flex;
}

.nav_link-wrapper {
  display: flex;
}

.nav_link {
  text-transform: uppercase;
  padding: 1rem 1.5rem;
}

.nav_link.w--current {
  color: var(--green);
}

.footer_content-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer_content-left {
  padding-right: 2rem;
}

.footer_logo {
  height: 4rem;
}

.footer_contact-link-list {
  grid-column-gap: 0rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start start;
  display: grid;
}

.footer_contact-link {
  text-transform: uppercase;
  font-size: .75rem;
}

.footer_content-rightt {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer_links-list {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer_social-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer_social-icon {
  width: 4rem;
  height: 4rem;
  color: var(--green);
  transition: filter .2s;
}

.footer_social-icon:hover {
  filter: brightness(50%);
}

.footer_link {
  color: #ffffffc7;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: .75rem;
}

.footer_form-wrapper {
  margin-bottom: 0;
}

.footer_form {
  border-radius: .75rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.is-nav {
  background-color: var(--green);
  color: var(--black);
  text-transform: uppercase;
  border-radius: .75rem;
  padding: 1rem 2.5rem;
  transition-property: none;
}

.is-nav:hover {
  color: var(--black);
}

.section-contact-header {
  background-image: url('../images/kontakt3siedem.avif');
  background-position: 50%;
  background-size: cover;
}

.contact-header_component {
  max-width: 25rem;
}

.contact_component {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact_content-right {
  margin-top: 4rem;
}

.contact_link {
  text-transform: uppercase;
  font-weight: 700;
}

.contact_link.text-size-large {
  line-height: 1;
}

.contact_form {
  flex-direction: column;
  display: flex;
}

.contact_form-wrapper {
  margin-bottom: 0;
}

.contact_form-submit {
  flex-direction: column;
  display: flex;
}

.section-home-header {
  background-image: url('../images/01-hero_101-hero.avif');
  background-position: 50% 35%;
  background-size: cover;
}

.home-header_component {
  max-width: 38rem;
  color: var(--white);
}

.home-header_info {
  align-items: flex-start;
  display: flex;
}

.accent-line {
  color: var(--green);
  margin-top: .6rem;
  margin-right: 1rem;
  display: flex;
}

.home-benefits_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center;
  display: grid;
}

.home-benefits_content-top {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
}

.home-benefits_content-bottom {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home-benefits_item {
  background-image: url('../images/a-01_1a-01.avif');
  background-position: 50%;
  background-size: cover;
  align-items: flex-end;
  height: 25rem;
  padding: 2rem;
  display: flex;
}

.home-benefits_item.is-second {
  background-image: url('../images/a-02_1a-02.avif');
  background-position: 50%;
  background-size: cover;
}

.home-benefits_item.is-third {
  background-image: url('../images/a-03_1a-03.avif');
  background-position: 50%;
  background-size: cover;
}

.home-benefits_item.is-last {
  background-image: url('../images/a-04_1a-04.avif');
  background-position: 50%;
  background-size: cover;
}

.home-benefits_text-wrapper {
  z-index: 3;
  max-width: 13.5rem;
  color: var(--white);
}

.home-benefits_summary {
  opacity: 1;
  color: var(--white);
  font-family: Roboto Condensed, sans-serif;
  overflow: hidden;
}

.section-home-visit {
  background-image: linear-gradient(-109.61deg, #cd54238a, #ffd0a0a1), url('../images/budynek_1budynek.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.home-visit_component {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3rem;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  padding: 4.5rem 3rem;
  display: grid;
  position: relative;
}

.home-visit_icon {
  color: #ffd2a480;
}

.thick-accent-line {
  background-color: var(--green);
  width: 100%;
  height: 1rem;
  position: absolute;
  inset: auto 0% 0%;
}

.thick-accent-line.is-dark {
  background-color: var(--green);
}

.home-about_component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home-about_item {
  background-color: var(--grey);
  padding: 4rem;
  position: relative;
}

.beliefs_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.beliefs_image-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 3rem;
  display: grid;
}

.beliefs_image-row.is-top-aligned {
  align-items: start;
}

.beliefs_top-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  display: flex;
}

.beliefs_center-image {
  object-fit: cover;
  border-radius: 2rem;
  height: 32rem;
}

.beliefs_outside-image {
  object-fit: cover;
  border-radius: 2rem;
  width: 100%;
  height: 24rem;
}

.beliefs_outside-image.is-home {
  margin-top: -4rem;
}

.learn-more-link {
  justify-content: center;
  align-items: center;
  display: flex;
}

.learn-more-link.is-right-aligned {
  justify-content: flex-end;
}

.section-about-header {
  background-image: url('../images/członkowie.avif');
  background-position: 50%;
  background-size: cover;
  min-height: 24rem;
}

.about-header_component {
  max-width: 42rem;
}

.about-benefits_component {
  grid-column-gap: 0rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-benefits_content-row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.about-benefits_image {
  object-fit: cover;
  height: 20rem;
}

.blog_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  grid-auto-columns: 1fr;
  display: grid;
}

.blog_item-link {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 4rem 1.5rem;
  display: flex;
  position: relative;
}

.blog_item-link:hover {
  color: var(--black);
}

.blog_item-link.is-home {
  background-color: var(--grey);
}

.blog-recent_item {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 3.5rem;
  display: grid;
}

.blog-recent_image {
  object-fit: cover;
  width: 100%;
  height: 24rem;
}

.blog-recent_author-wrapper {
  justify-content: space-between;
  margin-bottom: 1rem;
  display: flex;
}

.blog_author-wrapper {
  margin-top: 1rem;
}

.blog_item-content {
  flex: 1;
}

.section-sermon-header {
  background-image: url('../images/nabo.avif');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.sermon-featured_component {
  background-color: var(--light-green);
}

.sermon-featured_item {
  flex-wrap: nowrap;
  display: flex;
}

.sermon-featured_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sermon-featured_content-left {
  align-items: center;
  width: 100%;
  max-width: 28rem;
  padding: 3rem;
  display: flex;
  position: relative;
}

.sermon-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  grid-auto-columns: 1fr;
  display: grid;
}

.sermon_item-link {
  background-color: var(--grey);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3rem 1.5rem;
  transition-property: none;
  display: block;
  position: relative;
}

.sermon_item-link:hover {
  color: var(--black);
}

.sermon_item-info {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.sermon_item-date {
  text-align: right;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.sermon_item-icon.is-time {
  width: 1.25rem;
  margin-top: .25rem;
}

.section-sermon-template-header {
  background-color: var(--grey);
}

.sermon-template-header_component {
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.sermon-template-header_form {
  background-color: var(--white);
  padding: 2.5rem;
  position: sticky;
  top: 5.5rem;
}

.sermon-template-header_form-wrapper {
  margin-bottom: 0;
  position: relative;
}

.sermon-template-header_form-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2rem;
  display: grid;
}

.empty-state {
  height: 0;
  display: none;
}

.arrow-icon {
  margin-left: .5rem;
}

.contact_social-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.background-color-light-peach {
  background-color: var(--light-green);
}

.content-inline {
  display: inline-block;
}

.text-color-peach {
  color: var(--green);
}

.grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.header_content {
  z-index: 1;
  justify-content: flex-end;
  align-items: center;
  min-height: 70vh;
  max-height: 70vh;
  display: flex;
  position: relative;
}

.header_content.inside {
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  max-height: 50vh;
}

.header_background-image {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.header_background-image.inside {
  object-fit: contain;
  object-position: 50% 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header5_background-image-wrapper {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080);
  max-height: 80vh;
  position: absolute;
  inset: 0%;
  overflow: clip;
}

.header5_background-image-wrapper.inside {
  background-image: none;
  justify-content: center;
  align-items: center;
  max-height: none;
  display: flex;
}

.section_layout {
  color: #222;
  background-color: #fff;
  overflow: clip;
}

.padding-global {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

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

.heading-3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-color-white {
  color: var(--white);
}

.overlay {
  background-image: linear-gradient(90deg, #6b5144, #fff0 51%);
}

.paragraph {
  margin-top: 20px;
}

.heading-4 {
  padding-top: 60px;
}

.paragraph-2 {
  margin-top: 40px;
  padding-bottom: 60px;
}

.section {
  background-image: url('../images/o_nas37.avif');
  background-position: 50%;
  background-size: cover;
  margin-top: 0;
  padding-top: 170px;
  padding-bottom: 166px;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.section-3 {
  background-image: url('../images/trojki-wspolnotowe.avif');
  background-position: 50%;
  background-size: cover;
  padding-top: 88px;
}

.heading-5 {
  margin-left: 100px;
  padding-top: 200px;
  padding-bottom: 200px;
}

.heading-6 {
  padding-bottom: 20px;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  margin-top: 60px;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.heading-7 {
  padding-bottom: 20px;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

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

.hero-heading-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.features-list-2 {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two-2 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-block-two-2 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image-2 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11, .paragraph-12 {
  padding-bottom: 40px;
}

.div-block {
  background-image: url('../images/trojki.avif');
  background-position: 50%;
  background-size: cover;
}

.section-5 {
  background-image: url('../images/swiadectwodzialania.avif');
  background-position: 0 0;
  background-size: auto;
}

.section-5.page-padding {
  background-position: 50%;
  background-size: cover;
  margin-top: -6px;
  padding-top: 200px;
  padding-bottom: 200px;
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-3 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-block-2 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-2 {
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-4 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-4 {
  margin-left: 2px;
  display: flex;
}

.button_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header {
  height: 70vh;
}

.header._50vh {
  height: 50vh;
}

.padding-section {
  padding-left: 5%;
  padding-right: 5%;
}

.slider-arrow-icon_default {
  width: 1rem;
  height: 1rem;
  color: var(--green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery23_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery23_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
}

.gallery23_slide {
  padding-right: 2rem;
}

.gallery23_image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-arrow {
  border: 1px solid var(--green);
  background-color: ;
  width: 3rem;
  height: 3rem;
  color: ;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-arrow.is-bottom-previous {
  inset: auto 4rem 0% auto;
}

.slider-arrow.is-bottom-next {
  inset: auto 0% 0% auto;
}

.gallery23_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.gallery23_mask {
  width: 25%;
  overflow: visible;
}

.gallery23_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery23_lightbox-link {
  width: 100%;
  height: 100%;
}

.flex-center {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .button {
    text-align: center;
    margin-right: 20px;
  }

  .button.is-nav {
    margin-bottom: 0;
  }

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

  .paragraph-2.align-center {
    padding-top: 0;
  }

  .team-slider {
    margin-top: 20px;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .div-block {
    -webkit-text-fill-color: inherit;
    background-position: 50%;
    background-clip: border-box;
    border-radius: 0;
  }

  .div-block.padding-xhuge {
    margin-top: 0;
  }

  .paragraph-13 {
    text-align: right;
  }
}

@media screen and (max-width: 991px) {
  .hide-tablet {
    display: none;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav_container {
    justify-content: space-between;
  }

  .nav_menu-wrapper {
    background-color: var(--white);
    margin-left: 0;
    padding-bottom: 2rem;
  }

  .nav_link-wrapper {
    flex-direction: column;
  }

  .nav_menu-button.w--open {
    color: var(--green);
    background-color: #0000;
  }

  .footer_content-wrapper {
    grid-template-columns: 1fr;
  }

  .footer_link {
    margin-bottom: .5rem;
  }

  .contact_component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .home-benefits_content-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .home-about_item {
    padding: 2.5rem 1.5rem;
  }

  .beliefs_center-image {
    border-radius: 1rem;
    width: 100%;
    height: 28rem;
  }

  .beliefs_outside-image {
    border-radius: 1rem;
    height: 20rem;
  }

  .section-about-header {
    min-height: auto;
  }

  .about-benefits_component {
    grid-row-gap: 5rem;
  }

  .blog-recent_item {
    grid-template-columns: 1fr;
    padding: 4rem;
  }

  .blog-recent_image {
    height: 20rem;
  }

  .sermon-featured_item {
    flex-wrap: wrap;
  }

  .sermon-featured_content-left {
    max-width: none;
  }

  .sermon-template-header_component {
    grid-column-gap: 1rem;
  }

  .sermon-template-header_form {
    top: 3.8rem;
  }

  .sermon-template-header_form-info {
    grid-template-columns: 1fr;
  }

  .footer_form-text-wrapper {
    max-width: 24rem;
  }

  .sermon-featured_content-right {
    width: 100%;
    height: 20rem;
  }

  .header5_background-image-wrapper {
    background-color: #fff;
    background-image: linear-gradient(#00000080, #00000080);
  }

  .container {
    max-width: 728px;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .container-2 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-3 {
    max-width: 728px;
  }

  .features-wrapper-two-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .fs-styleguide_row.is-for-social-icons {
    grid-template-rows: auto auto;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr 1fr;
  }

  .fs-styleguide_color-sample {
    padding: 2.5rem 2rem;
  }

  .button {
    border-radius: .5rem;
    margin-bottom: 10px;
  }

  .button.is-footer-button {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .heading-large {
    font-size: 2rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .fs-styleguide_section-type {
    font-size: .875rem;
  }

  .heading-xlarge {
    font-size: 2.5rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-small {
    font-size: 1rem;
  }

  .fs-styleguide_version-details {
    font-size: .875rem;
  }

  .fs-styleguide_page-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer_component {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .nav_logo-link.w--current {
    padding-left: 0;
  }

  .footer_content-rightt {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .footer_form-wrapper, .footer_form {
    margin-top: 1rem;
  }

  .contact_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .contact_content-right {
    margin-top: 1rem;
  }

  .home-visit_component {
    grid-template-columns: 1.5fr;
    justify-items: center;
  }

  .home-about_component {
    grid-template-columns: 1fr;
  }

  .beliefs_image-row {
    grid-column-gap: 1.25rem;
  }

  .beliefs_image-row.is-top-aligned {
    grid-template-columns: auto;
  }

  .beliefs_center-image {
    height: 20rem;
  }

  .beliefs_outside-image {
    height: 16rem;
    margin-top: 0;
  }

  .beliefs_outside-image.is-home {
    margin-top: 0;
  }

  .about-benefits_component {
    grid-row-gap: 3.5rem;
  }

  .about-benefits_content-row {
    grid-template-columns: 1fr;
  }

  .about-benefits_image {
    height: auto;
  }

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

  .blog-recent_item {
    grid-row-gap: 1.5rem;
    padding: 2rem;
  }

  .blog-recent_image {
    height: 16rem;
  }

  .sermon-featured_content-left {
    padding: 1.5rem;
  }

  .sermon-list, .sermon-template-header_component {
    grid-template-columns: 1fr;
  }

  .sermon-template-header_form {
    position: static;
  }

  .footer_form-text-wrapper {
    max-width: 20rem;
  }

  .sermon-featured_content-right {
    height: 16rem;
  }

  .header_background-image {
    object-position: 0% 50%;
  }

  .team-slider, .features-list, .team-circles {
    padding: 60px 15px;
  }

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

  .hero-heading-left, .features-list-2, .team-slider-2 {
    padding: 60px 15px;
  }

  .button_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }

  .gallery23_slide {
    padding-right: 1.5rem;
  }

  .gallery23_mask {
    width: 50%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2rem;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-template-columns: auto;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .home-benefits_content-bottom {
    grid-template-columns: 1fr;
  }

  .beliefs_image-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .beliefs_image-row.is-top-aligned {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .beliefs_center-image {
    height: 16rem;
  }

  .beliefs_outside-image {
    height: 12rem;
  }

  .blog-recent_item {
    padding: 1.5rem;
  }

  .blog-recent_author-wrapper {
    flex-direction: column;
  }

  .sermon-template-header_form {
    padding: 1.4rem;
  }

  .sermon-template-header_form-info {
    grid-template-columns: .75fr;
  }

  .sermon-featured_content-right {
    height: 12rem;
  }

  .header_content.inside {
    min-height: 30vh;
    max-height: 30vh;
  }

  .header_background-image {
    object-position: 15% 50%;
  }

  .container {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .container-2 {
    max-width: none;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

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

  .grid-4 {
    flex-flow: column;
    display: flex;
  }

  .container-3 {
    max-width: none;
  }

  .features-block-two-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image-2 {
    margin-bottom: 10px;
  }

  .centered-heading-3 {
    margin-bottom: 24px;
  }

  .header._50vh {
    height: 30vh;
  }
}

#w-node-_3676a831-9ee6-c641-f2d0-e0e4c511514c-1c2b6470 {
  justify-self: stretch;
}

#w-node-_6ac79692-1c90-1559-37dc-f11b6feef4bd-1c2b6470 {
  align-self: center;
}

#w-node-_955c417b-71bc-4cd5-746e-ae186a90c947-6a90c922 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_812ae63a-f1e6-4626-761b-03ac20b4c3e5-1c2b6473, #w-node-dd6eb621-2356-c60c-4af3-12096489496b-1c2b6473, #w-node-fb8aef60-a987-ecc9-0346-e7c81470fb6a-1c2b6473, #w-node-c461d95f-d5f3-3353-23de-11cdd844dcc5-1c2b6473, #w-node-f61759f8-9cbe-c812-740b-25942b02de53-1c2b6473, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e268-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e273-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e27d-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e287-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e291-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e29b-1c2b647d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dbbf8f2a-5ce9-9194-3bc4-2391211888bb-5979f490, #w-node-dbbf8f2a-5ce9-9194-3bc4-2391211888bb-1ebd948c, #w-node-dbbf8f2a-5ce9-9194-3bc4-2391211888bb-6613e6e3, #w-node-dbbf8f2a-5ce9-9194-3bc4-2391211888bb-b3f34280 {
  align-self: auto;
}

@media screen and (min-width: 1440px) {
  #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e273-1c2b647d, #w-node-_97ec51a3-3f7f-e8f4-65e7-94857268e27d-1c2b647d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-dd6eb621-2356-c60c-4af3-12096489496b-1c2b6473, #w-node-fb8aef60-a987-ecc9-0346-e7c81470fb6a-1c2b6473, #w-node-c461d95f-d5f3-3353-23de-11cdd844dcc5-1c2b6473, #w-node-f61759f8-9cbe-c812-740b-25942b02de53-1c2b6473 {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_812ae63a-f1e6-4626-761b-03ac20b4c3e5-1c2b6473 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4dabab4d-b3b4-55d3-f3b4-82e18fcaf35c-1c2b6473 {
    order: -9999;
  }

  #w-node-dd6eb621-2356-c60c-4af3-12096489496b-1c2b6473 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b59a53a0-98a0-a390-6e02-af3fcd3e27e0-1c2b6473 {
    order: -9999;
  }

  #w-node-fb8aef60-a987-ecc9-0346-e7c81470fb6a-1c2b6473 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e31ab4d2-8c36-4dea-c9a9-605e5f45b2c4-1c2b6473 {
    order: -9999;
  }

  #w-node-c461d95f-d5f3-3353-23de-11cdd844dcc5-1c2b6473 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d1c5ea41-aada-7bee-4e43-4801d5705e0c-1c2b6473 {
    order: -9999;
  }

  #w-node-f61759f8-9cbe-c812-740b-25942b02de53-1c2b6473 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


