@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  font-weight: 700;
  transition: color 0.3s ease;
}

.text-block p:last-of-type {
  margin-bottom: 0;
}
.text-block p + ul {
  margin-top: 16px;
}
.text-block ul {
  list-style: disc;
}
.text-block ul li {
  margin-bottom: 10px;
}
.text-block ul li:last-of-type {
  margin-bottom: 0;
}
.text-block ul + p {
  margin-top: 24px;
}
.text-block blockquote {
  border-left: 6px solid #FEBF33;
  border-radius: 6px;
  margin: 0;
  padding: 24px 24px 24px 16px;
}

.grey-bg {
  background-color: #F7F7F7;
}

.mustard-bg {
  background-color: #FEBF33;
}

.tile-bg {
  background-color: #FEBF33;
  background-repeat: repeat;
  background-image: url("../images/SSF-background-tile.svg");
  background-size: 140px;
}

.orange-gradient {
  background: #F19B20;
  background: linear-gradient(270deg, #F19B20 0%, #FEBF33 100%);
}

@media (min-width: 992px) {
  .small-container {
    max-width: 904px;
  }
}

.standard-block-spacing {
  margin: 48px 0;
}
@media (min-width: 768px) {
  .standard-block-spacing {
    margin: 64px 0;
  }
}
@media (min-width: 992px) {
  .standard-block-spacing {
    margin: 104px 0;
  }
}
.coloured-block-spacing {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .coloured-block-spacing {
    padding: 64px 0;
  }
}
@media (min-width: 992px) {
  .coloured-block-spacing {
    padding: 104px 0;
  }
}

.title-w-icon__icon {
  display: block;
  width: 32px;
}
@media (min-width: 768px) {
  .title-w-icon__icon {
    width: 48px;
  }
}
.title-w-icon__icon img {
  width: 100%;
}
.title-w-icon__icon--sm {
  width: 27px;
}

.video-embed {
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brand-radius-sm {
  border-radius: 6px;
  overflow: hidden;
}

.brand-radius {
  border-radius: 6px 48px 6px 6px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .brand-radius {
    border-top-right-radius: 112px;
  }
}

.obj-fit-img {
  overflow: hidden;
  position: relative;
}
.obj-fit-img img {
  height: 100%;
  object-fit: cover;
  overflow: visible;
  overflow-clip-margin: unset;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate3d(0px, 0px, 0.1px);
  width: 100%;
}

.posts-grid {
  position: relative;
}
.posts-grid.loading:before, .posts-grid.loading:after {
  content: "";
  display: block;
  position: absolute;
}
.posts-grid.loading:before {
  background-color: #FFF;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  width: 100%;
}
.posts-grid.loading:after {
  animation: fadepulse 2s ease infinite;
  background-image: url("../images/s-logo-yellow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 66px;
  left: 50%;
  margin-top: -33px;
  margin-left: -33px;
  top: 50%;
  width: 66px;
}

@keyframes fadepulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.to-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.to-animate.in {
  opacity: 1;
  transform: translateY(0);
}

.to-animate-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.to-animate-right.in {
  opacity: 1;
  transform: translateX(0);
}

h1, .h1 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3.25rem;
  }
}

h2, .h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.25rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 1.125rem;
  }
}

.text-lg {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .text-lg {
    font-size: 1.375rem;
  }
}

.text-sm {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .text-sm {
    font-size: 1rem;
  }
}

.text-xs {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .text-xs {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .form-label {
    font-size: 1rem;
  }
}

.form-control, .form-select {
  height: 56px;
}

textarea.form-control {
  min-height: 144px;
}

input[type=file].form-control {
  background-color: transparent;
  border: none;
  height: auto;
}
input[type=file].form-control::file-selector-button {
  border: 1px solid #F19B20;
  border-radius: 56px;
  font-weight: 700;
}

.buttoncheckbox .form-label {
  display: none;
}

.button-checkbox-field {
  border: 1px solid #F19B20;
  border-radius: 56px;
  padding: 10px 24px;
}

.umbraco-forms-hidden {
  display: none;
}

.icon-input-wrapper--email, .icon-input-wrapper--tel, .icon-input-wrapper--date {
  position: relative;
}
.icon-input-wrapper--email:before, .icon-input-wrapper--tel:before, .icon-input-wrapper--date:before {
  color: #241704;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 400;
  left: 16px;
  line-height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
}
.icon-input-wrapper--email input, .icon-input-wrapper--tel input, .icon-input-wrapper--date input {
  padding-left: 46px;
}
.icon-input-wrapper--email:before {
  content: "\f0e0";
}
.icon-input-wrapper--tel:before {
  content: "\f095";
}
@media (min-width: 768px) {
  .icon-input-wrapper--date {
    max-width: 372px;
  }
}
.icon-input-wrapper--date:before {
  content: "\f133";
  left: auto;
  right: 16px;
}
.icon-input-wrapper--date input {
  padding-left: 16px;
  padding-right: 46px;
}

.custom-checkbox, .custom-radio {
  position: relative;
}
.custom-checkbox input, .custom-radio input {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}
.custom-checkbox input:checked + label:after, .custom-radio input:checked + label:after {
  content: "\f00c";
}
.custom-checkbox label, .custom-radio label {
  color: #241704;
  font-size: 1rem;
  padding-left: 36px;
  position: relative;
}
.custom-checkbox label:hover, .custom-checkbox label:focus, .custom-radio label:hover, .custom-radio label:focus {
  cursor: pointer;
}
.custom-checkbox label:hover:before, .custom-checkbox label:focus:before, .custom-radio label:hover:before, .custom-radio label:focus:before {
  background-color: #F7F7F7;
}
.custom-checkbox label:before, .custom-checkbox label:after, .custom-radio label:before, .custom-radio label:after {
  height: 28px;
  left: 0;
  position: absolute;
  top: -3px;
  width: 28px;
}
.custom-checkbox label:before, .custom-radio label:before {
  border: 1px solid #241704;
  border-radius: 6px;
  content: "";
  transition: background-color 0.3s ease;
}
.custom-checkbox label:after, .custom-radio label:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}
.custom-checkbox + .custom-checkbox, .custom-checkbox + .custom-radio, .custom-radio + .custom-checkbox, .custom-radio + .custom-radio {
  margin-top: 16px;
}

.custom-radio input:checked + label:before {
  background-color: #241704;
}
.custom-radio input:checked + label:after {
  content: "";
  transform: scale(0.5);
}
.custom-radio label:hover:after, .custom-radio label:focus:after {
  transform: scale(0.5);
}
.custom-radio label:before, .custom-radio label:after {
  border-radius: 100%;
  content: "";
}
.custom-radio label:before {
  background-color: #FFF;
  transition: background-color 0.3s ease;
}
.custom-radio label:after {
  background-color: #FEBF33;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.fileupload .umbraco-forms-tooltip {
  padding-left: 20px;
  position: relative;
}
.fileupload .umbraco-forms-tooltip:before {
  content: "\f05a";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 400;
  left: 0;
  line-height: 12px;
  position: absolute;
  top: 4px;
}

.field-validation-error {
  color: #A70240;
  font-size: 1rem;
  font-weight: 700;
}

.form-submit-wrapper {
  display: inline-block;
  position: relative;
}
.form-submit-wrapper:before {
  content: "\f061";
  font-family: "Font Awesome 6 Sharp";
  font-size: 16px;
  font-weight: 400;
  height: 16px;
  line-height: 16px;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  z-index: 2;
}
@media (min-width: 768px) {
  .form-submit-wrapper:before {
    right: 32px;
  }
}
.form-submit-wrapper .btn {
  padding-right: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .form-submit-wrapper .btn {
    padding-right: 64px;
  }
}
.form-submit-wrapper--back:before {
  content: "\f060";
  left: 16px;
  right: auto;
}
@media (min-width: 768px) {
  .form-submit-wrapper--back:before {
    left: 32px;
  }
}
.form-submit-wrapper--back .btn {
  padding-left: 40px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .form-submit-wrapper--back .btn {
    padding-left: 64px;
    padding-right: 32px;
  }
}

.umbraco-forms-paging-count {
  align-items: center;
  color: #241704;
  display: flex;
  font-weight: 700;
}

.umbraco-forms-paging-curr-page {
  align-items: center;
  display: flex;
}
.umbraco-forms-paging-curr-page:before {
  background-color: #F19B20;
  border-radius: 100%;
  content: "";
  display: block;
  height: 4px;
  margin: 0 4px;
  width: 4px;
}

.umbraco-forms-paging-captions {
  justify-content: space-between;
}
.umbraco-forms-paging-captions-caption {
  width: 12px;
}
.umbraco-forms-paging-captions__number {
  background-color: #FFECC2;
  border-radius: 100%;
  display: block;
  height: 12px;
  overflow: hidden;
  text-indent: 100px;
  width: 12px;
}
.umbraco-forms-paging-captions-caption-current .umbraco-forms-paging-captions__number {
  background-color: #F19B20;
}

.form-pager-nav-mobile {
  padding: 6px;
}
.form-pager-nav-mobile__item {
  flex: 1;
  padding: 0 12px;
  position: relative;
}
.form-pager-nav-mobile__item:before {
  left: -6px;
}
.form-pager-nav-mobile__item:before, .form-pager-nav-mobile__item:last-of-type:after {
  background-color: #FFECC2;
  border-radius: 100%;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: -5px;
  width: 12px;
}
.form-pager-nav-mobile__item:last-of-type:after {
  right: -6px;
}
.form-pager-nav-mobile__item span {
  background-color: #FFECC2;
  border-radius: 2px;
  display: block;
  height: 4px;
}
.form-pager-nav-mobile__item--active:before {
  background-color: #F19B20;
}
.form-pager-nav-mobile__item--complete:before {
  background-color: #1BB42D;
}
.form-pager-nav-mobile__item--complete span {
  background-color: #1BB42D;
}

.form-pager-nav-desktop__item {
  flex: 1;
}
.form-pager-nav-desktop__item:after {
  background-color: #FFECC2;
  border-radius: 2px;
  content: "";
  display: block;
  height: 3px;
  margin: 0 16px;
  width: 100%;
}
.form-pager-nav-desktop__item:last-of-type {
  flex: 0 0 auto;
}
.form-pager-nav-desktop__item:last-of-type:after {
  content: none;
}
.form-pager-nav-desktop__item--active {
  font-weight: 700;
}
.form-pager-nav-desktop__item--active .form-pager-nav-desktop__number {
  background-color: #F19B20;
}
.form-pager-nav-desktop__item--complete {
  font-weight: 700;
}
.form-pager-nav-desktop__item--complete .form-pager-nav-desktop__number {
  background-color: #1BB42D;
  color: #1BB42D;
  position: relative;
}
.form-pager-nav-desktop__item--complete .form-pager-nav-desktop__number:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M7.2 0C5.77598 0 4.38393 0.422273 3.1999 1.21342C2.01586 2.00457 1.09302 3.12905 0.548071 4.44468C0.00311966 5.76031 -0.139464 7.20799 0.138349 8.60465C0.416163 10.0013 1.1019 11.2842 2.10883 12.2912C3.11577 13.2981 4.39869 13.9838 5.79535 14.2617C7.19202 14.5395 8.6397 14.3969 9.95532 13.8519C11.271 13.307 12.3954 12.3841 13.1866 11.2001C13.9777 10.0161 14.4 8.62403 14.4 7.2C14.4 5.29044 13.6414 3.45909 12.2912 2.10883C10.9409 0.758569 9.10956 0 7.2 0ZM10.584 5.168L7.032 10.096C6.9262 10.2388 6.77179 10.338 6.5979 10.3749C6.424 10.4117 6.24264 10.3837 6.088 10.296L4.048 9.104C3.88251 9.00428 3.76341 8.8429 3.7169 8.65536C3.67039 8.46783 3.70028 8.2695 3.8 8.104C3.89972 7.93851 4.0611 7.8194 4.24864 7.77289C4.43618 7.72638 4.63451 7.75628 4.8 7.856L6.248 8.72L9.448 4.328C9.56677 4.20902 9.72342 4.13535 9.8908 4.11976C10.0582 4.10417 10.2258 4.14764 10.3644 4.24263C10.5031 4.33763 10.6042 4.47816 10.6502 4.63987C10.6961 4.80158 10.684 4.97427 10.616 5.128L10.584 5.168Z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.form-pager-nav-desktop__item--complete:after {
  background-color: #1BB42D;
}
.form-pager-nav-desktop__number {
  background-color: #FFECC2;
  border-radius: 8px;
  color: #241704;
  display: block;
  line-height: 31px;
  height: 31px;
  margin-right: 8px;
  min-width: 31px;
  text-align: center;
  width: 31px;
}

.umbraco-forms-fieldset {
  margin-bottom: 16px;
}
.umbraco-forms-fieldset:last-of-type {
  margin-bottom: 0;
}
.umbraco-forms-fieldset legend {
  color: #241704;
  font-family: "Friends", helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px 0;
}
@media (min-width: 768px) {
  .umbraco-forms-fieldset legend {
    font-size: 1.25rem;
  }
}
.umbraco-forms-fieldset legend.form-label {
  font-size: 0.875rem;
  margin: 0 0 16px 0;
}
@media (min-width: 768px) {
  .umbraco-forms-fieldset legend.form-label {
    font-size: 1rem;
  }
}

.umbraco-forms-caption {
  display: none;
}

.skip-to-content-link {
  background-color: #F19B20;
  border-radius: 0 0 6px 6px;
  color: #241704;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: 30px;
  left: 50%;
  margin-left: -130px;
  padding-top: 4px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: -30px;
  transition: top 0.3s ease;
  width: 230px;
  z-index: 500;
}
.skip-to-content-link:focus {
  top: 0;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.btn-primary {
  background-color: #F19B20;
  color: #241704;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #FEBF33;
  color: #241704;
}

.btn-secondary {
  background-color: #FFF;
  color: #241704;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #FFECC2;
  color: #241704;
}

.btn-black {
  background-color: #241704;
  color: #FFF;
}
.btn-black:hover, .btn-black:focus {
  background-color: #F19B20;
  color: #241704;
}

.btn-light {
  background-color: #FEBF33;
  color: #241704;
}
.btn-light:hover, .btn-light:focus {
  background-color: #F19B20;
  color: #241704;
}

.btn-yellow {
  background-color: #FFECC2;
  color: #241704;
}
.btn-yellow:hover, .btn-yellow:focus {
  background-color: #FEBF33;
  color: #241704;
}

.btn-grey {
  background-color: #F7F7F7;
  color: #241704;
}
.btn-grey:hover, .btn-grey:focus {
  background-color: #FEBF33;
  color: #241704;
}
.btn-grey.active {
  background-color: #F19B20;
}

.btn.icon-link i {
  font-size: 16px;
}
@media (min-width: 768px) {
  .btn.icon-link i {
    font-size: 18px;
  }
}

.text-link {
  background-color: transparent;
  border: none;
  color: #241704;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .text-link {
    font-size: 1rem;
  }
}
.text-link:hover, .text-link:focus {
  color: #F19B20;
  text-decoration: none;
}
.text-link:hover i, .text-link:focus i {
  transform: translateX(8px);
}
.text-link i {
  color: #F19B20;
  font-size: 16px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .text-link i {
    font-size: 18px;
  }
}
.text-link span + span {
  margin-left: 16px;
}
.text-link--light:hover, .text-link--light:focus {
  color: #FFF;
}
.text-link--light i {
  color: #FFF;
}

.loader-btn {
  overflow: hidden;
  position: relative;
  transition: padding 0.4s ease, width 0.6s ease, border-radius 1s ease 0.4s, color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.loader-btn span {
  opacity: 1;
  text-wrap: nowrap;
  transition: opacity 0.3s ease;
}
.loader-btn:before {
  animation: spin 2s linear infinite;
  color: #241704;
  content: "\f1ce";
  font-family: "Font Awesome 6 Pro";
  font-size: 22px;
  font-weight: 900;
  left: 50%;
  line-height: 22px;
  margin-top: -11px;
  margin-left: -11px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s ease;
  width: 22px;
}
.loader-btn.loading {
  border-radius: 100%;
  height: 52px;
  padding: 0;
  width: 52px !important;
}
.loader-btn.loading:before {
  opacity: 1;
  transition: opacity 0.3s ease 0.4s;
}
.loader-btn.loading span {
  opacity: 0;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.header {
  background-color: #F19B20;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 500;
}
@media (min-width: 1200px) {
  .header {
    background-color: #F7F7F7;
  }
}
.header__inner {
  padding: 16px 0;
  position: relative;
  z-index: 550;
}
.header__logo {
  display: block;
  width: 113px;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 210px;
  }
}
.header__logo__light, .header__logo__dark {
  fill: #FFF;
}
@media (min-width: 1200px) {
  .header__logo__dark {
    fill: #F19C20;
  }
}
@media (min-width: 1200px) {
  .header__logo__light {
    fill: #FEBF32;
  }
}
.header__logo svg {
  width: 100%;
}
.header__action-btn {
  background-color: #FEBF33;
  border: none;
  border-radius: 8px;
  color: #241704;
  display: block;
  font-size: 14px;
  height: 48px;
  line-height: 48px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 48px;
}
.header__action-btn--white {
  background-color: #FFF;
}
.header__action-btn__icon {
  display: block;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: -100%;
  top: 0;
  transition: left 0.7s ease, opacity 0.5s ease;
  width: 100%;
}
.header__action-btn__icon--main {
  left: 0;
  opacity: 1;
}
.header__action-btn.active .header__action-btn__icon {
  left: 0;
  opacity: 1;
}
.header__action-btn.active .header__action-btn__icon--main {
  left: 100%;
  opacity: 0;
}
.header__meta-nav__btn {
  height: 48px;
  padding: 10px 24px;
}
@media (min-width: 1200px) {
  .header__meta-nav__btn {
    height: 56px;
    padding: 10px 40px;
  }
}
.header__meta-nav__btn--mobile {
  min-height: 56px;
}
.header__meta-nav__btn--mobile.btn-black {
  border-top: 2px solid #FEBF33;
}
.header__meta-nav__link {
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .header__meta-nav__link {
    font-size: 1rem;
  }
}
.header__search {
  left: 0;
  padding-top: 80px;
  position: fixed;
  top: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__search {
    padding-top: 0;
    position: static;
  }
}
.header__search__inner {
  background-color: #F19B20;
  padding: 24px 24px;
}
@media (min-width: 1200px) {
  .header__search__inner {
    padding: 0;
  }
}
.header__search__form__input, .header__search__form__btn, .header__search__close {
  height: 48px;
}
.header__search__close {
  background-color: transparent;
  border: none;
  color: #241704;
  font-size: 14px;
  margin-left: 8px;
  text-align: center;
  width: 42px;
}
.header__search__form {
  border: none;
  width: 100%;
}
.header__search__form__input {
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 5px 5px 24px;
  transition: width 0.3s ease;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__search__form__input {
    width: 158px;
  }
}
.header__search__form__input::placeholder {
  color: #241704;
}
@media (min-width: 1200px) {
  .header__search__form__input:focus {
    width: 198px;
  }
}
.header__search__form__btn {
  background-color: #FEBF33;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #241704;
  font-size: 14px;
  line-height: 48px;
  min-width: 48px;
  text-align: center;
  width: 48px;
}

.navigation {
  display: none;
  height: 100%;
  left: 0;
  padding-top: 80px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 400;
}
@media (min-width: 1200px) {
  .navigation {
    display: block !important;
    padding-top: 0;
    position: relative;
  }
}
.navigation__inner {
  background-color: #F19B20;
  height: 100%;
  overflow: auto;
  padding: 45px 0 10px 0;
}
@media (min-width: 1200px) {
  .navigation__inner {
    overflow: visible;
    padding: 0;
  }
}
.navigation__item {
  border-bottom: 1px solid #FFECC2;
  padding: 19px 0;
  position: relative;
}
@media (min-width: 1200px) {
  .navigation__item {
    border: none;
    margin-right: 20px;
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .navigation__item {
    margin-right: 32px;
  }
}
.navigation__item:last-of-type {
  margin-right: 0;
}
@media (min-width: 1200px) {
  .navigation__item:hover .navigation__link--sub-wrapper {
    color: #FFECC2;
  }
  .navigation__item:hover .navigation__link--sub-wrapper:after {
    transform: rotate(180deg);
  }
}
.navigation__link {
  color: #241704;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .navigation__link {
    display: block;
    font-size: 1rem;
    padding: 23px 0;
  }
}
@media (min-width: 1400px) {
  .navigation__link {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .navigation__link:hover, .navigation__link:focus {
    color: #FFECC2;
    cursor: pointer;
    text-decoration: none;
  }
}
.navigation__link--sub-wrapper {
  display: block;
  padding-right: 24px;
  position: relative;
}
.navigation__link--sub-wrapper:after {
  color: #FFECC2;
  content: "\f078";
  font-family: "Font Awesome 6 Sharp";
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  right: 0;
  top: 3px;
  transition: transform 0.2s ease;
  transform: rotate(0);
}
@media (min-width: 1200px) {
  .navigation__link--sub-wrapper:after {
    top: 24px;
  }
}
.navigation__link--sub-wrapper.in:after {
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .navigation__link--sub {
    align-items: center;
    background-color: #FFECC2;
    display: flex;
    min-height: 64px;
    padding: 10px 16px;
    transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    white-space: nowrap;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .navigation__link--sub:hover, .navigation__link--sub:focus {
    background-color: #F19B20;
    color: #241704;
  }
}
.navigation__submenu {
  display: none;
}
@media (min-width: 1200px) {
  .navigation__submenu {
    position: absolute;
  }
}
.navigation__submenu__inner {
  padding-left: 16px;
}
@media (min-width: 1200px) {
  .navigation__submenu__inner {
    padding: 0;
  }
}
.navigation__submenu__item {
  padding: 12px 0;
}
@media (min-width: 1200px) {
  .navigation__submenu__item {
    background-color: #FFECC2;
    padding: 0;
  }
}
.navigation__submenu__item:first-of-type {
  padding-top: 24px;
}
@media (min-width: 1200px) {
  .navigation__submenu__item:first-of-type {
    padding-top: 0;
  }
}
.navigation__submenu__item:last-of-type {
  padding-bottom: 0;
}
.navigation__meta-links {
  margin-top: 48px;
}
.navigation__meta-links__item {
  margin-bottom: 32px;
  text-align: center;
}

.footer {
  background-color: #FFF8E7;
  padding: 48px 0;
}
@media (min-width: 1200px) {
  .footer {
    padding: 64px 0;
  }
}
.footer__main {
  border-bottom: 1px solid #F19B20;
}
.footer__logo {
  width: 140px;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 263px;
  }
}
.footer__nav__item {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__nav__item {
    margin-bottom: 24px;
  }
}
.footer__nav__item:last-of-type {
  margin-bottom: 0;
}
.footer__socials__item {
  margin-right: 26px;
}
.footer__socials__item:last-of-type {
  margin-right: 0;
}
.footer__socials__link {
  color: #F19B20;
  font-size: 28px;
  text-decoration: none;
}
.footer__socials__link:hover, .footer__socials__link:focus {
  color: #241704;
}
.footer__legal-links__item {
  margin-right: 32px;
}
.footer__legal-links__item:last-of-type {
  margin-right: 0;
}
.footer__legal-links__link {
  font-weight: 700;
}
.footer__legal-links__link:hover, .footer__legal-links__link:focus {
  color: #F19B20;
  text-decoration: underline;
}

.breadcrumb {
  padding: 3px 0;
}
.breadcrumb__item:after {
  content: "\f054";
  color: #FFECC2;
  font-family: "Font Awesome 6 Sharp";
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  margin: 0 12px;
}
.breadcrumb__item:last-of-type:after {
  content: none;
}
.breadcrumb__link {
  color: #241704;
  text-decoration: underline;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: #241704;
  text-decoration: none;
}

.slick-match-height .slick-track {
  display: flex !important;
}
.slick-match-height .slick-slide {
  height: inherit !important;
}

.slick-slider.gx-106 .slick-slide {
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px) {
  .slick-slider.gx-md-204 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .slick-slider.gx-md-302 .slick-slide {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.slick-slider.slick-overflow .slick-list {
  overflow: visible;
}

.slick-arrow {
  align-items: center;
  background-color: #F19B20;
  border: none;
  border-radius: 6px;
  color: #241704;
  display: inline-flex;
  font-size: 24px;
  justify-content: center;
  height: 44px;
  padding: 8px;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  width: 44px;
}
@media (min-width: 768px) {
  .slick-arrow {
    font-size: 28px;
    height: 52px;
    width: 52px;
  }
}
.slick-arrow:hover, .slick-arrow:focus {
  background-color: #FFECC2;
  color: #241704;
}
.slick-arrow.slick-disabled, .slick-arrow.slick-disabled:hover, .slick-arrow.slick-disabled:focus {
  background-color: #F19B20;
  color: #FFF;
  cursor: default;
  opacity: 0.5;
}

.styled-list-item-check,
.styled-list-item-cross {
  margin-bottom: 6px;
  padding-left: 24px;
  position: relative;
}
.styled-list-item-check:before,
.styled-list-item-cross:before {
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-weight: 900;
  height: 16px;
  left: 0;
  line-height: 16px;
  position: absolute;
  top: 3px;
}
@media (min-width: 768px) {
  .styled-list-item-check:before,
  .styled-list-item-cross:before {
    top: 5px;
  }
}
.styled-list-item-check + p:not(.styled-list-item-check, .styled-list-item-cross),
.styled-list-item-cross + p:not(.styled-list-item-check, .styled-list-item-cross) {
  margin-top: 24px;
}

.styled-list-item-check:before {
  color: #F19B20;
  content: "\f058";
}

.styled-list-item-cross:before {
  color: #241704;
  content: "\e12e";
}

.article-card {
  background-color: #F7F7F7;
  border-bottom: 8px solid #FEBF33;
  border-radius: 6px 24px 6px 6px;
  color: #241704;
  display: block;
  font-weight: 400;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: border-radius 0.3s cubic-bezier(0.68, -0.2, 0.32, 1.4);
}
@media (min-width: 768px) {
  .article-card {
    border-top-right-radius: 48px;
  }
}
.article-card:hover, .article-card:focus {
  border-top-left-radius: 24px;
}
@media (min-width: 768px) {
  .article-card:hover, .article-card:focus {
    border-top-left-radius: 48px;
  }
}
.article-card:hover .article-card__title, .article-card:focus .article-card__title {
  color: #F19B20;
}
.article-card:hover .text-link, .article-card:focus .text-link {
  color: #F19B20;
  text-decoration: none;
}
.article-card:hover .text-link--no-hover-state, .article-card:focus .text-link--no-hover-state {
  color: #241704;
}
.article-card:hover .text-link i, .article-card:focus .text-link i {
  transform: translateX(8px);
}
.article-card__content {
  padding: 16px;
}
@media (min-width: 768px) {
  .article-card__content {
    padding: 32px;
  }
}
.article-card__category {
  background-color: #FEBF33;
  border-radius: 38px;
  display: inline-block;
  padding: 6px 12px;
}
.article-card__title {
  color: #241704;
  transition: color 0.3s ease;
}

.slider-card {
  background-color: #FEBF33;
  height: 100%;
}
.slider-card--light {
  background-color: #FFF;
}
.slider-card__content {
  padding: 24px;
}
@media (min-width: 768px) {
  .slider-card__content {
    padding: 48px;
  }
}
@media (min-width: 1200px) {
  .slider-card__content {
    min-height: 526px;
  }
}
.slider-card__text-box {
  background-color: #FFECC2;
  border-left: 8px solid #F19B20;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px 16px 16px 8px;
}
@media (min-width: 768px) {
  .slider-card__text-box {
    padding: 32px 32px 32px 24px;
  }
}
.slider-card__text-box__limited-quote {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider-card__image {
  padding-bottom: 74.85%;
  width: 100%;
}
@media (min-width: 768px) {
  .slider-card__image {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .modal-header, .modal-body {
    padding: 32px;
  }
}

.modal-header + .modal-body {
  padding-top: 32px;
}
@media (min-width: 768px) {
  .modal-header + .modal-body {
    padding-top: 16px;
  }
}

.guide-card {
  background-color: transparent;
  border: none;
}
.guide-card:hover .guide-card__title, .guide-card:focus .guide-card__title {
  color: #F19B20;
}
.guide-card__title {
  transition: color 0.3s ease;
}

.search-result-card {
  border-bottom: 1px solid #FEBF33;
  color: #241704;
  display: block;
  font-weight: 400;
  padding: 16px 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .search-result-card {
    padding: 24px 0;
  }
}
.search-result-card:hover .search-result-card__title, .search-result-card:focus .search-result-card__title {
  color: #F19B20;
}
.search-result-card:hover .text-link, .search-result-card:focus .text-link {
  color: #241704;
  text-decoration: none;
}
.search-result-card:hover .text-link i, .search-result-card:focus .text-link i {
  transform: translateX(8px);
}
.search-result-card__title {
  transition: color 0.3s ease;
}

.homepage-header {
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .homepage-header__content {
    min-height: 600px;
  }
}
@media (min-width: 1200px) {
  .homepage-header__content {
    min-height: 780px;
  }
}
.homepage-header__image-wrapper {
  margin-left: auto;
  max-width: 600px;
}
@media (min-width: 992px) {
  .homepage-header__image-wrapper {
    height: 100%;
    max-width: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .homepage-header__image-wrapper img {
    max-height: 100%;
  }
}

.internal-banner {
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .internal-banner__content {
    min-height: 430px;
  }
}
.internal-banner__image-wrapper {
  border-top-left-radius: 48px;
  height: 292px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .internal-banner__image-wrapper {
    border-radius: 64px 6px 6px 6px;
  }
}
@media (min-width: 992px) {
  .internal-banner__image-wrapper {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .internal-banner__image-wrapper {
    border-top-left-radius: 112px;
  }
}
.internal-banner__image-wrapper img {
  height: 100%;
  object-fit: cover;
  overflow: visible;
  overflow-clip-margin: unset;
  transform: translate3d(0px, 0px, 0.1px);
  width: 100%;
}

.text-banner__box {
  background-color: #FFECC2;
  border-radius: 6px;
  display: inline-block;
  max-width: 650px;
  padding: 12px 24px;
}

.large-img-banner__top {
  padding: 48px 0 96px 0;
}
@media (min-width: 992px) {
  .large-img-banner__top {
    min-height: 440px;
  }
}
.large-img-banner__media-wrapper {
  border-radius: 24px;
  margin-top: -48px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .large-img-banner__media-wrapper {
    border-radius: 48px;
  }
}

.cta__inner {
  background-color: #F19B20;
  border-radius: 6px 48px 6px 6px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .cta__inner {
    border-top-right-radius: 112px;
  }
}
.cta__inner--no-image {
  margin: 0 auto;
  max-width: 856px;
}
.cta__inner--no-image .cta__content {
  min-height: 0;
}
.cta__content {
  padding: 24px;
}
@media (min-width: 768px) {
  .cta__content {
    padding: 48px;
  }
}
@media (min-width: 992px) {
  .cta__content {
    min-height: 440px;
    padding: 80px;
  }
}
@media (min-width: 768px) {
  .cta__image-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
}
@media (min-width: 768px) {
  .cta__image-wrapper img {
    height: 100%;
    object-fit: cover;
    overflow: visible;
    overflow-clip-margin: unset;
    transform: translate3d(0px, 0px, 0.1px);
    width: 100%;
  }
}

.resources-and-docs__item {
  margin-bottom: 6px;
}
.resources-and-docs__item:last-of-type {
  margin-bottom: 0;
}
.resources-and-docs__doc {
  background-color: #F7F7F7;
  border-radius: 6px;
  color: #241704;
  display: block;
  font-weight: 400;
  overflow: hidden;
  text-decoration: none;
}
.resources-and-docs__doc__accent {
  background-color: #FEBF33;
  color: #241704;
  font-size: 26px;
  height: 100%;
  transition: background-color 0.3s ease;
  width: 40px;
}
@media (min-width: 768px) {
  .resources-and-docs__doc__accent {
    width: 56px;
  }
}
.resources-and-docs__doc__content {
  padding: 16px;
}
@media (min-width: 768px) {
  .resources-and-docs__doc__content {
    min-height: 104px;
    padding: 24px 48px;
  }
}
.resources-and-docs__doc__content__icon {
  display: block;
  font-size: 26px;
  margin-right: 16px;
  text-align: center;
  width: 34px;
}
.resources-and-docs__doc__content__title {
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .resources-and-docs__doc__content__title {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .resources-and-docs__doc__content__size {
    display: inline-block;
    margin-left: 6px;
  }
}
.resources-and-docs__doc:hover, .resources-and-docs__doc:focus {
  color: #241704;
}
.resources-and-docs__doc:hover .resources-and-docs__doc__accent, .resources-and-docs__doc:focus .resources-and-docs__doc__accent {
  background-color: #F19B20;
}
.resources-and-docs__doc:hover .resources-and-docs__doc__content__title, .resources-and-docs__doc:focus .resources-and-docs__doc__content__title {
  color: #F19B20;
}

.accordion__item {
  margin-bottom: 6px;
}
.accordion__item:last-of-type {
  margin-bottom: 0;
}
.accordion__item__trigger {
  background-color: #FEBF33;
  border: none;
  border-radius: 6px;
  display: block;
  overflow: hidden;
  padding: 20px 56px 20px 16px;
  position: relative;
  text-align: left;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .accordion__item__trigger {
    padding-left: 32px;
  }
}
.accordion__item__trigger:before, .accordion__item__trigger:after {
  color: #241704;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
@media (min-width: 768px) {
  .accordion__item__trigger:before, .accordion__item__trigger:after {
    width: 56px;
  }
}
.accordion__item__trigger:before {
  background-color: #F19B20;
  content: "";
  display: block;
  transition: background-color 0.3s ease;
}
.accordion__item__trigger:after {
  align-items: center;
  content: "\f056";
  display: flex;
  font-family: "Font Awesome 6 Pro";
  font-size: 26px;
  font-weight: 300;
  justify-content: center;
}
.accordion__item__trigger.collapsed {
  background-color: #F7F7F7;
}
.accordion__item__trigger.collapsed:hover {
  color: #F19B20;
}
.accordion__item__trigger.collapsed:before {
  background-color: #FEBF33;
}
.accordion__item__trigger.collapsed:after {
  content: "\f055";
}
.accordion__item__trigger:hover:before, .accordion__item__trigger:focus:before {
  background-color: #F19B20;
}
.accordion__item__reveal {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .accordion__item__reveal {
    padding-bottom: 24px;
  }
}

.statistics {
  overflow: hidden;
}
.statistics__wrapper {
  overflow: auto;
}
@media (min-width: 768px) {
  .statistics__wrapper {
    overflow: visible;
  }
}
.statistics__stat {
  border-bottom: 4px solid #F19B20;
  height: 100%;
  padding-bottom: 24px;
}

.two-col-content__image-block {
  overflow: hidden;
  padding-bottom: 75.15%;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .two-col-content__image-block {
    height: 100%;
    min-height: 400px;
    padding-bottom: 0;
  }
}
.two-col-content__image-block img {
  height: 100%;
  object-fit: cover;
  overflow: visible;
  overflow-clip-margin: unset;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate3d(0px, 0px, 0.1px);
  width: 100%;
}
@media (min-width: 992px) {
  .two-col-content__media-col--right .two-col-content__image-block {
    border-radius: 112px 6px 6px 6px;
  }
}

.features__feature {
  background-color: #FFECC2;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  padding: 32px 16px 16px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .features__feature {
    padding: 48px 32px 32px 32px;
  }
}
.features__feature__icon {
  height: 34px;
}
.features__nav .slick-arrow {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .features__nav .slick-arrow {
    margin-top: 48px;
  }
}
.features__nav .slick-arrow + .slick-arrow {
  margin-left: 16px;
}
@media (min-width: 768px) {
  .features__nav .slick-arrow + .slick-arrow {
    margin-left: 24px;
  }
}

.testimonial__inner {
  padding-top: 72px;
}
.testimonial__box {
  background-color: #FEBF33;
  border-radius: 24px;
  padding: 78px 24px 48px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .testimonial__box {
    border-radius: 48px;
    padding: 104px 80px 80px 80px;
  }
}
.testimonial__image {
  border-radius: 100%;
  height: 144px;
  overflow: hidden;
  left: 50%;
  margin-left: -72px;
  margin-top: -72px;
  position: absolute;
  top: 0;
  width: 144px;
}

.funding-types__item {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .funding-types__item {
    margin-bottom: 0;
  }
}
.funding-types__item:last-of-type {
  margin-bottom: 0;
}
.funding-types__type {
  background-color: #FFF;
  border-radius: 6px;
  height: 100%;
  padding: 16px;
}
@media (min-width: 768px) {
  .funding-types__type {
    padding: 32px;
  }
}
.funding-types__type__category {
  align-items: center;
  background-color: #FFECC2;
  border-radius: 6px;
  display: inline-flex;
  margin-bottom: 6px;
  min-height: 40px;
  padding: 10px 16px;
}
.funding-types__type__image-wrapper {
  border-radius: 6px;
  padding-bottom: 75.16%;
  width: 100%;
}
@media (min-width: 768px) {
  .funding-types__type__image-wrapper {
    padding-bottom: 100%;
    width: 168px;
  }
}

.tabbed-block__tab-wrapper {
  overflow: auto;
}
@media (min-width: 992px) {
  .tabbed-block__tab-wrapper {
    overflow: visible;
  }
}
.tabbed-block__tab-content {
  background-color: #F7F7F7;
  border-radius: 6px;
  overflow: hidden;
  padding: 24px;
}
@media (min-width: 992px) {
  .tabbed-block__tab-content {
    padding: 64px;
  }
}
@media (min-width: 1200px) {
  .tabbed-block__tab-content {
    padding: 80px;
  }
}
.tabbed-block__tab {
  align-items: center;
  background-color: #F7F7F7;
  color: #241704;
  display: flex;
  height: 48px;
  font-weight: 700;
  padding: 10px 24px;
}
.tabbed-block__tab:hover, .tabbed-block__tab:focus {
  background-color: #FEBF33;
  color: #241704;
}
.tabbed-block__tab.active, .tabbed-block__tab.active:hover, .tabbed-block__tab.active:focus {
  background-color: #F19B20;
  color: #241704;
}

@media (min-width: 992px) {
  .page-links-simple__col {
    min-width: 33.33333333%;
  }
}
.page-links-simple__link {
  align-items: center;
  background-color: #FEBF33;
  border-bottom: 8px solid #F19B20;
  border-radius: 6px;
  color: #2E3646;
  display: flex;
  height: 100%;
  margin: 0;
  min-height: 92px;
  padding: 24px 108px 16px 32px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease, border-radius 0.3s cubic-bezier(0.68, -0.2, 0.32, 1.4);
}
@media (min-width: 992px) {
  .page-links-simple__link {
    min-height: 124px;
  }
}
.page-links-simple__link:before, .page-links-simple__link:after {
  display: block;
  height: 44px;
  padding: 8px;
  margin-top: -22px;
  position: absolute;
  right: 32px;
  top: 50%;
  width: 44px;
}
.page-links-simple__link:before {
  background-color: #F19B20;
  border-radius: 6px;
  content: "";
  transition: background-color 0.3s ease;
}
.page-links-simple__link:after {
  color: #241704;
  content: "\f178";
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}
.page-links-simple__link:hover, .page-links-simple__link:focus {
  background-color: #F19B20;
  border-top-right-radius: 48px;
}
.page-links-simple__link:hover:before, .page-links-simple__link:focus:before {
  background-color: #FFECC2;
}

.media-block__wrapper {
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .media-block__wrapper {
    border-radius: 48px;
  }
}
.media-block__wrapper--sm {
  border-radius: 6px;
}
.media-block__wrapper + .media-block__wrapper {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .media-block__wrapper + .media-block__wrapper {
    margin-top: 24px;
  }
}

.campaigns-slider__nav .slick-arrow + .slick-arrow {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .campaigns-slider__nav .slick-arrow + .slick-arrow {
    margin-left: 24px;
  }
}

.projects-slider__nav .slick-arrow + .slick-arrow {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .projects-slider__nav .slick-arrow + .slick-arrow {
    margin-left: 24px;
  }
}

.logo-slider__carousel__group {
  will-change: transform;
  animation: carousel-scrolling 25s linear infinite;
}
@media (min-width: 992px) {
  .logo-slider__carousel--lg-no-scroll .logo-slider__carousel__group {
    animation: none;
  }
}
.logo-slider__logo {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .logo-slider__logo {
    padding: 0 32px;
  }
}
.logo-slider__logo img {
  max-height: 128px;
  max-width: 225px;
}
@keyframes carousel-scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.team-members__item {
  margin-bottom: 52px;
}
@media (min-width: 576px) {
  .team-members__item {
    margin-bottom: 0;
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .team-members__item {
    margin-top: 48px;
  }
}
.team-members__item:last-of-type {
  margin-bottom: 0;
}
.team-members__member {
  color: #241704;
  font-weight: 400;
  text-decoration: none;
}
.team-members__member:hover, .team-members__member:focus {
  color: #241704;
  text-decoration: none;
}
.team-members__member:hover .team-members__member__image-wrapper, .team-members__member:focus .team-members__member__image-wrapper {
  border-radius: 24px;
}
@media (min-width: 768px) {
  .team-members__member:hover .team-members__member__image-wrapper, .team-members__member:focus .team-members__member__image-wrapper {
    border-radius: 48px;
  }
}
.team-members__member:hover .team-members__member__name, .team-members__member:focus .team-members__member__name {
  color: #F19B20;
}
.team-members__member__image-wrapper {
  border-radius: 6px 24px 6px 6px;
  overflow: hidden;
  transition: border-radius 0.3s cubic-bezier(0.68, -0.2, 0.32, 1.4);
}
@media (min-width: 768px) {
  .team-members__member__image-wrapper {
    border-top-right-radius: 48px;
  }
}
.team-members__member__image-wrapper--modal {
  max-width: 123px;
}
@media (min-width: 768px) {
  .team-members__member__image-wrapper--modal {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .team-members__member__image-wrapper--modal {
    max-width: 208px;
  }
}
.team-members__member__name {
  transition: color 0.3s ease;
}
.team-members__member__position {
  margin: 6px 0 0 0;
}

.guides-slider__nav .slick-arrow + .slick-arrow {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .guides-slider__nav .slick-arrow + .slick-arrow {
    margin-left: 24px;
  }
}

.community-slider__group {
  background-color: #FFECC2;
  border-radius: 6px;
  display: block;
  height: 100%;
  overflow: hidden;
  padding: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .community-slider__group {
    padding: 0;
  }
}
.community-slider__group:hover, .community-slider__group:focus {
  background-color: #FFFCF3;
}
.community-slider__group:hover .community-slider__group__title, .community-slider__group:focus .community-slider__group__title {
  color: #F19B20;
}
.community-slider__group:hover .text-link, .community-slider__group:focus .text-link {
  color: #F19B20;
}
.community-slider__group:hover .text-link i, .community-slider__group:focus .text-link i {
  transform: translateX(8px);
}
.community-slider__group__image {
  width: 92px;
}
@media (min-width: 768px) {
  .community-slider__group__image {
    width: 140px;
  }
}
.community-slider__group__title {
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .community-slider__group__content {
    padding: 24px 32px;
  }
}
.community-slider__nav .slick-arrow + .slick-arrow {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .community-slider__nav .slick-arrow + .slick-arrow {
    margin-left: 24px;
  }
}

.contact-us__address p {
  margin: 0;
  white-space: pre-line;
}

.map-block__map {
  height: 260px;
  width: 100%;
}
@media (min-width: 768px) {
  .map-block__map {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .map-block__map {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .map-block__map {
    height: 748px;
  }
}

@media (min-width: 576px) {
  .form-block {
    padding: 24px 0;
  }
}
@media (min-width: 768px) {
  .form-block {
    padding: 48px 0;
  }
}
@media (min-width: 992px) {
  .form-block {
    padding: 64px 0;
  }
}
.form-block .umbraco-forms-paging, .form-block .forms-page-inner {
  background-color: #FFF;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .form-block .umbraco-forms-paging, .form-block .forms-page-inner {
    border-radius: 6px;
    box-shadow: 0 -1.167px 1.167px 0 rgba(150, 161, 172, 0.12) inset;
  }
}
.form-block .umbraco-forms-paging {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 -1.167px 1.167px 0 rgba(150, 161, 172, 0.12) inset;
  padding-bottom: 8px;
  padding-top: 8px;
}
@media (min-width: 576px) {
  .form-block .umbraco-forms-paging {
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .form-block .umbraco-forms-paging {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
.form-block .forms-page-inner {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .form-block .forms-page-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.form-success {
  min-height: 100vh;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .form-success {
    padding: 64px 0;
  }
}
.form-success__inner {
  max-width: 800px;
}
.form-success__icon {
  width: 54px;
}
.form-success__info-box {
  background-color: #FFECC2;
  border-radius: 6px;
  max-width: 572px;
  padding: 16px;
  word-break: break-word;
}

.buttons__col + .buttons__col {
  margin-top: 8px;
}
@media (min-width: 576px) {
  .buttons__col + .buttons__col {
    margin-top: 0;
  }
}

.not-found__image {
  margin: 0 auto;
  width: 208px;
}
@media (min-width: 992px) {
  .not-found__image {
    width: 308px;
  }
}
@media (min-width: 1200px) {
  .not-found__image {
    width: 462px;
  }
}

.article-page {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .article-page {
    padding: 64px 0;
  }
}
@media (min-width: 768px) {
  .article-page__inner {
    background-color: #FFF;
    border-radius: 6px;
    margin: 0 auto;
    max-width: 1076px;
    padding: 48px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .article-page__inner {
    padding: 64px;
  }
}
@media (min-width: 1200px) {
  .article-page__inner {
    padding: 80px;
  }
}
.article-page__feature {
  border-radius: 6px;
  overflow: hidden;
}
.article-page__quote-box {
  background-color: #FFECC2;
  border-left: 8px solid #FEBF33;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
}
@media (min-width: 768px) {
  .article-page__quote-box {
    padding: 32px;
  }
}
.article-page__blocks section + section {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .article-page__blocks section + section {
    margin-top: 24px;
  }
}

.search-results__item:first-of-type .search-result-card {
  border-top: 1px solid #FEBF33;
}
.search-results__form {
  position: relative;
}
.search-results__form:before {
  content: "\f002";
  color: #241704;
  font-family: "Font Awesome 6 Sharp";
  font-size: 14px;
  font-weight: 900;
  left: 24px;
  pointer-events: none;
  position: absolute;
  top: 17px;
  line-height: 14px;
}
.search-results__form__input, .search-results__form__btn {
  height: 48px;
}
.search-results__form__input {
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  color: #241704;
  font-size: 0.875rem;
  font-weight: 600;
  padding-left: 46px;
  padding-right: 24px;
  transition: border 0.3s ease;
  width: 100%;
}
@supports (-webkit-touch-callout: none) {
  .search-results__form__input {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .search-results__form__input {
    font-size: 1rem;
  }
}
.search-results__form__input:focus {
  border-color: #FEBF33;
  box-shadow: none;
  outline: none;
}
.search-results__form__btn {
  background-color: #FEBF33;
  border: none;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  color: #241704;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 24px;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
@media (min-width: 768px) {
  .search-results__form__btn {
    font-size: 1rem;
  }
}
.search-results__form__btn:hover, .search-results__form__btn:focus {
  background-color: #F19B20;
  color: #241704;
}

/*# sourceMappingURL=styles.css.map */
