@charset "UTF-8";
/*!
Theme Name: Jerry Green Dog Rescue
Theme URI: http://epixmedia.co.uk/
Description: Custom theme
Author: Epix Media Team
Version: 1.0
Tags: none
*/
/* BASE */
/* _____ VARIABLES _____ */
/* Colors */
:root {
  --color__brand-1: #005529;
  --color__brand-1--darken: #004322;
  --color__brand-2: #94C24A;
  --color__brand-2--lighten: #EFFFD5;
  --color__brand-3: #F7AC6F;
  --color__brand-3--lighten: #FCE5D6;
  --color__brand-4: #85CFE8;
  --color__brand-4--darken: #96D6EB;
  --color__brand-4--lighten: #CEF1FD;
  --color__brand-5: #E4B9D8;
  --color__brand-5--lighten: #FFEDFA;
}

/* Sizes */
/* Fonts */
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
#page > #footer {
  margin-top: auto;
}

main {
  min-height: 70vh;
}

.align-center {
  align-items: center;
}

/* Breadcrumbs */
ul#breadcrumbs {
  overflow: hidden;
  padding: 40px 0 0 0;
  margin: 0;
}
ul#breadcrumbs li {
  align-items: center;
  text-transform: capitalize;
  display: none;
  padding: 0;
  font-weight: bold;
  font-family: "proxima-soft", "sans-serif" !important;
}
ul#breadcrumbs li:nth-last-child(2) {
  display: flex;
}
ul#breadcrumbs li {
  color: #005529;
}
ul#breadcrumbs li a {
  display: flex;
  text-decoration: none;
  color: #005529;
  font-size: 16px;
  gap: 12px;
}
ul#breadcrumbs li a:before {
  position: relative;
  top: 2px;
  content: url("images/svg/breadcrumb-green-chevron.svg");
}
ul#breadcrumbs li a:hover {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  ul#breadcrumbs {
    display: none;
  }
}

body.single-vacancies ul#breadcrumbs li:nth-last-child(1) {
  display: flex;
}
body.single-vacancies ul#breadcrumbs li:nth-last-child(2) {
  display: none;
}

.faq-wrapper {
  position: relative;
  transition: 0.3s padding ease-out, 0.15s margin ease-out, 0.15s border ease-out;
  cursor: pointer;
  margin-bottom: 20px;
}
.faq-wrapper span.question {
  font-weight: 700;
  display: block;
  width: 80%;
}
.faq-wrapper .answer-wrapper {
  display: none;
}
.faq-wrapper .answer {
  position: relative;
  padding-top: 10px;
}

.cross {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: -10px;
  transition: top 0.3s ease-in-out;
  transform: rotate(0deg);
  border-radius: 50%;
  padding: 20px;
}
.cross::after, .cross::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  top: 50%;
  transition: all 0.2s ease-in-out;
  transform: rotate(-45deg);
  right: 8px;
  width: 15px;
}
.cross::after {
  transform: rotate(45deg);
  left: 8px;
}
.cross.active {
  transform: rotate(45deg);
}
.cross.active::before {
  transform: rotate(0deg);
  width: 20px;
  right: 10px;
}
.cross.active::after {
  width: 20px;
  transform: rotate(90deg);
  left: 10px;
}
@media (max-width: 767px) {
  .cross {
    top: 40px;
    right: 30px;
  }
}

/******************************************************************************************************************************************
 * Responsive classes
 *******************************************************************************************************************************************/
@media (min-width: 768px) {
  .hide-desk {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-mob {
    display: none;
  }
}
@media (max-width: 1279px) {
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 1279px) {
  .show-tablet {
    display: block;
  }
}
@media (max-width: 1279px) {
  .show-flex-tablet {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
  }
  .anim,
  .posts-carousel .slide {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.posts-carousel .slide {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.94, 0.47, 0.01, 1.1) 0.2s, transform 0.4s cubic-bezier(0.94, 0.47, 0.01, 1.1) 0.2s;
  transform: translateY(-10px); /* Initial position to simulate the 'origin' */
}

.posts-carousel .slide.opacity-1 {
  transform: translateY(0); /* Move to final position */
  opacity: 1 !important;
}

/* ===== UTILS ===== */
/*
* HTML5 Boilerplate
*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*
* Detailed information about this CSS: h5bp.com/css
*
* ==|== normalize ==========================================================
*/
/* =============================================================================
  HTML5 display definitions
  ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

/* =============================================================================
  Base
  ========================================================================== */
/*
* 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
* 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
*/
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

body {
  margin: 0;
  font-size: 1em; /*line-height: 1.4;*/
}

/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection declarations have to be separate
* Also: hot pink! (or customize the background color to match your design)
*/
::-moz-selection {
  background: #3CF;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #3CF;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
  Links
  ========================================================================== */
a:focus {
  outline-style: none;
}

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
  Typography
  ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
  Lists
  ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* =============================================================================
  Embedded content
  ========================================================================== */
/*
* 1. Improve image quality when scaled in IE7: h5bp.com/d
* 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
*/
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/*
* Correct overflow not hidden in IE9
*/
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
  Figures
  ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
  Forms
  ========================================================================== */
form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
* 1. Correct color not inheriting in IE6/7/8/9
* 2. Correct alignment displayed oddly in IE6/7
*/
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

/*
* 1. Correct font-size not inheriting in all browsers
* 2. Remove margins in FF3/4 S5 Chrome
* 3. Define consistent vertical alignment display in all browsers
*/
button, input, select, textarea { /*font-size: 100%;*/
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
* 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
*/
button, input {
  line-height: normal;
}

/*
* 1. Display hand cursor for clickable form elements
* 2. Allow styling of clickable form elements in iOS
* 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
*/
button, input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

/*
* Re-set default cursor for disabled elements
*/
button[disabled], input[disabled] {
  cursor: default;
}

/*
* Consistent box sizing and appearance
*/
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
* Remove inner padding and border in FF3/4: h5bp.com/l
*/
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
* 1. Remove default vertical scrollbar in IE6/7/8/9
* 2. Allow only vertical resizing
*/
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

/* =============================================================================
  Tables
  ========================================================================== */
/*table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
*/
/* =============================================================================
  Chrome Frame Prompt
  ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

/* ==|== primary styles =====================================================
  Author:
  ========================================================================== */
/* ==|== media queries ======================================================
  EXAMPLE Media Query for Responsive Design.
  This example overrides the primary ('mobile first') styles
  Modify as content requires.
  ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
/* ==|== non-semantic helper classes ========================================
  Please define your styles before this section.
  ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==|== print styles =======================================================
  Print styles.
  Inlined to avoid required HTTP connection: h5bp.com/r
  ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  } /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
/* _____ SYSTEM TOOLS _____ */
/* _____ MIXINS _____ */
/* _____ UNIVERSAL HELPERS _____ */
/* _____ GLOBAL DEFAULTS _____ */
* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 50px;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background-color: #ffffff;
  text-align: left;
  font-family: "proxima-soft", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
body.show-focus-outlines a:focus, body.show-focus-outlines input:focus, body.show-focus-outlines textarea:focus, body.show-focus-outlines select:focus, body.show-focus-outlines button:focus {
  outline: #334aff solid 1px;
}
body.show-focus-outlines select:focus + .select2,
body.show-focus-outlines .select2-container--focus,
body.show-focus-outlines .input-text:focus {
  outline: #334aff solid 1px !important;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin-bottom: 18px;
}

a {
  border: 0;
}
a:hover {
  border: 0;
  text-decoration: none;
}
a:focus {
  outline: 1px solid #000000;
}
a:active {
  outline: none;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px 0;
  color: #005529;
  font-family: "freude", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 60px;
}
@media (max-width: 1279px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 30px;
}
@media (max-width: 1279px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 30px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 20px;
}

p:last-of-type {
  margin-bottom: 0;
}
p:empty {
  margin: 0;
}

fieldset {
  float: left;
  width: 100%;
}

input, textarea, button {
  font-family: "proxima-soft", sans-serif;
}

.grecaptcha-badge {
  visibility: hidden;
}

body:not(.show-focus-outlines) button:focus,
body:not(.show-focus-outlines) a:focus,
body:not(.show-focus-outlines) [tabindex]:focus {
  outline: none;
}

/* Select Colour */
::-moz-selection {
  background: #000000;
  color: #ffffff;
}

::selection {
  background: #000000;
  color: #ffffff;
}

a:link {
  -webkit-tap-highlight-color: #000000;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #000000;
  display: block;
  font-size: 1em;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Content */
#main {
  width: 100%;
  margin-bottom: 105px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #main {
    margin-bottom: 80px;
  }
}
#main .content {
  margin: 0 auto;
}
#main.flexible-content {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  #main.flexible-content {
    margin-bottom: 30px;
  }
}
#main a:not(.btn):not(.block-link):not(.quick-link a):not(ul#breadcrumbs a):not(.event a):not(.download-card a):not(.charity-shop-link):not(.social-link):not(.vacancy-block):not(.rehoming-block):not(.card a):not(.download-link):not(.page-numbers):not(.search-result) {
  text-decoration: underline;
}

/* Single page - extra elements */
.entry table {
  max-width: 100%;
}

.wp-caption {
  max-width: 100%;
}

.gallery {
  margin: 0 auto 1.625em;
}

.gallery-item img {
  margin: 8px 18px 8px 0;
  width: 100px;
  height: 100px;
}

/** comments **/
.form-allowed-tags {
  display: none;
}

.comments-section {
  float: left;
  margin-top: 30px;
}

h3#reply-title,
h3#comments-title {
  padding-bottom: 5px;
  border-bottom: 1px #62452f solid;
}

.comment-form-comment textarea {
  float: left;
  clear: both;
  border: 1px #CCC solid;
}

#commentform p {
  float: left;
  clear: both;
}

#commentform .required {
  color: #900;
}

#commentform label {
  float: left;
  margin-right: 10px;
  width: 40px;
}

#commentform input {
  float: left;
  margin-right: 5px;
  border: 1px #CCC solid;
}

ol.commentlist {
  list-style-type: none;
  padding: 0;
}

.commentlist .avatar {
  float: left;
  margin: 0 5px 5px 0;
}

.commentlist .comment {
  padding: 10px;
}

.commentlist .even {
  background-color: #f2f4e3;
}

/* Responsive videos */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */
*::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

ul {
  margin: 10px 0 10px 0;
  padding: 0 0 0 20px;
  list-style: disc;
}
ul li {
  padding-bottom: 16px;
}
ul li:before, ul li::marker {
  color: #94C24A;
}

ol {
  list-style: decimal;
  padding: 0 0 0 20px;
  margin: 10px 0 10px 0;
}
ol li {
  padding-bottom: 16px;
}
ol li:before, ol li::marker {
  color: #005529;
  font-family: "freude", sans-serif;
  font-weight: 700;
}

.bg-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

a.btn {
  background-color: #005529;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 51px 20px 40px;
  border-radius: 30rem;
  display: inline-block;
  font-size: 20px;
  position: relative;
  line-height: 1;
  transition: all 0.2s ease;
}
a.btn:after {
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 11px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
a.btn:hover, a.btn:focus {
  background-color: rgb(0, 67, 32.3176470588);
}
a.btn:hover:after, a.btn:focus:after {
  right: 26px;
}
a.btn.donate {
  padding: 15px 30px;
}
a.btn.donate:after {
  display: none;
}
a.btn.donate.header_tablet {
  display: none;
  margin-left: auto;
}
@media screen and (min-width: 767px) {
  a.btn.donate.header_tablet {
    display: flex;
  }
}
@media screen and (min-width: 1250px) {
  a.btn.donate.header_tablet {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  a.btn.donate.mobile_menu {
    display: none;
  }
}
a.btn.mobile_sticky {
  position: sticky;
  text-align: center;
  bottom: 1rem;
  z-index: 90;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  margin-right: 15px;
  margin-left: 75px;
}
@media screen and (min-width: 380px) {
  a.btn.mobile_sticky {
    margin-right: 30px;
    margin-left: 90px;
  }
}
@media screen and (min-width: 768px) {
  a.btn.mobile_sticky {
    display: none;
  }
}
a.btn--color-white {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #005529;
}
a.btn--color-white:hover, a.btn--color-white:focus {
  background-color: #EFFFD5;
}
a.btn--color-white.donate:hover, a.btn--color-white.donate:focus {
  background-color: #ffffff;
}
a.btn--color-orange {
  background-color: #F7AC6F;
  color: #005529;
}
a.btn--color-orange:hover, a.btn--color-orange:focus {
  background-color: #FCE5D6;
}
a.btn--chevron-down {
  padding: 20px 66px 20px 40px;
}
a.btn--chevron-down:after {
  content: url("images/svg/chevron-down--color-2.svg");
  width: 16px;
  margin-top: 0;
  right: 37px;
}
a.btn--chevron-down:hover:after, a.btn--chevron-down:focus:after {
  top: calc(50% + 3px);
  right: 37px;
}
a.btn--icon-heart > span {
  position: relative;
  padding-left: 1.3em;
  line-height: 1;
  font-weight: 700;
  margin-inline: auto;
}
a.btn--icon-heart > span:before {
  content: url(images/svg/icon-heart--color-2.svg);
  width: 18px;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
  transform-origin: center;
}
a.btn--icon-heart.btn--color-orange > span:before {
  content: url(images/svg/icon-heart--color-1.svg);
}
a.btn--icon-heart:hover, a.btn--icon-heart:focus {
  text-decoration: none;
}
a.btn--icon-heart:hover > span::before, a.btn--icon-heart:focus > span::before {
  transform: scale(1.2);
}

a.button-roundel,
button.button-roundel {
  background-image: url("images/svg/icon-chevron-with-bg.svg");
  background-size: 57px 59px;
  width: 57px;
  height: 59px;
}

button[type=submit] {
  background-color: #005529;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 51px 20px 40px;
  border-radius: 30rem;
  display: inline-block;
  font-size: 20px;
  position: relative;
  line-height: 1;
  transition: all 0.2s ease;
  border: 0;
}
button[type=submit]:after {
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 11px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
button[type=submit]:hover, button[type=submit]:focus {
  background-color: #004322;
}
button[type=submit]:hover:after, button[type=submit]:focus:after {
  right: 26px;
}

.header-cta .menu a,
.utility-nav.desktop .donate a,
button.wpforms-submit {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #005529;
  padding: 15px 30px;
  border-radius: 30rem;
  font-size: 20px;
  font-family: "proxima-soft", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.header-cta .menu a > span,
.utility-nav.desktop .donate a > span,
button.wpforms-submit > span {
  position: relative;
  padding-left: 1.3em;
  line-height: 1;
  font-weight: 700;
  margin-inline: auto;
}
.header-cta .menu a > span:before,
.utility-nav.desktop .donate a > span:before,
button.wpforms-submit > span:before {
  content: url(images/svg/icon-heart--color-2.svg);
  width: 18px;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
  transform-origin: center;
}
.header-cta .menu a:hover, .header-cta .menu a:focus,
.utility-nav.desktop .donate a:hover,
.utility-nav.desktop .donate a:focus,
button.wpforms-submit:hover,
button.wpforms-submit:focus {
  text-decoration: none;
  color: #005529;
}
.header-cta .menu a:hover > span::before, .header-cta .menu a:focus > span::before,
.utility-nav.desktop .donate a:hover > span::before,
.utility-nav.desktop .donate a:focus > span::before,
button.wpforms-submit:hover > span::before,
button.wpforms-submit:focus > span::before {
  transform: scale(1.2);
}

.utility-nav.desktop ul.menu li.donate.current_page_item a {
  color: #005529;
}

.header-cta .menu a {
  color: #005529 !important;
  text-decoration: none !important;
}

button.wpforms-submit {
  background-color: #005529;
  color: #ffffff;
  font-family: "freude", sans-serif;
  width: 100%;
}
button.wpforms-submit > span {
  font-weight: 500;
  padding-left: 1.5em;
}
button.wpforms-submit > span:before {
  content: url(images/svg/icon-heart--color-white.svg);
  width: 24px;
}
@media screen and (min-width: 380px) {
  button.wpforms-submit > span {
    padding-left: 1.3em;
  }
}
button.wpforms-submit:after {
  display: none;
}
button.wpforms-submit:hover, button.wpforms-submit:focus {
  background-color: #004322;
  color: #ffffff;
}
@media screen and (min-width: 380px) {
  button.wpforms-submit {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  button.wpforms-submit {
    padding: 30px;
  }
}

/******************************************************************************************************************************************
 * Wrappers
 *******************************************************************************************************************************************/
.wrapper {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  padding-inline: 15px;
}
.wrapper.flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 380px) {
  .wrapper {
    padding-inline: 30px;
  }
}
@media (min-width: 1280px) {
  .wrapper {
    max-width: 1300px;
  }
}

.section-title {
  color: #005529;
  font-family: "freude", sans-serif;
  font-size: 35px;
  line-height: 1.2;
}
.section-title.dots {
  padding-top: 30px;
  position: relative;
}
.section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-2.svg);
  display: inline-block;
  top: -23px;
  position: absolute;
}
.section-title.dots--below {
  padding-top: 0;
  padding-bottom: 30px;
}
.section-title.dots--below:before {
  top: unset;
  bottom: -5px;
}
.section-title.dots--mb-0-before-bottom-0 {
  margin-bottom: 0;
}
.section-title.dots--mb-0-before-bottom-0:before {
  bottom: 0;
}
.section-title.page-title {
  font-size: 45px;
}
@media screen and (min-width: 992px) {
  .section-title.page-title {
    font-size: 65px;
    line-height: calc(1em + 10px);
  }
}
@media screen and (min-width: 992px) {
  .section-title {
    font-size: 45px;
  }
}
.section-title.smaller-text {
  font-size: 34px;
}
@media screen and (min-width: 992px) {
  .section-title.smaller-text {
    font-size: 34px;
  }
}
.section-title.text-color-white {
  color: #ffffff;
}

.heading-wrap {
  margin-bottom: 50px;
}
.heading-wrap.center {
  text-align: center;
}
.heading-wrap.center .section-title {
  display: inline-block;
}
.heading-wrap.center .section-title:before {
  left: 50%;
  transform: translateX(-50%);
}
.heading-wrap .eyebrow {
  display: block;
  font-family: "freude", sans-serif;
  font-size: 24px;
  line-height: calc(1em + 10px);
  color: #005529;
}
.heading-wrap .lead-copy {
  font-size: 28px;
  line-height: calc(1em + 10px);
  color: #005529;
  font-family: "freude", sans-serif;
}
.heading-wrap .lead-copy p:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .heading-wrap {
    margin-bottom: 80px;
  }
}

.bg-color--2 {
  background-color: #EFFFD5;
}
.bg-color--2 .section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-2.svg);
}
.bg-color--3 {
  background-color: #FCE5D6;
}
.bg-color--3 .section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-3.svg);
}
.bg-color--4 {
  background-color: #CEF1FD;
}
.bg-color--4 .section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
.bg-color--5 {
  background-color: #FFEDFA;
}
.bg-color--5 .section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-5.svg);
}

.bg-blob {
  background-size: 135px 140px;
  background-repeat: no-repeat;
  width: 135px;
  height: 140px;
}
.bg-blob--3 {
  background-image: url("images/svg/bg-blob--color-3.svg");
}

.border {
  position: relative;
  border: none;
}
.border--bottom {
  padding-bottom: 150px;
}
.border--bottom:after {
  content: "";
  background-image: url(images/svg/section-border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 57px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}
.border--top {
  padding-top: 100px;
}
.border--top:before {
  content: "";
  background-image: url(images/svg/section-border.svg);
  transform: rotate(180deg);
  transform-origin: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 56px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.border--top-alternate-padding {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .border--top-alternate-padding {
    padding-top: 80px;
  }
}
.border--top-alternate-padding:before {
  background-size: 100%;
}
@media (max-width: 767px) {
  .border--bottom-alternate-padding {
    padding-bottom: 80px;
  }
}
.border--bottom-alternate-padding:after {
  background-size: 100%;
}

.has-decoration-text {
  position: relative;
  margin-bottom: 100px;
}
.has-decoration-text .decoration-text {
  position: absolute;
  bottom: -17px;
  left: -5%;
  right: -5%;
  z-index: 2;
  max-width: 2000px;
  margin-inline: auto;
}
.has-decoration-text .decoration-text.vacancies {
  left: -3.5%;
  right: -3.5%;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .has-decoration-text .decoration-text {
    bottom: -50px;
  }
}
@media screen and (min-width: 1250px) {
  .has-decoration-text .decoration-text {
    bottom: -240px;
  }
  .has-decoration-text .decoration-text.woof {
    bottom: -100px;
  }
  .has-decoration-text .decoration-text.woof.sponsor-form svg {
    overflow: visible;
  }
}
@media screen and (min-width: 1250px) and (min-width: 1250px) {
  .has-decoration-text .decoration-text.vacancies {
    bottom: -85px;
  }
}
.has-decoration-text .wrapper {
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .has-decoration-text.support {
    margin-bottom: 220px;
  }
}
@media screen and (min-width: 992px) {
  .has-decoration-text {
    margin-bottom: 180px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .float-a {
    -webkit-animation-name: FloatingA;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .float-b {
    -webkit-animation-name: FloatingB;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
  }
}

@-webkit-keyframes FloatingA {
  from {
    -webkit-transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(15px, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
  }
}
@-webkit-keyframes FloatingB {
  from {
    -webkit-transform: translate(0, 0px);
  }
  45% {
    -webkit-transform: translate(10px, 10px);
  }
  to {
    -webkit-transform: translate(0, 0px);
  }
}
.klaviyo-form form label {
  font-size: 18px !important;
  color: #005529 !important;
  font-family: "freude", sans-serif !important;
  font-weight: 500 !important;
  display: block;
  text-align: left;
  margin-bottom: 10px;
  padding-bottom: 0 !important;
}
.klaviyo-form form button {
  background-color: #005529 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  font-family: "proxima-soft", sans-serif !important;
  text-decoration: none;
  padding: 20px 51px 20px 40px !important;
  border-radius: 30rem !important;
  display: inline-block;
  font-size: 20px !important;
  position: relative !important;
  line-height: 1;
  transition: all 0.2s ease;
  height: unset !important;
}
.klaviyo-form form button:after {
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 11px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
.klaviyo-form form button:hover, .klaviyo-form form button:focus {
  background-color: #004322 !important;
}
.klaviyo-form form button:hover:after, .klaviyo-form form button:focus:after {
  right: 26px;
}
.klaviyo-form form input[type=email] {
  display: block;
  width: 100%;
  max-width: 376px;
  border-radius: 30rem !important;
  border: 0 !important;
  padding: 16px 20px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: "proxima-soft", sans-serif !important;
}
.klaviyo-form form input[type=email]::placeholder {
  opacity: 0.2;
  font-size: 18px !important;
}
.klaviyo-form form > div > div {
  flex-direction: column !important;
  gap: 20px;
}
.klaviyo-form form > div > div > div {
  flex: 1 !important;
  justify-content: center !important;
}
.klaviyo-form form > div > div > div > div {
  flex-grow: 0 !important;
  margin-inline: auto;
  max-width: 376px;
  width: 100%;
}
.klaviyo-form form > div > div > div > div span,
.klaviyo-form form > div > div > div > div p {
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
}
@media screen and (min-width: 1024px) {
  .klaviyo-form form > div > div > div > div {
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .klaviyo-form form > div > div > div:last-of-type {
    flex: 0.6 !important;
  }
}

.gfield--type-select select {
  background-image: url(images/svg/chevron-down--color-2.svg) !important;
  background-size: 13px 9px !important;
  background-position: center right 26px !important;
}
.gfield--type-select select option {
  overflow: hidden;
}

.gform-button--width-full {
  width: 100% !important;
}

@media screen and (min-width: 640px) {
  .gform-theme--foundation .gfield--width-third {
    grid-column: span 6 !important;
  }
}
@media screen and (min-width: 1250px) {
  .gform-theme--foundation .gfield--width-third {
    grid-column: span 4 !important;
  }
}

.video-pause-btn-container {
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.video-pause-btn-container .video-pause-btn {
  position: relative;
  display: block;
  transition: all 0.25s;
  z-index: 99;
  border-top: 0;
  border-right: transparent;
  border-bottom: 0;
  border-left: 7px solid #ffffff;
  background: transparent;
  width: 30px;
  height: 25px;
  transform: scale(0.75);
  left: 6.5px;
}
.video-pause-btn-container .video-pause-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  margin-left: -6px;
  background: #ffffff;
  width: 7px;
  height: 100%;
}
.video-pause-btn-container.is-paused .video-pause-btn {
  border-top: 12.05px solid transparent;
  border-bottom: 12.05px solid transparent;
  border-left: 19px solid #ffffff;
  height: 0;
  left: 7.5px;
}
.video-pause-btn-container.is-paused .video-pause-btn:before {
  height: 0;
}
.video-pause-btn-container:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  opacity: 0.35;
  top: 0;
  left: 0;
  z-index: 20;
}

/* Overwwrite collapse on Amelia booking form extras step */
.amelia-v2-booking #amelia-container .am-collapse-item__content-close {
  position: relative !important;
  opacity: 1 !important;
}

/*Hide learn more button on Amelia booking form extras step */
.amelia-v2-booking #amelia-container .am-collapse-item__trigger-label,
.amelia-v2-booking #amelia-container .am-collapse-item__trigger .am-icon-arrow-down {
  display: none !important;
}

/* Stop price from being squished on Amelia booking form extras step */
.amelia-v2-booking #amelia-container .am-fs__extras-card__header-right {
  min-width: 165px !important;
}

/* SPECIFICS */
/* _____ SPECIFICS _____ */
header.page-header {
  width: 100%;
  background: #005529;
}
header.page-header .menu a {
  color: #ffffff;
}
header.page-header .logo {
  max-width: 202px;
  width: 100%;
}
@media screen and (min-width: 1250px) {
  header.page-header .logo {
    max-width: 250px;
  }
}
header.page-header .header-inner {
  padding: 23px 0;
  background-color: #005529;
}
header.page-header .header-inner .header-cta {
  margin-left: auto;
}
header.page-header.has-border {
  position: relative;
  margin-bottom: 16px;
  z-index: 60;
}
header.page-header.has-border .header-inner {
  padding: 23px 0 16px;
}
header.page-header.has-border:after {
  content: "";
  background-image: url(images/svg/header-border-bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 23px;
  width: 100%;
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  z-index: 1;
}
header.page-header.has-border + main {
  margin-top: -16px;
}
header.page-header.has-border + main #breadcrumbs {
  position: relative;
  z-index: 10;
  padding-top: 56px;
}
header.page-header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home #header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background-color 0.4s ease;
}
.home #header .header-inner {
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.menu-open #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.menu-open .header-inner {
  padding: 23px 0;
  background-color: #005529;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
.menu-open .home #header,
.menu-open .home .header-inner {
  background-color: #005529;
}

ul.menu {
  display: flex;
  padding: 10px 0;
}
ul.menu .menu-item-chevron {
  background: none;
  border: 0;
  position: absolute;
}
ul.menu .menu-item-chevron:before {
  position: relative;
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 9px;
  margin-left: 12px;
  top: 2px;
}
@media (max-width: 1279px) {
  ul.menu .menu-item-chevron:before {
    top: 1px;
    margin-left: 12px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  ul.menu .menu-item-chevron:before {
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (min-width: 1250px) {
  ul.menu .menu-item-chevron:hover {
    padding-bottom: 30px;
  }
}
ul.menu li {
  list-style-type: none;
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1250px) {
  ul.menu li.menu-item-has-children {
    padding-right: 25px;
  }
}
ul.menu li a {
  margin: 0;
  font-weight: 700;
  text-decoration: none;
}
ul.menu li a:hover {
  color: #94C24A;
}
@media screen and (min-width: 1250px) {
  ul.menu li a:hover {
    padding-bottom: 30px;
  }
}
ul.menu li.current_page_item, ul.menu li.current-menu-ancestor, ul.menu li.current-menu-item, ul.menu li.current-menu-parent {
  color: #94C24A;
}
ul.menu li.current_page_item a:not(.sub-menu-wrapper a), ul.menu li.current-menu-ancestor a:not(.sub-menu-wrapper a), ul.menu li.current-menu-item a:not(.sub-menu-wrapper a), ul.menu li.current-menu-parent a:not(.sub-menu-wrapper a) {
  color: #94C24A;
}
ul.menu li.current_page_item a:not(.sub-menu-wrapper a):visited, ul.menu li.current-menu-ancestor a:not(.sub-menu-wrapper a):visited, ul.menu li.current-menu-item a:not(.sub-menu-wrapper a):visited, ul.menu li.current-menu-parent a:not(.sub-menu-wrapper a):visited {
  color: #94C24A;
}
@media screen and (min-width: 1250px) {
  ul.menu li:last-of-type .sub-menu-wrapper, ul.menu li:nth-last-child(2) .sub-menu-wrapper {
    right: 0;
  }
}
ul.menu ul.sub-menu {
  clear: both;
  overflow: hidden;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}
ul.menu ul.sub-menu li {
  clear: both;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background-image: none !important;
}
ul.menu ul.sub-menu li a {
  height: auto;
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  background-image: none;
  text-decoration: none;
  text-align: left;
  color: #ffffff;
  font-family: "proxima-soft", sans-serif;
  font-weight: 500;
}
ul.menu ul.sub-menu li a:hover, ul.menu ul.sub-menu li.current-menu-item a {
  text-decoration: underline;
}
ul.menu .sub-menu-wrapper {
  display: none;
}
@media screen and (max-width: 1249px) {
  ul.menu .sub-menu-wrapper.open {
    display: block;
  }
}
@media screen and (min-width: 1250px) {
  ul.menu .sub-menu-wrapper {
    position: absolute;
    margin: 10px 0 0 0;
  }
  ul.menu .sub-menu-wrapper:hover, ul.menu .sub-menu-wrapper:focus {
    display: block;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu {
    position: relative;
    margin: 0;
    background-color: #ffffff;
    padding: 1rem 0;
    border-radius: 15px;
    z-index: 10;
    min-width: 350px;
    box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.25);
    gap: 0;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li a {
    color: #005529;
    font-family: "freude", sans-serif;
    position: relative;
    display: block;
    padding: 14px 60px 14px 35px;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li a:after {
    content: url(images/svg/chevron-right--color-2.svg);
    position: absolute;
    right: 43px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 9px;
  }
}
@media screen and (min-width: 1250px) and (prefers-reduced-motion: no-preference) {
  ul.menu .sub-menu-wrapper ul.sub-menu li a:after {
    transition: right 0.2s ease-in-out;
  }
}
@media screen and (min-width: 1250px) {
  ul.menu .sub-menu-wrapper ul.sub-menu li a:hover, ul.menu .sub-menu-wrapper ul.sub-menu li a:focus {
    text-decoration: none;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li a:hover:after, ul.menu .sub-menu-wrapper ul.sub-menu li a:focus:after {
    right: 33px;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 1) a:hover, ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 1) a:focus {
    background-color: #EFFFD5;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 2) a:hover, ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 2) a:focus {
    background-color: #FCE5D6;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 3) a:hover, ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 3) a:focus {
    background-color: #CEF1FD;
  }
  ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 4) a:hover, ul.menu .sub-menu-wrapper ul.sub-menu li:nth-of-type(4n + 4) a:focus {
    background-color: #FFEDFA;
  }
}
@media screen and (min-width: 1250px) {
  ul.menu .menu-item-has-children:hover > .sub-menu-wrapper, ul.menu .menu-item-has-children:focus > .sub-menu-wrapper {
    display: block;
  }
}

.navigation {
  width: 100%;
}
.navigation.desktop {
  display: none;
  font-size: 20px;
}
.navigation.desktop ul.menu {
  gap: 30px;
  padding: 0;
}
.navigation.desktop .menu-item-chevron:before {
  rotate: 90deg;
}
@media screen and (min-width: 1250px) {
  .navigation.desktop {
    display: flex;
    justify-content: flex-end;
  }
}

.utility-nav.desktop {
  display: none;
}
.utility-nav.desktop ul.menu {
  gap: 30px;
  align-items: center;
  padding: 0;
}
.utility-nav.desktop ul.menu li a {
  font-family: "proxima-soft", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1250px) {
  .utility-nav.desktop {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
  }
}

.searchform-header {
  display: flex;
  gap: 20px;
}
@media (min-width: 1280px) {
  .searchform-header {
    justify-content: center;
  }
}
.searchform-header.with-border {
  border-bottom: 2px solid #94C24A;
  padding-bottom: 13px;
}
@media (max-width: 1279px) {
  .searchform-header {
    border-bottom: 2px solid #94C24A;
    padding-bottom: 13px;
  }
}
.searchform-header .search-field-input {
  background-color: transparent;
  height: 24px;
  padding: 0;
  font-size: 16px;
  color: #ffffff;
}
@media (min-width: 1280px) {
  .searchform-header .search-field-input {
    display: none;
  }
}
.searchform-header .search-field-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.searchform-header .search-submit {
  background-image: url("images/svg/search-icon.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.header-cta.tablet {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1249px) {
  .header-cta.tablet {
    display: block;
  }
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#mobile-menu {
  position: absolute;
  z-index: 9999;
  background: #005529;
  top: 119px;
  left: 100%;
  right: 0;
  bottom: 0;
  padding: 19px 0 30px;
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-menu {
    transition: all 0.2s ease-in-out;
  }
}
#mobile-menu #menu-header-primary {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  #mobile-menu #menu-header-primary {
    margin-top: 30px;
    padding: 0;
  }
}
#mobile-menu ul.menu {
  flex-direction: column;
  font-size: 20px;
  gap: 30px;
  padding: 0;
}
#mobile-menu ul.menu .menu-item-has-children.open-mob .menu-item-chevron:before {
  rotate: 90deg;
}
@media screen and (min-width: 768px) {
  #mobile-menu ul.menu {
    gap: 18px;
    flex-wrap: wrap;
    max-height: 110vh;
    max-width: 100%;
  }
  #mobile-menu ul.menu li {
    flex: 0 1 0px;
  }
}
#mobile-menu ul.sub-menu a:hover {
  text-decoration: none;
  color: #94C24A;
}
#mobile-menu .menus-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0;
}
#mobile-menu .menus-wrap li {
  opacity: 0;
  margin-left: 30px;
}
#mobile-menu .menu-inner {
  width: 100%;
}
#mobile-menu .menu-inner .menu-scroll {
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 18rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#mobile-menu .menu-inner .menu-scroll .wrapper {
  overflow: auto;
}
#mobile-menu.open {
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  #mobile-menu.open .menus-wrap li {
    opacity: 1;
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-menu.open .menus-wrap li {
    animation: fade-in 0.2s ease forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(1) {
    animation-delay: 0s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(2) {
    animation-delay: 0.12s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(3) {
    animation-delay: 0.24s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(4) {
    animation-delay: 0.36s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(5) {
    animation-delay: 0.48s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(7) {
    animation-delay: 0.72s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(8) {
    animation-delay: 0.84s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(9) {
    animation-delay: 0.96s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(10) {
    animation-delay: 1.08s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(11) {
    animation-delay: 1.2s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(12) {
    animation-delay: 1.32s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(13) {
    animation-delay: 1.44s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(14) {
    animation-delay: 1.56s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(15) {
    animation-delay: 1.68s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(16) {
    animation-delay: 1.8s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(17) {
    animation-delay: 1.92s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(18) {
    animation-delay: 2.04s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(19) {
    animation-delay: 2.16s;
  }
  #mobile-menu.open .menus-wrap #menu-header-primary-mobile .menu-item:nth-child(20) {
    animation-delay: 2.28s;
  }
}
#mobile-menu .header-cta {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  #mobile-menu .header-cta {
    display: none;
  }
}
@media screen and (min-width: 1250px) {
  #mobile-menu {
    display: none !important;
  }
}

#mobile-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 65px;
  border-radius: 5px;
  margin-left: auto;
  position: relative;
  -webkit-appearance: none;
  background: none;
  border: none;
}
#mobile-nav-btn:after {
  content: url(images/svg/nav-button-bg.svg);
  position: absolute;
  inset: 0;
  display: block;
}
#mobile-nav-btn #top-line,
#mobile-nav-btn #bottom-line,
#mobile-nav-btn #middle-line {
  transform-box: fill-box;
  transform-origin: center;
}
#mobile-nav-btn #hamburger {
  z-index: 1;
  position: relative;
  width: 23px;
}
#mobile-nav-btn.is-opened #top-line {
  transform-origin: center;
  transform: translateY(10px) rotate(-45deg);
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-opened #top-line {
    animation: down-rotate 0.6s ease-out both;
  }
}
#mobile-nav-btn.is-opened #bottom-line {
  transform-origin: center;
  transform: translateY(-10px) rotate(45deg);
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-opened #bottom-line {
    animation: up-rotate 0.6s ease-out both;
  }
}
#mobile-nav-btn.is-opened #middle-line {
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-opened #middle-line {
    animation: hide 0.6s ease-out forwards;
  }
}
#mobile-nav-btn.is-closed #top-line {
  transform: translateY(0px);
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-closed #top-line {
    animation: down-rotate-reverse 0.6s ease-out both;
  }
}
#mobile-nav-btn.is-closed #bottom-line {
  transform: translateY(0px);
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-closed #bottom-line {
    animation: up-rotate-reverse 0.6s ease-out both;
  }
}
#mobile-nav-btn.is-closed #middle-line {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-nav-btn.is-closed #middle-line {
    animation: show 0.6s ease-out forwards;
  }
}
@media screen and (min-width: 768px) {
  #mobile-nav-btn {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1250px) {
  #mobile-nav-btn {
    display: none;
  }
}

@keyframes up-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg);
  }
}
@keyframes up-rotate-reverse {
  0% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px) rotate(0deg);
  }
  100% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
}
@keyframes down-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg);
  }
}
@keyframes down-rotate-reverse {
  0% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px) rotate(0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
}
@keyframes hide {
  29% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show {
  29% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
    margin-left: 0;
  }
}
.flexible-content section {
  margin-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .flexible-content section {
    margin-bottom: 100px;
  }
}
.flexible-content section.vacancies-block {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .flexible-content section.vacancies-block {
    margin-bottom: 190px;
  }
}
@media (max-width: 767px) {
  .flexible-content section.vacancies-block.border--bottom {
    padding-bottom: 130px;
  }
}
.flexible-content .no-vacancies-content a {
  text-decoration: underline;
}

.charity-shops-block .charity-shop-link-title {
  margin-bottom: 10px;
}
.charity-shops-block .cycle-colours .charity-shop-link .charity-shop-inner-link:before {
  content: "";
  width: 108px;
  height: 111px;
  flex: 0 0 108px;
  background-size: 108px 111px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .charity-shops-block .cycle-colours .charity-shop-link .charity-shop-inner-link:before {
    background-size: 85px 87px;
    width: 85px;
    height: 87px;
    flex: 0 0 85px;
  }
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(1) .charity-shop-inner-link .charity-shop-link-title {
  color: #F7AC6F;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(1) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-3.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(2) .charity-shop-inner-link .charity-shop-link-title {
  color: #E4B9D8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(2) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-5.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(3) .charity-shop-inner-link .charity-shop-link-title {
  color: #E4B9D8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(3) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-5.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(4) .charity-shop-inner-link .charity-shop-link-title {
  color: #85CFE8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(4) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-4.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(5) .charity-shop-inner-link .charity-shop-link-title {
  color: #85CFE8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(5) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-4.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(6) .charity-shop-inner-link .charity-shop-link-title {
  color: #F7AC6F;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(6) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-3.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(7) .charity-shop-inner-link .charity-shop-link-title {
  color: #F7AC6F;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(7) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-3.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(8) .charity-shop-inner-link .charity-shop-link-title {
  color: #E4B9D8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(8) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-5.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(9) .charity-shop-inner-link .charity-shop-link-title {
  color: #E4B9D8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(9) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-5.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(10) .charity-shop-inner-link .charity-shop-link-title {
  color: #85CFE8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(10) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-4.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(11) .charity-shop-inner-link .charity-shop-link-title {
  color: #85CFE8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(11) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-4.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(12) .charity-shop-inner-link .charity-shop-link-title {
  color: #F7AC6F;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(12) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-3.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(13) .charity-shop-inner-link .charity-shop-link-title {
  color: #F7AC6F;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(13) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-3.svg");
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(14) .charity-shop-inner-link .charity-shop-link-title {
  color: #E4B9D8;
}
.charity-shops-block .cycle-colours .charity-shop-link:nth-of-type(14) .charity-shop-inner-link:before {
  background-image: url("images/svg/charity-shop-icon--color-5.svg");
}

.role-summary-block .content * {
  margin: 0;
}
.role-summary-block .content *:not(h1):not(h2):not(h3):not(img) {
  font-size: 18px;
}
.role-summary-block .content ul {
  margin: 10px 0 10px 0;
  padding: 0;
  list-style-type: none;
}
.role-summary-block .content ul li {
  position: relative;
  padding-bottom: 16px;
  padding-left: 1.25em;
}
.role-summary-block .content ul li:before {
  position: absolute;
  font-size: 2.5em;
  color: #94C24A;
  content: "•";
  line-height: 0;
  top: 0.19em;
  left: 0;
}
.role-summary-block .content ul li:last-of-type {
  padding-bottom: 0;
}
.role-summary-block .content h1, .role-summary-block .content h2, .role-summary-block .content h3 {
  font-size: 34px;
}
.role-summary-block .content h1, .role-summary-block .content h2, .role-summary-block .content h3, .role-summary-block .content h4, .role-summary-block .content h5, .role-summary-block .content h6 {
  margin-top: 20px;
}
.role-summary-block .content h1:first-of-type, .role-summary-block .content h2:first-of-type, .role-summary-block .content h3:first-of-type, .role-summary-block .content h4:first-of-type, .role-summary-block .content h5:first-of-type, .role-summary-block .content h6:first-of-type {
  margin-top: 0;
}

.employee-benefits-block .content * {
  margin: 0;
}
.employee-benefits-block .content ul {
  padding: 0;
}
.employee-benefits-block .content ul li {
  position: relative;
  padding-left: 34px;
  padding-bottom: 20px;
  list-style-type: none;
}
.employee-benefits-block .content ul li:before {
  position: absolute;
  content: url("images/svg/tick--color-2.svg");
  left: 0;
}
.employee-benefits-block .content ul li:last-of-type {
  padding-bottom: 0;
}
.employee-benefits-block .content h2 {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 0;
}

.vacancies-block .vacancy-block .dots-horzontal {
  background-image: url("images/svg/vacancy-block-dots--color-2.svg");
}
.vacancies-block .vacancy-block .with-location-pin-icon-before:before {
  content: url("images/svg/location-pin--color-2.svg");
}
.vacancies-block .vacancy-block.north-lincolnshire .dots-horzontal, .vacancies-block .vacancy-block.gainsborough .dots-horzontal, .vacancies-block .vacancy-block.retford .dots-horzontal {
  background-image: url("images/svg/vacancy-block-dots--color-2.svg");
}
.vacancies-block .vacancy-block.north-lincolnshire .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.gainsborough .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.retford .with-location-pin-icon-before:before {
  content: url("images/svg/location-pin--color-2.svg");
}
.vacancies-block .vacancy-block.nottinghamshire .dots-horzontal, .vacancies-block .vacancy-block.ashby-scunthorpe .dots-horzontal, .vacancies-block .vacancy-block.scunthorpe .dots-horzontal {
  background-image: url("images/svg/vacancy-block-dots--color-4.svg");
}
.vacancies-block .vacancy-block.nottinghamshire .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.ashby-scunthorpe .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.scunthorpe .with-location-pin-icon-before:before {
  content: url("images/svg/location-pin--color-4.svg");
}
.vacancies-block .vacancy-block.south-lincolnshire .dots-horzontal, .vacancies-block .vacancy-block.brigg .dots-horzontal, .vacancies-block .vacancy-block.east-yorkshire .dots-horzontal {
  background-image: url("images/svg/vacancy-block-dots--color-3.svg");
}
.vacancies-block .vacancy-block.south-lincolnshire .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.brigg .with-location-pin-icon-before:before, .vacancies-block .vacancy-block.east-yorkshire .with-location-pin-icon-before:before {
  content: url("images/svg/location-pin--color-3.svg");
}

.treats-block .heading-wrap {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .treats-block .heading-wrap {
    margin-bottom: 50px;
  }
}
.treats-block .treats-slider-container .treats-slider .slick-list {
  padding: 0 !important;
  margin: 0 -28px !important;
}
@media (max-width: 900px) {
  .treats-block .treats-slider-container .treats-slider .slick-list {
    margin: 0 -34px !important;
  }
}
.treats-block .treats-slider-container .treats-slider .slick-list .slick-track {
  display: flex;
  overflow: hidden;
}
.treats-block .treats-slider-container .treats-slider .slick-list .slick-track .slick-slide {
  margin: 0 28px;
  display: flex !important;
  height: auto !important;
}
@media (max-width: 900px) {
  .treats-block .treats-slider-container .treats-slider .slick-list .slick-track .slick-slide {
    margin: 0 34px;
  }
}
.treats-block .treats-slider-container .treats-slider .slick-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.treats-block .treats-slider-container .treats-slider.slick-dotted {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .treats-block .treats-slider-container .treats-slider.less-slides .slick-track {
    transform: none !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .treats-block .treats-slider-container .treats-slider.less-slides .slick-dots:not(:has(li + li)) {
    display: none !important;
  }
}

body.single-vacancies .treats-block .wrapper {
  padding: 0;
}

.z-format {
  margin-top: 77px;
}
.z-format .text-image-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
.z-format .text-image-block .body-text {
  font-size: 18px;
  line-height: calc(1em + 10px);
}
.z-format .text-image-block .body-text p:first-of-type {
  margin-top: 0;
}
.z-format .text-image-block .btn {
  margin-top: 20px;
}
.z-format .text-image-block .img-container {
  position: relative;
  max-width: 592px;
  width: 100%;
}
.z-format .text-image-block .img-container img {
  width: 100%;
  height: auto;
  display: block;
}
.z-format .text-image-block svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.z-format .text-image-block svg path {
  fill: none;
}
.z-format .text-image-block .text-wrap {
  max-width: 484px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .z-format .text-image-block .text-wrap {
    margin-right: 56px;
  }
}
@media screen and (min-width: 768px) {
  .z-format .text-image-block.reverse .text-wrap {
    order: 1;
  }
  .z-format .text-image-block.reverse .img-container {
    order: 0;
  }
}
@media screen and (min-width: 768px) {
  .z-format .text-image-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 992px) {
  .z-format .text-image-block {
    gap: 108px;
    margin-bottom: 110px;
  }
}
@media screen and (min-width: 992px) {
  .z-format .section-title {
    font-size: 34px;
    line-height: 40px;
  }
}
@media screen and (min-width: 768px) {
  .z-format.invert-order .text-image-block .text-wrap {
    order: 1;
  }
  .z-format.invert-order .text-image-block .img-container {
    order: 0;
  }
  .z-format.invert-order .text-image-block.reverse .text-wrap {
    order: 0;
  }
  .z-format.invert-order .text-image-block.reverse .img-container {
    order: 1;
  }
}
@media screen and (min-width: 992px) {
  .z-format {
    margin-top: 100px;
  }
}

.single-image {
  overflow: hidden;
}
.single-image.border--top {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .single-image.border--top {
    padding-top: 100px;
  }
  .single-image.border--bottom {
    padding-bottom: 100px;
  }
}
.single-image:before, .single-image:after {
  z-index: 3;
}
.single-image .heading-wrap {
  z-index: 3;
  position: relative;
}
.single-image .image-wrapper {
  position: relative;
  text-align: center;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.single-image .image-wrapper svg {
  position: absolute;
  inset: 0;
}
.single-image .image-wrapper:before, .single-image .image-wrapper:after {
  content: url(images/svg/bg-blob--color-2.svg);
  display: inline-block;
  width: 358px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .single-image .image-wrapper:before, .single-image .image-wrapper:after {
    width: 656px;
  }
}
.single-image .image-wrapper:before {
  bottom: -162px;
  left: -201px;
  rotate: -72deg;
}
@media screen and (min-width: 992px) {
  .single-image .image-wrapper:before {
    bottom: -290px;
    left: -227px;
  }
}
.single-image .image-wrapper:after {
  top: -225px;
  right: -224px;
  rotate: 10deg;
}
@media screen and (min-width: 992px) {
  .single-image .image-wrapper:after {
    top: -257px;
    right: -281px;
  }
}

.hero-inner {
  max-width: 1714px;
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1250px) {
  .hero-inner {
    padding-top: 60px;
    padding-bottom: 150px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-inner {
    padding-top: 70px;
    padding-bottom: 250px;
  }
}

#hero {
  background-color: #005529;
  position: relative;
  padding-bottom: 56px;
  overflow: hidden;
  padding-top: 120px;
}
#hero .decoration-wrapper {
  position: relative;
}
#hero .decoration-wrapper:before, #hero .decoration-wrapper:after {
  content: url(images/svg/dotted-line-1.svg);
  display: inline-block;
  position: absolute;
  width: 178px;
  rotate: 253deg;
  opacity: 0.08;
}
@media screen and (min-width: 992px) {
  #hero .decoration-wrapper:before, #hero .decoration-wrapper:after {
    width: 305px;
  }
}
#hero .decoration-wrapper:before {
  left: -60px;
  bottom: 0;
}
@media screen and (min-width: 992px) {
  #hero .decoration-wrapper:before {
    rotate: 265deg;
    left: -100px;
    bottom: 100px;
  }
}
@media screen and (min-width: 1250px) {
  #hero .decoration-wrapper:before {
    left: -30px;
    bottom: 230px;
  }
}
#hero .decoration-wrapper:after {
  top: -200px;
  right: -63px;
}
@media screen and (min-width: 992px) {
  #hero .decoration-wrapper:after {
    top: 65px;
    right: -90px;
  }
}
@media screen and (min-width: 1250px) {
  #hero .decoration-wrapper:after {
    top: -200px;
  }
}
#hero .bg-wrapper {
  position: relative;
}
#hero .bg-wrapper:before, #hero .bg-wrapper:after {
  content: url(images/svg/bg-blob.svg);
  display: inline-block;
  position: absolute;
  opacity: 0.08;
}
#hero .bg-wrapper:before {
  rotate: 150deg;
  width: 365px;
  left: -288px;
  bottom: -40px;
}
@media screen and (min-width: 992px) {
  #hero .bg-wrapper:before {
    width: 863px;
    left: -510px;
  }
}
@media screen and (min-width: 1440px) {
  #hero .bg-wrapper:before {
    width: 1100px;
    left: -400px;
    bottom: -480px;
  }
}
#hero .bg-wrapper:after {
  top: -145px;
  right: -225px;
  width: 320px;
  rotate: 116deg;
}
@media screen and (min-width: 992px) {
  #hero .bg-wrapper:after {
    width: 760px;
    top: -520px;
    right: -380px;
  }
}
@media screen and (min-width: 1440px) {
  #hero .bg-wrapper:after {
    width: 968px;
    top: -730px;
    right: -80px;
  }
}
#hero .left-image {
  display: none;
}
@media screen and (min-width: 1250px) {
  #hero .left-image {
    display: inline-block;
    max-width: 320px;
  }
}
@media screen and (min-width: 1440px) {
  #hero .left-image {
    left: 106px;
  }
}
@media screen and (min-width: 1550px) {
  #hero .left-image {
    max-width: 411px;
  }
}
#hero .right-image {
  max-width: 360px;
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  #hero .right-image {
    max-width: 560px;
    margin-top: -80px;
  }
}
@media screen and (min-width: 1250px) {
  #hero .right-image {
    margin-top: 0;
    right: -90px;
  }
}
@media screen and (min-width: 1440px) {
  #hero .right-image {
    max-width: 660px;
    right: -50px;
  }
}
@media screen and (min-width: 1550px) {
  #hero .right-image {
    right: 0;
  }
}
@media screen and (min-width: 1250px) {
  #hero .left-image,
  #hero .right-image {
    position: absolute;
    top: 0;
  }
}
#hero:after {
  content: "";
  background-image: url(images/svg/section-border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 56px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 400px) {
  #hero:after {
    bottom: -2px;
  }
}
#hero .svg-wrapper {
  max-width: 526px;
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  position: relative;
}
#hero .svg-wrapper:before {
  content: url(images/svg/dotted-line-1.svg);
  display: none;
  position: absolute;
  width: 305px;
  rotate: 337deg;
  opacity: 0.08;
}
@media screen and (min-width: 1250px) {
  #hero .svg-wrapper:before {
    display: inline-block;
    left: -30px;
    bottom: -235px;
  }
}
#hero .svg-wrapper svg {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #hero .svg-wrapper {
    max-width: 655px;
  }
}
@media screen and (min-width: 1250px) {
  #hero {
    padding-top: 200px;
    padding-bottom: 130px;
  }
}

.card {
  max-width: 360px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.card a {
  text-decoration: none;
}
.card__body {
  background-color: #005529;
  color: #ffffff;
  padding: 40px 30px 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  position: relative;
  flex-grow: 1;
  transition: all 0.2s ease;
}
.card__body:after, .card__body:before {
  content: "";
  background-image: url(images/svg/card-body-border--color-1.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 22px;
  z-index: 0;
}
.card__body:before {
  background-image: url(images/svg/card-body-border--color-1--hover.svg);
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding: 42px 52px 25px;
  }
}
.card .block-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card .block-link:hover .card__body, .card .block-link:focus .card__body {
  background-color: #004322;
}
.card .block-link:hover .card__body:before, .card .block-link:focus .card__body:before {
  opacity: 1;
}
.card__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 30px;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 10px;
}
.card__title:after {
  content: url(images/svg/horizontal-dots.svg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.card__title .chevron-wrap {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.card__title .chevron-wrap:after {
  content: url(images/svg/chevron-right--color-white.svg);
  width: 11px;
  margin-left: 10px;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  top: 1px;
}
.card__excerpt {
  font-size: 16px;
  line-height: 22px;
}
.card__excerpt ul.details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 1ch;
  font-weight: 700;
}
.card__excerpt ul.details li {
  padding-bottom: 0;
}
.card__excerpt ul.details li:before {
  content: "|";
  display: inline-block;
  margin-right: 1ch;
  color: #94C24A;
}
.card__excerpt ul.details li.breed {
  display: block;
  width: 100%;
  font-size: 20px;
}
.card__excerpt ul.details li.age:before {
  display: none;
}
.card__excerpt ul.details li:first-of-type:before {
  display: none;
}
.card__excerpt p:first-of-type {
  margin-top: 0;
}
.card__image img {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.card .block-link:hover .card__title .chevron-wrap::after, .card .block-link:focus .card__title .chevron-wrap::after {
  margin-left: 15px;
}
.card--color-5 .card__body, .card--color-4 .card__body, .card--color-3 .card__body {
  color: #262626;
}
.card--color-5 .card__title .chevron-wrap, .card--color-4 .card__title .chevron-wrap, .card--color-3 .card__title .chevron-wrap {
  color: #005529;
}
.card--color-5 .card__title .chevron-wrap:after, .card--color-4 .card__title .chevron-wrap:after, .card--color-3 .card__title .chevron-wrap:after {
  content: url(images/svg/chevron-right--color-1.svg);
}
.card--color-5 .card__body {
  background-color: #FFEDFA;
}
.card--color-5 .card__body:after {
  background-image: url(images/svg/card-body-border--color-5.svg);
}
.card--color-5 .card__body:before {
  background-image: url(images/svg/card-body-border--color-5--hover.svg);
}
.card--color-5 .card__title:after {
  content: url(images/svg/horizontal-dots--color-5.svg);
}
.card--color-5 .block-link:hover .card__body,
.card--color-5 .block-link:focus .card__body {
  background-color: rgb(255, 226.8, 247.1666666667);
}
.card--color-4 .card__body {
  background-color: #CEF1FD;
}
.card--color-4 .card__body:after {
  background-image: url(images/svg/card-body-border--color-4.svg);
}
.card--color-4 .card__body:before {
  background-image: url(images/svg/card-body-border--color-4--hover.svg);
}
.card--color-4 .card__title:after {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
.card--color-4 .block-link:hover .card__body,
.card--color-4 .block-link:focus .card__body {
  background-color: rgb(196.2, 238.2, 252.6);
}
.card--color-3 .card__body {
  background-color: #FCE5D6;
}
.card--color-3 .card__body:after {
  background-image: url(images/svg/card-body-border--color-3.svg);
}
.card--color-3 .card__body:before {
  background-image: url(images/svg/card-body-border--color-3--hover.svg);
}
.card--color-3 .card__title:after {
  content: url(images/svg/horizontal-dots--color-3.svg);
}
.card--color-3 .block-link:hover .card__body,
.card--color-3 .block-link:focus .card__body {
  background-color: rgb(251.3045454545, 222.9727272727, 204.4954545455);
}
.card.dog .card__body:after {
  display: none;
}
.card.dog .card__title {
  font-size: 34px;
}
.card.dog .card__title:after {
  content: url(images/svg/horizontal-dots--color-2.svg);
}
.card.dog .card__title .chevron-wrap:after {
  content: url(images/svg/chevron-right--color-2.svg);
}
.card.dog .card__image {
  position: relative;
  height: 300px;
}
.card.dog .card__image img {
  object-fit: cover;
  object-position: top center;
  height: 100%;
  width: 100%;
}
.card.dog .card__image .image-1 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.card.dog .card__image .sticker {
  position: absolute;
  right: 20px;
  top: -28px;
  z-index: 2;
  max-width: 107px;
}
.card.dog .card__image .sticker span {
  text-align: center;
  font-size: 20px;
  line-height: 1;
  transform: translate(0, 80%);
  padding-inline: 25px;
}
.card.dog .card__attributes {
  background-color: #0A6538;
  position: relative;
  color: #ffffff;
  padding: 24px 30px 20px;
  flex-grow: 1;
}
.card.dog .card__attributes .tick-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}
.card.dog .card__attributes .tick-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: 14px;
  padding-bottom: 0;
  gap: 6px;
}
.card.dog .card__attributes .tick-list li:before {
  content: url(images/svg/list-icon--check.svg);
  display: inline-block;
  max-width: 13px;
  width: 100%;
  height: 14px;
}
@media screen and (min-width: 1024px) {
  .card.dog .card__attributes .tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.card.dog .card__attributes:after {
  content: "";
  background-image: url(images/svg/dog-card-attributes-border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .card.dog .card__attributes {
    padding: 26px 35px 25px;
  }
}
.card.dog:hover .card__image .image-1, .card.dog:focus .card__image .image-1 {
  opacity: 1;
}
.card.dog:hover .card__body, .card.dog:focus .card__body {
  background-color: #004322;
}
@media screen and (min-width: 1250px) {
  .card {
    max-width: 376px;
  }
}
.card--two-col {
  max-width: 470px;
  width: 100%;
}
.card--two-col .card__image {
  text-align: center;
  padding-inline: 35px;
  position: relative;
  z-index: 2;
}
.card--two-col .card__image img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .card--two-col .card__image {
    padding-inline: 55px;
  }
}
.card--two-col .card__body {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: 1;
  margin-top: -40px;
  padding-top: 60px;
  transition: all 0.2s ease;
}
.card--two-col .card__body:after, .card--two-col .card__body:before {
  bottom: unset;
  top: -40px;
  height: 54px;
  background-image: url(images/svg/two-col-card-top.svg);
  background-size: 100% 105%;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.card--two-col .card__body:before {
  content: "";
  background-image: url(images/svg/two-col-card-top--hover.svg);
  opacity: 0;
  transition: all 0.2s ease;
  display: inline-block;
  left: 0;
  right: 0;
  z-index: 1;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .card--two-col .card__body {
    padding-inline: 55px;
    padding-bottom: 30px;
  }
}
.card--two-col .card__heading {
  font-family: "freude", sans-serif;
  font-size: 24px;
  line-height: calc(1em + 10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  margin-bottom: 0;
}
.card--two-col .card__heading:after {
  display: inline-block;
  max-width: 100%;
  min-width: 57px;
  width: 57px;
  height: 59px;
}
@media screen and (min-width: 992px) {
  .card--two-col .card__heading {
    font-size: 28px;
  }
}
.card--two-col.no-image .card__body {
  margin-top: 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.card--two-col.no-image .card__body:after {
  display: none;
}
.card--two-col.no-image .card__body:before {
  display: none;
}
.card--two-col a {
  text-decoration: none;
}
.card--two-col a:hover, .card--two-col a:focus {
  text-decoration: none;
}
.card--two-col a:hover .card__body, .card--two-col a:focus .card__body {
  background-color: #004322;
}
.card--two-col a:hover .card__body:before, .card--two-col a:focus .card__body:before {
  opacity: 1;
}
@media screen and (min-width: 1250px) {
  .card--two-col {
    max-width: 592px;
  }
}

.cycle-colours .card:nth-of-type(1) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-5.svg");
}
.cycle-colours .card:nth-of-type(1) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-5.svg");
}
.cycle-colours .card:nth-of-type(2) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-4.svg");
}
.cycle-colours .card:nth-of-type(2) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-4.svg");
}
.cycle-colours .card:nth-of-type(3) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-3.svg");
}
.cycle-colours .card:nth-of-type(3) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-3.svg");
}
.cycle-colours .card:nth-of-type(4) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-4.svg");
}
.cycle-colours .card:nth-of-type(4) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-4.svg");
}
.cycle-colours .card:nth-of-type(5) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-2.svg");
}
.cycle-colours .card:nth-of-type(5) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-2.svg");
}
.cycle-colours .card:nth-of-type(6) .card__body .card__title:after {
  content: url("images/svg/horizontal-dots--color-5.svg");
}
.cycle-colours .card:nth-of-type(6) .card__title .chevron-wrap:after {
  content: url("images/svg/chevron-right--color-5.svg");
}

.two-columns-cards,
.three-columns-cards {
  margin-bottom: 80px;
}
.two-columns-cards .cards,
.three-columns-cards .cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 768px) {
  .two-columns-cards .cards,
  .three-columns-cards .cards {
    column-gap: 56px;
  }
}
@media (max-width: 767px) {
  .two-columns-cards .cards,
  .three-columns-cards .cards {
    flex-direction: column;
    align-items: center;
  }
}
.two-columns-cards .cards .card:nth-of-type(6n + 1) .card__heading:after, .two-columns-cards .cards .card:nth-of-type(6n + 4) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 1) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 4) .card__heading:after {
  content: url(images/svg/icon-chevron-with-bg--color-4.svg);
}
.two-columns-cards .cards .card:nth-of-type(6n + 2) .card__heading:after, .two-columns-cards .cards .card:nth-of-type(6n + 3) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 2) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 3) .card__heading:after {
  content: url(images/svg/icon-chevron-with-bg--color-3.svg);
}
.two-columns-cards .cards .card:nth-of-type(6n + 5) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 5) .card__heading:after {
  content: url(images/svg/icon-chevron-with-bg--color-5.svg);
}
.two-columns-cards .cards .card:nth-of-type(6n + 6) .card__heading:after,
.three-columns-cards .cards .card:nth-of-type(6n + 6) .card__heading:after {
  content: url(images/svg/icon-chevron-with-bg--color-2.svg);
}

@media (min-width: 1024px) {
  .two-columns-cards .cards .card,
  .two-columns-cards .cards .download-card,
  .two-columns-cards .cards .download-card.slick-slide {
    width: calc(50% - 28px);
  }
}

.three-columns-cards .cards .card,
.three-columns-cards .cards .download-card,
.three-columns-cards .cards .download-card.slick-slide {
  max-width: 376px;
}
@media (min-width: 1024px) {
  .three-columns-cards .cards .card,
  .three-columns-cards .cards .download-card,
  .three-columns-cards .cards .download-card.slick-slide {
    width: calc(50% - 28px);
  }
}
@media (min-width: 1280px) {
  .three-columns-cards .cards .card,
  .three-columns-cards .cards .download-card,
  .three-columns-cards .cards .download-card.slick-slide {
    width: calc(33.3% - 38px);
  }
}
.three-columns-cards .cards .card .card__heading::after {
  content: url(images/svg/icon-chevron-with-bg--color-2.svg) !important;
}

.slick-dots {
  position: relative;
  bottom: unset;
  margin-top: 20px;
}
.slick-dots li {
  width: 15px;
  height: 15px;
}
.slick-dots li button {
  background-color: #005529;
  opacity: 0.3;
  border-radius: 30rem;
  width: 15px;
  height: 15px;
  transition: all 0.2s ease;
}
.slick-dots li.slick-active button {
  opacity: 1;
}
.slick-dots > li:only-child {
  display: none;
}

.downloads-carousel {
  width: 100%;
  max-width: 100%;
  z-index: 3;
  margin-top: -120px;
  overflow-x: hidden;
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  padding: 0 30px;
}
@media screen and (min-width: 767px) {
  .downloads-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
  }
}
@media screen and (min-width: 992px) {
  .downloads-carousel {
    margin-top: -200px;
  }
}
@media screen and (min-width: 1250px) {
  .downloads-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    max-width: 1240px;
    margin-inline: auto;
  }
}

.posts-carousel {
  width: 100%;
  max-width: 100%;
  z-index: 3;
  margin-top: -120px;
  overflow-x: hidden;
}
.posts-carousel .slick-slide {
  margin: 0 9px;
  height: inherit !important;
}
@media screen and (min-width: 768px) {
  .posts-carousel .slick-slide {
    margin: 0 27.5px;
  }
}
@media screen and (min-width: 1250px) {
  .posts-carousel .slick-slide {
    padding: 0 !important;
    margin: 0 auto !important;
  }
}
.posts-carousel .slick-list {
  margin: 0;
  padding: 0 30px 0 21px !important;
}
@media screen and (min-width: 445px) {
  .posts-carousel .slick-list {
    padding: 0 10vw !important;
  }
}
@media screen and (min-width: 500px) {
  .posts-carousel .slick-list {
    padding: 0 13vw !important;
  }
}
@media screen and (min-width: 550px) {
  .posts-carousel .slick-list {
    padding: 0 17.5vw !important;
  }
}
@media screen and (min-width: 650px) {
  .posts-carousel .slick-list {
    padding: 0 20vw !important;
  }
}
@media screen and (min-width: 730px) {
  .posts-carousel .slick-list {
    padding: 0 24vw !important;
  }
}
@media screen and (min-width: 768px) {
  .posts-carousel .slick-list {
    margin: 0 -27.5px;
    padding: 0 10vw !important;
  }
}
@media screen and (min-width: 1250px) {
  .posts-carousel .slick-list {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.posts-carousel .slick-track {
  display: flex !important;
  justify-content: center !important;
}
.posts-carousel .slick-track:before, .posts-carousel .slick-track:after {
  display: none;
}
@media screen and (min-width: 1250px) {
  .posts-carousel .slick-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    width: 100% !important;
    margin-inline: auto;
    justify-content: center;
  }
}
.posts-carousel .slide {
  position: relative;
  float: left;
}
@media screen and (min-width: 992px) {
  .posts-carousel {
    margin-top: -200px;
  }
}
@media screen and (min-width: 1250px) {
  .posts-carousel {
    max-width: 1240px;
    margin-inline: auto;
  }
  .posts-carousel .slick-dots {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .downloads-carousel .slick-list .slick-slide {
    margin: 0 15px !important;
  }
}
@media screen and (min-width: 992px) {
  .downloads-carousel .slick-list .slick-slide {
    margin: 0 27.5px;
  }
}

.download-card,
.download-card.slick-slide {
  background-color: #005529;
  color: #ffffff;
  border-radius: 25px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 405px;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .download-card,
  .download-card.slick-slide {
    max-width: unset;
  }
}
@media screen and (min-width: 1250px) {
  .download-card,
  .download-card.slick-slide {
    max-width: 376px;
  }
}
.download-card .heading-link-wrap,
.download-card.slick-slide .heading-link-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 992px) {
  .download-card .heading-link-wrap,
  .download-card.slick-slide .heading-link-wrap {
    gap: 30px;
  }
}
.download-card a,
.download-card.slick-slide a {
  color: #ffffff !important;
  display: flex !important;
  text-decoration: none;
  background-color: #005529;
  border-radius: 25px;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  transition: all 0.2s ease;
  width: 100% !important;
  height: 100%;
  flex-wrap: wrap;
}
.download-card a:hover, .download-card a:focus,
.download-card.slick-slide a:hover,
.download-card.slick-slide a:focus {
  background-color: #004322;
}
.download-card__heading,
.download-card.slick-slide__heading {
  color: #ffffff;
  margin-bottom: 10px;
  padding-bottom: 30px;
  position: relative;
}
.download-card__heading:after,
.download-card.slick-slide__heading:after {
  content: url(images/svg/horizontal-dots--color-2.svg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.download-card__description,
.download-card.slick-slide__description {
  font-family: "freude", sans-serif;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
}
.download-card__description p:first-of-type,
.download-card.slick-slide__description p:first-of-type {
  margin-top: 0;
}
.download-card__link:before,
.download-card.slick-slide__link:before {
  display: inline-block;
  width: 57px;
}
.download-card:nth-of-type(4n + 1) .download-card__heading::after,
.download-card.slick-slide:nth-of-type(4n + 1) .download-card__heading::after {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
.download-card:nth-of-type(4n + 1) .download-card__link:before,
.download-card.slick-slide:nth-of-type(4n + 1) .download-card__link:before {
  content: url(images/svg/download-icon--color-4.svg);
}
.download-card:nth-of-type(4n + 2) .download-card__heading::after,
.download-card.slick-slide:nth-of-type(4n + 2) .download-card__heading::after {
  content: url(images/svg/horizontal-dots--color-2.svg);
}
.download-card:nth-of-type(4n + 2) .download-card__link:before,
.download-card.slick-slide:nth-of-type(4n + 2) .download-card__link:before {
  content: url(images/svg/download-icon--color-2.svg);
}
.download-card:nth-of-type(4n + 3) .download-card__heading::after,
.download-card.slick-slide:nth-of-type(4n + 3) .download-card__heading::after {
  content: url(images/svg/horizontal-dots--color-3.svg);
}
.download-card:nth-of-type(4n + 3) .download-card__link:before,
.download-card.slick-slide:nth-of-type(4n + 3) .download-card__link:before {
  content: url(images/svg/download-icon--color-3.svg);
}
.download-card:nth-of-type(4n + 4) .download-card__heading::after,
.download-card.slick-slide:nth-of-type(4n + 4) .download-card__heading::after {
  content: url(images/svg/horizontal-dots--color-5.svg);
}
.download-card:nth-of-type(4n + 4) .download-card__link:before,
.download-card.slick-slide:nth-of-type(4n + 4) .download-card__link:before {
  content: url(images/svg/download-icon--color-5.svg);
}

.download-card:nth-of-type(3) {
  position: relative;
}
.download-card:nth-of-type(3):after {
  position: absolute;
  content: url("images/dog-signpost.png");
  right: 0;
  top: -274px;
}
@media (max-width: 1279px) {
  .download-card:nth-of-type(3):after {
    display: none;
  }
}

ul.quick-links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
ul.quick-links .quick-link {
  position: relative;
  padding-left: 28px;
  padding-bottom: 0;
}
ul.quick-links .quick-link__icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 84px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  ul.quick-links .quick-link__icon {
    max-width: 108px;
  }
}
ul.quick-links .quick-link h3 {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}
ul.quick-links .quick-link a {
  position: relative;
  background-color: #005529;
  display: block;
  color: #ffffff;
  font-family: "freude", sans-serif;
  padding: 26px 66px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 24px;
  line-height: 30px;
  transition: all 0.2s ease;
}
ul.quick-links .quick-link a:hover, ul.quick-links .quick-link a:focus {
  background-color: #004322;
}
ul.quick-links .quick-link a:hover h3, ul.quick-links .quick-link a:focus h3 {
  color: #ffffff;
}
ul.quick-links .quick-link a:after {
  content: url(images/svg/icon-chevron-with-bg.svg);
  display: inline-block;
  width: 50px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  ul.quick-links .quick-link a:after {
    right: 30px;
  }
}
@media screen and (min-width: 992px) {
  ul.quick-links .quick-link a {
    padding: 32px 30px 32px 97px;
  }
}
@media screen and (min-width: 768px) {
  ul.quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
  }
}
@media screen and (min-width: 1250px) {
  ul.quick-links {
    gap: 50px 56px;
  }
}

.image-carousel .slick-list {
  padding: 0 !important;
  margin: 0 -28px !important;
}
@media (max-width: 900px) {
  .image-carousel .slick-list {
    margin: 0 -34px !important;
  }
}
.image-carousel .slick-list .slick-track .slick-slide {
  margin: 0 28px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .image-carousel .slick-list .slick-track .slick-slide {
    margin: 0 34px;
  }
}
.image-carousel img {
  max-width: 576px;
  width: 100%;
}

.fp-quick-links {
  padding: 80px 0;
}
@media screen and (min-width: 992px) {
  .fp-quick-links {
    padding: 112px 0;
  }
}
@media screen and (min-width: 1250px) {
  .fp-quick-links {
    padding: 180px 0 100px;
  }
}

.cta {
  border-radius: 25px;
  padding: 57px 30px 0;
  position: relative;
  overflow: hidden;
}
.cta.donate {
  background-color: #005529;
  text-align: center;
}
.cta.donate:before, .cta.donate:after {
  content: url(images/svg/bg-blob.svg);
  display: inline-block;
  position: absolute;
  opacity: 0.08;
  rotate: 180deg;
  z-index: 0;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .cta.donate:before, .cta.donate:after {
    width: 350px;
  }
}
.cta.donate:before {
  top: -150px;
  left: -150px;
}
@media screen and (min-width: 768px) {
  .cta.donate:before {
    top: -160px;
    left: -45px;
  }
}
.cta.donate:after {
  bottom: -43px;
  right: -100px;
}
@media screen and (min-width: 768px) {
  .cta.donate:after {
    bottom: -180px;
    right: -60px;
  }
}
.cta .copy-button-wrap, .cta__image, .cta__title {
  position: relative;
  z-index: 1;
}
.cta .copy-button-wrap {
  text-align: center;
  order: 2;
}
@media screen and (min-width: 768px) {
  .cta .copy-button-wrap {
    text-align: left;
    margin-bottom: 60px;
    margin-top: 39px;
  }
}
@media screen and (min-width: 992px) {
  .cta .copy-button-wrap {
    max-width: 340px;
  }
}
@media screen and (min-width: 1250px) {
  .cta .copy-button-wrap {
    margin-bottom: 70px;
    margin-top: auto;
  }
}
.cta__button {
  margin-inline: auto;
  margin-top: 30px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .cta__button {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.cta__copy {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: calc(1em + 10px);
}
.cta__copy p:first-of-type {
  margin-top: 0;
}
.cta__image {
  padding-inline: 30px;
  order: 0;
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .cta__image {
    padding-inline: 0;
    min-width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .cta__image {
    min-width: 225px;
  }
}
.cta__title {
  margin-inline: auto;
  order: 1;
}
@media screen and (min-width: 768px) {
  .cta__title {
    margin-left: -80px;
    max-width: 332px;
    width: 100%;
    align-self: flex-start;
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .cta__title {
    align-self: center;
    margin-top: 0;
    margin-left: -100px;
  }
}
@media screen and (min-width: 1250px) {
  .cta__title {
    max-width: 375px;
  }
}
@media screen and (min-width: 768px) {
  .cta {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    padding-top: 23px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 992px) {
  .cta {
    padding-inline: 70px;
  }
}
@media screen and (min-width: 1250px) {
  .cta {
    padding-inline: 100px;
  }
}

.newsletter-signup,
.events {
  border-radius: 25px;
  padding: 50px 30px 0;
  text-align: center;
}
.newsletter-signup .newsletter-signup__title,
.newsletter-signup .events__title,
.events .newsletter-signup__title,
.events .events__title {
  color: #005529;
  font-size: 35px;
  line-height: 40px;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 10px;
  display: inline-block;
}
.newsletter-signup .newsletter-signup__title:after,
.newsletter-signup .events__title:after,
.events .newsletter-signup__title:after,
.events .events__title:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter-signup {
  background-color: #CEF1FD;
  position: relative;
  overflow: hidden;
}
.newsletter-signup__title, .newsletter-signup__copy, .newsletter-signup__form, .newsletter-signup__image {
  z-index: 2;
  position: relative;
}
.newsletter-signup__title:after {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
.newsletter-signup__copy {
  color: #005529;
  font-weight: 700;
  font-size: 24px;
  line-height: calc(1em + 10px);
  max-width: 376px;
  margin-inline: auto;
}
.newsletter-signup__copy p:first-of-type {
  margin-top: 0;
}
.newsletter-signup__form {
  margin-top: 30px;
  float: left;
  max-width: 100%;
  width: 100%;
  z-index: 3;
}
.newsletter-signup__form .wpforms-container {
  padding: 0 !important;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.newsletter-signup__form .wpforms-container .wpforms-field {
  padding: 0;
}
.newsletter-signup__form .wpforms-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsletter-signup__form .wpforms-container .form-wrapper {
  display: inline-block;
  margin-inline: auto;
  max-width: 376px;
  width: 100%;
}
.newsletter-signup__form .wpforms-container label {
  font-size: 18px;
  color: #005529;
  font-family: "freude", sans-serif;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
.newsletter-signup__form .wpforms-container label .wpforms-required-label {
  opacity: 0;
}
.newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit {
  font-size: 20px !important;
  padding: 20px 51px 20px 40px;
  font-weight: 700;
}
.newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit:after {
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 11px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
.newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit > span {
  padding-left: 0;
}
.newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit > span:before {
  display: none;
  font-size: 20px;
}
.newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit:hover:after, .newsletter-signup__form .wpforms-container .wpforms-submit-container button.wpforms-submit:focus:after {
  right: 26px;
}
.newsletter-signup__form .wpforms-container input[type=email], .newsletter-signup__form .wpforms-container input[type=text] {
  display: block;
  width: 100%;
  max-width: 376px !important;
  border-radius: 30rem;
  border: 0;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.newsletter-signup__form .wpforms-container input[type=email]::placeholder, .newsletter-signup__form .wpforms-container input[type=text]::placeholder {
  opacity: 0.9;
  color: #666666;
}
.newsletter-signup__image {
  max-width: 404px;
  margin-inline: auto;
  grid-row: 3;
}
@media screen and (max-width: 1023px) {
  .newsletter-signup__image img {
    padding-top: 15px;
    margin-bottom: -50px;
  }
}
.newsletter-signup:not(.flexible) .newsletter-signup__image img {
  padding-top: 15px;
  margin-bottom: -50px;
}
.newsletter-signup:before, .newsletter-signup:after {
  content: url(images/svg/dotted-line--color-4.svg);
  display: none;
  width: 260px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .newsletter-signup:before, .newsletter-signup:after {
    display: inline-block;
  }
}
@media screen and (min-width: 1250px) {
  .newsletter-signup:before, .newsletter-signup:after {
    width: 277px;
  }
}
.newsletter-signup:before {
  top: -36px;
  right: -3px;
  rotate: -107deg;
}
@media screen and (min-width: 1250px) {
  .newsletter-signup:before {
    top: 96px;
    right: -88px;
  }
}
.newsletter-signup:after {
  bottom: 0;
  left: 61px;
  rotate: 7deg;
}
@media screen and (min-width: 1250px) {
  .newsletter-signup:after {
    bottom: 40px;
    left: -25px;
  }
}
@media screen and (min-width: 1024px) {
  .newsletter-signup.flexible {
    display: flex;
    text-align: left;
    padding: 60px 52px 0 108px;
    width: 100%;
  }
  .newsletter-signup.flexible:before {
    top: -10px;
    right: -38px;
  }
  .newsletter-signup.flexible:after {
    bottom: -180px;
    left: 60%;
  }
  .newsletter-signup.flexible .newsletter-signup__title {
    font-size: 65px;
  }
  .newsletter-signup.flexible .newsletter-signup__title:after {
    left: 0;
    transform: none;
  }
  .newsletter-signup.flexible .newsletter-signup__copy {
    margin-inline: unset;
    max-width: unset;
  }
  .newsletter-signup.flexible .newsletter-signup__image {
    margin-top: auto;
    margin-inline: unset;
    margin-left: auto;
    max-width: 432px;
    margin-bottom: 0;
  }
  .newsletter-signup.flexible .newsletter-signup__form {
    margin-bottom: 70px;
  }
  .newsletter-signup.flexible .newsletter-signup__form .form-wrapper {
    margin-inline: 0;
  }
  .newsletter-signup.flexible .newsletter-signup__form form {
    align-items: flex-start;
    gap: 12px;
  }
  .newsletter-signup.flexible .newsletter-signup__form form input[type=email] {
    margin-bottom: 0;
  }
  .newsletter-signup.flexible .newsletter-signup__form form button[type=submit] {
    min-width: 160px;
  }
  .newsletter-signup.flexible .klaviyo-form form > div > div {
    flex-direction: row !important;
  }
  .newsletter-signup.flexible .klaviyo-form form > div > div > div {
    margin: 0 !important;
    justify-content: flex-start !important;
  }
}
@media screen and (min-width: 1250px) {
  .newsletter-signup.flexible .newsletter-signup__form form {
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
  }
}

.events {
  background-color: #FCE5D6;
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
}
.events__title, .events__list,
.events .btn {
  position: relative;
  z-index: 2;
}
.events__title:after {
  content: url(images/svg/horizontal-dots--color-3.svg);
}
.events__list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.events .event {
  text-align: left;
  max-width: 692px;
  margin-inline: auto;
  margin-bottom: 20px;
  padding: 0;
}
.events .event__title {
  color: #ffffff;
  font-family: "freude", sans-serif;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
.events .event__date {
  color: #F7AC6F;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}
.events .event a {
  display: flex;
  background-color: #005529;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 32px 20px;
  border-radius: 20px;
  position: relative;
  flex-direction: row;
  gap: 20px;
}
.events .event a span {
  display: block;
}
.events .event a:hover, .events .event a:focus {
  background-color: #004322;
}
.events .event a:after {
  content: url(images/svg/icon-chevron-with-bg--color-3.svg);
  display: inline-block;
  max-width: 50px;
  width: 100%;
  flex-grow: 1;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .events .event a:after {
    width: 57px;
  }
}
@media screen and (min-width: 768px) {
  .events .event a {
    padding: 35px 28px;
  }
}
.events:before, .events:after {
  content: url(images/svg/dotted-line--color-3.svg);
  display: none;
  width: 260px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .events:before, .events:after {
    display: inline-block;
  }
}
@media screen and (min-width: 1250px) {
  .events:before, .events:after {
    width: 277px;
  }
}
.events:before {
  bottom: -106px;
  right: 78px;
  rotate: 171deg;
}
@media screen and (min-width: 1250px) {
  .events:before {
    bottom: -57px;
    right: 0;
  }
}
.events:after {
  top: 42px;
  left: -63px;
  rotate: 71deg;
}
@media screen and (min-width: 1250px) {
  .events:after {
    top: 216px;
    left: -158px;
  }
}

.widgets-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1250px) {
  .widgets-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 56px;
  }
  .widgets-container .cta {
    width: 100%;
  }
  .widgets-container .newsletter-signup:not(.flexible),
  .widgets-container .events {
    width: calc(50% - 28px);
  }
  .widgets-container .newsletter-signup:not(.flexible) {
    grid-column: span 2;
    max-width: unset;
    grid-template-rows: auto 1fr auto;
    display: grid;
  }
}

h1.page-title {
  font-size: 45px;
  line-height: 50px;
  color: #005529;
}
@media screen and (min-width: 768px) {
  h1.page-title {
    font-size: 65px;
    line-height: 70px;
  }
}

.wpforms-form ul {
  list-style: none;
  padding: 0;
}
.wpforms-form ul li {
  padding-bottom: 0;
}

.donation-form {
  position: relative;
}
.donation-form .gform-theme--foundation .gfield textarea.large {
  min-block-size: unset !important;
}
.donation-form .toggle {
  position: relative;
  z-index: 10;
}
.donation-form--sponsor, .donation-form--single {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 0;
}
.donation-form--sponsor.loaded, .donation-form--single.loaded {
  position: relative;
  top: auto;
  left: auto;
  opacity: 1;
}
.donation-form .wpforms-container ul li {
  margin-bottom: 10px !important;
}
.donation-form .wpforms-container .wpforms-field:not(.contribute):not(.wpforms-field-payment-multiple):not(.wpforms-field-content):not(.giftaid) {
  padding-bottom: 7px !important;
  padding-top: 7px !important;
}
.donation-form form.toggle fieldset {
  gap: 0;
  margin-bottom: 20px;
}
.donation-form form.toggle fieldset .field-wrap {
  display: block;
}
.donation-form form.toggle fieldset .field-wrap label {
  font-family: "freude", sans-serif;
  color: #005529;
  padding: 30px 25px;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  border-color: #94C24A !important;
  border: 2px solid;
  display: block;
  width: 100%;
  margin: 0;
  font-weight: 600;
}
.donation-form form.toggle fieldset .field-wrap label:hover {
  cursor: pointer;
}
.donation-form form.toggle fieldset .field-wrap label:before {
  display: none !important;
}
@media screen and (min-width: 380px) {
  .donation-form form.toggle fieldset .field-wrap label {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form form.toggle fieldset .field-wrap label {
    font-size: 28px;
    line-height: 34px;
  }
}
.donation-form form.toggle fieldset .field-wrap label.mini {
  color: #ffffff;
  font-size: 20px;
  padding: 10px 25px;
}
.donation-form form.toggle fieldset .field-wrap input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.donation-form form.toggle fieldset .field-wrap input:checked ~ label {
  background-color: #005529;
  color: #ffffff;
  border-color: #005529 !important;
}
.donation-form form.toggle fieldset .field-wrap input:checked ~ label.mini {
  background-color: #EFFFD5;
  color: #005529;
  border-color: #EFFFD5 !important;
}
.donation-form form.toggle fieldset .field-wrap:first-of-type label {
  border-bottom: 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
@media screen and (min-width: 768px) {
  .donation-form form.toggle fieldset .field-wrap:first-of-type label {
    border-right: 0;
    border-bottom: 2px solid;
    border-bottom-left-radius: 30rem;
    border-top-left-radius: 30rem;
    border-top-right-radius: 0;
  }
}
.donation-form form.toggle fieldset .field-wrap:last-of-type label {
  border-top: 0;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media screen and (min-width: 768px) {
  .donation-form form.toggle fieldset .field-wrap:last-of-type label {
    border-top: 2px solid;
    border-left: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30rem;
    border-bottom-right-radius: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .donation-form form.toggle fieldset .field-wrap {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .donation-form form.toggle fieldset {
    display: flex;
    flex-direction: row;
  }
}
.donation-form form .gform-field-label:not(.gform-field-label--type-inline) {
  margin-bottom: 12px !important;
}
.donation-form__form {
  background-color: #ffffff;
  padding: 30px !important;
  margin-inline: -15px;
  margin-bottom: 90px;
}
.donation-form__form .gform-theme--foundation .gform_fields {
  row-gap: 16px;
  column-gap: 24px;
}
@media screen and (min-width: 380px) {
  .donation-form__form .gform-theme--foundation .gform_fields {
    column-gap: 28px;
  }
}
@media screen and (min-width: 1250px) {
  .donation-form__form .gform-theme--foundation .gform_fields {
    column-gap: 56px;
  }
}
.donation-form__form .wpforms-container {
  padding: 0 !important;
  padding-inline: 0;
  max-width: unset;
}
.donation-form__form .flex-grid ul,
.donation-form__form .flex-grid .gfield_checkbox {
  display: flex !important;
  flex-wrap: wrap !important;
  column-gap: 20px !important;
  flex-direction: row !important;
}
@media (max-width: 767px) {
  .donation-form__form .flex-grid ul,
  .donation-form__form .flex-grid .gfield_checkbox {
    flex-direction: column !important;
  }
}
.donation-form__form .keep-in-touch-text {
  font-size: 13px;
}
.donation-form__form .gform_body .keep-in-touch-checkboxes {
  margin-top: 13px;
}
.donation-form__form .gform_body .keep-in-touch-text {
  font-size: 13px;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio {
  gap: 0;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice {
  display: block;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice label {
  font-family: "freude", sans-serif;
  color: #005529;
  padding: 30px 25px;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  border-color: #94C24A !important;
  border: 2px solid;
  display: block;
  width: 100%;
  margin: 0;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice label:hover {
  cursor: pointer;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice label:before {
  display: none !important;
}
@media screen and (min-width: 380px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice label {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice label {
    font-size: 28px;
    line-height: 34px;
  }
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice input:checked ~ label {
  background-color: #005529;
  color: #ffffff;
  border-color: #005529 !important;
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice:first-of-type label {
  border-bottom: 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice:first-of-type label {
    border-right: 0;
    border-bottom: 2px solid;
    border-bottom-left-radius: 30rem;
    border-top-left-radius: 30rem;
    border-top-right-radius: 0;
  }
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice:last-of-type label {
  border-top: 0;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice:last-of-type label {
    border-top: 2px solid;
    border-left: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30rem;
    border-bottom-right-radius: 30rem;
  }
}
.donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice.wpforms-selected label {
  background-color: #005529;
  color: #ffffff;
  border-color: #005529 !important;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio .gchoice {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield--type-choice.toggle .gfield_radio {
    display: flex;
    flex-direction: row;
  }
}
.donation-form__form .gfield--type-total {
  display: none;
}
.donation-form__form .gfield.donation-amount {
  margin-bottom: 16px;
  padding-top: 15px;
}
.donation-form__form .gfield.donation-amount .ginput_container .gfield_radio {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.donation-form__form .gfield.donation-amount .ginput_container .gfield_radio .gchoice {
  width: 100%;
  display: flex;
  justify-content: center;
}
.donation-form__form .gfield.donation-amount .ginput_container .gfield_radio .gchoice:last-of-type label:after {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield.donation-amount .ginput_container .gfield_radio {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield.donation-amount .ginput_container .gfield_radio {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }
}
.donation-form__form .gfield.donation-amount label {
  font-size: 25px;
  line-height: 37px;
  text-align: center;
  padding: 20px 25px;
  border: 2px solid #94C24A;
  display: inline-block;
  border-radius: 30rem;
  width: 120px;
  margin: 0;
}
.donation-form__form .gfield.donation-amount label:hover {
  cursor: pointer;
}
@media screen and (min-width: 380px) {
  .donation-form__form .gfield.donation-amount label {
    width: 150px;
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield.donation-amount label {
    font-size: 40px;
    line-height: 1;
    width: 100%;
  }
}
.donation-form__form .gfield.donation-amount input[type=radio] {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.donation-form__form .gfield.donation-amount input[type=radio] + label {
  font-family: "freude", sans-serif;
  color: #005529;
  display: block;
  position: relative;
}
.donation-form__form .gfield.donation-amount input[type=radio] + label:before {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield.donation-amount input[type=radio] + label:after {
    content: "";
    display: none;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 47px 47px 47px;
    border-color: transparent transparent #FCE5D6 transparent;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.donation-form__form .gfield.donation-amount input[type=radio]:checked ~ label {
  border-color: #005529;
  color: #ffffff;
  background-color: #005529;
}
@media screen and (min-width: 768px) {
  .donation-form__form .gfield.donation-amount input[type=radio]:checked ~ label:after {
    display: block;
  }
}
.donation-form__form .gfield.donation-amount input[type=radio]:focus + label {
  outline: 2px solid #ffaad6;
}
.donation-form__form .gfield--type-html {
  border-radius: 25px;
  padding: 25px 30px !important;
}
.donation-form__form .gfield--type-html p:first-of-type {
  margin-top: 0;
}
.donation-form__form .gfield--type-html.contribute {
  background-color: #FCE5D6;
  font-family: "freude", sans-serif;
  color: #005529 !important;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row {
  max-width: 100%;
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 47px 47px 47px;
  border-color: transparent transparent #FCE5D6 transparent;
  position: absolute;
  top: -30px;
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row--5:before {
  left: 4%;
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield--type-html.contribute .wpforms-field-row--5:before {
    left: 3%;
  }
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row--8:before {
  left: 30%;
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield--type-html.contribute .wpforms-field-row--8:before {
    left: 27%;
  }
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row--10:before {
  left: 45%;
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield--type-html.contribute .wpforms-field-row--10:before {
    left: 51%;
  }
}
.donation-form__form .gfield--type-html.contribute .wpforms-field-row--10:before p {
  font-weight: 600 !important;
}
@media screen and (min-width: 992px) {
  .donation-form__form .gfield--type-html.contribute .wpforms-field-row--10 {
    font-size: 24px;
    line-height: 30px;
  }
}
.donation-form__form .gfield--type-html.no-padding {
  padding: 0 !important;
}
.donation-form__form .gfield textarea,
.donation-form__form .gfield input[type=text]:not(.ginput_total),
.donation-form__form .gfield input[type=email],
.donation-form__form .gfield input[type=tel] {
  background-color: #F5F5F5;
  color: #262626;
  border: 0;
  border-radius: 30rem;
  font-size: 18px;
}
.donation-form__form .gfield textarea {
  border-radius: 25px;
  border: 0;
  padding: 30px;
  min-height: 145px;
}
.donation-form__form .gfield input[type=text]:not(.ginput_total),
.donation-form__form .gfield input[type=email],
.donation-form__form .gfield input[type=tel] {
  border-radius: 30rem;
  border: 0;
  padding: 6px 30px !important;
  min-height: 50px;
}
.donation-form__form .gfield select {
  border: 0;
  background-color: #F5F5F5;
  border-radius: 30rem;
  padding: 6px 50px 6px 30px !important;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 50px;
}
.donation-form__form .gfield--type-text label,
.donation-form__form .gfield--type-text .gform-field-label, .donation-form__form .gfield--type-select label,
.donation-form__form .gfield--type-select .gform-field-label, .donation-form__form .gfield--type-email label,
.donation-form__form .gfield--type-email .gform-field-label, .donation-form__form .gfield--type-textarea label,
.donation-form__form .gfield--type-textarea .gform-field-label, .donation-form__form .gfield--type-checkbox label,
.donation-form__form .gfield--type-checkbox .gform-field-label, .donation-form__form .gfield--input-type-total label,
.donation-form__form .gfield--input-type-total .gform-field-label, .donation-form__form .gfield--type-address label,
.donation-form__form .gfield--type-address .gform-field-label {
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.donation-form__form .gfield--type-text label:before,
.donation-form__form .gfield--type-text .gform-field-label:before, .donation-form__form .gfield--type-select label:before,
.donation-form__form .gfield--type-select .gform-field-label:before, .donation-form__form .gfield--type-email label:before,
.donation-form__form .gfield--type-email .gform-field-label:before, .donation-form__form .gfield--type-textarea label:before,
.donation-form__form .gfield--type-textarea .gform-field-label:before, .donation-form__form .gfield--type-checkbox label:before,
.donation-form__form .gfield--type-checkbox .gform-field-label:before, .donation-form__form .gfield--input-type-total label:before,
.donation-form__form .gfield--input-type-total .gform-field-label:before, .donation-form__form .gfield--type-address label:before,
.donation-form__form .gfield--type-address .gform-field-label:before {
  display: none !important;
}
.donation-form__form .gfield .ginput_container_address {
  gap: 20px 0;
  margin-bottom: 20px;
}
.donation-form__form .gfield--type-choice input[type=checkbox] {
  margin: 0 0 0 !important;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #94C24A;
  aspect-ratio: 1/1;
  position: relative;
}
.donation-form__form .gfield--type-choice input[type=checkbox]:before {
  content: url(images/svg/icon-check.svg);
  display: none;
  width: 18px;
  position: relative;
  bottom: 4px;
  right: -2px;
}
.donation-form__form .gfield--type-choice input[type=checkbox]:checked {
  background-color: #94C24A;
}
.donation-form__form .gfield--type-choice input[type=checkbox]:checked:before {
  display: inline-block;
}
.donation-form__form .gfield--type-choice input[type=checkbox] + label {
  font-family: "freude", sans-serif;
  color: #005529;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.donation-form__form .gfield .gfield_required {
  position: relative;
}
.donation-form__form .gfield .gfield_required:after {
  content: "*";
  font-size: 18px;
  line-height: 22px;
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.donation-form__form .gfield .gfield_required .gfield_required_text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
@media screen and (min-width: 992px) {
  .donation-form__form div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column {
    padding: 0 28px !important;
  }
  .donation-form__form div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column.wpforms-layout-column-33 {
    padding: 0 !important;
    max-width: 322.66px !important;
  }
}
.donation-form__form .gform_button {
  background-color: #005529 !important;
  border-radius: 30rem !important;
  font-size: 28px !important;
  font-family: "freude", sans-serif !important;
  padding: 27px 50px !important;
  width: 100%;
  flex-grow: 1;
}
.donation-form__form .gform_button > span {
  position: relative;
  padding-left: 1.3em;
  line-height: 1;
  font-weight: 700;
  margin-inline: auto;
}
.donation-form__form .gform_button > span:before {
  content: url(images/svg/icon-heart--color-white.svg);
  width: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
  transform-origin: center;
}
.donation-form__form .gform_button:hover, .donation-form__form .gform_button:focus {
  background-color: #004322 !important;
}
.donation-form__form .gform_button:hover > span::before, .donation-form__form .gform_button:focus > span::before {
  transform: scale(1.2);
}
@media screen and (min-width: 380px) {
  .donation-form__form {
    margin-inline: -30px;
  }
}
@media screen and (min-width: 450px) {
  .donation-form__form {
    margin-inline: auto;
    border-radius: 25px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form__form {
    padding: 65px 55px !important;
  }
}
@media screen and (min-width: 1250px) {
  .donation-form__form {
    padding-inline: 108px !important;
  }
}
.donation-form__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
}
.donation-form__header .sticker {
  position: relative;
}
.donation-form__header .sticker:after {
  content: url(images/svg/dotted-arrow--color-1.svg);
  display: none;
  width: 155px;
  position: absolute;
  right: -50px;
  bottom: -150px;
}
@media screen and (min-width: 992px) {
  .donation-form__header .sticker:after {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .donation-form__header .sticker:after {
    right: -70px;
    bottom: -145px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form__header .sticker {
    margin-right: 77px;
  }
}
@media screen and (min-width: 1440px) {
  .donation-form__header .sticker {
    margin-right: 31px;
    bottom: -35px;
  }
}
.donation-form__header .dog-image {
  position: absolute;
  bottom: -17px;
  right: 0;
  display: none;
  max-width: 415px;
}
@media screen and (min-width: 992px) {
  .donation-form__header .dog-image {
    display: block;
  }
}
@media screen and (min-width: 1250px) {
  .donation-form__header .dog-image {
    max-width: 470px;
  }
}
.donation-form .wpforms-field-payment-single input {
  max-width: 100% !important;
}
.donation-form .wpforms-field-payment-multiple {
  float: left !important;
  width: 100%;
  margin-bottom: 20px;
}
.donation-form .wpforms-field-payment-multiple input[type=radio] {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.donation-form .wpforms-field-payment-multiple input[type=radio] + label {
  font-family: "freude", sans-serif;
  color: #005529;
  display: block;
}
.donation-form .wpforms-field-payment-multiple input[type=radio] + label:before {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .donation-form .wpforms-field-payment-multiple input[type=radio] + label:after {
    content: "";
    display: none;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 47px 47px 47px;
    border-color: transparent transparent #FCE5D6 transparent;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.donation-form .wpforms-field-payment-multiple input[type=radio]:focus + label {
  outline: 2px solid #ffaad6;
}
.donation-form .wpforms-field-payment-multiple ul {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.donation-form .wpforms-field-payment-multiple ul li {
  display: flex;
  justify-content: center;
}
.donation-form .wpforms-field-payment-multiple ul li:last-of-type label::after {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .donation-form .wpforms-field-payment-multiple ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-field-payment-multiple ul {
    display: flex;
    justify-content: space-between;
    gap: 42px;
  }
}
@media screen and (min-width: 1250px) {
  .donation-form .wpforms-field-payment-multiple ul {
    gap: 56px;
  }
}
.donation-form .wpforms-field-payment-multiple li {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-field-payment-multiple li:last-of-type label {
    min-width: 240px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-field-payment-multiple li {
    width: 100%;
  }
}
.donation-form .wpforms-field-payment-multiple label {
  font-size: 25px;
  line-height: 37px;
  text-align: center;
  padding: 20px 25px;
  border: 2px solid #94C24A;
  display: inline-block;
  border-radius: 30rem;
  width: 120px;
}
@media screen and (min-width: 380px) {
  .donation-form .wpforms-field-payment-multiple label {
    width: 150px;
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-field-payment-multiple label {
    font-size: 40px;
    line-height: 1;
    width: 100%;
  }
}
.donation-form .wpforms-field-payment-multiple li.wpforms-selected label {
  border-color: #005529;
  background-color: #005529;
  color: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .donation-form .wpforms-field-payment-multiple li.wpforms-selected label:after {
    display: block;
  }
}
.donation-form .wpforms-field-content {
  border-radius: 25px;
  padding: 25px 30px !important;
}
.donation-form .wpforms-field-content p:first-of-type {
  margin-top: 0;
}
.donation-form .wpforms-field-content.contribute {
  background-color: #FCE5D6;
  font-family: "freude", sans-serif;
  color: #005529 !important;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  position: relative;
}
.donation-form .wpforms-field-content.contribute .wpforms-field-row {
  max-width: 100%;
}
.donation-form .wpforms-field-content.contribute .wpforms-field-row p {
  font-weight: 600 !important;
}
.donation-form .wpforms-field-content.contribute .wpforms-field-row p > span {
  font-weight: 600 !important;
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-field-content.contribute {
    font-size: 24px;
    line-height: 30px;
  }
}
.donation-form .wpforms-field-content.no-padding {
  padding: 0 !important;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices {
  border-radius: 30rem;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__inner {
  border-radius: 30rem;
  background-color: #F5F5F5;
  border: 0;
  padding: 11px 0 8px 0;
  min-height: 50px !important;
  font-size: 18px !important;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__inner .choices__list {
  font-size: 18px !important;
  padding: 0 50px 0 30px !important;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__inner .choices__list * {
  font-size: 18px !important;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__item {
  color: #000000;
  opacity: 1;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__list--single {
  padding: 0 16px 4px 16px;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices__button {
  margin-right: 45px !important;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices:after {
  content: url(images/svg/chevron-right--color-2.svg);
  border: 0;
  width: 9px;
  rotate: 90deg;
  top: 16px;
  right: 26px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices:after {
    transition: all 0.2s ease;
  }
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices.is-open .choices__inner {
  border-radius: 30rem;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-select .choices.is-open:after {
  margin-top: -2.5px;
  rotate: -90deg;
}
.donation-form .wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-row {
    gap: 30px;
  }
}
.donation-form .wpforms-container .wpforms-field-label {
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  .donation-form .wpforms-container .wpforms-field-label {
    margin-bottom: 12px;
  }
}
.donation-form .wpforms-container .wpforms-label-inline {
  font-weight: 600 !important;
}
.donation-form .wpforms-submit-container {
  margin-top: 40px;
}
.donation-form .wpforms-field-payment-total {
  display: none;
}
.donation-form .giftaid {
  border-radius: 25px;
  padding: 25px 30px !important;
  background-color: #F5F5F5;
  margin: 20px 0;
  width: 100%;
  overflow: auto;
}
.donation-form .giftaid * {
  float: left;
}
.donation-form .giftaid legend {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 18px;
  line-height: 22px;
  margin-inline: auto;
  text-align: center;
}
.donation-form .giftaid .wpforms-field-description {
  margin-left: 34px;
  margin-top: 0;
  font-weight: 500;
  text-align: center;
  margin-inline: 0;
}
.donation-form .giftaid .wpforms-field-description a {
  color: #262626;
}
.donation-form .giftaid .wpforms-field-description a:visited {
  color: #262626;
}
.donation-form.mini-donation-form {
  padding-top: 0 !important;
}
.donation-form.mini-donation-form--hero {
  position: relative;
  z-index: 2;
}
.donation-form.mini-donation-form .mini-donation-form__header {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .donation-form.mini-donation-form .mini-donation-form__header {
    padding: 120px 0;
  }
}
.donation-form.mini-donation-form .mini-donation-form__header .section-title {
  display: flex;
  flex-direction: column;
}
.donation-form.mini-donation-form .mini-donation-form__header .section-title:before {
  content: url(images/svg/horizontal-dots--color-2.svg);
  display: inline-block;
  margin-bottom: 23px;
}
.donation-form.mini-donation-form .mini-donation-form__header p {
  color: #005529;
  text-align: center;
}
.donation-form.mini-donation-form .wrapper {
  padding-inline: 0 !important;
}
.donation-form.mini-donation-form .mini-donation-form--form {
  background-color: var(--color__brand-1);
  padding: 56px;
}
@media (max-width: 768px) {
  .donation-form.mini-donation-form .mini-donation-form--form {
    padding: 30px 30px;
    width: 100vw;
    max-width: 100vw;
  }
}
@media (min-width: 1100px) {
  .donation-form.mini-donation-form .mini-donation-form--form:not(.full-width) {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.donation-form.mini-donation-form .mini-donation-form--form .donation-form__form {
  margin: 0;
  margin-inline: 0;
  padding: 0 !important;
  padding-inline: 0 !important;
  background-color: transparent;
}
.donation-form.mini-donation-form .mini-donation-form--form .donation-form__form .form-title {
  font-size: 30px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .donation-form.mini-donation-form .mini-donation-form--form .donation-form__form .form-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.donation-form.mini-donation-form .mini-donation-form--form .donation-form__form .form-desc {
  font-size: 18px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .donation-form.mini-donation-form .mini-donation-form--form .donation-form__form .form-desc {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.donation-form.mini-donation-form .mini-donation-form--form .donation-form__form .form {
  background-color: transparent;
}
@media (min-width: 900px) {
  .donation-form.mini-donation-form .mini-donation-form--image {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.donation-form.mini-donation-form .mini-donation-form--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-donation-form--container {
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 650px) {
  .mini-donation-form--container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .mini-donation-form--container {
    justify-content: end;
    padding: 0 60px;
  }
}

body.page-template-template-form-donate.show-focus-outlines .donation-form form.toggle fieldset .field-wrap input:focus + label,
body.page-template-template-flexible-content.show-focus-outlines .donation-form form.toggle fieldset .field-wrap input:focus + label,
body.page-template-template-appeal-landing.show-focus-outlines .donation-form form.toggle fieldset .field-wrap input:focus + label {
  outline: 2px solid #ffaad6 !important;
}
body.page-template-template-form-donate .donation-form form.toggle,
body.page-template-template-flexible-content .donation-form form.toggle,
body.page-template-template-appeal-landing .donation-form form.toggle {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form form.toggle,
  body.page-template-template-flexible-content .donation-form form.toggle,
  body.page-template-template-appeal-landing .donation-form form.toggle {
    margin-bottom: 34px;
  }
}
body.page-template-template-form-donate .donation-form form.toggle.mini,
body.page-template-template-flexible-content .donation-form form.toggle.mini,
body.page-template-template-appeal-landing .donation-form form.toggle.mini {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form form.toggle.mini,
  body.page-template-template-flexible-content .donation-form form.toggle.mini,
  body.page-template-template-appeal-landing .donation-form form.toggle.mini {
    margin-bottom: 24px;
  }
}
body.page-template-template-form-donate .donation-form form.toggle fieldset,
body.page-template-template-flexible-content .donation-form form.toggle fieldset,
body.page-template-template-appeal-landing .donation-form form.toggle fieldset {
  margin: 0;
}
body.page-template-template-form-donate .donation-form form.toggle fieldset .field-wrap label,
body.page-template-template-flexible-content .donation-form form.toggle fieldset .field-wrap label,
body.page-template-template-appeal-landing .donation-form form.toggle fieldset .field-wrap label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  min-height: 85px;
  transition: all 0.1s ease;
}
body.page-template-template-form-donate .donation-form form.toggle fieldset .field-wrap label.mini,
body.page-template-template-flexible-content .donation-form form.toggle fieldset .field-wrap label.mini,
body.page-template-template-appeal-landing .donation-form form.toggle fieldset .field-wrap label.mini {
  padding: 10px 25px;
  min-height: unset;
}
body.page-template-template-form-donate .donation-form form.toggle fieldset .field-wrap label.mini:hover,
body.page-template-template-flexible-content .donation-form form.toggle fieldset .field-wrap label.mini:hover,
body.page-template-template-appeal-landing .donation-form form.toggle fieldset .field-wrap label.mini:hover {
  border-color: #EFFFD5 !important;
}
body.page-template-template-form-donate .donation-form form.toggle fieldset .field-wrap label:hover,
body.page-template-template-flexible-content .donation-form form.toggle fieldset .field-wrap label:hover,
body.page-template-template-appeal-landing .donation-form form.toggle fieldset .field-wrap label:hover {
  border-color: #005529 !important;
}
body.page-template-template-form-donate .donation-form .donation-form__header,
body.page-template-template-flexible-content .donation-form .donation-form__header,
body.page-template-template-appeal-landing .donation-form .donation-form__header {
  padding-bottom: 64px;
}
@media (max-width: 1023px) {
  body.page-template-template-form-donate .donation-form .donation-form__header,
  body.page-template-template-flexible-content .donation-form .donation-form__header,
  body.page-template-template-appeal-landing .donation-form .donation-form__header {
    padding-bottom: 85px;
  }
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form .donation-form__header,
  body.page-template-template-flexible-content .donation-form .donation-form__header,
  body.page-template-template-appeal-landing .donation-form .donation-form__header {
    padding-bottom: 35px;
  }
}
body.page-template-template-form-donate .donation-form .donation-form__header .text-content,
body.page-template-template-flexible-content .donation-form .donation-form__header .text-content,
body.page-template-template-appeal-landing .donation-form .donation-form__header .text-content {
  font-size: 28px;
  color: #005529;
  font-family: "freude", sans-serif;
}
body.page-template-template-form-donate .donation-form .donation-form__header .text-content *,
body.page-template-template-flexible-content .donation-form .donation-form__header .text-content *,
body.page-template-template-appeal-landing .donation-form .donation-form__header .text-content * {
  font-size: 28px;
  color: #005529;
  font-family: "freude", sans-serif;
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form .donation-form__header .text-content *,
  body.page-template-template-flexible-content .donation-form .donation-form__header .text-content *,
  body.page-template-template-appeal-landing .donation-form .donation-form__header .text-content * {
    font-size: 24px;
  }
}
body.page-template-template-form-donate .donation-form .donation-form__intro,
body.page-template-template-flexible-content .donation-form .donation-form__intro,
body.page-template-template-appeal-landing .donation-form .donation-form__intro {
  margin-bottom: 55px;
}
@media (max-width: 1023px) {
  body.page-template-template-form-donate .donation-form .donation-form__intro,
  body.page-template-template-flexible-content .donation-form .donation-form__intro,
  body.page-template-template-appeal-landing .donation-form .donation-form__intro {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form .donation-form__intro,
  body.page-template-template-flexible-content .donation-form .donation-form__intro,
  body.page-template-template-appeal-landing .donation-form .donation-form__intro {
    margin-bottom: 60px;
  }
}
body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .sticker,
body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .sticker,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .sticker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 122px;
  max-width: none;
  min-height: auto;
  position: absolute;
  right: 20px;
  top: -30px;
}
@media (max-width: 767px) {
  body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .sticker,
  body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .sticker,
  body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .sticker {
    right: 5px;
  }
}
body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .sticker:before,
body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .sticker:before,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .sticker:before {
  width: 118px;
  height: 122px;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .sticker span,
body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .sticker span,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .sticker span {
  transform: none;
  font-size: 24px;
  padding-inline: 15px;
  rotate: 10deg;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .text-content,
body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .text-content,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .text-content {
  background-image: url(images/svg/dog-description-heart-bg.svg);
  background-size: 288px 245px;
  background-repeat: no-repeat;
  background-position: bottom -45px right;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .dog-container .text-content *,
body.page-template-template-flexible-content .donation-form .donation-form__intro .dog-container .text-content *,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .dog-container .text-content * {
  color: #ffffff;
  font-size: 18px;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content {
  font-size: 18px;
  font-family: "freude", sans-serif;
  color: #005529;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content *,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content *,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content * {
  font-size: 18px;
  font-family: "freude", sans-serif;
  color: #005529;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content.text-content-top,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content.text-content-top,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content.text-content-top {
  font-size: 24px;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content.text-content-top *,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content.text-content-top *,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content.text-content-top * {
  font-size: 24px;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content.text-content-top *, body.page-template-template-form-donate .donation-form .donation-form__intro .text-content.text-content-dog *,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content.text-content-top *,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content.text-content-dog *,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content.text-content-top *,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content.text-content-dog * {
  margin: 0;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content ul,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content ul,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content ul li,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content ul li,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content ul li {
  position: relative;
  padding: 0 0 0 22px;
}
body.page-template-template-form-donate .donation-form .donation-form__intro .text-content ul li:before,
body.page-template-template-flexible-content .donation-form .donation-form__intro .text-content ul li:before,
body.page-template-template-appeal-landing .donation-form .donation-form__intro .text-content ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(images/svg/list-tick.svg);
}
body.page-template-template-form-donate .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content b, body.page-template-template-form-donate .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content strong,
body.page-template-template-flexible-content .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content b,
body.page-template-template-flexible-content .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content strong,
body.page-template-template-appeal-landing .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content b,
body.page-template-template-appeal-landing .donation-form .donation-form__intro#donation-form--intro-sponsor .dog-container .text-content strong {
  color: #E4B9D8;
}
body.page-template-template-form-donate .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content b, body.page-template-template-form-donate .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content strong,
body.page-template-template-flexible-content .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content b,
body.page-template-template-flexible-content .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content strong,
body.page-template-template-appeal-landing .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content b,
body.page-template-template-appeal-landing .donation-form .donation-form__intro#donation-form--intro-single .dog-container .text-content strong {
  color: #85CFE8;
}

.wpforms-field-checkbox li,
.wpforms-field-payment-checkbox li {
  display: flex !important;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
}
.wpforms-field-checkbox input[type=checkbox],
.wpforms-field-payment-checkbox input[type=checkbox] {
  margin: 0 0 0 !important;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #94C24A;
  aspect-ratio: 1/1;
  position: relative;
}
.wpforms-field-checkbox input[type=checkbox]:before,
.wpforms-field-payment-checkbox input[type=checkbox]:before {
  content: url(images/svg/icon-check.svg);
  display: none;
  width: 18px;
  position: relative;
  bottom: 4px;
  right: -2px;
}
.wpforms-field-checkbox input[type=checkbox]:checked,
.wpforms-field-payment-checkbox input[type=checkbox]:checked {
  background-color: #94C24A;
}
.wpforms-field-checkbox input[type=checkbox]:checked:before,
.wpforms-field-payment-checkbox input[type=checkbox]:checked:before {
  display: inline-block;
}
.wpforms-field-checkbox input[type=checkbox] + label,
.wpforms-field-payment-checkbox input[type=checkbox] + label {
  margin: 0;
  font-weight: 600;
}
.wpforms-field-checkbox.contact-preferences legend,
.wpforms-field-checkbox.contact-preferences input[type=checkbox] + label, .wpforms-field-checkbox.display-name legend,
.wpforms-field-checkbox.display-name input[type=checkbox] + label,
.wpforms-field-payment-checkbox.contact-preferences legend,
.wpforms-field-payment-checkbox.contact-preferences input[type=checkbox] + label,
.wpforms-field-payment-checkbox.display-name legend,
.wpforms-field-payment-checkbox.display-name input[type=checkbox] + label {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 16px;
  font-weight: 600;
}
.wpforms-field-checkbox.contact-preferences legend, .wpforms-field-checkbox.display-name legend,
.wpforms-field-payment-checkbox.contact-preferences legend,
.wpforms-field-payment-checkbox.display-name legend {
  font-size: 18px;
}
.wpforms-field-checkbox.contact-preferences ul,
.wpforms-field-payment-checkbox.contact-preferences ul {
  display: flex;
  flex-direction: row !important;
  gap: 6px;
  justify-content: space-between;
}
.wpforms-field-checkbox.contact-preferences ul li,
.wpforms-field-payment-checkbox.contact-preferences ul li {
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 601px) {
  .wpforms-field-checkbox.contact-preferences ul,
  .wpforms-field-payment-checkbox.contact-preferences ul {
    flex-direction: column !important;
  }
}

label {
  font-family: "freude", sans-serif;
  color: #005529;
}

#wpforms-539-field_19 {
  text-transform: capitalize;
}

.sticker {
  max-width: 146px;
  width: 100%;
  position: relative;
  min-height: 155px;
}
.sticker:before {
  position: absolute;
  display: inline-block;
  inset: 0;
  rotate: 10deg;
  z-index: 0;
}
.sticker span {
  rotate: 14deg;
  font-size: 17px;
  line-height: 22px;
  font-family: "freude", sans-serif;
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: translate(7%, 55%);
  padding-inline: 33px;
}
@media screen and (min-width: 768px) {
  .sticker span {
    font-size: 20px;
    line-height: 28px;
    transform: translate(7%, 47%);
  }
}
.sticker--color-4 span {
  color: #005529;
}
.sticker--color-4:before {
  content: url(images/svg/icon-bg--color-4.svg);
}
.sticker--color-5 span {
  color: #005529;
}
.sticker--color-5:before {
  content: url(images/svg/icon-bg--color-5.svg);
}
@media screen and (min-width: 768px) {
  .sticker {
    max-width: 163px;
  }
}

.page-hero {
  color: #005529;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.page-hero #page-header-links::-webkit-scrollbar {
  display: none;
}
.page-hero #page-header-links {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.page-hero ul#breadcrumbs {
  margin-top: 40px;
  padding-top: 16px !important;
}
.page-hero ul#breadcrumbs li a {
  color: #005529;
}
.page-hero ul#breadcrumbs li a:before {
  content: url(images/svg/breadcrumb-green-chevron.svg);
}
.page-hero .decoration-wrap-left {
  position: absolute;
  left: -100px;
  bottom: 0;
  z-index: 2;
  display: none;
}
.page-hero .decoration-wrap-left:before {
  width: 283px;
  rotate: -107deg;
  z-index: 2;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 1590px) {
  .page-hero .decoration-wrap-left {
    display: inline-block;
  }
}
.page-hero .decoration-wrap-right {
  position: absolute;
  right: -220px;
  bottom: 60px;
  z-index: 2;
  display: none;
}
.page-hero .decoration-wrap-right:before {
  width: 283px;
  z-index: 1;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-hero .decoration-wrap-right {
    display: inline-block;
  }
}
.page-hero .copy-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 80px;
  max-width: 580px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-hero .copy-wrap {
    padding: 46px 0 106px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero .copy-wrap {
    padding: 50px 0 140px;
    max-width: 775px;
  }
}
.page-hero .copy-wrap:after {
  margin-top: 5px;
}
.page-hero.has-links .copy-wrap:after {
  display: none;
}
.page-hero:before {
  display: none;
  position: absolute;
  width: 283px;
  rotate: -168deg;
  z-index: 2;
  top: -134px;
  left: 60%;
}
@media screen and (min-width: 1440px) {
  .page-hero:before {
    display: inline-block;
  }
}
.page-hero__image {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 635px;
  z-index: 1;
  height: 100%;
}
@media (max-width: 1023px) {
  .page-hero__image {
    overflow: hidden;
  }
}
.page-hero__image img {
  object-fit: cover;
  height: 100%;
  object-position: center left;
}
.page-hero__image:before {
  content: "";
  display: inline-block;
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 992px) {
  .page-hero__image {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero__image {
    max-width: 846px;
  }
}
.page-hero__heading {
  color: #005529;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (min-width: 380px) {
  .page-hero__heading {
    font-size: 45px;
    line-height: 50px;
  }
}
@media screen and (min-width: 992px) {
  .page-hero__heading {
    font-size: 65px;
    line-height: calc(1em + 10px);
  }
}
.page-hero__copy {
  font-size: 24px;
  line-height: calc(1em + 10px);
  font-family: "freude", sans-serif;
  position: relative;
  margin-top: 20px;
}
.page-hero__copy p:first-of-type {
  margin-top: 0;
}
.page-hero__copy:before {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1440px) {
  .page-hero__copy {
    font-size: 28px;
  }
}
.page-hero.bg-color--2:before {
  content: url(images/svg/hero-decoration-top--color-2.svg);
}
.page-hero.bg-color--2 .decoration-wrap-left:before {
  content: url(images/svg/hero-decoration-left--color-2.svg);
}
.page-hero.bg-color--2 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-right--color-2.svg);
}
.page-hero.bg-color--2 .copy-wrap:after {
  content: url(images/svg/horizontal-dots--color-2.svg);
}
.page-hero.bg-color--2 .page-hero__image:before {
  background: linear-gradient(90deg, #EFFFD5 10%, #EFFFD5 30%, transparent 60%);
}
.page-hero.bg-color--3:before {
  content: url(images/svg/hero-decoration-top--color-3.svg);
}
.page-hero.bg-color--3 .decoration-wrap-left:before {
  content: url(images/svg/hero-decoration-left--color-3.svg);
}
.page-hero.bg-color--3 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-right--color-3.svg);
}
.page-hero.bg-color--3 .copy-wrap:after {
  content: url(images/svg/horizontal-dots--color-3.svg);
}
.page-hero.bg-color--3 .page-hero__image:before {
  background: linear-gradient(90deg, #FCE5D6 10%, #FCE5D6 30%, transparent 60%);
}
.page-hero.bg-color--4:before {
  content: url(images/svg/hero-decoration-top--color-4.svg);
}
.page-hero.bg-color--4 .decoration-wrap-left:before {
  content: url(images/svg/hero-decoration-left--color-4.svg);
}
.page-hero.bg-color--4 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-right--color-4.svg);
}
.page-hero.bg-color--4 .copy-wrap:after {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
.page-hero.bg-color--4 .page-hero__image:before {
  background: linear-gradient(90deg, #CEF1FD 10%, #CEF1FD 30%, transparent 60%);
}
.page-hero.bg-color--5:before {
  content: url(images/svg/hero-decoration-top--color-5.svg);
}
.page-hero.bg-color--5 .decoration-wrap-left:before {
  content: url(images/svg/hero-decoration-left--color-5.svg);
}
.page-hero.bg-color--5 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-right--color-5.svg);
}
.page-hero.bg-color--5 .copy-wrap:after {
  content: url(images/svg/horizontal-dots--color-5.svg);
}
.page-hero.bg-color--5 .page-hero__image:before {
  background: linear-gradient(90deg, #FFEDFA 10%, #FFEDFA 30%, transparent 60%);
}
.page-hero.alternative {
  padding-bottom: 0;
}
.page-hero.alternative:before,
.page-hero.alternative .decoration-wrap-right {
  z-index: 0;
}
@media (max-width: 1500px) {
  .page-hero.alternative .page-hero__copy {
    max-width: 700px;
  }
}
@media (max-width: 1300px) {
  .page-hero.alternative .page-hero__copy {
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .page-hero.alternative .page-hero__copy {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .page-hero.alternative .copy-wrap {
    max-width: 100%;
  }
}
.page-hero.alternative .page-hero__image {
  position: relative;
  max-width: 376px !important;
  display: flex;
  margin-inline: auto;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-hero.alternative .page-hero__image {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .page-hero.alternative .page-hero__image {
    max-width: 260px !important;
  }
}
.page-hero.alternative .page-hero__image img {
  object-fit: unset;
  height: auto;
  margin-top: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-hero.alternative .page-hero__image img {
    margin-bottom: 0;
  }
}
.page-hero.alternative .page-hero__image:before {
  display: none;
}
@media screen and (min-width: 992px) {
  .page-hero.alternative .page-hero__image {
    display: inline-flex;
    position: absolute;
  }
}
@media screen and (max-width: 991px) {
  .page-hero.alternative .page-hero__image.hide-mob {
    display: none;
  }
}
.page-hero.alternative .copy-wrap {
  padding-bottom: 75px;
}
@media screen and (min-width: 992px) {
  .page-hero.alternative .copy-wrap {
    padding: 75px 0 125px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero.alternative .copy-wrap {
    padding: 50px 0 125px;
    max-width: 775px;
  }
}
.page-hero.contact:before {
  transform: scaleX(-1) rotate(93deg);
  top: -85px;
  left: 55%;
}
.page-hero.contact .decoration-wrap-right {
  bottom: 0;
  right: -170px;
}
.page-hero.contact.bg-color--2 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-left--color-2.svg);
}
.page-hero.contact.bg-color--3 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-left--color-3.svg);
}
.page-hero.contact.bg-color--4 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-left--color-4.svg);
}
.page-hero.contact.bg-color--5 .decoration-wrap-right:before {
  content: url(images/svg/hero-decoration-left--color-5.svg);
}
.page-hero.contact .copy-wrap {
  max-width: 100%;
}
.page-hero.contact .copy-wrap:after {
  display: none;
}
@media (max-width: 767px) {
  .page-hero.contact .page-hero__image {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero:before {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero.with-margin:before {
    left: 50%;
  }
}
@media screen and (min-width: 1170px) {
  .page-hero.with-margin:before {
    right: 40%;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero.with-margin:before {
    left: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero.with-margin .page-hero__image {
    right: 100px;
  }
}
@media screen and (min-width: 1170px) {
  .page-hero.with-margin .page-hero__image {
    right: 215px;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero.with-margin .page-hero__image {
    right: 115px;
  }
}
.page-hero.with-margin .page-hero__image img {
  z-index: 3;
}

.appeal-hero {
  max-height: 800px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .appeal-hero {
    height: 330px;
  }
}
.appeal-hero:after {
  content: "";
  background-image: url(images/svg/section-border-green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 23px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}
.appeal-hero__header {
  left: 0;
  right: 0;
  z-index: 10;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
@media (min-width: 768px) {
  .appeal-hero__header {
    flex-direction: row;
    align-items: center;
  }
}
.appeal-hero__header .btn.donate {
  display: flex;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .appeal-hero__header .btn.donate {
    display: inline-flex;
    margin-top: 0px;
  }
}
.appeal-hero__header .logo img {
  width: 100px;
}
@media (min-width: 768px) {
  .appeal-hero__header .logo img {
    width: 250px;
  }
}
.appeal-hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.appeal-nav {
  background-color: #005529;
  position: relative;
}
.appeal-nav:after {
  content: "";
  background-image: url(images/svg/header-border-bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 23px;
  width: 100%;
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  z-index: 1;
}
.appeal-nav__header {
  left: 0;
  right: 0;
  z-index: 10;
  padding: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .appeal-nav__header {
    padding: 23px 0;
  }
}
.appeal-nav__header .logo img {
  width: 250px;
}
.appeal-nav__header .btn.donate {
  display: none;
}
@media (min-width: 768px) {
  .appeal-nav__header .btn.donate {
    display: inline-flex;
  }
}

.appeal-form-wrapper {
  margin-top: -20%;
}
@media (min-width: 768px) {
  .appeal-form-wrapper {
    margin-top: -12%;
  }
}
@media (min-width: 992px) {
  .appeal-form-wrapper {
    margin-top: -30%;
  }
}
@media (min-width: 1200px) {
  .appeal-form-wrapper {
    margin-top: -45%;
  }
}

.text-block .single-text-wrap p:first-of-type {
  margin-top: 0;
}
.text-block .single-text-wrap .content {
  font-size: 18px;
  line-height: calc(1em + 10px);
}
.text-block .btn {
  margin-top: 30px;
}

.two-column-text p:first-of-type {
  margin-top: 0;
}
.two-column-text .content {
  font-size: 18px;
  line-height: calc(1em + 10px);
}
@media screen and (min-width: 992px) {
  .two-column-text .two-col-text-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1250px) {
  .two-column-text .two-col-text-wrap {
    gap: 56px;
  }
}

section.cta-banner .cta-banner {
  padding: 57px 32px 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
section.cta-banner .cta-banner__heading, section.cta-banner .cta-banner__copy, section.cta-banner .cta-banner__email, section.cta-banner .cta-banner__image,
section.cta-banner .cta-banner .btn {
  position: relative;
  z-index: 2;
}
section.cta-banner .cta-banner__heading {
  color: #005529;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner__heading {
    font-size: 65px;
    line-height: 70px;
  }
}
section.cta-banner .cta-banner__copy {
  color: #005529;
  font-size: 24px;
  line-height: calc(1em + 10px);
  font-weight: 700;
  margin-bottom: 30px;
}
section.cta-banner .cta-banner .email-phone-container {
  display: flex;
  gap: 120px;
}
@media (max-width: 1279px) {
  section.cta-banner .cta-banner .email-phone-container {
    gap: 20px;
    flex-direction: column;
  }
}
section.cta-banner .cta-banner__email .eyebrow {
  display: block;
  font-size: 20px;
  font-family: "freude", sans-serif;
  color: #005529;
}
section.cta-banner .cta-banner__email a {
  font-family: "freude", sans-serif;
  font-size: 18px;
  line-height: calc(1em + 10px);
  color: #005529;
  text-decoration: none;
}
section.cta-banner .cta-banner__email a:hover, section.cta-banner .cta-banner__email a:focus {
  text-decoration: underline;
}
@media screen and (min-width: 450px) {
  section.cta-banner .cta-banner__email a {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner__email a {
    font-size: 28px;
    line-height: 34px;
  }
}
section.cta-banner .cta-banner__image {
  text-align: center;
  margin: auto auto 0;
  flex-grow: 1;
  max-width: 370px;
  width: 100%;
}
section.cta-banner .cta-banner .btn {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner .text-wrap {
    margin-bottom: 66px;
  }
}
@media screen and (min-width: 1440px) {
  section.cta-banner .cta-banner .text-wrap {
    margin-bottom: 69px;
  }
}
section.cta-banner .cta-banner.standard:before, section.cta-banner .cta-banner.standard:after {
  content: url(images/svg/bg-blob--color-4.svg);
}
section.cta-banner .cta-banner.standard:before {
  bottom: -40px;
  right: -132px;
  width: 365px;
  rotate: 180deg;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner.standard:before {
    width: 626px;
    right: -48px;
    bottom: unset;
    top: -337px;
  }
}
section.cta-banner .cta-banner.standard:after {
  top: -306px;
  left: -264px;
  width: 469px;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner.standard:after {
    width: 391px;
    top: unset;
    left: -34px;
    bottom: -156px;
  }
}
section.cta-banner .cta-banner.alternative:before, section.cta-banner .cta-banner.alternative:after {
  content: url(images/svg/bg-blob--color-3.svg);
}
section.cta-banner .cta-banner.alternative:before {
  bottom: -40px;
  right: -232px;
  width: 469px;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner.alternative:before {
    right: -34px;
    bottom: unset;
    top: -100px;
  }
}
section.cta-banner .cta-banner.alternative:after {
  top: -74px;
  left: -100px;
  width: 365px;
  rotate: 237deg;
}
@media screen and (min-width: 550px) {
  section.cta-banner .cta-banner.alternative:after {
    top: -34px;
    left: -80px;
    width: 408px;
  }
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner.alternative:after {
    top: unset;
    left: -45px;
    bottom: -45px;
  }
}
section.cta-banner .cta-banner.alternative .cta-banner__image {
  max-width: 317px;
}
@media screen and (max-width: 991px) {
  section.cta-banner .cta-banner.alternative .cta-banner__image {
    margin-top: 30px;
  }
}
section.cta-banner .cta-banner.alternative .cta-banner__copy {
  max-width: 560px;
}
section.cta-banner .cta-banner:before, section.cta-banner .cta-banner:after {
  display: inline-block;
  z-index: 1;
  opacity: 0.3;
  position: absolute;
}
section.cta-banner .cta-banner:before {
  rotate: 229deg;
}
@media screen and (min-width: 992px) {
  section.cta-banner .cta-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 83px;
    padding-right: 28px;
    padding-top: 69px;
  }
}
@media screen and (min-width: 1440px) {
  section.cta-banner .cta-banner {
    padding-left: 108px;
    padding-right: 33px;
  }
}

.video-block {
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}
.video-block .decoration-wrap {
  position: relative;
}
.video-block .decoration-wrap:before, .video-block .decoration-wrap:after {
  content: url(images/svg/hero-decoration-left--color-5.svg);
  width: 244px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .video-block .decoration-wrap:before, .video-block .decoration-wrap:after {
    width: 283px;
  }
}
.video-block .decoration-wrap:before {
  rotate: 87deg;
  left: -55px;
  bottom: -277px;
}
.video-block .decoration-wrap:after {
  right: -185px;
  top: -200px;
  rotate: -87deg;
}
.video-block .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: auto;
  max-width: 1024px;
  margin-inline: auto;
  z-index: 2;
}
.video-block .youtube-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
.video-block .youtube-video-container::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.video-block .youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-block .video-carousel {
  z-index: 99;
  position: relative;
}
.video-block .video-carousel .slick-dots {
  padding-inline: 60px;
}
@media screen and (min-width: 768px) {
  .video-block .video-carousel .slick-dots {
    padding-inline: 0;
  }
}
.video-block .video-carousel .slick-prev,
.video-block .video-carousel .slick-next {
  z-index: 1;
  width: 57px;
  height: auto;
  opacity: 1;
  top: unset;
  bottom: 0;
  transform: none;
}
.video-block .video-carousel .slick-prev:before,
.video-block .video-carousel .slick-next:before {
  display: inline-block;
  width: 57px;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .video-block .video-carousel .slick-prev,
  .video-block .video-carousel .slick-next {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
  }
}
.video-block .video-carousel .slick-prev {
  left: 0;
}
.video-block .video-carousel .slick-prev:before {
  content: url(images/svg/icon-chevron-with-bg--color-2--left.svg);
}
.video-block .video-carousel .slick-next {
  right: 0;
}
.video-block .video-carousel .slick-next:before {
  content: url(images/svg/icon-chevron-with-bg--color-2.svg);
}
@media screen and (min-width: 768px) {
  .video-block .video-carousel {
    padding-inline: 80px;
  }
}
.video-block .embed-container iframe,
.video-block .embed-container object,
.video-block .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .video-block {
    margin: 100px 0;
  }
}
.video-block .video-block-video.show-video-controls {
  cursor: pointer !important;
}
.video-block .video-block-video.show-video-controls::-webkit-media-controls-panel {
  display: flex !important;
  opacity: 1 !important;
}

.testimonial-block {
  display: flex;
  width: 100%;
}
.testimonial-block .wrapper {
  width: 100%;
}
.testimonial-block .testimonial {
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.testimonial-block .testimonial__image {
  position: relative;
  width: 100%;
  max-width: 253px;
  margin-inline: auto;
  z-index: 1;
}
.testimonial-block .testimonial__image img {
  width: 100%;
  height: auto;
  display: block;
}
.testimonial-block .testimonial__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.testimonial-block .testimonial__image svg path {
  fill: none;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial__image {
    max-width: 332px;
  }
}
@media screen and (min-width: 1250px) {
  .testimonial-block .testimonial__image {
    margin-left: 60px;
    position: absolute;
    bottom: -88px;
    max-width: 432px;
  }
}
.testimonial-block .testimonial .bg-wrap {
  position: relative;
  border-radius: 25px;
  background-color: #005529;
  padding: 110px 32px 49px;
  margin-top: -100px;
  overflow: hidden;
}
.testimonial-block .testimonial .bg-wrap:before, .testimonial-block .testimonial .bg-wrap:after {
  content: url(images/svg/bg-blob.svg);
  position: absolute;
  opacity: 0.15;
  width: 297px;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial .bg-wrap:before, .testimonial-block .testimonial .bg-wrap:after {
    width: 458px;
  }
}
.testimonial-block .testimonial .bg-wrap:before {
  top: -98px;
  left: -190px;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial .bg-wrap:before {
    top: -200px;
    left: -154px;
  }
}
.testimonial-block .testimonial .bg-wrap:after {
  right: -160px;
  bottom: -75px;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial .bg-wrap:after {
    right: -182px;
    bottom: -200px;
  }
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial .bg-wrap {
    margin-top: -150px;
  }
}
@media screen and (min-width: 1250px) {
  .testimonial-block .testimonial .bg-wrap {
    padding-top: 58px;
    padding-bottom: 65px;
    margin-top: 0;
  }
}
.testimonial-block .testimonial__quote {
  color: #ffffff;
  font-family: "freude", sans-serif;
  max-width: 593px;
  margin-inline: auto;
}
.testimonial-block .testimonial__quote blockquote {
  margin-inline: 0;
  font-size: 34px;
  line-height: calc(1em + 10px);
  padding-top: 47px;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.testimonial-block .testimonial__quote blockquote:before, .testimonial-block .testimonial__quote blockquote:after {
  color: #E4B9D8;
  position: absolute;
  line-height: 1;
  font-size: 3em;
}
.testimonial-block .testimonial__quote blockquote:before {
  content: "“";
  top: 0;
  left: 0;
}
.testimonial-block .testimonial__quote blockquote:after {
  content: "„";
  bottom: -20px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial__quote blockquote:after {
    bottom: -40px;
  }
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial__quote blockquote {
    padding-right: 53px;
    font-size: 45px;
  }
}
@media screen and (min-width: 1250px) {
  .testimonial-block .testimonial__quote blockquote {
    margin-top: 0;
  }
}
.testimonial-block .testimonial__quote span.cite {
  display: block;
  font-size: 24px;
  padding-top: 35px;
  position: relative;
}
.testimonial-block .testimonial__quote span.cite:before {
  content: url(images/svg/horizontal-dots--color-5.svg);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .testimonial-block .testimonial__quote {
    padding-left: 53px;
    max-width: 646px;
  }
}
@media screen and (min-width: 1250px) {
  .testimonial-block .testimonial__quote {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-block .testimonial {
    max-width: calc(100% - 110px);
  }
}
@media screen and (min-width: 1250px) {
  .testimonial-block .testimonial {
    max-width: 100%;
  }
}
.testimonial-block.no-image .testimonial .bg-wrap {
  margin-top: 0;
  padding: calc(49px - 1em) 32px 49px;
}
.testimonial-block.no-image .testimonial .bg-wrap .testimonial__quote {
  text-align: center;
}
.testimonial-block.no-image .testimonial .bg-wrap .testimonial__quote blockquote {
  margin-top: 1rem;
}
.testimonial-block.no-image .testimonial .bg-wrap .testimonial__quote span.cite::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1250px) {
  .testimonial-block.no-image .testimonial .bg-wrap .testimonial__quote {
    margin-left: unset;
    margin-inline: auto;
  }
}

section.accordion .faq-wrapper {
  background-color: #EFFFD5;
  margin-inline: -15px;
  padding-bottom: 30px;
}
section.accordion .faq-wrapper button.question {
  width: 100%;
  text-align: left;
  padding: 35px 30px 0;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: calc(1em + 10px);
  color: #005529;
  font-family: "freude", sans-serif;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
section.accordion .faq-wrapper button.question .indicator {
  max-width: 57px;
  display: inline-block;
  position: relative;
  width: 100%;
}
section.accordion .faq-wrapper button.question .indicator:before {
  content: url(images/svg/indicator-accordion-closed.svg);
  width: 57px;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  section.accordion .faq-wrapper button.question {
    padding: 20px 30px 0 56px;
  }
}
section.accordion .faq-wrapper .answer {
  padding: 20px 30px 0;
  font-size: 18px;
  line-height: calc(1em + 10px);
}
section.accordion .faq-wrapper .answer p:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  section.accordion .faq-wrapper .answer {
    padding: 20px 100px 0 56px;
  }
}
section.accordion .faq-wrapper.open button.question .indicator::before {
  content: url(images/svg/indicator-accordion-open.svg);
}
@media screen and (min-width: 380px) {
  section.accordion .faq-wrapper {
    margin-inline: -30px;
  }
}
@media screen and (min-width: 768px) {
  section.accordion .faq-wrapper {
    border-radius: 25px;
    margin-inline: auto;
    padding-bottom: 20px;
  }
}

section.enquiry-form .enquiry-form,
section.enquiry-form .support-form,
section.support-form .enquiry-form,
section.support-form .support-form {
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
section.enquiry-form .enquiry-form .recaptcha-text,
section.enquiry-form .support-form .recaptcha-text,
section.support-form .enquiry-form .recaptcha-text,
section.support-form .support-form .recaptcha-text {
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  section.enquiry-form .enquiry-form .recaptcha-text,
  section.enquiry-form .support-form .recaptcha-text,
  section.support-form .enquiry-form .recaptcha-text,
  section.support-form .support-form .recaptcha-text {
    margin-top: 0;
    margin-bottom: 26px;
  }
}
section.enquiry-form .enquiry-form__heading,
section.enquiry-form .support-form__heading,
section.support-form .enquiry-form__heading,
section.support-form .support-form__heading {
  margin-bottom: 30px;
}
section.enquiry-form .enquiry-form__image--mobile,
section.enquiry-form .support-form__image--mobile,
section.support-form .enquiry-form__image--mobile,
section.support-form .support-form__image--mobile {
  text-align: center;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form__image--mobile,
  section.enquiry-form .support-form__image--mobile,
  section.support-form .enquiry-form__image--mobile,
  section.support-form .support-form__image--mobile {
    display: none;
  }
}
section.enquiry-form .enquiry-form__image--desktop,
section.enquiry-form .support-form__image--desktop,
section.support-form .enquiry-form__image--desktop,
section.support-form .support-form__image--desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form__image--desktop,
  section.enquiry-form .support-form__image--desktop,
  section.support-form .enquiry-form__image--desktop,
  section.support-form .support-form__image--desktop {
    display: block;
  }
}
section.enquiry-form .enquiry-form__image--desktop, section.enquiry-form .enquiry-form__image--mobile,
section.enquiry-form .support-form__image--desktop,
section.enquiry-form .support-form__image--mobile,
section.support-form .enquiry-form__image--desktop,
section.support-form .enquiry-form__image--mobile,
section.support-form .support-form__image--desktop,
section.support-form .support-form__image--mobile {
  position: relative;
  z-index: 10;
}
section.enquiry-form .enquiry-form .wpforms-container,
section.enquiry-form .support-form .wpforms-container,
section.support-form .enquiry-form .wpforms-container,
section.support-form .support-form .wpforms-container {
  z-index: 2;
  background: none !important;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form .wpforms-container,
  section.enquiry-form .support-form .wpforms-container,
  section.support-form .enquiry-form .wpforms-container,
  section.support-form .support-form .wpforms-container {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form .heading-image-wrap,
  section.enquiry-form .support-form .heading-image-wrap,
  section.support-form .enquiry-form .heading-image-wrap,
  section.support-form .support-form .heading-image-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
section.enquiry-form .enquiry-form label,
section.enquiry-form .support-form label,
section.support-form .enquiry-form label,
section.support-form .support-form label {
  font-size: 18px;
  margin-bottom: 10px;
}
section.enquiry-form .enquiry-form input,
section.enquiry-form .enquiry-form textarea,
section.enquiry-form .support-form input,
section.enquiry-form .support-form textarea,
section.support-form .enquiry-form input,
section.support-form .enquiry-form textarea,
section.support-form .support-form input,
section.support-form .support-form textarea {
  border: 0;
  padding: 16px 30px;
  font-size: 18px;
  border-radius: 30rem;
  width: 100%;
  max-width: unset;
}
section.enquiry-form .enquiry-form button.wpforms-submit,
section.enquiry-form .support-form button.wpforms-submit,
section.support-form .enquiry-form button.wpforms-submit,
section.support-form .support-form button.wpforms-submit {
  font-size: 20px;
  font-family: "proxima-soft", sans-serif;
  font-weight: 700;
  padding: 20px;
  margin-top: 20px;
}
section.enquiry-form .enquiry-form button.wpforms-submit:after,
section.enquiry-form .support-form button.wpforms-submit:after,
section.support-form .enquiry-form button.wpforms-submit:after,
section.support-form .support-form button.wpforms-submit:after {
  content: url(images/svg/chevron-right--color-2.svg);
}
section.enquiry-form .enquiry-form button.wpforms-submit span,
section.enquiry-form .support-form button.wpforms-submit span,
section.support-form .enquiry-form button.wpforms-submit span,
section.support-form .support-form button.wpforms-submit span {
  padding-left: 0;
  padding-right: 1.3em;
  position: relative;
  font-family: "proxima-soft", sans-serif;
  font-weight: 700;
}
section.enquiry-form .enquiry-form button.wpforms-submit span:before,
section.enquiry-form .support-form button.wpforms-submit span:before,
section.support-form .enquiry-form button.wpforms-submit span:before,
section.support-form .support-form button.wpforms-submit span:before {
  display: none;
}
section.enquiry-form .enquiry-form button.wpforms-submit span:after,
section.enquiry-form .support-form button.wpforms-submit span:after,
section.support-form .enquiry-form button.wpforms-submit span:after,
section.support-form .support-form button.wpforms-submit span:after {
  display: inline-block;
  width: 9px;
  position: absolute;
  right: 0.3em;
  top: 40%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
section.enquiry-form .enquiry-form button.wpforms-submit:hover span:after, section.enquiry-form .enquiry-form button.wpforms-submit:focus span:after,
section.enquiry-form .support-form button.wpforms-submit:hover span:after,
section.enquiry-form .support-form button.wpforms-submit:focus span:after,
section.support-form .enquiry-form button.wpforms-submit:hover span:after,
section.support-form .enquiry-form button.wpforms-submit:focus span:after,
section.support-form .support-form button.wpforms-submit:hover span:after,
section.support-form .support-form button.wpforms-submit:focus span:after {
  right: 0;
}
section.enquiry-form .enquiry-form textarea,
section.enquiry-form .support-form textarea,
section.support-form .enquiry-form textarea,
section.support-form .support-form textarea {
  border-radius: 25px;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form .decoration-wrap,
  section.enquiry-form .support-form .decoration-wrap,
  section.support-form .enquiry-form .decoration-wrap,
  section.support-form .support-form .decoration-wrap {
    display: flex;
    justify-content: space-between;
    gap: 130px;
  }
  section.enquiry-form .enquiry-form .decoration-wrap:before,
  section.enquiry-form .support-form .decoration-wrap:before,
  section.support-form .enquiry-form .decoration-wrap:before,
  section.support-form .support-form .decoration-wrap:before {
    display: inline-block;
    position: absolute;
    width: 304px;
    z-index: 1;
    rotate: -58deg;
    left: 50%;
    top: -170px;
  }
  section.enquiry-form .enquiry-form:before, section.enquiry-form .enquiry-form:after,
  section.enquiry-form .support-form:before,
  section.enquiry-form .support-form:after,
  section.support-form .enquiry-form:before,
  section.support-form .enquiry-form:after,
  section.support-form .support-form:before,
  section.support-form .support-form:after {
    display: inline-block;
    position: absolute;
    width: 304px;
    z-index: 1;
  }
  section.enquiry-form .enquiry-form:after,
  section.enquiry-form .support-form:after,
  section.support-form .enquiry-form:after,
  section.support-form .support-form:after {
    right: 0;
    bottom: -60px;
    rotate: -76deg;
  }
  section.enquiry-form .enquiry-form:before,
  section.enquiry-form .support-form:before,
  section.support-form .enquiry-form:before,
  section.support-form .support-form:before {
    left: -150px;
    bottom: 100px;
  }
}
section.enquiry-form .enquiry-form,
section.support-form .enquiry-form {
  background-color: #005529;
  padding: 63px 30px 0;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form .enquiry-form__heading img,
  section.support-form .enquiry-form .enquiry-form__heading img {
    margin-left: 60px;
  }
}
section.enquiry-form .enquiry-form .enquiry-form__image--mobile,
section.support-form .enquiry-form .enquiry-form__image--mobile {
  margin-bottom: -140px;
}
section.enquiry-form .enquiry-form .enquiry-form__image--mobile img,
section.support-form .enquiry-form .enquiry-form__image--mobile img {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .enquiry-form,
  section.support-form .enquiry-form {
    padding: 87px 83px 86px 55px;
  }
  section.enquiry-form .enquiry-form .decoration-wrap:before,
  section.support-form .enquiry-form .decoration-wrap:before {
    opacity: 0.08;
    content: url(images/svg/dotted-line-1.svg);
  }
  section.enquiry-form .enquiry-form:before, section.enquiry-form .enquiry-form:after,
  section.support-form .enquiry-form:before,
  section.support-form .enquiry-form:after {
    opacity: 0.08;
    content: url(images/svg/dotted-line-1.svg);
  }
}
section.enquiry-form .enquiry-form label,
section.enquiry-form .enquiry-form .wpforms-field-description,
section.support-form .enquiry-form label,
section.support-form .enquiry-form .wpforms-field-description {
  color: #ffffff;
}
section.enquiry-form .enquiry-form button.wpforms-submit,
section.support-form .enquiry-form button.wpforms-submit {
  background-color: #ffffff;
  color: #005529;
}
section.enquiry-form .enquiry-form input[type=radio] + label,
section.support-form .enquiry-form input[type=radio] + label {
  color: #ffffff;
}
section.enquiry-form .enquiry-form input, section.enquiry-form .enquiry-form textarea,
section.support-form .enquiry-form input,
section.support-form .enquiry-form textarea {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
section.enquiry-form .enquiry-form input::placeholder, section.enquiry-form .enquiry-form textarea::placeholder,
section.support-form .enquiry-form input::placeholder,
section.support-form .enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
section.enquiry-form .enquiry-form legend,
section.support-form .enquiry-form legend {
  color: #ffffff;
}
section.enquiry-form .support-form,
section.support-form .support-form {
  background-color: #83D8EE;
  padding: 63px 30px 0 30px;
}
section.enquiry-form .support-form .support-form__image--mobile img,
section.support-form .support-form .support-form__image--mobile img {
  max-width: 250px;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .support-form .support-form__image--mobile img,
  section.support-form .support-form .support-form__image--mobile img {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  section.enquiry-form .support-form,
  section.support-form .support-form {
    padding: 87px 83px 0 55px;
  }
  section.enquiry-form .support-form .decoration-wrap,
  section.support-form .support-form .decoration-wrap {
    margin-left: 60px;
  }
  section.enquiry-form .support-form .decoration-wrap .heading-image-wrap,
  section.support-form .support-form .decoration-wrap .heading-image-wrap {
    justify-content: start;
  }
  section.enquiry-form .support-form .decoration-wrap:before,
  section.support-form .support-form .decoration-wrap:before {
    content: url(images/svg/dotted-line--support-form.svg);
  }
  section.enquiry-form .support-form:before, section.enquiry-form .support-form:after,
  section.support-form .support-form:before,
  section.support-form .support-form:after {
    content: url(images/svg/dotted-line--support-form.svg);
  }
}
section.enquiry-form .support-form p.supporting-text:after,
section.support-form .support-form p.supporting-text:after {
  content: url(images/svg/chevron-right--color-1.svg);
  position: relative;
  transition: transform 0.2s ease;
  display: inline-block;
}
section.enquiry-form .support-form p.supporting-text a,
section.support-form .support-form p.supporting-text a {
  text-decoration: underline;
}
section.enquiry-form .support-form p.supporting-text:hover:after,
section.support-form .support-form p.supporting-text:hover:after {
  transform: translateX(3px);
}
section.enquiry-form .support-form label,
section.enquiry-form .support-form .wpforms-field-description,
section.support-form .support-form label,
section.support-form .support-form .wpforms-field-description {
  color: #005529;
}
section.enquiry-form .support-form button.wpforms-submit,
section.support-form .support-form button.wpforms-submit {
  background-color: #005529;
  color: #ffffff;
}
section.enquiry-form .support-form input[type=radio] + label,
section.support-form .support-form input[type=radio] + label {
  color: #005529;
}
section.enquiry-form .support-form input, section.enquiry-form .support-form textarea,
section.support-form .support-form input,
section.support-form .support-form textarea {
  background-color: #ffffff;
  color: #005529;
}
section.enquiry-form .support-form input::placeholder, section.enquiry-form .support-form textarea::placeholder,
section.support-form .support-form input::placeholder,
section.support-form .support-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}
section.enquiry-form .support-form .form-container,
section.support-form .support-form .form-container {
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  section.enquiry-form .support-form .form-container,
  section.support-form .support-form .form-container {
    padding-bottom: 86px;
  }
}
section.enquiry-form .wpforms-confirmation-container,
section.support-form .wpforms-confirmation-container {
  color: #ffffff;
  font-size: 22px;
  text-align: center;
}

section.downloads {
  margin-top: 70px;
}
section.downloads .heading-wrap {
  margin-bottom: 20px;
}
section.downloads .downloads-carousel {
  margin-top: 0 !important;
}

.signpost-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}
.signpost-links li {
  padding: 0;
}

body.page-template-template-signpost .heading-wrap,
body.page-template-template-downloads .heading-wrap,
body.page-template-template-form-only .heading-wrap,
body.page-template-template-the-event-calendar .heading-wrap,
body.post-type-archive-tribe_events .heading-wrap {
  padding-top: 80px;
}
@media screen and (min-width: 992px) {
  body.page-template-template-signpost .heading-wrap,
  body.page-template-template-downloads .heading-wrap,
  body.page-template-template-form-only .heading-wrap,
  body.page-template-template-the-event-calendar .heading-wrap,
  body.post-type-archive-tribe_events .heading-wrap {
    padding-top: 80px;
  }
  body.page-template-template-signpost .heading-wrap .section-title,
  body.page-template-template-downloads .heading-wrap .section-title,
  body.page-template-template-form-only .heading-wrap .section-title,
  body.page-template-template-the-event-calendar .heading-wrap .section-title,
  body.post-type-archive-tribe_events .heading-wrap .section-title {
    padding-top: 50px;
  }
}

body.page-template-template-signpost #main,
body.page-template-template-signpost .with-bg-decoration,
body.page-template-template-downloads #main,
body.page-template-template-downloads .with-bg-decoration,
body.page-template-template-form-only #main,
body.page-template-template-form-only .with-bg-decoration {
  position: relative;
}
body.page-template-template-signpost #main:before,
body.page-template-template-signpost .with-bg-decoration:before,
body.page-template-template-downloads #main:before,
body.page-template-template-downloads .with-bg-decoration:before,
body.page-template-template-form-only #main:before,
body.page-template-template-form-only .with-bg-decoration:before {
  position: absolute;
  z-index: 3;
}
@media (max-width: 1023px) {
  body.page-template-template-signpost #main:before,
  body.page-template-template-signpost .with-bg-decoration:before,
  body.page-template-template-downloads #main:before,
  body.page-template-template-downloads .with-bg-decoration:before,
  body.page-template-template-form-only #main:before,
  body.page-template-template-form-only .with-bg-decoration:before {
    display: none;
  }
}
body.page-template-template-signpost #main.bg-decoration-color--2:before,
body.page-template-template-signpost #main.bg-decoration-color--2 .with-bg-decoration:before,
body.page-template-template-downloads #main.bg-decoration-color--2:before,
body.page-template-template-downloads #main.bg-decoration-color--2 .with-bg-decoration:before,
body.page-template-template-form-only #main.bg-decoration-color--2:before,
body.page-template-template-form-only #main.bg-decoration-color--2 .with-bg-decoration:before {
  content: url("images/svg/page-bg-decoration--color-2.svg");
}
body.page-template-template-signpost #main.bg-decoration-color--3:before,
body.page-template-template-signpost #main.bg-decoration-color--3 .with-bg-decoration:before,
body.page-template-template-downloads #main.bg-decoration-color--3:before,
body.page-template-template-downloads #main.bg-decoration-color--3 .with-bg-decoration:before,
body.page-template-template-form-only #main.bg-decoration-color--3:before,
body.page-template-template-form-only #main.bg-decoration-color--3 .with-bg-decoration:before {
  content: url("images/svg/page-bg-decoration--color-3.svg");
}
body.page-template-template-signpost #main.bg-decoration-color--4:before,
body.page-template-template-signpost #main.bg-decoration-color--4 .with-bg-decoration:before,
body.page-template-template-downloads #main.bg-decoration-color--4:before,
body.page-template-template-downloads #main.bg-decoration-color--4 .with-bg-decoration:before,
body.page-template-template-form-only #main.bg-decoration-color--4:before,
body.page-template-template-form-only #main.bg-decoration-color--4 .with-bg-decoration:before {
  content: url("images/svg/page-bg-decoration--color-4.svg");
}
body.page-template-template-signpost #main.bg-decoration-color--5:before,
body.page-template-template-signpost #main.bg-decoration-color--5 .with-bg-decoration:before,
body.page-template-template-downloads #main.bg-decoration-color--5:before,
body.page-template-template-downloads #main.bg-decoration-color--5 .with-bg-decoration:before,
body.page-template-template-form-only #main.bg-decoration-color--5:before,
body.page-template-template-form-only #main.bg-decoration-color--5 .with-bg-decoration:before {
  content: url("images/svg/page-bg-decoration--color-5.svg");
}

body.page-template-template-signpost .with-bg-decoration:before,
body.page-template-template-downloads .with-bg-decoration:before {
  left: -110px;
  bottom: 240px;
  transform: scaleX(-1) rotate(-67deg) scale(0.717);
}
@media screen and (max-width: 1439px) {
  body.page-template-template-signpost .with-bg-decoration:before,
  body.page-template-template-downloads .with-bg-decoration:before {
    right: -110px;
    left: auto;
    bottom: 180px;
    transform: scaleX(1) rotate(73deg) scale(0.539);
  }
}
body.page-template-template-signpost #main:before,
body.page-template-template-downloads #main:before {
  right: -110px;
  top: 100px;
  transform: scaleX(1) rotate(73deg) scale(0.717);
}
@media screen and (max-width: 1439px) {
  body.page-template-template-signpost #main:before,
  body.page-template-template-downloads #main:before {
    left: -110px;
    right: auto;
    top: 0;
    transform: scaleX(1) rotate(250deg) scale(0.539);
  }
}

body.page-template-template-form-only .with-bg-decoration:before {
  left: -110px;
  top: 120px;
  transform: scaleX(-1) rotate(-67deg) scale(0.717);
}
@media screen and (max-width: 1439px) {
  body.page-template-template-form-only .with-bg-decoration:before {
    left: -110px;
    top: 80px;
    transform: scaleX(-1) rotate(-67deg) scale(0.539);
  }
}
body.page-template-template-form-only #main:before {
  right: -110px;
  bottom: 500px;
  transform: scaleX(-1) rotate(175deg) scale(0.717);
}
@media screen and (max-width: 1439px) {
  body.page-template-template-form-only #main:before {
    right: -150px;
    bottom: 500px;
    transform: scaleX(-1) rotate(175deg) scale(0.539);
  }
}
body.page-template-template-form-only .form-wrapper .wpforms-container {
  position: relative;
  min-height: 500px;
}
@media (min-width: 1280px) {
  body.page-template-template-form-only .form-wrapper .wpforms-container {
    min-height: 1000px;
  }
}
body.page-template-template-form-only .form-wrapper .wpforms-container:after, body.page-template-template-form-only .form-wrapper .wpforms-container:before {
  position: absolute;
}
@media (max-width: 1279px) {
  body.page-template-template-form-only .form-wrapper .wpforms-container:after, body.page-template-template-form-only .form-wrapper .wpforms-container:before {
    display: none;
  }
}
body.page-template-template-form-only .form-wrapper .wpforms-container:after {
  content: url("images/dog-form-2.png");
  right: -256px;
  top: 100px;
}
body.page-template-template-form-only .form-wrapper .wpforms-container:before {
  content: url("images/dog-form-1.png");
  left: -270px;
  bottom: 100px;
}

body.page-template-template-event-calendar-archive h1,
body.post-type-archive-tribe_events h1 {
  margin-bottom: 0;
}
body.page-template-template-event-calendar-archive .heading-wrap,
body.post-type-archive-tribe_events .heading-wrap {
  margin-bottom: 40px;
}

.single-dogs #breadcrumbs {
  padding-top: 0 !important;
}
.single-dogs .sharebox {
  background-color: #005529;
  padding: 40px 28px 36px;
  border-radius: 25px;
  margin-top: 30px;
  color: #ffffff;
}
.single-dogs .sharebox span.heading {
  display: block;
  font-size: 28px;
  line-height: calc(1em + 10px);
  font-family: "freude", sans-serif;
  margin-bottom: 20px;
}
.single-dogs .sharebox ul.socials {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .single-dogs .sharebox--sm {
    display: none;
  }
}
.single-dogs .sharebox--lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .single-dogs .sharebox--lg {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .single-dogs .sharebox {
    padding: 50px 52px 57px;
  }
}
.single-dogs .dog-header {
  margin-top: 50px;
}
.single-dogs .dog-header__intro {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 24px;
  line-height: calc(1em + 10px);
}
.single-dogs .dog-header__intro p:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__intro {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .single-dogs .dog-header__intro {
    font-size: 28px;
  }
}
.single-dogs .dog-header__gallery {
  position: relative;
  padding-top: 70px;
  max-width: 100%;
}
.single-dogs .dog-header__gallery .sticker {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 130px;
}
.single-dogs .dog-header__gallery .sticker span {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  transform: translate(2%, 80%);
  padding-inline: 25px;
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__gallery .sticker {
    right: unset;
    left: 0;
  }
}
.single-dogs .dog-header__gallery .small {
  display: none;
}
.single-dogs .dog-header__gallery .small .slick-track {
  display: flex !important;
}
.single-dogs .dog-header__gallery .small .video-thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit !important;
}
.single-dogs .dog-header__gallery .small .video-thumbnail img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.single-dogs .dog-header__gallery .small .video-thumbnail:before {
  content: "";
  background-image: url(images/svg/video-play-btn.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 1;
}
.single-dogs .dog-header__gallery .small img {
  border-radius: 25px;
}
.single-dogs .dog-header__gallery .small .slick-slide {
  margin: 0 12px;
}
.single-dogs .dog-header__gallery .small .slick-list {
  margin: 0 -12px;
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__gallery .small {
    display: flex;
    padding-inline: 25px;
  }
}
.single-dogs .dog-header__gallery .large {
  margin-inline: -15px;
  margin-bottom: 90px;
}
.single-dogs .dog-header__gallery .large .slick-slide {
  margin: 0 9px;
  height: inherit !important;
}
.single-dogs .dog-header__gallery .large .slick-slide.video-slide {
  height: 100% !important;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
}
.single-dogs .dog-header__gallery .large .slick-slide.video-slide .youtube-video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 550px;
}
.single-dogs .dog-header__gallery .large .slick-slide.video-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.single-dogs .dog-header__gallery .large .slick-list {
  margin: 0 -9px;
  padding: 0 30px !important;
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__gallery .large .slick-list {
    padding: 0 !important;
    margin: 0;
  }
}
.single-dogs .dog-header__gallery .large .slick-prev,
.single-dogs .dog-header__gallery .large .slick-next {
  z-index: 1;
  width: 57px;
  height: auto;
  opacity: 1;
}
.single-dogs .dog-header__gallery .large .slick-prev:before,
.single-dogs .dog-header__gallery .large .slick-next:before {
  display: inline-block;
  width: 57px;
  opacity: 1;
}
.single-dogs .dog-header__gallery .large .slick-prev {
  left: 0;
}
.single-dogs .dog-header__gallery .large .slick-prev:before {
  content: url(images/svg/icon-chevron-with-bg--color-2--left.svg);
}
.single-dogs .dog-header__gallery .large .slick-next {
  right: 0;
}
.single-dogs .dog-header__gallery .large .slick-next:before {
  content: url(images/svg/icon-chevron-with-bg--color-2.svg);
}
@media screen and (min-width: 380px) {
  .single-dogs .dog-header__gallery .large {
    margin-inline: -30px;
  }
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__gallery .large {
    margin-inline: auto;
    margin-bottom: 30px;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__gallery {
    padding-top: 40px;
    max-width: 350px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .single-dogs .dog-header__gallery {
    max-width: 540px;
  }
}
@media screen and (min-width: 1024px) {
  .single-dogs .dog-header__gallery .sharebox {
    display: none;
  }
}
.single-dogs .dog-header__basic-info {
  background-color: #EFFFD5;
  color: #005529;
  margin-inline: -15px;
  padding: 45px 30px;
}
.single-dogs .dog-header__basic-info h2 {
  color: #005529;
  font-size: 28px;
  line-height: calc(1em + 10px);
}
.single-dogs .dog-header__basic-info hr {
  height: 2px;
  border-width: 2px;
  border-color: #94C24A;
  margin: 30px 0;
}
.single-dogs .dog-header__basic-info .paw-list,
.single-dogs .dog-header__basic-info .tick-list {
  list-style: none;
  padding-left: 0;
}
.single-dogs .dog-header__basic-info .paw-list li,
.single-dogs .dog-header__basic-info .tick-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}
.single-dogs .dog-header__basic-info .paw-list li:before,
.single-dogs .dog-header__basic-info .tick-list li:before {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .single-dogs .dog-header__basic-info .paw-list,
  .single-dogs .dog-header__basic-info .tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
    align-items: start;
  }
}
.single-dogs .dog-header__basic-info .paw-list li:before {
  content: url(images/svg/list-icon--paw.svg);
  max-width: 29px;
  width: 100%;
  height: 30px;
}
.single-dogs .dog-header__basic-info .tick-list li {
  max-width: 206px;
}
.single-dogs .dog-header__basic-info .tick-list li:before {
  content: url(images/svg/list-icon--check.svg);
  max-width: 23px;
  width: 100%;
  height: 22px;
  margin-top: 4px;
}
.single-dogs .dog-header__basic-info--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__basic-info--desktop {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__basic-info--mobile {
    display: none;
  }
}
@media screen and (min-width: 380px) {
  .single-dogs .dog-header__basic-info {
    margin-inline: -30px;
  }
}
@media screen and (min-width: 450px) {
  .single-dogs .dog-header__basic-info {
    margin-inline: auto;
    border-radius: 25px;
  }
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header__basic-info {
    margin-top: 65px;
    padding: 45px 52px;
  }
}
@media screen and (min-width: 768px) {
  .single-dogs .dog-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .single-dogs .dog-header {
    margin-top: 56px;
  }
}
.single-dogs .dog-info {
  margin-top: 80px;
  margin-bottom: 80px;
}
.single-dogs .dog-info__bio {
  max-width: 648px;
}
.single-dogs .dog-info .sharebox {
  display: none;
}
@media screen and (min-width: 1024px) {
  .single-dogs .dog-info .sharebox {
    display: block;
    margin-top: 0;
  }
}
.single-dogs .dog-info .sharebox--sm {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .single-dogs .dog-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 108px;
    align-items: start;
  }
}

.posts-wrap {
  display: grid;
  gap: 30px;
  margin-top: 80px;
}
.posts-wrap .dog {
  margin-inline: auto;
  max-width: 400px;
  width: 100%;
}
.posts-wrap .dog .card__body {
  padding: 35px 35px 30px;
  flex-grow: 0;
}
.posts-wrap .dog .card__body:before {
  display: none !important;
}
.posts-wrap .dog .card__image {
  height: 350px;
}
@media screen and (min-width: 1250px) {
  .posts-wrap .dog {
    max-width: 376px;
  }
}
@media screen and (min-width: 768px) {
  .posts-wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  .posts-wrap {
    gap: 52px;
  }
}
@media screen and (min-width: 1250px) {
  .posts-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pagination-wrap .page-numbers {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 24px;
  text-decoration: none;
}
.pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover, .pagination-wrap .page-numbers:focus {
  text-decoration: underline;
}

.pagination:not(.pagination-wrap .pagination) .page-numbers {
  font-size: 24px;
  font-weight: 600;
  color: #005529;
}
.pagination:not(.pagination-wrap .pagination) .page-numbers:not(.prev):not(.next) {
  display: flex;
}
.pagination:not(.pagination-wrap .pagination) .page-numbers:not(.prev):not(.next):after {
  content: "...";
}
.pagination:not(.pagination-wrap .pagination) .page-numbers.prev {
  content: url("images/svg/chevron-right--color-2.svg");
  transform: rotate(180deg);
}
.pagination:not(.pagination-wrap .pagination) .page-numbers.next {
  content: url("images/svg/chevron-right--color-2.svg");
}
.pagination:not(.pagination-wrap .pagination) .page-numbers.prev, .pagination:not(.pagination-wrap .pagination) .page-numbers.next {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  width: 10px;
}
.pagination:not(.pagination-wrap .pagination) a.page-numbers {
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.pagination:not(.pagination-wrap .pagination) a.page-numbers:hover:not(.prev):not(.next) {
  color: #94C24A;
}
.pagination:not(.pagination-wrap .pagination) a.page-numbers:hover.prev, .pagination:not(.pagination-wrap .pagination) a.page-numbers:hover.next {
  filter: brightness(50%);
}

#dogs-results ~ .newsletter-signup {
  margin-top: 60px;
}

.dogs-feed {
  position: relative;
  margin-bottom: 100px;
}
.dogs-feed .decoration-text {
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  left: -20%;
  right: -20%;
  z-index: 2;
}
.dogs-feed .decoration-text img,
.dogs-feed .decoration-text source {
  height: auto;
  width: 110%;
  max-width: 526px;
}
@media screen and (min-width: 460px) {
  .dogs-feed .decoration-text img,
  .dogs-feed .decoration-text source {
    max-width: 1360px;
  }
}
@media screen and (min-width: 1250px) {
  .dogs-feed .decoration-text img,
  .dogs-feed .decoration-text source {
    max-width: 2367px;
  }
}
.dogs-feed .heading-wrap {
  z-index: 3;
  position: relative;
}
.dogs-feed .btn {
  margin-inline: auto;
}
.dogs-feed .button-wrap {
  text-align: center;
  margin-top: 30px;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 992px) {
  .dogs-feed .button-wrap {
    margin-top: 60px;
  }
}
.dogs-feed .posts-carousel {
  margin-top: 0;
}
.dogs-feed .posts-carousel .card.dog a.block-link {
  display: block;
  min-height: 480px;
}
@media (max-width: 1279px) {
  .dogs-feed .posts-carousel .card.dog a.block-link {
    min-height: 400px;
  }
}
.dogs-feed .posts-carousel .card.dog .card__body {
  padding-bottom: 80px;
  text-align: center;
  transition: all 0.2s ease;
}
.dogs-feed .posts-carousel .card.dog .card__body span.breed,
.dogs-feed .posts-carousel .card.dog .card__body span.age {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.dogs-feed .posts-carousel .card.dog .card__body:after, .dogs-feed .posts-carousel .card.dog .card__body:before {
  content: "";
  display: inline-block;
  bottom: -38px;
  height: 54px;
  background-image: url(images/svg/two-col-card-top.svg);
  background-size: 100% 105%;
  background-repeat: no-repeat;
  background-position: bottom center;
  rotate: 180deg;
}
.dogs-feed .posts-carousel .card.dog .card__body:before {
  background-image: url(images/svg/two-col-card-top--hover.svg);
  opacity: 0;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.dogs-feed .posts-carousel .card.dog .card__title {
  padding: 0;
  font-size: 40px;
}
.dogs-feed .posts-carousel .card.dog .card__title span {
  display: inline;
}
.dogs-feed .posts-carousel .card.dog .card__title .chevron-wrap:after {
  content: url(images/svg/chevron-right--color-2.svg);
}
.dogs-feed .posts-carousel .card.dog .card__title:after {
  display: none;
}
.dogs-feed .posts-carousel .card.dog .card__image {
  height: unset;
  margin-inline: 30px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.dogs-feed .posts-carousel .card.dog .card__image img {
  object-fit: unset;
  border-radius: 25px;
}
.dogs-feed .posts-carousel .card.dog .card__image img.hover-img {
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s ease;
  max-width: 316px;
}
.dogs-feed .posts-carousel .card.dog .block-link:hover .card__title::after, .dogs-feed .posts-carousel .card.dog .block-link:focus .card__title::after {
  margin-left: 15px;
}
.dogs-feed .posts-carousel .card.dog .block-link:hover .card__body, .dogs-feed .posts-carousel .card.dog .block-link:focus .card__body {
  background-color: #004322;
}
.dogs-feed .posts-carousel .card.dog .block-link:hover .card__body:before, .dogs-feed .posts-carousel .card.dog .block-link:focus .card__body:before {
  opacity: 1;
}
.dogs-feed .posts-carousel .card.dog .block-link:hover .card__image .hover-img, .dogs-feed .posts-carousel .card.dog .block-link:focus .card__image .hover-img {
  opacity: 1;
}
@media screen and (min-width: 820px) {
  .dogs-feed {
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 450px) {
  .form-wrapper {
    margin-inline: auto;
  }
}

.wpforms-container {
  background-color: #ffffff;
  padding: 30px;
  max-width: 808px;
  margin-inline: auto;
}
.wpforms-container .wpforms-required-label {
  color: #005529 !important;
}
.wpforms-container .wpforms-field-address .wpforms-field-small,
.wpforms-container .wpforms-field-address .wpforms-field-medium,
.wpforms-container .wpforms-field-address .wpforms-field-large {
  max-width: 100% !important;
}
.wpforms-container .wpforms-field-address .wpforms-field-small > div,
.wpforms-container .wpforms-field-address .wpforms-field-medium > div,
.wpforms-container .wpforms-field-address .wpforms-field-large > div {
  display: flex;
  flex-direction: column-reverse;
}
.wpforms-container .wpforms-field-address .wpforms-field-small > div .wpforms-field-sublabel,
.wpforms-container .wpforms-field-address .wpforms-field-medium > div .wpforms-field-sublabel,
.wpforms-container .wpforms-field-address .wpforms-field-large > div .wpforms-field-sublabel {
  font-size: 1em;
}
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container textarea {
  background-color: #F5F5F5;
  border-radius: 30rem;
  border: 0;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  min-height: 50px;
}
.wpforms-container .wpforms-save-resume-button {
  margin: 0 !important;
  display: inline-block;
}
.wpforms-container label.wpforms-save-resume-label {
  color: #005529 !important;
}
.wpforms-container .wpforms-field-pagebreak .wpforms-pagebreak-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 600px) {
  .wpforms-container .wpforms-field-pagebreak .wpforms-pagebreak-center {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: unset;
  }
  .wpforms-container .wpforms-field-pagebreak .wpforms-pagebreak-center:before, .wpforms-container .wpforms-field-pagebreak .wpforms-pagebreak-center:after {
    display: none !important;
  }
}
.wpforms-container textarea {
  border-radius: 25px;
}
.wpforms-container input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpforms-container input[type=radio] + label {
  font-family: "proxima-soft", sans-serif;
  color: #000000;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wpforms-container input[type=radio] + label:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #94C24A;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.wpforms-container input[type=radio]:checked + label:before {
  background-color: #005529;
  box-shadow: inset 0 0 0 4px #ffffff;
}
.wpforms-container input[type=radio]:focus + label:before {
  outline: none;
  border-color: #005529;
}
.wpforms-container input[type=radio]:disabled + label:before {
  box-shadow: inset 0 0 0 4px #f5f5f5;
  border-color: rgb(181.25, 181.25, 181.25);
  background: rgb(181.25, 181.25, 181.25);
}
.wpforms-container input[type=radio] + label:empty:before {
  margin-right: 0;
}
.wpforms-container .wpforms-field-description {
  font-size: 16px !important;
  line-height: 24px !important;
  margin-bottom: 10px !important;
  margin-top: 5px !important;
}
@media screen and (min-width: 992px) {
  .wpforms-container .wpforms-field-description {
    margin-bottom: 12px !important;
  }
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page:first-of-type .wpforms-page-indicator-page-number {
  border-top-left-radius: 30rem;
  border-bottom-left-radius: 30rem;
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page:last-of-type .wpforms-page-indicator-page-number {
  border-top-right-radius: 30rem;
  border-bottom-right-radius: 30rem;
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page .wpforms-page-indicator-page-title {
  font-weight: 700;
  font-size: 14px;
  color: #005529;
  opacity: 0.5;
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page .wpforms-page-indicator-page-number {
  background-color: #EFFFD5 !important;
  height: 8px !important;
}
@media screen and (max-width: 600px) {
  .wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page .wpforms-page-indicator-page-number {
    display: block !important;
  }
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page.active .wpforms-page-indicator-page-number {
  background-color: #005529 !important;
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page.active .wpforms-page-indicator-page-number .wpforms-page-indicator-page-triangle {
  display: none;
}
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page.active .wpforms-page-indicator-page-title {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page {
    padding: 0 !important;
  }
}
.wpforms-container h2,
.wpforms-container h3,
.wpforms-container h4,
.wpforms-container h5,
.wpforms-container h6 {
  color: #005529;
}
.wpforms-container legend {
  font-family: "freude", sans-serif;
  color: #005529;
}
.wpforms-container label,
.wpforms-container legend {
  margin-bottom: 12px;
}
.wpforms-container ul li {
  margin-bottom: 20px !important;
}
.wpforms-container .wpforms-field-divider {
  display: flex;
  flex-direction: column-reverse;
}
.wpforms-container .wpforms-field-divider h2,
.wpforms-container .wpforms-field-divider h3,
.wpforms-container .wpforms-field-divider h4,
.wpforms-container .wpforms-field-divider h5,
.wpforms-container .wpforms-field-divider h6 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 20px;
  font-size: 28px;
}
.wpforms-container .wpforms-field-divider h2:after,
.wpforms-container .wpforms-field-divider h3:after,
.wpforms-container .wpforms-field-divider h4:after,
.wpforms-container .wpforms-field-divider h5:after,
.wpforms-container .wpforms-field-divider h6:after {
  content: url(images/svg/horizontal-dots--color-5.svg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.wpforms-container .wpforms-page-button {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 51px 20px 40px;
  border-radius: 30rem;
  display: inline-block;
  font-size: 20px;
  position: relative;
  line-height: 1;
  transition: all 0.2s ease;
  border: 0;
  max-width: 268px;
  width: 100%;
}
.wpforms-container .wpforms-page-button.wpforms-page-next {
  float: right;
  background-color: #005529;
}
.wpforms-container .wpforms-page-button.wpforms-page-next span {
  padding-right: 20px;
}
.wpforms-container .wpforms-page-button.wpforms-page-next span:after {
  right: 0;
}
.wpforms-container .wpforms-page-button.wpforms-page-prev {
  background-color: #EFFFD5;
  color: #005529;
}
.wpforms-container .wpforms-page-button.wpforms-page-prev span {
  padding-left: 20px;
}
.wpforms-container .wpforms-page-button.wpforms-page-prev span:after {
  left: 0;
  rotate: 180deg;
  top: -7px;
}
.wpforms-container .wpforms-page-button span {
  position: relative;
}
.wpforms-container .wpforms-page-button span:after {
  content: url(images/svg/chevron-right--color-2.svg);
  display: inline-block;
  width: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}
.wpforms-container .wpforms-page-button:hover, .wpforms-container .wpforms-page-button:focus {
  background-color: #004322;
}
.wpforms-container .wpforms-page-button:hover.wpforms-page-next span::after, .wpforms-container .wpforms-page-button:focus.wpforms-page-next span::after {
  right: -6px;
}
.wpforms-container .wpforms-page-button:hover.wpforms-page-prev, .wpforms-container .wpforms-page-button:focus.wpforms-page-prev {
  background-color: #EFFFD5;
}
.wpforms-container .wpforms-page-button:hover.wpforms-page-prev span::after, .wpforms-container .wpforms-page-button:focus.wpforms-page-prev span::after {
  left: -6px;
}
.wpforms-container .wpforms-submit[data-submit-text=submit] {
  padding: 20px 30px;
}
.wpforms-container .wpforms-field input[type=checkbox].wpforms-error {
  border: 2px solid #D63637 !important;
}
.wpforms-container .wpforms-field input[type=radio] {
  border: 1px solid #D63637 !important;
}
.wpforms-container .wpforms-field .wpforms-field-layout-columns {
  gap: 28px;
  margin-inline: 0 !important;
}
.wpforms-container .wpforms-field .wpforms-field-layout-columns.wpforms-field-layout-preset-50-50 .wpforms-layout-column {
  padding-inline: 0 !important;
}
.wpforms-container .wpforms-field.wpforms-conditional-trigger + .wpforms-conditional-show {
  padding: 0;
}
.wpforms-container .wpforms-save-resume-actions {
  max-width: 100% !important;
}
.wpforms-container > .wpforms-save-resume-confirmation {
  background-color: transparent;
  padding: 0;
  max-width: unset;
  margin-inline: auto;
}
@media screen and (min-width: 450px) {
  .wpforms-container > .wpforms-save-resume-confirmation {
    border-radius: 0;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .wpforms-container > .wpforms-save-resume-confirmation {
    padding-inline: 0;
  }
}
@media screen and (min-width: 450px) {
  .wpforms-container {
    border-radius: 25px;
    padding: 50px;
  }
}
@media screen and (min-width: 992px) {
  .wpforms-container {
    padding-inline: 108px;
  }
}

.wpforms-save-resume-disclaimer .wpforms-save-resume-disclaimer-back {
  margin-top: 30px !important;
  display: inline-block !important;
}

.wpforms-save-resume-confirmation {
  background-color: #ffffff;
  padding: 30px;
  max-width: 808px;
  margin-inline: auto;
}
.wpforms-save-resume-confirmation ~ .wpforms-container {
  display: none !important;
}
@media screen and (min-width: 450px) {
  .wpforms-save-resume-confirmation {
    border-radius: 25px;
    padding: 50px;
  }
}
@media screen and (min-width: 992px) {
  .wpforms-save-resume-confirmation {
    padding-inline: 108px;
  }
}

.single-dogs ul#breadcrumbs,
.donation-form ul#breadcrumbs {
  margin-top: 40px;
}
.single-dogs ul#breadcrumbs li a,
.donation-form ul#breadcrumbs li a {
  color: #005529;
}
.single-dogs ul#breadcrumbs li a:before,
.donation-form ul#breadcrumbs li a:before {
  content: url(images/svg/breadcrumb-green-chevron.svg);
}

.donation-form.bg-color {
  padding-top: 40px;
}
.donation-form.bg-color ul#breadcrumbs {
  margin-top: 0;
}

@media screen and (min-width: 992px) {
  .flexible-content .donation-form.bg-color {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1250px) {
  .flexible-content .donation-form.bg-color {
    padding-top: 150px;
  }
}
.flexible-content section:first-of-type {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .flexible-content section:first-of-type {
    margin-top: 100px;
  }
}

.wpforms-container .wpforms-form * {
  word-break: unset !important;
  hyphens: unset !important;
}
.wpforms-container .wpforms-form .wpforms-layout-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.card-links {
  display: grid;
  gap: 30px;
}
.card-links .link {
  padding: 70px 32px 30px;
  background-color: #005529;
  border-radius: 25px;
  transition: all 0.2s ease;
  position: relative;
  margin-top: 50px;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-links .link:before {
  content: url(images/icon-carrier.png);
  display: inline-block;
  width: 95px;
  position: absolute;
  top: -50px;
  left: 30px;
}
@media screen and (min-width: 992px) {
  .card-links .link:before {
    width: 106px;
    top: -60px;
  }
}
.card-links .link:after {
  content: url(images/svg/icon-chevron-with-bg--color-2.svg);
  display: block;
  width: 57px;
  height: 60px;
  margin-left: auto;
  float: none;
}
.card-links .link .section-title {
  color: #ffffff;
}
.card-links .link__heading {
  color: #ffffff;
  font-size: 34px;
  line-height: calc(1em + 10px);
}
@media screen and (min-width: 992px) {
  .card-links .link__heading {
    font-size: 45px;
  }
}
.card-links .link.color--4 {
  background-color: #CEF1FD;
}
.card-links .link.color--4:before {
  content: url(images/icon-wag.png);
}
.card-links .link.color--4:after {
  content: url(images/svg/icon-chevron-with-bg--color-4.svg);
}
.card-links .link.color--4 .link__heading {
  color: #005529;
}
.card-links .link.color--4 .section-title.dots:before {
  content: url(images/svg/horizontal-dots--color-4.svg);
}
@media screen and (min-width: 992px) {
  .card-links .link {
    padding: 70px 55px 37px 52px;
    height: calc(100% - 60px);
  }
}
.card-links .block-link {
  text-decoration: none;
}
.card-links .block-link:hover .link, .card-links .block-link:focus .link {
  background-color: #004322;
}
.card-links .block-link:hover .link.color--4, .card-links .block-link:focus .link.color--4 {
  background-color: rgb(196.2, 238.2, 252.6);
}
@media screen and (min-width: 768px) {
  .card-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1250px) {
  .card-links {
    gap: 56px;
  }
}

body.error404 h1 {
  color: #005529;
}
body.error404 #main {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  body.error404 #main {
    margin-top: 100px;
  }
}

#main.plaintext {
  margin-top: 100px;
}
@media (max-width: 767px) {
  #main.plaintext {
    margin-top: 80px;
  }
}

main.search .page-hero {
  background-color: #EFFFD5;
}
main.search .page-hero .copy-wrap {
  max-width: 100%;
}
main.search .page-hero .copy-wrap .searchform {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  width: 100%;
}
@media (max-width: 767px) {
  main.search .page-hero .copy-wrap .searchform {
    flex-direction: column;
  }
}
main.search .page-hero .copy-wrap .searchform .search-field-input {
  min-height: 60px;
  padding: 10px 30px 10px 64px;
  border-radius: 25px;
  width: 100%;
  background-image: url("images/svg/search-icon.svg");
  background-repeat: no-repeat;
  background-position: center left 30px;
  font-size: 18px;
}
main.search .search-results.cycle-colours .search-result h3 {
  text-decoration: underline;
}
main.search .search-results.cycle-colours .search-result:nth-of-type(1), main.search .search-results.cycle-colours .search-result:nth-of-type(5) {
  background-color: #FFEDFA;
}
main.search .search-results.cycle-colours .search-result:nth-of-type(2), main.search .search-results.cycle-colours .search-result:nth-of-type(6) {
  background-color: #CEF1FD;
}
main.search .search-results.cycle-colours .search-result:nth-of-type(3) {
  background-color: #FCE5D6;
}
main.search .search-results.cycle-colours .search-result:nth-of-type(4) {
  background-color: #EFFFD5;
}
main.search .search-results.cycle-colours .search-result:hover {
  filter: brightness(95%);
}

body.single-tribe_events .page-hero .wrapper .copy-wrap:after {
  display: none;
}
body.single-tribe_events #tribe-events-pg-template {
  max-width: 100% !important;
  position: relative !important;
  width: 100%;
  padding: 0;
}
body.single-tribe_events #tribe-events-pg-template #tribe-events-content,
body.single-tribe_events #tribe-events-pg-template .event-details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
body.single-tribe_events #tribe-events-pg-template .event-details-wrapper {
  width: 100%;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events,
body.single-tribe_events #tribe-events-pg-template .event-details {
  width: 100%;
  padding-inline: 15px !important;
}
@media screen and (min-width: 380px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events,
  body.single-tribe_events #tribe-events-pg-template .event-details {
    padding-inline: 30px !important;
  }
}
@media (min-width: 1280px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events,
  body.single-tribe_events #tribe-events-pg-template .event-details {
    max-width: 1300px !important;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events {
  padding-top: 103px;
  padding-bottom: 118px;
}
@media (max-width: 1023px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events {
    padding-top: 75px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events {
    padding-top: 55px;
    padding-bottom: 80px;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper {
  display: flex;
  gap: 108px;
}
@media (max-width: 1279px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper {
    gap: 56px;
  }
}
@media (max-width: 1023px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper {
    gap: 60px;
    flex-direction: column;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper {
  min-width: 540px;
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper {
    min-width: 100%;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form {
  margin: 0;
  background-color: #EFFFD5;
  border: 0;
  padding: 52px 40px;
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form {
    padding: 52px 30px;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form * {
  font-family: "proxima-soft", sans-serif;
  font-size: 16px;
  color: #262626;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-title {
  font-family: "freude", sans-serif !important;
  color: #005529;
  font-size: 34px;
  line-height: 44px;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-title:after {
  content: "";
  background-image: url("images/svg/horizontal-dots--color-2.svg");
  background-repeat: no-repeat;
  width: 68px;
  height: 6px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item-content-title,
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-formatted-currency-wrap * {
  font-size: 18px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item-content-title {
  font-family: "freude", sans-serif;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-formatted-currency-wrap * {
  font-weight: normal;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item {
  border-top: none;
  border-bottom: 2px solid #94C24A;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item-quantity {
  gap: 10px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item-quantity button {
  font-size: 34px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-item-quantity-number {
  display: flex;
  border: 1px solid #94C24A;
  height: 60px;
  width: 60px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form input, body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form select {
  background-color: #ffffff;
  height: 100%;
  width: 100%;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn {
  font-family: "proxima-soft", sans-serif;
  margin-left: 0;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn:after {
  display: none;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form button.tribe-common-c-btn:hover {
  background-color: #004322 !important;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer * {
  font-size: 18px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer .tribe-tickets__tickets-footer-total {
  margin: 0 20px 0 10px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer .tribe-formatted-currency-wrap * {
  font-weight: bold;
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-tickets__tickets-wrapper .tribe-tickets__tickets-form .tribe-tickets__tickets-footer .tribe-tickets__tickets-footer-total {
    margin: 10px 0 20px 0;
  }
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description {
  font-family: "proxima-soft", sans-serif;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description.tribe-events-content a {
  border-bottom: 0;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description.tribe-events-content a.btn:hover {
  color: #ffffff;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container {
  width: auto;
  margin-top: 40px;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown {
  margin: 0;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button svg {
  display: none;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button button:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button button:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button button {
  font-family: "proxima-soft", sans-serif;
}
body.single-tribe_events #tribe-events-pg-template .tribe_events .tribe-events-single-event-description-wrapper .tribe-events-single-event-description .tribe-events-c-subscribe-dropdown__container .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button button:hover {
  background-color: #004322 !important;
}
body.single-tribe_events #tribe-events-pg-template .event-details {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  body.single-tribe_events #tribe-events-pg-template .event-details {
    flex-direction: column;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 1023px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
    margin-bottom: 30px;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title):before {
  content: "";
  background-image: url("images/svg/horizontal-dots--color-2.svg");
  background-repeat: no-repeat;
  width: 68px;
  height: 6px;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
  align-items: center;
  font-size: 45px;
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section-title:not(.tribe-events-single-section .tribe-events-single-section-title) {
    font-size: 34px;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section {
  width: 50%;
  padding: 0;
}
@media (max-width: 991px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section {
    width: 100%;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section * {
  color: #262626;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section a {
  text-decoration: underline;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-events-single-section-title,
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-events-event-categories-label {
  font-size: 24px;
  font-family: "freude", sans-serif;
  color: #005529;
  text-transform: capitalize;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-events-single-section-title {
  margin: 0;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-organizer-email-label,
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-venue-email-label,
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-venue-tel-label,
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section .tribe-organizer-tel-label {
  font-family: "freude", sans-serif;
  color: #005529;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl {
  margin: 0;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl dt:not(.tribe-venue-tel-label):not(.tribe-organizer-email-label) {
  margin-top: 40px;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl dt:not(.tribe-venue-tel-label):not(.tribe-organizer-email-label):first-of-type {
  margin-top: 0;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl .tribe-venue-tel-label,
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl .tribe-organizer-email-label {
  margin-top: 20px;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl * {
  font-size: 18px;
  font-family: "proxima-soft", sans-serif;
  font-weight: bold;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl .tribe-events-event-categories {
  display: flex;
  flex-direction: column;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section dl .tribe-events-gmap {
  display: none;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-venue-map {
  padding-left: 50px;
  max-width: 484px;
  flex: 1;
  width: 100%;
  margin: 0 0 0 auto;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-venue-map iframe {
  width: 100%;
  height: 432px;
  max-height: 100%;
  border-radius: 25px;
}
@media (max-width: 991px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-venue-map {
    padding-left: 0;
    margin: 40px 0 0 0;
    max-width: 100%;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-event-meta:before, body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-event-meta ~ div:not(.tribe-events-event-meta, .event-tickets) {
  display: none !important;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-common.event-tickets {
  display: none;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary {
  display: grid;
  grid-template-columns: auto 1fr; /* First div takes its own width, the rest are flexible */
  grid-template-rows: auto;
  column-gap: 145px;
  row-gap: 30px;
  align-self: self-start;
}
@media (max-width: 1280px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary {
    column-gap: 50px;
  }
}
@media (max-width: 991px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary {
    column-gap: 145px;
  }
}
@media (max-width: 767px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary .tribe-events-meta-group {
  margin: 0;
  padding: 0;
  width: auto;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.primary .tribe-events-meta-group:nth-of-type(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.secondary .tribe-events-venue-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.secondary .tribe-events-venue-map #google-map-btn {
  color: #ffffff;
  align-self: flex-start;
  text-decoration: none;
  margin-left: auto;
}
@media (max-width: 991px) {
  body.single-tribe_events #tribe-events-pg-template .event-details .tribe-events-single-section.secondary .tribe-events-venue-map #google-map-btn {
    margin-left: 0;
  }
}

body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order {
  margin: 0;
  border: 0;
  padding: 52px 40px;
  position: relative;
  z-index: 3;
}
@media (min-width: 801px) {
  body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout,
  body.tribe-theme-jerry-green .tribe-tickets__commerce-order {
    min-height: 800px;
  }
}
@media (max-width: 767px) {
  body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout,
  body.tribe-theme-jerry-green .tribe-tickets__commerce-order {
    padding: 52px 30px;
  }
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout *:not(.tribe-common-c-btn *),
body.tribe-theme-jerry-green .tribe-tickets__commerce-order *:not(.tribe-common-c-btn *) {
  font-family: "proxima-soft", sans-serif;
  font-size: 16px;
  color: #262626;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__tickets-item-content-title,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order .tribe-tickets__tickets-item-content-title {
  font-family: "freude", sans-serif;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-formatted-currency-wrap *,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order .tribe-formatted-currency-wrap * {
  font-weight: normal;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__tickets-item-quantity,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order .tribe-tickets__tickets-item-quantity {
  gap: 10px;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-common-anchor-alt,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order .tribe-common-anchor-alt {
  border-bottom: none !important;
  text-decoration: underline !important;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn:before,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn:disabled,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn {
  font-family: "proxima-soft", sans-serif;
  margin-left: 0;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn:after,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn:after {
  display: none;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout button.tribe-common-c-btn:hover,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order button.tribe-common-c-btn:hover {
  background-color: #004322 !important;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout:before,
body.tribe-theme-jerry-green .tribe-tickets__commerce-order:before {
  position: absolute;
  right: -178px;
  top: 40px;
  content: url(images/basket-dog.png);
  z-index: 2;
  transform: scaleX(-1);
}
@media (max-width: 800px) {
  body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout:before,
  body.tribe-theme-jerry-green .tribe-tickets__commerce-order:before {
    display: none;
  }
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout {
  background-color: #EFFFD5;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__commerce-checkout-header-title {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 34px;
  line-height: 34px;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__commerce-checkout-header-title:after {
  content: "";
  background-image: url("images/svg/horizontal-dots--color-2.svg");
  background-repeat: no-repeat;
  width: 68px;
  height: 6px;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__commerce-checkout-section-header,
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__commerce-checkout-purchaser-info-title {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 24px;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-checkout .tribe-tickets__commerce-checkout-cart-item {
  border-top: 2px solid #94C24A;
  border-bottom: 2px solid #94C24A;
}
body.tribe-theme-jerry-green .tribe-tickets__commerce-order {
  background-color: #CEF1FD;
}
body.tribe-theme-jerry-green .tribe-common.event-tickets {
  position: relative;
  max-width: 600px;
}
body.tribe-theme-jerry-green .tribe-common.event-tickets:after {
  left: -240px;
  top: -50px;
  transform: rotate(190deg) scale(0.539);
}
body.tribe-theme-jerry-green .tribe-common.event-tickets:before {
  transform: rotate(195deg) scale(0.539);
  bottom: -100px;
  right: -240px;
}

body.post-type-archive-tribe_events .tribe-common-l-container.tribe-events-l-container {
  padding: 0 !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    border-radius: 25px !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
body.post-type-archive-tribe_events .tribe-events-header__top-bar {
  margin-top: 0 !important;
}
body.post-type-archive-tribe_events .tribe-events-c-messages__message {
  background-color: #ffffff;
  border-radius: 0;
}
body.post-type-archive-tribe_events .tribe-events-c-messages__message * {
  font-family: "proxima-soft", sans-serif;
  font-size: 16px;
}
body.post-type-archive-tribe_events .tribe-events-c-messages__message svg.tribe-common-c-svgicon--messages-not-found .tribe-common-c-svgicon__svg-stroke {
  stroke: red !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-header--has-event-search {
    flex-wrap: nowrap !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-button {
    content: url(images/svg/event-calendar-search-icon.svg);
    width: 57px;
    height: 59px;
    margin: 0 0 0 20px !important;
    padding: 0 !important;
    transition: all 0.2s ease;
    outline: none !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-button:hover, body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-button:active, body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-button:visited {
    margin: 0 0 0 20px !important;
    padding: 0 !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-button svg {
    display: none;
  }
}
@media (min-width: 843px) {
  body.post-type-archive-tribe_events .tribe-events-c-events-bar,
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search-container {
    background-color: transparent !important;
  }
  body.post-type-archive-tribe_events .tribe-events-header__events-bar {
    margin-bottom: 65px !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
    gap: 10px;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search:before {
    content: "Search for events";
    color: #005529;
    font-family: "freude", sans-serif;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search {
    display: flex;
    gap: 13px;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: flex-start !important;
    cursor: pointer !important;
    text-decoration: none !important;
    padding: 12px 40px !important;
    background-color: #005529 !important;
    color: #ffffff !important;
    border-style: solid !important;
    border-radius: 30px !important;
    font-weight: 900 !important;
    min-height: 60px !important;
    text-align: center !important;
    line-height: 24px !important;
    height: auto !important;
    font-size: 20px !important;
    transition: 0.2s !important;
    white-space: normal !important;
    gap: 10px !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:before {
    position: relative !important;
    top: 3px !important;
    content: url("images/svg/chevron-right--color-2.svg") !important;
    width: 11px !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    transition: none !important;
    order: 999 !important;
    flex: 0 0 11px !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn {
    font-family: "proxima-soft", sans-serif;
    border: none !important;
    content: "Find events" !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:after {
    display: none;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:hover {
    background-color: #004322 !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search__input-group .tribe-events-c-search__input-control--keyword {
    width: 100%;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search__input-group .tribe-events-c-search__input-control--keyword input {
    background-color: #ffffff !important;
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 10px 30px 10px 62px;
    min-height: 60px;
  }
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search__input-group svg.tribe-common-c-svgicon--search {
    left: 30px;
  }
}
body.post-type-archive-tribe_events .tribe-events-header__events-bar {
  border: none !important;
}
body.post-type-archive-tribe_events .tribe-events-c-search__input-group input {
  font-size: 18px !important;
  font-family: "proxima-soft", sans-serif !important;
}
body.post-type-archive-tribe_events .tribe-events-c-search__input-group svg.tribe-common-c-svgicon--search {
  width: 20px;
}
body.post-type-archive-tribe_events .tribe-events-c-search__input-group svg.tribe-common-c-svgicon--search path {
  fill: #94C24A !important;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search {
  display: flex;
  gap: 13px;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search {
    gap: 0;
    flex-direction: column;
  }
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn {
  font-family: "proxima-soft", sans-serif;
  border: none !important;
  content: "Find events" !important;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:after {
  display: none;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__search .tribe-events-c-search .tribe-common-c-btn:hover {
  background-color: #004322 !important;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar {
  flex-wrap: nowrap !important;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav-list-item {
  padding: 0 !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav-list-item {
    display: none !important;
  }
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav {
  display: flex !important;
  visibility: visible !important;
  order: 2;
  margin-left: 30px;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__actions {
  order: 1;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list {
  display: flex !important;
  gap: 30px;
  align-items: center;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list .tribe-events-c-top-bar__nav-link svg {
  display: none;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list .tribe-events-c-top-bar__nav-link:disabled {
  opacity: 0.4;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list .tribe-events-c-top-bar__nav-link--prev:after,
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list .tribe-events-c-top-bar__nav-link--next:after {
  content: url(images/svg/calendar-upcoming-arrow.svg);
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__nav .tribe-events-c-top-bar__nav-list .tribe-events-c-top-bar__nav-link--next {
  transform: scaleX(-1);
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker {
  order: 1;
  flex: unset !important;
  width: 100%;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker {
    width: auto;
  }
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker span {
  font-size: 45px;
  font-family: "freude", sans-serif;
  color: #005529;
  line-height: 55px;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker span {
    font-size: 28px;
    line-height: 38px;
  }
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker .tribe-events-c-top-bar__datepicker-button-icon-svg {
  display: none !important;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker .tribe-events-c-top-bar__datepicker-button {
  display: flex;
  align-items: center;
  word-break: break-word;
}
body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker .tribe-events-c-top-bar__datepicker-button:after {
  content: "";
  background-image: url(images/svg/chevron-right--color-2.svg);
  width: 22px;
  height: 17px;
  background-size: 22px 17px;
  background-repeat: no-repeat;
  rotate: 90deg;
  margin-left: 13px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row {
  background-color: #ffffff;
  padding: 40px 52px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 70px;
  border-radius: 25px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row {
    padding: 40px 30px;
    flex-direction: column;
    gap: 16px;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-datetime-wrapper {
    margin-bottom: 16px;
  }
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-common-g-col {
  margin: 0 !important;
  padding: 0 !important;
  min-width: auto !important;
  width: 100% !important;
  flex: auto !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-common-g-col article {
  margin: 0 !important;
  padding: 0 !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-common-g-col .tribe-events-calendar-list__event-date-tag-datetime {
  padding: 0;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details * {
  font-size: 18px;
  color: #262626;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-title * {
  font-family: "freude", sans-serif;
  font-weight: normal;
  color: #005529;
  font-size: 34px;
  text-decoration: none !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-title * {
    font-size: 28px;
  }
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-venue {
  font-family: "freude", sans-serif;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-venue * {
  font-weight: normal;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .price-stock-wrapper {
  order: 1;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link {
  order: 2;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link {
  font-family: "proxima-soft", sans-serif;
  border: none !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link:after {
  display: none;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link:hover {
  background-color: #004322 !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag {
  width: auto !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag * {
  font-family: "freude", sans-serif;
  color: #005529;
  font-weight: normal;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-weekday {
  font-size: 24px;
  line-height: 34px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 34px;
  line-height: 44px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+1), body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+4) {
  background-color: #FFEDFA;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+2), body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+5) {
  background-color: #EFFFD5;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+3), body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__event-row:nth-of-type(6n+6) {
  background-color: #FCE5D6;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__month-separator time.tribe-events-calendar-list__month-separator-text {
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 24px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list .tribe-events-calendar-list__month-separator:after {
  content: "";
  background-image: url(images/svg/vacancy-block-dots--color-2.svg);
  background-repeat: repeat;
  background-size: auto 6px;
  height: 6px;
  border-radius: 10px;
  background-color: transparent;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav {
  border: none !important;
  padding: 0 !important;
  margin: 40px 0 0 0 !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-calendar-list-nav {
    margin: 20px 0 0 0 !important;
  }
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item button,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__next,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__prev {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "freude", sans-serif;
  color: #005529;
  font-size: 28px;
  line-height: 38px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}
@media (max-width: 842px) {
  body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item button,
  body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__next,
  body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__prev {
    font-size: 24px;
    line-height: 34px;
  }
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item button svg,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__next svg,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__prev svg {
  display: none;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item button:disabled,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__next:disabled,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__prev:disabled {
  opacity: 0.4;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item button:hover,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__next:hover,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item .tribe-events-c-nav__prev:hover {
  color: #004322;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev button:before, body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next button:after, body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev .tribe-events-c-nav__prev:before, body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next .tribe-events-c-nav__next:after {
  width: 11px !important;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev {
  padding-right: 10px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev button:before,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev .tribe-events-c-nav__prev:before {
  content: url(images/svg/chevron-right--color-2.svg) !important;
  rotate: 180deg;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next {
  padding-left: 10px;
}
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next button:after,
body.post-type-archive-tribe_events .tribe-events-calendar-list-nav .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next .tribe-events-c-nav__next:after {
  content: url(images/svg/chevron-right--color-2.svg) !important;
}
body.post-type-archive-tribe_events .tribe-events-c-events-bar__views,
body.post-type-archive-tribe_events .tribe-events-c-subscribe-dropdown__container,
body.post-type-archive-tribe_events .tribe-events-c-top-bar .tribe-events-c-top-bar__today-button,
body.post-type-archive-tribe_events .tribe-events-c-nav__list-item--today {
  display: none !important;
}

.tribe-common.event-tickets * {
  font-family: "proxima-soft", sans-serif !important;
}
.tribe-common.event-tickets .tribe-tickets__commerce-order-header-title {
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
  font-size: 34px !important;
  line-height: 34px !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tribe-common.event-tickets .tribe-tickets__commerce-order-header-title:after {
  content: "";
  background-image: url("images/svg/horizontal-dots--color-2.svg");
  background-repeat: no-repeat;
  width: 68px;
  height: 6px;
}
.tribe-common.event-tickets .tribe-common-anchor-alt {
  border-bottom: none !important;
  text-decoration: underline !important;
}
.tribe-common.event-tickets .tribe-tickets__form-field-input-wrapper input, .tribe-common.event-tickets .tribe-tickets__form-field-input-wrapper select {
  background-color: #ffffff;
}

body.page-template-template-paddock-hire #main .wpbc_resource_selection_block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .wpbc_resource_selection_block {
    align-items: center;
  }
}
body.page-template-template-paddock-hire #main .wpbc_resource_selection_block {
  color: #262626;
  font-size: 18px;
}
body.page-template-template-paddock-hire #main .resource_selection_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 30px 0;
  align-items: flex-start;
  max-width: 341px !important;
  width: 100%;
}
body.page-template-template-paddock-hire #main .resource_selection_div .wpbc__field {
  flex: auto !important;
}
body.page-template-template-paddock-hire #main .resource_selection_div select {
  width: 100%;
}
body.page-template-template-paddock-hire #main .resource_selection_div:before {
  content: "Location";
  color: #005529;
  font-family: "freude", sans-serif;
  font-size: 18px;
}
body.page-template-template-paddock-hire #main .resource_selection_div .active_booking_form {
  margin: 0;
}
body.page-template-template-paddock-hire #main .wpbc_no_custom_width.bk_calendar_frame,
body.page-template-template-paddock-hire #main .wpbc_no_custom_width.cal_month_num_1 {
  max-width: 540px !important;
  min-width: auto !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame {
  margin: 0;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-header {
  background-color: #005529 !important;
  padding: 18px 22px;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-header span {
  font-size: 34px !important;
  line-height: 44px !important;
  font-family: "freude", sans-serif !important;
  font-weight: normal !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-header span:last-of-type {
  margin-left: 5px;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-inline {
  border: none !important;
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-inline .calendar-links {
  margin-bottom: -70px !important;
  width: calc(100% - 44px) !important;
  background-color: transparent !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick-inline .calendar-links a {
  text-decoration: none !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar .datepick-title-row {
  background-color: #005529 !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar .datepick-title-row th {
  border: none !important;
  color: #ffffff !important;
  font-family: "freude", sans-serif !important;
  padding-top: 0 !important;
  padding-bottom: 14px !important;
  line-height: normal !important;
  font-size: 18px !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row:first-of-type {
  border-top: solid 28px white !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td {
  border: none !important;
  border-right: 8px solid #ffffff !important;
  border-bottom: 8px solid #ffffff !important;
  border: 2px solid transparent;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td * {
  color: #005529 !important;
  text-decoration: none !important;
  font-size: 18px !important;
  font-family: "freude", sans-serif !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td .wpbc-cell-box {
  min-height: 69px;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td:last-of-type {
  border-right: none !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td.datepick-unselectable {
  background-color: #F7F7F7 !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td.datepick-unselectable.full_day_booking {
  background-color: #FCD6D6 !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td.date_available {
  background-color: #EFFFD5 !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td.timespartly {
  background-color: #FCE5D6 !important;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row td.datepick-current-day .wpbc-cell-box {
  border: 2px solid #005529;
}
body.page-template-template-paddock-hire #main .wpbc_calendar_wraper .bk_calendar_frame .hasDatepick .datepick.wpbc_calendar tbody .datepick-days-row:last-of-type td {
  border-bottom: none !important;
}
body.page-template-template-paddock-hire #main .block_hints {
  margin: 20px 0 0 0;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text * {
  border: 0 !important;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text:last-of-type {
  margin-right: 0 !important;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text .block_free {
  background-color: #EFFFD5;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text .block_booked {
  background-color: #FCD6D6 !important;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text .datepick-days-cell.date_available.date2approve.timespartly {
  background-color: #FCE5D6 !important;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text .datepick-days-cell.date_available.date2approve.timespartly .date-cell-content a {
  text-decoration: none !important;
}
body.page-template-template-paddock-hire #main .block_hints .wpdev_hint_with_text .datepick-days-cell.date_available.date2approve.timespartly .date-content-top .wpbc_time_dots {
  color: #005529 !important;
}
body.page-template-template-paddock-hire #main [class*=dogrequirements] {
  margin-top: 18px !important;
}
body.page-template-template-paddock-hire #main label {
  color: #005529;
  font-family: "freude", sans-serif;
  font-size: 18px;
}
body.page-template-template-paddock-hire #main input, body.page-template-template-paddock-hire #main select, body.page-template-template-paddock-hire #main textarea {
  min-height: 50px !important;
  border-radius: 25px !important;
  border: none !important;
  background-color: #F5F5F5;
  font-size: 18px;
  font-family: "proxima-soft", sans-serif;
  transition: all 0.1s ease;
  line-height: normal !important;
}
body.page-template-template-paddock-hire #main input::placeholder, body.page-template-template-paddock-hire #main select::placeholder, body.page-template-template-paddock-hire #main textarea::placeholder {
  color: #A1A1A1;
}
body.page-template-template-paddock-hire #main input:hover, body.page-template-template-paddock-hire #main select:hover, body.page-template-template-paddock-hire #main textarea:hover {
  background-color: #dcdcdc;
}
body.page-template-template-paddock-hire #main input[type=text],
body.page-template-template-paddock-hire #main input[type=email],
body.page-template-template-paddock-hire #main input[type=tel] {
  padding: 12px 30px !important;
}
body.page-template-template-paddock-hire #main input[type=text],
body.page-template-template-paddock-hire #main input[type=email],
body.page-template-template-paddock-hire #main input[type=tel],
body.page-template-template-paddock-hire #main select,
body.page-template-template-paddock-hire #main textarea {
  -webkit-appearance: none;
}
body.page-template-template-paddock-hire #main .wpdev-checkbox .wpdev-list-item {
  display: flex;
  gap: 5px;
}
body.page-template-template-paddock-hire #main .wpdev-checkbox .wpdev-list-item input[type=checkbox] {
  margin-top: 3px;
}
body.page-template-template-paddock-hire #main input[type=checkbox] {
  background-color: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #94C24A !important;
  aspect-ratio: 1/1 !important;
  position: relative !important;
  align-self: flex-start !important;
  flex: 0 0 20px !important;
  border-radius: 0 !important;
  min-height: auto !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  transition: all 0.1s ease !important;
}
body.page-template-template-paddock-hire #main input[type=checkbox]:after {
  display: none;
}
body.page-template-template-paddock-hire #main input[type=checkbox]:before {
  content: url(images/svg/icon-check.svg) !important;
  display: none !important;
  width: 18px !important;
  position: absolute !important;
  bottom: auto !important;
  top: -6px !important;
  right: auto !important;
  left: 3px !important;
  border: none !important;
  background-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
body.page-template-template-paddock-hire #main input[type=checkbox]:checked {
  background-color: #94C24A !important;
}
body.page-template-template-paddock-hire #main input[type=checkbox]:checked:before {
  display: inline-block !important;
}
body.page-template-template-paddock-hire #main input[type=checkbox]:hover {
  border: 2px solid #005529 !important;
}
body.page-template-template-paddock-hire #main .wpdev-radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-template-template-paddock-hire #main .wpdev-radio .wpdev-list-item {
  position: relative;
}
body.page-template-template-paddock-hire #main input[type=radio] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  min-height: auto !important;
  cursor: pointer;
}
body.page-template-template-paddock-hire #main input[type=radio]:hover + .wpdev-list-item-label:before {
  border: 2px solid #005529;
}
body.page-template-template-paddock-hire #main input[type=radio] + .wpdev-list-item-label {
  position: relative;
  font-weight: 400;
  display: flex;
  gap: 14px;
  z-index: 0;
  margin-left: -4px;
}
body.page-template-template-paddock-hire #main input[type=radio] + .wpdev-list-item-label:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 2px solid #94C24A;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  flex: 0 0 20px;
}
body.page-template-template-paddock-hire #main input[type=radio]:checked + .wpdev-list-item-label:before {
  background-color: #005529;
  box-shadow: inset 0 0 0 3px #ffffff;
}
body.page-template-template-paddock-hire #main input[type=radio]:focus + .wpdev-list-item-label:before {
  outline: none;
  border-color: #005529;
}
body.page-template-template-paddock-hire #main input[type=radio]:disabled + .wpdev-list-item-label:before {
  box-shadow: inset 0 0 0 4px #f5f5f5;
  border-color: rgb(181.25, 181.25, 181.25);
  background: rgb(181.25, 181.25, 181.25);
}
body.page-template-template-paddock-hire #main input[type=radio] + .wpdev-list-item-label:empty:before {
  margin-right: 0;
}
body.page-template-template-paddock-hire #main .wpdev-list-item-label {
  font-family: "freude", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #262626;
  margin: 0;
}
body.page-template-template-paddock-hire #main .wpbc_text_captcha_container {
  display: block !important;
}
body.page-template-template-paddock-hire #main input[name^=postcode] {
  max-width: 268px;
}
body.page-template-template-paddock-hire #main textarea {
  min-height: 174px !important;
  padding: 30px !important;
}
body.page-template-template-paddock-hire #main select {
  background-image: url(images/svg/chevron-down--color-1.svg);
  background-repeat: no-repeat;
  background-position: center right 26px;
  background-size: 13px 8px;
  padding: 12px 50px 12px 30px;
  cursor: pointer;
  color: #262626;
  transition: all 0.1s ease;
}
body.page-template-template-paddock-hire #main .wpbc_container_booking_form {
  width: 100%;
  margin-top: 0 !important;
}
body.page-template-template-paddock-hire #main .wpbc_no_custom_width.bk_calendar_frame,
body.page-template-template-paddock-hire #main .resource_selection_div .wpbc__field {
  margin: 0 !important;
}
body.page-template-template-paddock-hire #main .wpbc_times_selector div {
  flex: 0 0 150px !important;
  margin: 7px 15px 0 0 !important;
  padding: 5px 1em !important;
  cursor: pointer !important;
  width: auto !important;
  font-size: 16.2px !important;
  line-height: normal !important;
}
body.page-template-template-paddock-hire #main .wpdev-form-control-wrap {
  margin: 0 !important;
  padding: 0 !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) {
  column-gap: 108px;
}
@media (max-width: 1279px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) {
    column-gap: 56px;
  }
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) {
    flex-direction: column;
    row-gap: 78px;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field {
  margin: 0 !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field .wpbc_calendar_wraper {
  margin-bottom: 0 !important;
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field .wpbc_calendar_wraper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h2 {
  margin-top: 0 !important;
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
  font-size: 34px !important;
  line-height: 44px !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h2:after {
  content: "";
  background-image: url("images/svg/horizontal-dots--color-2.svg");
  background-repeat: no-repeat;
  width: 68px;
  height: 6px;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h2 {
  margin-bottom: 30px !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h1, body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h2, body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h3 {
  margin-top: 20px !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field h3 {
  font-family: "freude", sans-serif !important;
  color: #005529 !important;
  font-size: 28px !important;
  line-height: 28px !important;
  margin-bottom: 30px !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field:nth-of-type(1) {
  padding: 0 !important;
  max-width: 540px;
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field:nth-of-type(1) {
    max-width: 100%;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field:nth-of-type(2) {
  margin-top: -110px !important;
  flex: 1;
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc__field:nth-of-type(2) {
    margin-top: 0 !important;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc_times_selector div {
  border: 1px solid #005529;
  color: #005529;
  transition: all 0.2s ease;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc_times_selector div.wpbc_time_selected {
  background-color: #005529;
  color: #ffffff;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__row:not(.wpbc__form__div .wpbc__row):nth-of-type(1) .wpbc_times_selector div:hover {
  background-color: #005529 !important;
  color: #ffffff;
}
body.page-template-template-paddock-hire #main .booking_form_div hr {
  display: none;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div {
  overflow: auto !important;
  margin-top: 95px;
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div {
    margin-top: 51px;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div p {
  width: 100%;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 12px 40px !important;
  background-color: #005529 !important;
  color: #ffffff !important;
  border-style: solid !important;
  border-radius: 30px !important;
  font-weight: 900 !important;
  min-height: 60px !important;
  text-align: center !important;
  line-height: 24px !important;
  height: auto !important;
  font-size: 20px !important;
  transition: 0.2s !important;
  white-space: normal !important;
  gap: 10px !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light:before {
  position: relative !important;
  top: 3px !important;
  content: url("images/svg/chevron-right--color-2.svg") !important;
  width: 11px !important;
  right: auto !important;
  transform: none !important;
  margin-top: 0 !important;
  transition: none !important;
  order: 999 !important;
  flex: 0 0 11px !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light:disabled {
  opacity: 0.4;
  pointer-events: none;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light {
  max-width: 591px !important;
  width: 100% !important;
  box-shadow: none !important;
  min-height: 60px !important;
  background-image: url(images/svg/chevron-right--color-2.svg);
  background-repeat: no-repeat;
  background-size: 10px 16px;
  background-position: center right calc(50% - 40px);
}
@media (max-width: 1023px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light {
    max-width: 100% !important;
  }
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light:before {
  display: none !important;
}
body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div input.wpbc_button_light:hover {
  background-color: #004322 !important;
  background-position: center right calc(50% - 43px);
}
@media (min-width: 1024px) {
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div .wpbc__row:nth-last-of-type(2) {
    justify-content: flex-start !important;
  }
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div .wpbc__row:nth-last-of-type(2) .wpbc__field {
    flex: none !important;
  }
  body.page-template-template-paddock-hire #main .booking_form_div .wpbc__form__div .wpbc__row:nth-last-of-type(2) .wpbc__field:first-of-type {
    padding: 0 90px 0 0 !important;
  }
}
.wpbc_after_booking_thank_you_section {
  position: relative;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container {
  background-color: #EFFFD5 !important;
  border: none;
  border-radius: 25px !important;
  padding: 40px 60px !important;
  min-height: 500px !important;
}
@media (max-width: 767px) {
  .wpbc_after_booking_thank_you_section .wpbc_ty__container {
    padding: 30px;
  }
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__header {
  border-left: 5px solid #005529 !important;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container * {
  color: #262626 !important;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container b {
  font-family: "freude", sans-serif !important;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content_text {
  border-top: none !important;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_button_gw_stripe {
  color: #ffffff !important;
}
.wpbc_after_booking_thank_you_section .hide-on-conf-page {
  display: none !important;
}
.wpbc_after_booking_thank_you_section:after {
  position: absolute;
  left: -178px;
  top: 170px;
  content: url(images/basket-dog.png);
  z-index: 2;
}
@media (max-width: 1279px) {
  .wpbc_after_booking_thank_you_section:after {
    display: none !important;
  }
}

.page-hero .dogs-filter {
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0px 3px 6px 0px rgba(148, 194, 74, 0.1);
  margin-bottom: 60px;
  margin-top: -20px;
  z-index: 2;
  position: relative;
  padding: 30px;
}
.page-hero .dogs-filter .dog-filter-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.page-hero .dogs-filter .dog-filter-form .form-control {
  width: 100%;
}
.page-hero .dogs-filter .dog-filter-form .form-control label {
  margin-bottom: 10px;
}
.page-hero .dogs-filter .dog-filter-form .form-control input,
.page-hero .dogs-filter .dog-filter-form .form-control select,
.page-hero .dogs-filter .dog-filter-form .form-control .select-wrap {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-hero .dogs-filter .dog-filter-form .form-control input,
  .page-hero .dogs-filter .dog-filter-form .form-control select,
  .page-hero .dogs-filter .dog-filter-form .form-control .select-wrap {
    width: unset;
  }
}
@media screen and (min-width: 992px) {
  .page-hero .dogs-filter .dog-filter-form .form-control {
    width: unset;
  }
}
.page-hero .dogs-filter .dog-filter-form button {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-hero .dogs-filter .dog-filter-form button {
    width: unset;
  }
}
@media screen and (min-width: 768px) {
  .page-hero .dogs-filter .dog-filter-form {
    flex-wrap: nowrap;
  }
}
.page-hero .dogs-filter label {
  display: block;
}
.page-hero .dogs-filter .select-wrap {
  position: relative;
}
.page-hero .dogs-filter .select-wrap select {
  border: 0;
  background-color: #F5F5F5;
  border-radius: 30rem;
  padding: 6px 50px 6px 30px;
  font-size: 18px;
  appearance: none;
  min-height: 50px;
  font-family: "proxima-soft", sans-serif;
}
.page-hero .dogs-filter .select-wrap::after {
  content: url(images/svg/chevron-right--color-2.svg);
  border: 0;
  width: 9px;
  rotate: 90deg;
  top: 16px;
  right: 26px;
  position: absolute;
  margin-top: -2.5px;
}

#loading-spinner img {
  display: block;
  margin: 0 auto;
}

p.no-dogs {
  font-size: 2rem;
  font-family: "freude", sans-serif;
  color: #005529;
  text-align: center;
  margin-inline: auto;
}

img.loading-spinner {
  margin-inline: auto;
}

.header-alert {
  background-color: #e32b2b;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.3em;
  z-index: 9999;
}

/* Footer */
#footer {
  margin-top: 80px;
  background-color: #005529;
  color: #fff;
  width: 100%;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
#footer .menus-wrap--desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  #footer .menus-wrap--desktop {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  #footer .menus-wrap--mobile {
    display: none;
  }
}
#footer .menus-wrap .footer-menu .menu-item:nth-of-type(4n + 1) > .menu-item-chevron:before {
  content: url(images/svg/chevron-right--color-3.svg);
}
#footer .menus-wrap .footer-menu .menu-item:nth-of-type(4n + 2) > .menu-item-chevron:before {
  content: url(images/svg/chevron-right--color-4.svg);
}
#footer .menus-wrap .footer-menu .menu-item:nth-of-type(4n + 3) > .menu-item-chevron:before {
  content: url(images/svg/chevron-right--color-5.svg);
}
#footer .menus-wrap .footer-menu .menu-item:nth-of-type(4n + 4) > .menu-item-chevron:before {
  content: url(images/svg/chevron-right--color-2.svg);
}
#footer .grid-wrapper {
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 992px) {
  #footer .grid-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 86px;
  }
}
@media screen and (min-width: 1440px) {
  #footer .grid-wrapper {
    gap: 107px;
  }
}
@media screen and (min-width: 992px) {
  #footer .left-col {
    display: flex;
    flex-direction: column;
    max-width: 433px;
  }
}
#footer .logo {
  max-width: 235px;
}
@media screen and (min-width: 992px) {
  #footer .logo {
    max-width: 332px;
  }
}
#footer a {
  color: #ffffff;
}
#footer .footer-menu {
  margin-top: 40px;
}
#footer .footer-menu ul.menu {
  flex-direction: column;
  font-size: 20px;
  gap: 30px;
  padding: 0;
  margin-top: 20px;
}
#footer .footer-menu ul.menu .menu-item-has-children.open-mob .menu-item-chevron:before {
  rotate: 90deg;
}
@media screen and (min-width: 768px) {
  #footer .footer-menu ul.menu {
    gap: 18px;
    flex-wrap: wrap;
    max-height: 1110px;
    max-width: 100%;
  }
  #footer .footer-menu ul.menu li {
    flex: 0 1 0px;
  }
}
@media screen and (min-width: 1250px) {
  #footer .footer-menu ul.menu {
    max-height: 890px;
    gap: 28px;
  }
  #footer .footer-menu ul.menu > .menu-item {
    font-size: 20px;
  }
}
#footer .footer-menu ul a:hover {
  text-decoration: none;
  color: #94C24A;
}
#footer .footer-menu ul .sub-menu-wrapper.open {
  display: block;
}
@media screen and (min-width: 1250px) {
  #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu {
    position: relative;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: unset;
    border-radius: 0;
    gap: 18px;
  }
  #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu li {
    flex: 0;
  }
  #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu li a {
    padding: 0;
    font-family: "proxima-soft", sans-serif;
    width: unset;
    display: inline-block;
    font-size: 18px;
  }
  #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu li a:after {
    display: none;
  }
  #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu li a:hover, #footer .footer-menu ul .sub-menu-wrapper ul.sub-menu li a:focus {
    background: none;
  }
}
@media screen and (min-width: 1250px) {
  #footer .footer-menu ul .sub-menu-wrapper {
    position: relative;
  }
}
@media screen and (min-width: 992px) {
  #footer .footer-menu {
    margin-top: 0;
    margin-bottom: 82px;
  }
}
#footer .social-media {
  list-style: none;
  margin: 0;
  margin-top: 37px;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: start;
}
#footer .social-media .social-icon {
  max-width: 27px;
}
@media screen and (min-width: 992px) {
  #footer .social-media {
    gap: 27px;
  }
}
#footer .logos-wrap {
  display: flex;
  margin-top: 24px;
  margin-bottom: 47px;
  flex-direction: column-reverse;
  gap: 20px;
}
#footer .logos-wrap .footer-logo {
  max-width: 178px;
  width: 100%;
}
#footer .logos-wrap .fundraising-regulator {
  max-width: 178px;
}
@media screen and (min-width: 992px) {
  #footer .logos-wrap {
    margin-top: auto;
  }
}
@media screen and (min-width: 1440px) {
  #footer .logos-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#footer .credits {
  padding: 22px 0;
  font-size: 14px;
  line-height: calc(1em + 10px);
  background-color: #004322;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  #footer .credits .credits-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #footer .credits .credits-inner p {
    margin-top: 0;
  }
}
#footer .epixmedia {
  font-weight: 700;
  text-decoration: none;
}
#footer .epixmedia:hover, #footer .epixmedia:focus {
  text-decoration: underline;
}
#footer .footer-inner:before, #footer .footer-inner:after {
  content: url(images/svg/bg-blob.svg);
  display: inline-block;
  position: absolute;
  opacity: 0.08;
  width: 360px;
  rotate: 40deg;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  #footer .footer-inner:before, #footer .footer-inner:after {
    width: 900px;
  }
}
@media screen and (min-width: 1440px) {
  #footer .footer-inner:before, #footer .footer-inner:after {
    width: 1100px;
    rotate: -184deg;
  }
}
#footer .footer-inner:before {
  right: -166px;
  top: 110px;
}
@media screen and (min-width: 992px) {
  #footer .footer-inner:before {
    top: 70px;
    right: -450px;
  }
}
@media screen and (min-width: 1440px) {
  #footer .footer-inner:before {
    top: -630px;
    right: -230px;
  }
}
#footer .footer-inner:after {
  left: -117px;
  bottom: 70px;
}
@media screen and (min-width: 992px) {
  #footer .footer-inner:after {
    left: -500px;
    bottom: -500px;
    rotate: 200deg;
  }
}
@media screen and (min-width: 1440px) {
  #footer .footer-inner:after {
    left: -340px;
    bottom: -290px;
    rotate: 150deg;
  }
}
#footer .footer-decoration {
  position: relative;
}
@media screen and (min-width: 1440px) {
  #footer .footer-decoration:after {
    content: url(images/svg/hero-decoration-left--color-4.svg);
    position: absolute;
    width: 340px;
    display: inline-block;
    right: -70px;
    top: 0;
    rotate: -110deg;
  }
}
@media screen and (min-width: 1440px) {
  #footer .footer-decoration:before {
    content: url(images/svg/hero-decoration-left--color-4.svg);
    position: absolute;
    width: 340px;
    display: inline-block;
    left: -70px;
    bottom: 60px;
    rotate: -60deg;
  }
}
#footer:after {
  content: "";
  background-image: url(images/svg/footer-border-top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  height: 56px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

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