@font-face {
  font-family: "Archivo";
  src: url(../../fonts/Archivo/Archivo/Archivo-Regular.ttf);
}
@font-face {
  font-family: "Archivo-Bold";
  src: url(../../fonts/Archivo/Archivo/Archivo-Bold.ttf);
}
@font-face {
  font-family: "Archivo Expanded";
  src: url(../../fonts/Archivo/Archivo_Expanded/Archivo_Expanded-Regular.ttf);
}
@font-face {
  font-family: "Archivo Expanded-Bold";
  src: url(../../fonts/Archivo/Archivo_Expanded/Archivo_Expanded-Bold.ttf);
}
* {
  font-family: "Archivo", sans-serif;
}

.umb-block-grid__layout-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  -moz-column-gap: var(--umb-block-grid--column-gap, 0);
  column-gap: var(--umb-block-grid--column-gap, 0);
  row-gap: var(--umb-block-grid--row-gap, 0);
}

.umb-block-grid__layout-item {
  position: relative;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--item-column-span, 1) * 3, var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--item-row-span, 1);
}

.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  -moz-column-gap: var(--umb-block-grid--areas-column-gap, 0);
  column-gap: var(--umb-block-grid--areas-column-gap, 0);
  row-gap: var(--umb-block-grid--areas-row-gap, 0);
}

.umb-block-grid__area {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--area-column-span, 1) * 3, var(--umb-block-grid--area-grid-columns));
  grid-row: span var(--umb-block-grid--area-row-span, 1);
}

@media (min-width: 1024px) {
  .umb-block-grid__layout-item {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
  }
  .umb-block-grid__area {
    grid-column-end: span min(var(--umb-block-grid--area-column-span, 1), var(--umb-block-grid--area-grid-columns));
  }
}
label {
  display: block;
  color: #5B5B5B;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.28px;
  margin: 0 0 4px 0;
}
label.required {
  color: #F15B4E;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.28px;
}

@media (min-width: 744px) {
  .subscription-form {
    display: flex;
    gap: 16px;
  }
}

input.saddleback-input {
  height: 48px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #929292;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
}
input.saddleback-input:focus {
  outline: none;
  border: 1px solid #7DBFE6;
}
input.saddleback-input:focus-visible {
  outline: none;
  border: 1px solid #7DBFE6;
}
input.saddleback-input.error {
  border-color: #F15B4E;
}

input[type=text], input[type=search], input[type=email], textarea {
  display: flex;
  padding: 11px 16px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid #929292;
  background: #FFFFFF;
  caret-color: #242424;
  text-align: left;
  min-width: 100%;
}
@media (min-width: 744px) {
  input[type=text], input[type=search], input[type=email], textarea {
    font-size: 16px;
    letter-spacing: 0.16px;
  }
}
input[type=text]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #E9E9E9;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
input[type=text]::placeholder, input[type=search]::placeholder, input[type=email]::placeholder, textarea::placeholder {
  color: #E9E9E9;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
input[type=text]:focus, input[type=search]:focus, input[type=email]:focus, textarea:focus {
  outline: none;
  border: 1px solid #7DBFE6;
}
input[type=text]:disabled, input[type=search]:disabled, input[type=email]:disabled, textarea:disabled {
  background-color: #eee;
}

textarea {
  padding: 16px;
  min-height: 94px;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  content: url("../../../icons/check_box_outline_blank.svg");
}
input[type=checkbox]:checked {
  content: url("../../../icons/check_box.svg");
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  content: url("../../../icons/radio_button_unchecked.svg");
}
input[type=radio]:checked {
  content: url("../../../icons/radio_button_checked.svg");
}
input[type=radio]:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icomoon-fonts/icomoon.eot?adofpx");
  src: url("../../fonts/icomoon-fonts/icomoon.eot?adofpx#iefix") format("embedded-opentype"), url("../../fonts/icomoon-fonts/icomoon.ttf?adofpx") format("truetype"), url("../../fonts/icomoon-fonts/icomoon.woff?adofpx") format("woff"), url("../../fonts/icomoon-fonts/icomoon.svg?adofpx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-baptism:before {
  content: "\e900";
}

.icon-church:before {
  content: "\e901";
}

.icon-closecircle .path1:before {
  content: "\e902";
  color: rgb(36, 36, 36);
}

.icon-closecircle .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-community:before {
  content: "\e904";
}

.icon-community-1:before {
  content: "\e905";
}

.icon-directions:before {
  content: "\e906";
}

.icon-dropdown:before {
  content: "\e907";
}

.icon-dropdownopen:before {
  content: "\e908";
}

.icon-email:before {
  content: "\e909";
}

.icon-extensions:before {
  content: "\e90a";
}

.icon-facebook:before {
  content: "\e90b";
}

.icon-filled:before {
  content: "\e90c";
}

.icon-followjesus:before {
  content: "\e90d";
}

.icon-instagram:before {
  content: "\e90e";
}

.icon-location:before {
  content: "\e90f";
}

.icon-podcast:before {
  content: "\e910";
}

.icon-right-arrow:before {
  content: "\e911";
}

.icon-round-facebook .path1:before {
  content: "\e912";
  color: rgb(36, 36, 36);
}

.icon-round-facebook .path2:before {
  content: "\e913";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-instagram .path1:before {
  content: "\e914";
  color: rgb(36, 36, 36);
}

.icon-round-instagram .path2:before {
  content: "\e915";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-instagram .path3:before {
  content: "\e916";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-instagram .path4:before {
  content: "\e917";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-podcast .path1:before {
  content: "\e918";
  color: rgb(36, 36, 36);
}

.icon-round-podcast .path2:before {
  content: "\e919";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-sb .path1:before {
  content: "\e91a";
  color: rgb(36, 36, 36);
}

.icon-round-sb .path2:before {
  content: "\e91b";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-sb .path3:before {
  content: "\e91c";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-sb .path4:before {
  content: "\e91d";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-spotify .path1:before {
  content: "\e91e";
  color: rgb(36, 36, 36);
}

.icon-round-spotify .path2:before {
  content: "\e91f";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-subscribe .path1:before {
  content: "\e920";
  color: rgb(36, 36, 36);
}

.icon-round-subscribe .path2:before {
  content: "\e921";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-subscribe .path3:before {
  content: "\e922";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-subscribe .path4:before {
  content: "\e923";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-subscribe .path5:before {
  content: "\e924";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-tiktok .path1:before {
  content: "\e925";
  color: rgb(36, 36, 36);
}

.icon-round-tiktok .path2:before {
  content: "\e926";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-x .path1:before {
  content: "\e927";
  color: rgb(36, 36, 36);
}

.icon-round-x .path2:before {
  content: "\e928";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-x .path3:before {
  content: "\e929";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-x .path4:before {
  content: "\e92a";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-round-youtube .path1:before {
  content: "\e92b";
  color: rgb(36, 36, 36);
}

.icon-round-youtube .path2:before {
  content: "\e92c";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-saddlebackfilled:before {
  content: "\e92d";
}

.icon-saddlebackoutline:before {
  content: "\e92e";
}

.icon-spotify:before {
  content: "\e92f";
}

.icon-subscribe:before {
  content: "\e930";
}

.icon-tiktok:before {
  content: "\e931";
}

.icon-view:before {
  content: "\e932";
}

.icon-visit:before {
  content: "\e933";
}

.icon-volunteer:before {
  content: "\e934";
}

.icon-x:before {
  content: "\e935";
}

.icon-youtube:before {
  content: "\e936";
}

.icon-phone:before {
  content: "\e937";
}

.icon-email-black-outline:before {
  content: "\e938";
}

.icon-contact:before {
  content: "\e939";
}

.icon-calendar:before {
  content: "\e93a";
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

body {
  background-color: #E3D9CD;
}

.error-img {
  text-align: center;
}

.five-hundred-error-text {
  max-width: 298px;
  margin: 0 auto;
}
@media (min-width: 744px) {
  .five-hundred-error-text {
    max-width: 418px;
  }
}

p {
  color: #000;
  text-align: center;
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin: 0 0 8px;
}

a {
  color: #1980CC;
  font-family: "Archivo";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
  text-decoration: none;
}