/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}

/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1600px) {

  .container {
    max-width: 1600px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.form-input::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit {
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
.aspect-h-1 {
  --tw-aspect-h: 1;
}
.aspect-w-1 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 1;
}
.aspect-w-1 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.btn-primary {
  display: inline-block;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(216 57 7 / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (max-width: 1023px) {
  .estate-administration .related-download-block .btn-primary {
    padding: 0.5rem;
  }
}
 .estate-administration .wp-block-heading.btn-primary{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .article-cta .btn-primary {
  width: 180px;
  height: 55px;
  padding: 16px 20px 16px 20px;
}
@media (max-width: 1023px) {
  .estate-administration .related-download-block .btn-primary {
    padding: 0.5rem;
  }
}
 .estate-administration .wp-block-heading.btn-primary{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .article-cta .btn-primary {
  width: 180px;
  height: 55px;
  padding: 16px 20px 16px 20px;
}
.btn-primary{
  font-weight: 500;
}
.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(188 45 0 / var(--tw-bg-opacity));
}
.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
/**
   * Main navigation
   */
@media not all and (min-width: 1024px) {

  body.nav-open .nav-item-hamburger,
  body.nav-open .nav-item-search,
  body.nav-open .nav-item-call,
  body.nav-open .nav-item-login,
  body.nav-open .nav-item-contact {
    display: none;
  }

  @media (max-width: 1023px) {
    body.nav-open .nav-item-hamburger#nav-buttons,
  body.nav-open .nav-item-search#nav-buttons,
  body.nav-open .nav-item-call#nav-buttons,
  body.nav-open .nav-item-login#nav-buttons,
  body.nav-open .nav-item-contact#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }

  body.nav-open .nav-item-hamburger,
  body.nav-open .nav-item-search,
  body.nav-open .nav-item-call,
  body.nav-open .nav-item-login,
  body.nav-open .nav-item-contact {
    display: none;
  }
}
body.nav-open .nav-item-close {
  display: inline;
}
@media (min-width: 1024px) {

  @media (max-width: 1023px) {
    body.nav-open .nav-item-close#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }

  body.nav-open .nav-item-close {
    display: none;
  }
}
.hover_effect:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 249 245 / var(--tw-bg-opacity));
}
body > main > div.py-12.lg\:py-20.hover_effect:hover > div > div > div > img {
max-height: 93px;
height: 93px;
width:150px;
}
@media (min-width: 1024px) {

  .hover_effect:hover {
    border-top-color: transparent;
    --tw-border-opacity: 1;
    border-bottom-color: rgb(216 57 7 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.hover_effect{
    border-bottom-color: #fff;
    border-bottom-width: 3px; 
  }
button.btn-dropdown-open {
  --tw-bg-opacity: 1;
  background-color: rgb(250 249 245 / var(--tw-bg-opacity));
}
body > main > divbutton.py-12.lg\:py-20.btn-dropdown-open > div > div > div > img {
max-height: 93px;
height: 93px;
width:150px;
}
@media (min-width: 1024px) {

  button.btn-dropdown-open {
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-top-color: transparent;
    --tw-border-opacity: 1;
    border-bottom-color: rgb(216 57 7 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
button.btn-dropdown-open {
    border-bottom-width: 3px;
  }
button.btn-dropdown-open svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!isOpen.active {
    display: block !important;
}
.isOpen.active {
    display: block !important;
}
.dropdown-menus {
  position: relative;
}
.testimonial-slide .dropdown-menus .mb-6.text-xl.mr-2 {
	margin-right: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .free-resources .dropdown-menus figure img {
          min-height: 300px;
  }
}
@media (min-width: 1024px) {

  .dropdown-menus {
    position: static;
  }
}

  #filter-modal .mb-6 > .dropdown-menus::before{
    content: var(--tw-content);
    height: 100vh;
  }
.dropdown-menus::before {
  position: absolute;
  left: 0px;
  height: 8px;
  content: var(--tw-content);
  width: 100%;
  display: block;
}
@media (min-width: 1024px) {

  @media (max-width: 1023px) {
    .dropdown-menus#nav-buttons::before {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }

  .dropdown-menus::before {
    display: none;
  }
}
.dropdown-menus::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0,
      rgba(0, 0, 0, 0) 100%
    );
  }
#nav-search{
    box-shadow:0px 3px 10px #00000029;
  }
/* .search-filter-result{
    box-shadow: 0px 2px 6px #00000029;
  } */
.nav-search-page ul {
    padding: 16px;
}
.single-testimonial .testimonial-text-content {
    background-image: url(../../images/single-testimonial-shape.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 286px;
    height: 286px;
    left: -48%;
    position: relative;
  }
.dropdown-menu {
  max-height: 0px;
  overflow: hidden;
  opacity: 0.25;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media (min-width: 1024px) {
  
  #filter-modal .mb-6 > .dropdown-menu::before{
    content: var(--tw-content);
    height: 100vh;
  }
  .dropdown-menu::before {
    position: absolute;
    left: 0px;
    height: 8px;
    content: var(--tw-content);
    width: 100%;
  }
}
.dropdown-menu::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0,
      rgba(0, 0, 0, 0) 100%
    );
  }
.tracking-tight:last-child {
    border-bottom: none; /* Adjust the color and style as needed */
  }
/* div.dropdown-menu-open {
    @apply opacity-100 max-h-[650px];
  } */
div.dropdown-menu-open {
  max-height: 120rem;
  opacity: 1;
}
/**
   * Search panel relies on a class being added to the body tag
   */
/* .dropdown-search {
    @apply transition-all duration-[500ms] opacity-25 max-h-0 overflow-hidden;
    background: linear-gradient(
      180deg,
      rgba(220, 220, 220, 1) 0,
      rgba(255, 255, 255, 1) 7px,
      rgba(255, 255, 255, 1) 100%
    );
  } */
/* .dropdown-search {
    @apply transition-all duration-[500ms] opacity-0 max-h-0 overflow-hidden;
    background: linear-gradient(
      180deg,
      rgba(220, 220, 220, 1) 0,
      rgba(255, 255, 255, 1) 7px,
      rgba(255, 255, 255, 1) 100%
    );
  } */
.dropdown-search{
    background-color: #ffffff;
  }
body.search-open {
  overflow: hidden;
}
@media (min-width: 1024px) {

  body.search-open {
    overflow: auto;
  }
}
@media (max-width: 1023px) {
    #nav-buttonsbody.search-open .nav-item-hamburger,#nav-buttons
  body.search-open .nav-item-login {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }
body.search-open .nav-item-hamburger,
  body.search-open .nav-item-login {
  display: none;
}
body.search-open .nav-item-close {
  display: inline;
}
@media (min-width: 1024px) {

  @media (max-width: 1023px) {
    body.search-open .nav-item-close#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }

  body.search-open .nav-item-close {
    display: none;
  }
}
body.search-open .close-nav {
  display: block;
}
body.search-open .dropdown-search {
    /* @apply opacity-100 max-h-96; */
    max-height: 40rem;
    opacity: 1;
  }
body.search-open .search-mask {
  display: block;
}
@media (min-width: 1024px) {

  @media (max-width: 1023px) {
    body.search-open .search-mask#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh;
      height: 0;
    }
  }

  body.search-open .search-mask {
    display: none;
  }
}
body.search-open .close-search {
  display: block;
}
.slider-single img{
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-width: 100%;
  aspect-ratio: 5/3;
      display: block;
    width: 100%;
}
/**
   * Home page intro highlight
   *
   * @todo This is a placeholder image. Real image needs to be exported from Adobe XD
   */
.intro-highlight {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
    background-image: url("../../images/intro-highlight.svg");
}
.wills-intro-highlight {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 0.625rem;
}
@media (min-width: 768px) {

  .wills-intro-highlight {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.375rem;
  }
}
@media (min-width: 1024px) {

  .wills-intro-highlight {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 0.875rem;
  }
}
.wills-intro-highlight{
    background-image: url("../../images/wills-intro-highlight.png");
  }
/**
   * Background Images
   *
   * Background images have been defined in custom classes to minimise the mess in the HTML. This also bypasses
   * invalid filepaths failing to load the images.
   * @todo The names of these classes could be renamed to be more reusable
   */
/* Block: Why State Trustees */
.background-heart {
  background-size: 550px;
  background-position: left 3rem top 1.5rem;
  background-repeat: no-repeat;
    background-image: url("../../images/heart.svg");
}
/* Footer */
.background-footer {
  background-size: 120vw;
  background-position: right -50vw center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {

  .background-footer {
    background-size: 850px;
    background-position: right -200px bottom -50px;
  }
}
.background-footer {
    background-image: url("../../images/heart-footer.svg");
  }
/* Footer Acknowledgements */
.background-acknowledgements {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    background-image: url("../../images/footer.jpg");
}
/* article  header */
.background-article-heart {
  background-size: 325px;
  background-position: right -21vw top 0.5rem;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {

  .background-article-heart {
    background-size: 400px;
    background-position: right -9vw top 4.5rem;
  }
}
@media (min-width: 1024px) {

  .background-article-heart {
    background-size: 650px;
    background-position: right -9vw top 1.5rem;
  }
}
.background-article-heart {

    background-image: url("../../images/bg-article-heart.svg");
  }
/* testimonial quote */
.testamonial-quote {
  background-size: 88px;
  background-repeat: no-repeat;
}
/* CTA block */
.background-cream-heart {
  background-size: 360px;
  background-position: left -5rem top 5vh;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {

  .background-cream-heart {
    background-position: left -5rem top 0vh;
  }
}
@media (min-width: 1024px) {

  .background-cream-heart {
    background-size: 450px;
    background-position: left -7rem top -0.5rem;
  }
}
.background-cream-heart {
    background-image: url("../../images/bg-cream-heart.svg");
  }
.background-cream-heart-lg {
  background-size: 360px;
  background-position: left -5rem top 35vh;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {

  .background-cream-heart-lg {
    background-size: 600px;
    background-position: left -13rem top 1rem;
  }
}
@media (min-width: 1024px) {

  .background-cream-heart-lg {
    background-size: 730px;
    background-position: left -14rem top -1rem;
  }
}
.background-cream-heart-lg{
    background-image: url("../../images/bg-cream-heart.svg");
  }
.right-background-cream-heart-lg {
  background-size: 360px;
  background-position: left -5rem top 18rem;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {

  .right-background-cream-heart-lg {
    background-size: 600px;
    background-position: left 10rem top 1rem;
  }
}
@media (min-width: 1024px) {

  .right-background-cream-heart-lg {
    background-size: 730px;
    background-position: left 27rem top -1rem;
  }
}
.right-background-cream-heart-lg{
    background-image: url("../../images/bg-cream-heart.svg");
  }
h2.wp-block-heading {
    font-size: 1.5rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-top: 2rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(19 32 118 / var(--tw-text-opacity));
  }
@media (max-width: 1024px) {
  .filter-tag spanh2.wp-block-heading {
      display: none;
  }
}
@media (max-width: 1023px ) {
  .estate-administration h2.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
h2.wp-block-heading {
  font-weight: 500;
}
@media (min-width: 768px) {
  h2.wp-block-heading {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h2.wp-block-heading {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {

  h2.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1024px) {

  h2.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
h3.wp-block-heading {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}
@media (max-width: 1024px) {
  .filter-tag spanh3.wp-block-heading {
      display: none;
  }
}
@media (max-width: 1023px ) {
  .estate-administration h3.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.testimonial-slide .relative h3.mb-6.wp-block-heading.mr-2 {
	margin-right: 2rem;
}
h3.wp-block-heading {
  font-weight: 500;
}
@media (min-width: 768px) {
  h3.wp-block-heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  h3.wp-block-heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {

  h3.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1024px) {

  h3.wp-block-heading {
    padding-left: 0px;
    padding-right: 0px;
  }
}
strong {
  font-weight: 600;
}
.will-faq-content h2,.will-faq-content h3 {
  padding-top: 0px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .will-faq-content h2,.will-faq-content h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.wills-plans-section .slick-slide {
  /* width: 368px !important;  */
  margin: 0 12px !important;
}
.testimonial-text-content {
  position: absolute;
  bottom: 0;
  top: 6rem;
  left: -11rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    white-space: nowrap;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
/* added new class to testimonial slider */
.testimonial_sidebar_view{
  background-image: url("../../images/testimonial-icons.svg");
  background-repeat: no-repeat;
  background-size: 286px;
  height: 286px;
}
@media only screen and (max-device-width: 1024px) {
  .testimonial_sidebar_view{
    background-position: left bottom !important;
    padding: 0px 0px 10% 10%;
    background-size: 250px;
  }
  .testimonial_sidebar_view p{
    font-size: 18px;
    line-height: 26px;
  }
}
#form_section .gform_heading{
  text-align: center;
  margin-bottom: 3rem;
}
/* review slider Starts here */
.slick-slide {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.sidebar-review-slider .slick-prev, .review-slider .slick-prev {
    left: 20px;
  }
.sidebar-review-slider .slick-next, .review-slider .slick-next {
    right: 20px;
  }
.sidebar-review-slider .slick-slide, .review-slider .slick-slide {
    margin-left: 12px;
    margin-right: 12px;
  }
.sidebar-review-slider .slick-next:before,
  .sidebar-review-slider.slick-prev:before,
  .review-slider .slick-next:before,
  .review-slider .slick-prev:before {
    font-size: 28px;
    line-height: 1;
    opacity: 1;
    color: #D0DAF7;
    border: 1px solid #D0DAF7;
    border-radius: 50%;
    padding: 5px;
  }
.sidebar-review-slider .slick-arrow::before, 
.review-slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #D0DAF7;
  background: url(../../images/wills/next.svg) no-repeat center center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
}
.sidebar-review-slider .slick-arrow.slick-disabled::before, 
.review-slider .slick-arrow.slick-disabled::before {
  background-color: white;
}
.sidebar-review-slider.slick-arrow::before, 
.review-slider .slick-arrow::before {
  transition: background-color 0.3s; 
}
.sidebar-review-slider .slick-arrow:hover::before,
.review-slider .slick-arrow:hover::before {
  background-color: #D0DAF7;
}
.sidebar-review-slider .slick-arrow.slick-prev, 
.review-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  margin-left: 1px;
  bottom: 70px;
  z-index: 100;
}
/* .review-slider .slick-slide{
  width: 320px;
} */
/* .review-block{
  height: 231px;
  width: 318px;
} */
@media only screen and (max-width: 600px) {
  /* .review-slider .slick-list {
    overflow: inherit;
  } */
  .slick-track{
    display: flex!important;
  }
  /* .review-slider .slick-slide{
    width: 275px !important;
  } */
  .sidebar-review-slider .slick-slide,
  .review-slider .slick-slide, .review-block{
    height: 310px !important;
    /* width: 275px !important; */
    overflow: hidden;
  }
  .sidebar-review-slider .slick-arrow.slick-prev,
  .review-slider .slick-arrow.slick-prev{
    margin-left: -32px !important;
  }
  .sidebar-review-slider .slick-prev,  .sidebar-review-slider .slick-next,
  .review-slider .slick-prev, .review-slider .slick-next{
    top: 113%!important;
    left: 50%!important;
    height:25px!important;
   
  }
  .sidebar-review-slider .slick-slide,
  .review-slider .slick-slide {
    margin-left: 32px;
    margin-right: 32px;
  }
 

}
/* review slider Ends here */
/* Wills benefit slider start */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .how_it_works_sec .slick-prev, .how_it_works_sec .slick-next{
    left: 58.74%!important;
  }
  .how_it_works_sec .slider-nav{
    right: 1rem !important;
  }


}
.how_it_works_sec .slick-prev{
  margin-left:-27px;
  }
/* .how_it_works_sec .slider-nav{
    width: calc(49.26% - 84px);
  } */
.how_it_works_sec .slider-nav{
    width: calc(49.26% - 28px);
  }
.how_it_works_sec .slick-arrow.slick-prev {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  bottom: 70px;
  z-index: 46;
}
.how_it_works_sec .slick-prev, .how_it_works_sec .slick-next{
  font-size: 28px;
  line-height: 1;
  opacity: 1;
  border-radius: 50%;
  padding: 5px;
  /* top: 83%;
  left: 56.74%;*/
  display: block;
  width: 20px;
  height: 25px;
}
.top_bottom_sidebar_view .slick-prev,.top_bottom_sidebar_view .slick-next{
  top:90%;
  left: 58.74%;
}
.top_bottom_default_view .slick-prev, .top_bottom_default_view .slick-next {
  top: 83%;
  left: 56.74%; 
}
.how_it_works_sec .slick-next:before,
.how_it_works_sec .slick-prev:before {
  font-size: 28px;
  line-height: 1;
  opacity: 1;
  color: #D0DAF7;
  border: 1px solid #D0DAF7;
  border-radius: 50%;
  padding: 5px;
 
}
.how_it_works_sec .slick-arrow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #D0DAF7;
  background: url(../../images/wills/next.svg) no-repeat center
    center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
}
.how_it_works_sec .slick-arrow.slick-disabled::before {
  background-color: white;
}
.how_it_works_sec .slick-arrow::before {
  transition: background-color 0.3s; 
}
.how_it_works_sec .slick-arrow:hover::before {
  background-color: #D0DAF7;
}
/* Wills benefit slider ends */
/* wills testimonial slider */
.wills-testimonial-slider .testimonial-text-content {
  background-image: url("../../images/wills-testimonial.svg");
  background-repeat: no-repeat;
  background-size: 286px;
  height: 286px;
  background-position: left;
  position: absolute;
  align-items: flex-start;
  margin-top: 24px;
  left: -11rem;
}
.wills-testimonial-slider .slick-prev {
    left: 20px;
  }
.wills-testimonial-slider .slick-next {
    right: 20px;
  }
.wills-testimonial-slider .slick-slide {
    /* padding-bottom: 120px; */
    margin-bottom: 75px;
  }
.wills-testimonial-slider .slick-next:before,
  .wills-testimonial-slider .slick-prev:before {
    font-size: 28px;
    line-height: 1;
    opacity: 1;
    color: #D0DAF7;
    border: 1px solid #D0DAF7;
    border-radius: 50%;
    padding: 5px;
  
  }
.wills-testimonial-slider .slick-next,  .wills-testimonial-slider .slick-prev {
    top:47%;
  }
.wills-testimonial-slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #D0DAF7;
  background: url(../../images/wills/next.svg) no-repeat center
    center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
}
.wills-testimonial-slider .slick-arrow.slick-disabled::before {
  background-color: white;
}
.wills-testimonial-slider .slick-arrow::before {
  transition: background-color 0.3s; 
}
.wills-testimonial-slider .slick-arrow:hover::before {
  background-color: #D0DAF7;
}
.wills-testimonial-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  margin-left: 1px;
  bottom: 70px;
  z-index: 100;
}
@media only screen and (min-device-width: 768px) and (max-width: 1024px) {
  .wills-testimonial-slider .testimonials-text{
    padding-left: 4rem!important;
  }
  .wills-testimonial-slider .testimonials-name{
    padding-left: 4rem!important;
  }
  .wills-testimonial-slider .slick-prev,  .wills-testimonial-slider .slick-next{
    top: 35%!important;
    width: 10px;
  }
}
@media only screen and (max-width: 600px) {

  .single-test-slide{
    padding-left: 0px !important;
    padding-right: 0px!important;
  }

  .wills-testimonial-slider .slick-prev,  .wills-testimonial-slider .slick-next{
    top: 90%!important;
    left: 52%!important;
    height:25px!important;
   
  }
  .wills-testimonial-slider .slick-arrow.slick-prev {
    margin-left: -32px!important;
  }
  .wills-testimonial-slider .testimonial-text-content {
    background-size:90px!important;
    height: auto;
    background-position: right bottom;
    position: initial;
  }

}
.custom-list {
  list-style-image: url(../../images/bullet_ico.svg);
}
.wills-custom-list {
  list-style-image: url(../../images/list_ico.svg);
}
.wills-custom-list li p {
    position: relative;
    left: 6px;
    top:-4px
  }
li span {
    position: relative;
    left: 10px;
  }
.article-header {
    /* height: 145px; */
    height: 172px;
  }
@media (min-width: 768px) {
  .article-header {
    height: 172px;
  }
}
@media (min-width: 1024px) {
  .article-header {
    height: 172px;
  }
}
.font-italic {
    font-style: italic;
  }
.font-light {
    font-weight: 300;
  }
.media-height-sm {
    height: 187px;
  }
.download-text {
  height: 5rem;
}
@media (min-width: 768px) {

  .download-text {
    margin-bottom: 0px;
  }
}
@media (min-width: 1024px) {

  .download-text {
    margin-bottom: 0px;
  }
}
.member-dp-sm {
    width: 100%;
    height: 296px;
  }
.member-dp {
    width: 100%;
    height: 296px;
  }
@media (min-width: 768px) {
  .member-dp {
    height: 200px;
    width: 210px;
  }
}
@media (min-width: 1024px) {
  .member-dp {
    height: 241px;
    width: 270px;
  }
}
.text-h2 {
    font-size: 2rem;
  }
.text-h3 {
    font-size: 1.5rem;
  }
.close-button {
    color: white;
    position: inherit;
    float: right;
    margin-top: -2rem;
    cursor: pointer;
  }
@media (min-width: 1024px) {
  .close-button {
    color: white;
    position: inherit;
    margin-top: -3rem;
    cursor: pointer;
  }
}
[type="checkbox"]:focus {
    --tw-ring-offset-width: 0;
    --tw-ring-offset-color: transparent;
  }
.border-3 {
    border-width: 3px;
  }
.arrow {
    position: absolute;
    border: solid #132076;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: transform 0.5s;
    right: 0;
    justify-content: center;
    align-items: center;
    top: 20px;
    /* transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;  */
    transition: transform 0.01s;
    -webkit-transition: transform 0.01s; 
  }
.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
.svg-up {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
  }
.svg-down {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
  }
/* .st-checkbox:hover label {
    border-bottom: 1px solid #000; 
  } */
.contact-heading {
    font-size: 2.5rem;
    line-height: 50px;
    font-weight: 500;
  }
.text-4xl {
    font-size: 2rem;
    line-height: 2.375rem;
  }
.text-heading-contact-cta {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
@media screen and (min-width:1024px) {
    #mobile-notif {
      display: none !important;
    }
    #desktop-notif {
      display: block !important;
    }
  }
@media screen and (max-width:1023px) {
    #mobile-notif {
      display: block !important;
    }
    #desktop-notif {
      display: none !important;
    }
  }
/*
  Mobile filter
  */
#filter-modal .mb-6,
  #filter-modal .mb-6 > .w-full,
  #filter-modal{
    height: 100vh;
  }
.mobile-clear{
    width: 200px;
    margin: 20px auto;
  }
#filter-modal #close_modal{
    width: 60px;
    height: 80px;
    padding-top: 10px;
  }
#filter-modal #menu-button{
    padding-top: 30px;
  }
.border-1{
    border-width: 1px;
  }
.single-testimonial .full-width-testimonial-text-content{
    background-image: url("../../images/single-testimonial-shape.svg");
    background-repeat: no-repeat;
    background-size: 286px;
    height: 286px;
    left: -37%;
    background-position: bottom left;
  }
.full-width-layout{
    height: 24rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
.full-width-testimonial-text-content {
  position: relative;
  background-position: left;
}
.testimonial-slide .full-width-testimonial-text-content .mb-6.text-xl.mr-2 {
	margin-right: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .free-resources .full-width-testimonial-text-content figure img {
          min-height: 300px;
  }
}
@media (min-width: 768px) {

  .full-width-testimonial-text-content {
    position: absolute;
    top: 11rem;
  }
}
@media (min-width: 1024px) {

  .full-width-testimonial-text-content {
    position: absolute;
    top: 11rem;
  }
}
.full-width-testimonial-text-content .testimonials-text{
      margin-top: 4rem;
      margin-left: 5.5rem;
      font-size: 20px;
  }
.full-width-testimonial-text-content .testimonials-name{
    margin-left: 5.5rem;
    text-align: left;
    font-size: 16px;
  }
.single-testimonial .testimonial-text-content{
    background-image: url("../../images/single-testimonial-shape.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 286px;
    height: 286px;
    left: -48%;
    position: relative;
  }
.testimonial-slide .single-testimonial .testimonial-text-content .mb-6.text-xl.mr-2 {
	margin-right: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .free-resources .single-testimonial .testimonial-text-content figure img {
          min-height: 300px;
  }
}
@media (min-width: 768px) {

  .single-testimonial .testimonial-text-content {
    top: 11rem;
  }
}
@media (min-width: 1024px) {

  .single-testimonial .testimonial-text-content {
    position: absolute;
    top: 11rem;
  }
}
.testimonial-slider .testimonial-text-content {
    background-image: url("../../images/testimonial-icons.svg");
    background-repeat: no-repeat;
    background-size: 286px;
    height: 286px;
  }
@media (min-width: 1024px) {
    .heart-feedback {
      background-size: 500px;
      background-position: right -150px bottom -25px;
    }
    .contact-feedback img {
      border-radius: 8px 0px 0px 8px;
    }
    .contact-feedback .heart-feedback {
      border-radius: 0px 8px 8px 0px;
    }
  }
@media (max-width: 1023px) {
    .heart-feedback {
      background-size: 301px;
      background-position: left -91px bottom -38px;
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .heart-faq-cta {
      background-size: 301px;
      background-position: left -91px bottom -38px;
      padding-left: 2rem;
      padding-right: 2rem;
    }
    #nav-buttons {
      overflow: scroll;
      height: 100%;
      /* transition: all ease-out 0.6s; */
      transition: all ease-out 0.3s;
    }
    #nav-buttons.hidden {
      display: block;
      min-height: 0;
      padding-bottom: 0vh !important;
      height: 0;
    }
    #nav-buttons * {
      box-sizing: border-box;
    }
  }
@media (max-width: 480px) {
    .contact-hero-img img {
      border-radius: 0px 0px 32% 32%;
    }
    .contact-hero .contact-us {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .contact-feedback img {
      border-radius: 8px 8px 0px 0px;
    }
    .contact-feedback .heart-feedback {
      border-radius: 0px 0px 8px 8px;
    }
  }
/* Work With Us */
/* .benefit-slider .benefit-slide {
    display: flex;
  } */
.benefit-accordion {
    display: none;
  }
.single-testimonial {
    margin-bottom: 10rem;
  }
@media (max-width: 768px) {

  .testimonial-slider .testimonial-text-content {
    background-image: url("../../images/testimonial-icons.svg");
    background-repeat: no-repeat;
    background-size: 87px;
    height: 286px;
  }
  }
.testimonial-slider .slick-prev {
    left: 20px;
  }
.testimonial-slider .slick-next {
    right: 20px;
  }
.testimonial-slider .slick-slide {
    /* padding-bottom: 120px; */
    margin-bottom: 75px;
  }
.testimonial-slider .person-img img {
    border-radius: 5px;
  }
.testimonial-slider .slick-next:before {
    content: url("../../images/right-arrow.svg");
  }
.testimonial-slider .slick-next:before,
  .testimonial-slider .slick-prev:before {
    font-size: 28px;
    line-height: 1;
    opacity: 1;
    color: #ffddbf;
    border: 1px solid #ffddbf;
    border-radius: 50%;
    padding: 5px;
  }
.benefit-content {
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 76px;
  }
.benefit-slider .slick-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #d0daf7;
    border-radius: 100%;
    /* background:#ffffff url(../../../images/slider-arrow-blue.png) no-repeat center center; */
    background-size: 22px;
    display: block;
    position: absolute;
    top: auto;
    bottom: 50px;
    left: 52.74%;
    margin-left: 49px;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    opacity: 1;
    z-index: 1;
  }
.benefit-slider .slick-arrow.slick-prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    margin-left: 1px;
    bottom: 70px;
  }
.benefit-slider .slick-arrow::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    border: 1px solid #d0daf7;
    background: url("../../images/right-arrow.svg") no-repeat center center;
    background-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: block;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
  }
.benefit-slider .slick-arrow:hover::before {
    background-color: #D0DBF7;
  }
.slider-single .slick-arrow:hover:before {
    opacity: 1;
  }
.benefit-slider-arrows {
    position: relative;
    padding-top: 20px;
  }
.benefit-slider-arrows .arrows {
    display: flex;
  }
.benefit-slider-arrows .arrows .arrow {
    border: 2px solid #d0daf7;
    border-radius: 50%;
    font-size: 1.125rem;
    cursor: pointer;
  }
.benefit-slider-arrows .arrows .arrow-next {
    margin-left: 75px;
  }
.benefit-slider-arrows .arrows .arrow-prev {
    transform: rotate(180deg);
  }
.what-we-do {
    background-color: #faf9f5;
  }
.what-we-do a {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
.diversity-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #fff1e5;
  }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-0\.5 {
  bottom: 0.125rem;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-0 {
  left: 0px;
}
.left-2 {
  left: 0.5rem;
}
.right-0 {
  right: 0px;
}
.right-10 {
  right: 2.5rem;
}
.right-16 {
  right: 4rem;
}
.right-2 {
  right: 0.5rem;
}
.right-2\.5 {
  right: 0.625rem;
}
.right-8 {
  right: 2rem;
}
.top-0 {
  top: 0px;
}
.top-12 {
  top: 3rem;
}
.top-16 {
  top: 4rem;
}
.top-2 {
  top: 0.5rem;
}
.top-2\.5 {
  top: 0.625rem;
}
.top-3 {
  top: 0.75rem;
}
.top-8 {
  top: 2rem;
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[99999\] {
  z-index: 99999;
}
.order-first {
  order: -9999;
}
.order-last {
  order: 9999;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.float-right {
  float: right;
}
.m-0 {
  margin: 0px;
}
.m-4 {
  margin: 1rem;
}
.m-7 {
  margin: 1.75rem;
}
.m-auto {
  margin: auto;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-1\.5 {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-1\.5 {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-11 {
  margin-bottom: 2.75rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-28 {
  margin-bottom: 7rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.mb-\[-1rem\] {
  margin-bottom: -1rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-1\.5 {
  margin-right: 0.375rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-\[-0\.45rem\] {
  margin-top: -0.45rem;
}
.mt-\[-2\.5rem\] {
  margin-top: -2.5rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0px;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-24 {
  height: 6rem;
}
.h-28 {
  height: 7rem;
}
.h-3 {
  height: 0.75rem;
}
.h-36 {
  height: 9rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-0 {
  max-height: 0px;
}
.max-h-24 {
  max-height: 6rem;
}
.max-h-full {
  max-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 0.25rem;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/4 {
  width: 25%;
}
.w-10 {
  width: 2.5rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\/12 {
  width: 25%;
}
.w-3\/4 {
  width: 75%;
}
.w-36 {
  width: 9rem;
}
.w-4 {
  width: 1rem;
}
.w-4\/12 {
  width: 33.333333%;
}
.w-40 {
  width: 10rem;
}
.w-5 {
  width: 1.25rem;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-6 {
  width: 1.5rem;
}
.w-6\/12 {
  width: 50%;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-\[172px\] {
  min-width: 172px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[270px\] {
  min-width: 270px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[296px\] {
  max-width: 296px;
}
.max-w-\[45\%\] {
  max-width: 45%;
}
.max-w-\[61\%\] {
  max-width: 61%;
}
.max-w-\[85rem\] {
  max-width: 85rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-initial {
  flex: 0 1 auto;
}
.flex-none {
  flex: none;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.table-fixed {
  table-layout: fixed;
}
.origin-center {
  transform-origin: center;
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!rotate-180 {
  --tw-rotate: 180deg !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-y-0 {
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-y-100 {
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.auto-cols-max {
  grid-auto-columns: max-content;
}
.grid-flow-col {
  grid-auto-flow: column;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.grid-rows-\[0fr\] {
  grid-template-rows: 0fr;
}
.grid-rows-\[1fr\] {
  grid-template-rows: 1fr;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-content-center {
  place-content: center;
}
.place-content-start {
  place-content: start;
}
.place-content-between {
  place-content: space-between;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-20 {
  gap: 5rem;
}
.gap-24 {
  gap: 6rem;
}
.gap-28 {
  gap: 7rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.gap-x-12 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.gap-x-16 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-clip {
  overflow: clip;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-normal {
  white-space: normal;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem;
}
.rounded-br-lg {
  border-bottom-right-radius: 0.5rem;
}
.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
}
.rounded-tr-lg {
  border-top-right-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-solid {
  border-style: solid;
}
.border-none {
  border-style: none;
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
}
.border-st-dark-grey-400 {
  --tw-border-opacity: 1;
  border-color: rgb(196 194 187 / var(--tw-border-opacity));
}
.border-st-digi-orange-400 {
  --tw-border-opacity: 1;
  border-color: rgb(216 57 7 / var(--tw-border-opacity));
}
.border-st-natural-300 {
  --tw-border-opacity: 1;
  border-color: rgb(250 249 245 / var(--tw-border-opacity));
}
.border-st-natural-400 {
  --tw-border-opacity: 1;
  border-color: rgb(242 240 231 / var(--tw-border-opacity));
}
.border-st-peach-300 {
  --tw-border-opacity: 1;
  border-color: rgb(255 221 191 / var(--tw-border-opacity));
}
.border-st-peach-400 {
  --tw-border-opacity: 1;
  border-color: rgb(255 198 149 / var(--tw-border-opacity));
}
.border-st-peach-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255 187 129 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-white\/25 {
  border-color: rgb(255 255 255 / 0.25);
}
.bg-\[\#424e91\] {
  --tw-bg-opacity: 1;
  background-color: rgb(66 78 145 / var(--tw-bg-opacity));
}
.bg-\[\#e84c3d\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 76 61 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity));
}
.bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity));
}
.bg-st-digi-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(216 57 7 / var(--tw-bg-opacity));
}
.bg-st-digi-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(188 45 0 / var(--tw-bg-opacity));
}
.bg-st-natural-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 249 245 / var(--tw-bg-opacity));
}
.bg-st-natural-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 240 231 / var(--tw-bg-opacity));
}
.bg-st-natural-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(232 229 216 / var(--tw-bg-opacity));
}
.bg-st-navy-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(89 98 157 / var(--tw-bg-opacity));
}
.bg-st-navy-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(19 32 118 / var(--tw-bg-opacity));
}
.bg-st-peach-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 229 / var(--tw-bg-opacity));
}
.bg-st-peach-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 221 191 / var(--tw-bg-opacity));
}
.bg-st-peach-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 198 149 / var(--tw-bg-opacity));
}
.bg-st-peach-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 187 129 / var(--tw-bg-opacity));
}
.bg-st-sky-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(235 240 252 / var(--tw-bg-opacity));
}
.bg-st-sky-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(208 218 247 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}
.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-black\/80 {
  --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-center {
  background-position: center;
}
.bg-left {
  background-position: left;
}
.bg-right {
  background-position: right;
}
.bg-right-bottom {
  background-position: right bottom;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-black {
  fill: #000;
}
.fill-current {
  fill: currentColor;
}
.fill-white {
  fill: #fff;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-2\.5 {
  padding-bottom: 0.625rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pb-\[90px\] {
  padding-bottom: 90px;
}
.pl-0 {
  padding-left: 0px;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-36 {
  padding-left: 9rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pl-7 {
  padding-left: 1.75rem;
}
.pl-9 {
  padding-left: 2.25rem;
}
.pl-\[6px\] {
  padding-left: 6px;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-24 {
  padding-right: 6rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-2\.5 {
  padding-top: 0.625rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-52 {
  padding-top: 13rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.font-heading {
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.font-thin {
  font-weight: 100;
}
.italic {
  font-style: italic;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-snug {
  line-height: 1.375;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-\[\#424e91\] {
  --tw-text-opacity: 1;
  color: rgb(66 78 145 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-black-400 {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-st-digi-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(216 57 7 / var(--tw-text-opacity));
}
.text-st-digi-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(188 45 0 / var(--tw-text-opacity));
}
.text-st-navy-200 {
  --tw-text-opacity: 1;
  color: rgb(89 98 157 / var(--tw-text-opacity));
}
.text-st-navy-400 {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.decoration-2 {
  text-decoration-thickness: 2px;
}
.underline-offset-1 {
  text-underline-offset: 1px;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-black::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity));
}
.placeholder-black::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity));
}
.placeholder-opacity-50::-moz-placeholder {
  --tw-placeholder-opacity: 0.5;
}
.placeholder-opacity-50::placeholder {
  --tw-placeholder-opacity: 0.5;
}
.accent-st-digi-orange-400 {
  accent-color: #D83907;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-70 {
  opacity: 0.7;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-st-digi-orange-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(216 57 7 / var(--tw-ring-opacity));
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-2xl {
  --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* @import "~aos/dist/aos.css"; */
/* Awais */
.st-peach-200 {
  background-color: #fff1e5;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.st-natural-400 {
  background-color: #f2f0e7;
}

.heart-feedback {
  background-size: 48vw;
  background-position: right -18vw bottom -3.5rem;
  background-image: url("../../images/heart-feedback.svg");
  background-color: #faf9f5;
}


.make-img-border::before {
  content: "";
  position: absoulte;
  width: 25px;
  height: 25px;
}

.contact-description a {
  color: rgb(19 32 118);
}

.max-w-4xl {
  max-width: 40rem;
}

.contact-form {
  margin-top: 6rem;
  padding-top: 5.25rem;
  padding-bottom: 4.5rem;
}
/* .contact-form .gfield_label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 400 !important;
}
.contact-form .gform_wrapper .gfield_required {
  color: rgb(19 32 118 / var(--tw-text-opacity));
}
.contact-form .gfield_validation_message,
.contact-form .validation_message {
  color: rgb(216 57 7 / var(--tw-bg-opacity));
  background: none;
  border: none;
  padding: 0px 0px;
  margin-top: 0px;
}
.contact-form .gfield_error label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}

.contact-form .gform_validation_errors {
  border: none !important;
  background: none;
  box-shadow: none;
}
.contact-form .gform_submission_error {
  color: rgb(216 57 7 / var(--tw-bg-opacity)) !important;
  background: none !important;
  border: none !important;
}

.contact-form input,
select,
textarea {
  border: 2px solid #c4c2bb;
  border-radius: 5px;
}

.contact-form input[type="submit"] {
  color: #ffffff;
  width: 172px;
  padding: 16px 24px 16px 24px;
  display: flex;
  justify-content: center;
  border: none !important;
  height: 55px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
} */
.gform_footer .gform_button {
  color: #ffffff;
  background-color: #d83907 !important;
  width: 172px;
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  border: none !important;
  height: 55px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
}
.gform_description{
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  color:black;
}

.single-contact {
  min-height: 202px;
}

.rounded-feedback {
  border-radius: 5px;
}

.rounded-feedback-img {
  border-radius: 8px 0px 0px 8px;
}

@media only screen and (max-width: 1023px) {
  .contact-hero-block {
    margin-bottom: 0px !important;
  }
  .contact-icon-block {
    padding-top: 8px !important;
  }
  .contact-form {
    margin-top: 0px;
  }
  .faq {
    padding-top: 0px !important;
  }
  .heart-faq-cta {
    flex-direction: column;
    align-items: normal;
  }

  .font-mob {
    font-size: 24px !important;
    line-height: 35px !important;
  }

  .contact-heading {
    font-size: 2rem !important;
    line-height: 38px !important;
    font-weight: 500;
  }
}

.text-contact {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.text-4xl {
  font-size: 2rem;
  line-height: 2.375rem;
}
.text-heading-contact-cta {
  font-size: 1.25rem;
  line-height: 1.625rem;
}
.btn-form-submit {
  color: #ffffff;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .heart-feedback {
    background-size: 500px;
    background-position: right -150px bottom -25px;
  }
  .contact-feedback img {
    border-radius: 8px 0px 0px 8px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 8px 8px 0px;
  }
}

@media (max-width: 1023px) {
  .heart-feedback {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .heart-faq-cta {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contact-hero-block .textcenter {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .contact-hero-block .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-hero-block .imgs {
    margin-top: -20px;
  }
  .contact-hero-img img {
    border-radius: 0px 0px 32% 32%;
  }
  .contact-hero .contact-us {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .contact-feedback img {
    border-radius: 8px 8px 0px 0px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 0px 8px 8px;
  }
}

.px-19 {
  padding-left: 144px;
}
.spb-72 {
  padding-bottom: 72px;
}

.contact-icon-block {
  padding-top: 72px;
}
.contact-form .max-w-4xl {
  max-width: 36.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.px-21 {
  padding-left: 5.375rem;
  padding-right: 4rem;
}

.contact-hero-block .mobile-img {
  display: none;
}
@media (max-width: 1023px) {
  .contact-form .gform_footer {
    display: flex;
    justify-content: center;
  }
  .contact-hero-block .desktop-img {
    display: none;
  }
  .contact-hero-block .mobile-img {
    display: block;
  }
  .contact-hero-block {
    flex-direction: column;
  }
  .contact-hero-block .w-1\/2 {
    width: 100%;
  }
  .contact-hero-block .px-19 {
    padding-left: 29px;
    padding-right: 29px;
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .contact-hero-block {
    height: 100%;
    flex-direction: column-reverse;
  }
  .contact-hero-block .img-section {
    width: 100%;
    border-radius: 50% / 7%;
    margin-top: -17px;
    background-position: top center;
  }
  .contact-hero-block .img-section svg {
    display: none;
  }

  .mm-29 {
    margin-left: 29px;
    margin-right: 29px;
  }
  .contact-feedback {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .heart-feedback {
    padding: 24px !important;
  }
  .heart-faq-cta {
    padding: 24px !important;
    align-items: flex-start !important;
    flex-direction: column;
  }
}

/* FAQ */
.subtopic:hover {
  background-color: #ffddbf !important;
  text-decoration: none;
}

.topic:hover {
  background-color: #fff1e5 !important;
}

.topic.selected:hover {
  background-color: #ffddbf !important;
}

.topic:hover > .subtopic {
  text-decoration: none;
}

.faqs .wp-block-separator {
  display: none;
}

.accordion-header {
  align-items: center;
  width: 100%;
  text-align: left;
  outline: none;
  transition: background 0.3s;
}

.accordion-icon {
  float: right;
  width: 14px;
  height: 14px;
  background-image: url("https://www.statetrustees.com.au/wp-content/themes/statetrustees/images/link-down-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}

.accordion-content {
  transition: max-height 0.6s ease-in-out;
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.25s ease-in-out !important;
}

.accordion-item.open .accordion-content {
  max-height: 400px;
  display: block;
}

.accordion-item.open .accordion-content > * {
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content::after {
  content: "";
  display: block;
  height: 0;
  transition: height 0.3s ease;
}

.accordion-item.open .accordion-content::after {
  margin-bottom: 1.5rem;
}

/* Awais */
.st-peach-200 {
  background-color: #fff1e5;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.st-natural-400 {
  background-color: #f2f0e7;
}


.heart-faq-cta {
  background-size: 23.25rem;
  background-position: left -2vw bottom -5rem;
  background-color: #faf9f5 !important;
  background-image: url("../../images/heart-feedback.svg");
  background-repeat: no-repeat;
}

.make-img-border::before {
  content: "";
  position: absoulte;
  width: 25px;
  height: 25px;
}

.contact-description a {
  color: rgb(19 32 118);
}

.max-w-4xl {
  max-width: 40rem;
}

/* .contact-form .gfield_label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 500 !important;
}
.contact-form .gfield_validation_message,
.contact-form .validation_message {
  color: rgb(216 57 7 / var(--tw-bg-opacity));
  background: none;
  border: none;
  padding: 0px 0px;
  margin-top: 0px;
}
.contact-form .gfield_error label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}

.contact-form .gform_validation_errors {
  border: none !important;
  background: none;
  box-shadow: none;
}
.contact-form .gform_submission_error {
  color: rgb(216 57 7 / var(--tw-bg-opacity)) !important;
  background: none !important;
  border: none !important;
}

.contact-form input,
select,
textarea {
  border: 2px solid #c4c2bb;
  border-radius: 5px;
} */

.single-contact {
  min-height: 202px;
}

.rounded-feedback {
  border-radius: 5px;
}

.rounded-feedback-img {
  border-radius: 8px 0px 0px 8px;
}

@media only screen and (max-width: 600px) {
  .heart-faq-cta {
    flex-direction: column;
    align-items: normal;
  }
}

.contact-heading {
  font-size: 2.5rem;
  line-height: 50px;
  font-weight: 500;
}

.text-contact {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.text-4xl {
  font-size: 2rem;
  line-height: 2.375rem;
}
.text-heading-contact-cta {
  font-size: 1.25rem;
  line-height: 1.625rem;
}
.btn-form-submit {
  color: #ffffff;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .heart-feedback {
    background-size: 500px;
    background-position: right -150px bottom -25px;
  }
  .contact-feedback img {
    border-radius: 8px 0px 0px 8px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 8px 8px 0px;
  }
}

@media (max-width: 1023px) {
  .heart-feedback {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .heart-faq-cta {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .what-we-do h2 {
    font-size: 24px;
    line-height: 35px;
  }
}

@media (max-width: 480px) {
  .contact-hero-img img {
    border-radius: 0px 0px 32% 32%;
  }
  .contact-hero .contact-us {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact-feedback img {
    border-radius: 8px 8px 0px 0px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 0px 8px 8px;
  }
}
/* Work With Us */
.ccc {
  position: relative;
}
.testimonial-text-content {
  position: absolute;
  bottom: 0;
  bottom: -185px;
  left: -36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.testimonial-slider .slick-slide {
  padding-bottom: 120px;
}
.testimonial-slider .person-img img {
  border-radius: 5px;
}

.testimonials {
  padding-top: 96px;
  padding-bottom: 96px;
}
.testimonial-slider .slick-next:before {
  content: url("../../images/testimonial-right-arrow.svg");
}
/* .testimonial-slider mobile version */
@media (max-width: 1023px) {
  .office-location {
    padding-bottom: 0px !important;
  }
  .contact-form {
    margin-top: 5rem !important;
  }
  .testimonial-slider .single-test-slide {
    padding-left: 0px;
    padding-right: 0px;
  }
  .testimonial-text-content {
    /* position: unset; */
    align-items: flex-start;
    margin-top: 24px;
    height: auto;
  }
  
  .testimonial-slide {
    padding-top: 48px;
  }
  .testimonial-slider .slick-arrow {
    position: absolute;
    top: auto;
    bottom: 50px;
    left: 52.74%;
    z-index: 10;
  }
  .testimonial-slider .testimonials-name {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .testimonial-slider .slick-arrow.slick-prev {
    margin-left: -40px !important;
    bottom: 42px !important;
  }

  .testimonials-text {
    margin-left: 0px;
    font-size: 20px;
    line-height: 28px;
  }

  .testimonial-slide {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .testimonial-slider .slick-slide {
    padding-bottom: 60px;
  }
  .testimonials-name {
    margin-left: 0px;
  }
}
.testimonial-slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #ffddbf;
  background: url(../../images/testimonial-right-arrow.svg) no-repeat center
    center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
}
.testimonial-slider .slick-arrow.slick-disabled::before {
  background-color: white;
}
.testimonial-slider .slick-arrow::before { 
  /* background-color: #ffddbf; */
}
.testimonial-slider .slick-arrow:hover::before { 
  background-color: #ffddbf;
}


.testimonial-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  margin-left: 1px;
  bottom: 70px;
  z-index: 10;
}

.benefit-content {
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 76px;
}
.benefit-slider-arrows {
  position: relative;
  padding-top: 20px;
}
.benefit-slider-arrows .arrows {
  display: flex;
}
.benefit-slider-arrows .arrows .arrow {
  border: 2px solid #d0daf7;
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
}

.benefit-slider-arrows .arrows .arrow-next {
  margin-left: 75px;
}
.benefit-slider-arrows .arrows .arrow-prev {
  transform: rotate(180deg);
}

.what-we-do a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.diversity-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #fff1e5;
}
@media (max-width: 1023px) {
  .what-we-do {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Awais */
.st-peach-200 {
  background-color: #fff1e5;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.st-natural-400 {
  background-color: #f2f0e7;
}

.heart-feedback {
  background-size: 48vw;
  background-position: right -18vw bottom -3.5rem;
  background-image: url("../../images/heart-feedback.svg");
  background-color: #faf9f5;
}

.make-img-border::before {
  content: "";
  position: absoulte;
  width: 25px;
  height: 25px;
}

.contact-description a {
  color: rgb(19 32 118);
}

.max-w-4xl {
  max-width: 40rem;
}

.contact-form {
  margin-top: 6rem;
  padding-top: 5.25rem;
  padding-bottom: 4.5rem;
}



 .gform-body .gfield_label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 400 !important;
}
.gform-body .gform_wrapper .gfield_required {
  color: rgb(19 32 118 / var(--tw-text-opacity));
}
.gform-body .gfield_validation_message,
.gform-body .validation_message {
  color: rgb(216 57 7 / var(--tw-bg-opacity));
  background: none;
  border: none;
  padding: 0px 0px;
  margin-top: 0px;
}
.gform-body.gfield_error label {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}

.gform-body .gform_validation_errors {
  border: none !important;
  background: none;
  box-shadow: none;
}
.gform-body .gform_submission_error {
  color: rgb(216 57 7 / var(--tw-bg-opacity)) !important;
  background: none !important;
  border: none !important;
}

.gform-body input,
select,
textarea {
  border: 2px solid #c4c2bb;
  border-radius: 5px;
}
/*
.contact-form input[type="submit"] {
  color: #ffffff;
  background-color: #d83907 !important;
  width: 172px;
  padding: 16px 24px 16px 24px;
  display: flex;
  justify-content: center;
  border: none !important;
  height: 55px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
} */

.single-contact {
  min-height: 202px;
}

.rounded-feedback {
  border-radius: 5px;
}

.rounded-feedback-img {
  border-radius: 8px 0px 0px 8px;
}

@media only screen and (max-width: 1023px) {
  .heart-faq-cta {
    flex-direction: column;
    align-items: normal;
  }

  .font-mob {
    font-size: 24px !important;
    line-height: 35px !important;
  }

  .contact-heading {
    font-size: 2rem !important;
    line-height: 38px !important;
    font-weight: 500;
  }
}

.text-4xl {
  font-size: 2rem;
  line-height: 2.375rem;
}
.text-heading-contact-cta {
  font-size: 1.25rem;
  line-height: 1.625rem;
}
.btn-form-submit {
  color: #ffffff;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .heart-feedback {
    background-size: 500px;
    background-position: right -150px bottom -25px;
  }
  .contact-feedback img {
    border-radius: 8px 0px 0px 8px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 8px 8px 0px;
  }
}

@media (max-width: 1023px) {
  .heart-feedback {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .heart-faq-cta {
    background-size: 301px;
    background-position: left -91px bottom -38px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contact-hero-block .textcenter {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .contact-hero-block .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-hero-block .imgs {
    margin-top: -20px;
  }
  .contact-hero-img img {
    border-radius: 0px 0px 32% 32%;
  }
  .contact-hero .contact-us {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .contact-feedback img {
    border-radius: 8px 8px 0px 0px;
  }
  .contact-feedback .heart-feedback {
    border-radius: 0px 0px 8px 8px;
  }
}

.px-19 {
  padding-left: 144px;
}
.spb-72 {
  padding-bottom: 72px;
}
.contact-icon-block {
  padding-top: 120px;
}
.contact-form .max-w-4xl {
  max-width: 36.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.px-21 {
  padding-left: 5.375rem;
  padding-right: 4rem;
}

.contact-hero-block .mobile-img {
  display: none;
}
@media (max-width: 1023px) {
  .contact-form .gform_footer {
    display: flex;
    justify-content: center;
  }
  .contact-hero-block .desktop-img {
    display: none;
  }
  .contact-hero-block .mobile-img {
    display: block;
  }
  .contact-hero-block {
    flex-direction: column;
  }
  .contact-hero-block .w-1\/2 {
    width: 100%;
  }
  .contact-hero-block .px-19 {
    padding-left: 29px;
    padding-right: 29px;
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .contact-hero-block {
    height: 100%;
    flex-direction: column-reverse;
  }

  .mm-29 {
    margin-left: 29px;
    margin-right: 29px;
  }
  .contact-feedback {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .heart-feedback {
    padding: 24px !important;
  }
  .heart-faq-cta {
    padding: 24px !important;
    align-items: flex-start !important;
    flex-direction: column;
  }
}

/* FAQ */
.subtopic:hover {
  background-color: #ffddbf !important;
  text-decoration: none;
}

.topic:hover {
  background-color: #fff1e5 !important;
}

.topic.selected:hover {
  background-color: #ffddbf !important;
}

.topic:hover > .subtopic {
  text-decoration: none;
}

.faq .wp-block-separator {
  display: none;
}

.accordion-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  outline: none;
  transition: background 0.3s;
}

.faq-accordion-icon {
  float: right;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

@media (max-width: 1024px) {
  .faq-accordion-icon {
    top: 8px;
    right: -4px;
    width: 12px;
    height: 12px;
  }
  .accordion-item.open .faq-accordion-icon {
    width: 11px;
    height: 11px;
    top: 2px;
    right: -12px;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}

.accordion-item.open .accordion-content {
  max-height: 400px;
  display: block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.25s ease-in-out !important;
}

.accordion-item.open .accordion-content > * {
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
}

.accordion-item.open .faq-accordion-icon {
  transform: rotate(180deg);
}

.accordion-content::after {
  content: "";
  display: block;
  height: 0;
  transition: height 0.3s ease;
}

.accordion-item.open .accordion-content::after {
  margin-bottom: 1.5rem;
}
.faq-content p {
  font-weight: 300px !important;
}

.benefit-slider img {
  border-radius: 8px;
}

@media (max-width: 1000px) {
  .benefit-slide {
    display: none;
  }
  .benefit-accordion {
    display: block;
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}

.benefit-accordion .accordion-item{
  background-color: #faf9f5;
  border-radius: 8px;
  margin-bottom: 8px;
}
.benefit-accordion .accordion-item .item-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500px !important;
  padding: 16px 20px 16px 20px;
  text-align: left;
}
.benefit-accordion .accordion-item .item-description {
  padding: 16px 20px 16px 20px;
  font-size: 16px;
  font-family: "Poppins";
}

.image-shape-divider-mobile .shape-fill {
  fill: #f2f0e7;
}

:root {
  --dynamic-padding: 2rem; /* Initial value */
}

@media (min-width: 768px) {
  .desktop-img {
    height: 371px;
  }
}
@media (max-width: 767px) {
  .image-shape-divider-mobile svg {
    width: calc(300% + 1.3px);
    height: 50px;
  }
}


@media (min-width: 1280px) and (max-width: 1342px) {
  :root {
      --dynamic-padding: calc(2rem + (100vw - 1280px) * 0.5);
  }
  .xl\:px-16.faq-header {
      padding-left: var(--dynamic-padding) !important;
  }
}

.faqs .wp-block-separator,
.faq-accordion .wp-block-separator {
  display: none;
}

/* Work With Us Media Queries */
@media ( max-width: 1023px ) {
  .diversity-section {
    padding: 48px 29px 48px 29px;
  }
  .testimonials {
    padding: 48px 29px 0px 29px;
    margin-bottom: 0px;
  }
}

.video-portion {
  position: relative;
}

.video-portion svg {
  position: absolute;
  /* bottom: 40%;
  left: 42%; */
}

.benefit-accordion .accordion-icon {
  /* background-image: url('https://stl.mqasim.com/wp-content/uploads/2023/10/plus.png'); */
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' id='plus' width='160' height='160'%3E%3Cg data-name='Layer 2'%3E%3Cg data-name='plus'%3E%3Cpath width='24' height='24' opacity='0' d='M80 80h-160v-160h160v160z'/%3E%3Cpath d='M126.467 73.333H86.467V33.333a3.467 3.667 0 0 0 -13.333 0v40H33.333a6.367 3.667 0 0 0 0 13.333h40v40a6.367 4.667 0 0 0 13.333 0V86.667h40a6.367 3.667 0 0 0 0 -13.333z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.benefit-accordion .accordion-item.open .accordion-icon {
  transform: none;
  /* background-image: url('https://wordpress-1106994-4386230.cloudwaysapps.com/wp-content/uploads/2023/10/remove_FILL0_wght600_GRAD200_opsz48-2.svg'); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='remove_FILL0_wght600_GRAD200_opsz48' width='40' height='40' viewBox='0 0 23 23'%3E%3Crect id='Rectangle_1700' data-name='Rectangle 1700' width='40' height='40' fill='none'/%3E%3Cpath id='remove_FILL1_wght400_GRAD0_opsz48' d='M200.86-508.28a.83.83,0,0,1-.613-.249.84.84,0,0,1-.247-.616.823.823,0,0,1,.247-.611.839.839,0,0,1,.613-.244H215.2a.83.83,0,0,1,.613.249.84.84,0,0,1,.247.616.823.823,0,0,1-.247.611.839.839,0,0,1-.613.244Z' transform='translate(-196.527 520.639)'/%3E%3C/svg%3E%0A");
}
.benefit-accordion .accordion-item.open .accordion-content::after {
  margin-bottom: 0px !important;
}
.benefit-accordion .accordion-item .faq-content img{
  border-radius: 0px 0px 8px 8px;
}



.arrow.up {
    top: 3px;
}
.arrow.down {
    top: -3px;
}

@media (max-width: 1024px) {

    .arrow {
        top: 1.75rem !important;
    }
}


.thank-you-heading {
  text-align: center;
  font-size: 2.5rem;
  line-height: 50px;
  font-weight: 500;
  z-index: 2;
}
.thank-you-image-container {
  height: 24rem;
  background-image: url('https://wordpress-1106994-4386230.cloudwaysapps.com/wp-content/uploads/2023/10/Path-2685.png');
  background-repeat: no-repeat;
  background-position: center;
  background-position: 60% 30%;
  background-size: 12%;
}

@media only screen and (max-width: 768px) {
  .thank-you-image-container {
      height: 18rem;
      background-position: 65% 28%;
      background-size: 12%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .thank-you-heading {
      font-size: 2rem !important;
      line-height: 38px !important;
      font-weight: 500;
  }
  .thank-you-image-container {
      background-position: 61% 30%;
      background-size: 12%;
  }
}

.search-container {
  box-shadow: 0px 3px 10px #00000029 !important;
  border-radius: 0 0 12px 12px;
  z-index: 10;
  box-sizing: border-box;
}
.search-filter-result {
  box-shadow: 0px 2px 6px #00000029;
  max-height: 15rem;
  overflow-y: auto;
}
.search-overlay {
  margin-top: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.78);
  z-index: 5; 
  pointer-events: none; 
}

#closeButton, #closeMobileButton {
  margin-top: 0;
  top: 4px;
}

.key_benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.key_benefits .benefit{
  display: flex;
  margin-bottom: 48px;
}
/* .key_benefits .benefit .icon-box {
  flex: 0 25%;
} */
.key_benefits .benefit .icon-box img{
  /* max-width: 40px; */
  width: 80px;
}
.key_benefits .benefit-item {
  flex: 50%;
}
@media (max-width: 500px) {
  .key_benefits .benefit-item {
    flex: 100%;
  }
  .key_benefits .box-body {
    margin-left: 24px !important;
  }
}
.key_benefits .benefit h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 16px;
}

.key_benefits .box-body {
  margin-left: 25px;
  margin-right: 25px;
}
.key_benefits .benefit p {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .faq-accordion{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* .inline-hyperlink a:hover {
  color: #BC2D00;
  text-decoration: underline;
  text-decoration-color: #BC2D00;
  text-decoration-thickness: 2px; 

} */


p a:hover {
  /* color: #BC2D00; */
  text-decoration: underline;
  text-decoration-color: #BC2D00;
  text-decoration-thickness: 2px; 

}

/* .gform_validation_errors, .gform_validation_errors h2 {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding-left: 0px !important;
}

.gform-icon.gform-icon--close {
  display: none !important;
}

.gform_heading {
  margin-bottom: 6px;
  padding: 8px 0;
  color: #132076;
}

.gform_required_legend {
  display: none !important;
}

.gform-body input:hover,
.gform-body select:hover,
.gform-body textarea:hover 
{
  border-width: 2px !important;
  border-color: #132076 !important;
}

h2.gform_submission_error {
  padding-left: 1rem;
  margin: 1.5rem auto 1.5rem;
}



.contact-form .gfield_error input,
.contact-form .gfield_error select,
.contact-form .gfield_error textarea
{
  border: 2px solid #D83907;
}

.gform_validation_error .gfield_required.gfield_required_asterisk {
  color: #D83907;
  margin-left: -3px;
}

.gform_validation_error .gfield_html_formatted {
  display: none;
} */



#menu-button .arrow.up {
  top: 26px;
}

#menu-button .arrow.down {
  top: 18px;
}

@media (max-width:1024px) {
  #menu-button .arrow {
    top: 2.1rem !important;
  }
}



@media (max-width: 1024px) {
  .filter-tag span.text-st-navy-400 {
      display: none;
  }
}
.post-filter div div a {
  font-weight: 500 !important;
  letter-spacing: 0.19px;
}
.term-name:hover {
  text-decoration: underline;
}












.benefit-slider .testimonial-slider .slick-arrow::before {
  background: url("../../images/right-arrow.svg") no-repeat center center;
}



/* Resources Page */

@media (min-width: 768px) {
  .single .article-cta, 
  .single .article-cta .max-w-7xl,
  .single .benefit-slider, 
  .single .benefit-slider .max-w-7xl,
  .single .benefit-accordion, 
  .single .benefit-accordion .max-w-7xl,
  .single .contact-feedback, 
  .single .contact-feedback .max-w-7xl,
  .single .contact-icon-block, 
  .single .contact-icon-block .max-w-7xl,
  .single .contact-options, 
  .single .contact-options .max-w-7xl,
  .single .investment-table, 
  .single .investment-table .max-w-7xl,
  .single #faqs-accordion-wrapper, 
  .single #faqs-accordion-wrapper .max-w-7xl,
  .single .faq, 
  .single .faq .max-w-7xl,
  .single .faqs, 
  .single .faqs .flex,
  .single .team,
  .single .free-resources,
  .single .free-resources .max-w-7xl,
  .single .testimonial-slide, 
  .single .testimonial-slide .max-w-7xl,
  .single .further-reading,
  .single .further-reading .max-w-7xl,
  .single .image-text-block,
  .single .image-text-block .max-w-7xl,
  .single .why-state-trustees,
  .single .why-state-trustees .max-w-7xl,
  .single .why-state-trustees-wills,
  .single .why-state-trustees-wills .max-w-7xl,
  .single .related-downloads,
  .single .related-downloads .max-w-7xl,
  .single .wills-benefit-slider,
  .single .wills-benefit-slider .max-w-7xl,
  .single .post-filter,
  .single .post-filter .max-w-7xl,
  .single .post-filter__form-wrapper,
  .single .post-filter__form-wrapper .max-w-7xl,
  .single .office-location,
  .single .office-location .max-w-7xl,
  .single .will-faq,
  .single .will-faq .max-w-7xl,
  .single .review-slide,
  .single .review-slide .max-w-7xl,
  .single .review-slide .review-slider,
  .single .Testimonial-block,
  .single .number-block,
  .single .video-block,
  .single .image-block,
  .single-resources_post .text-block,
  .single-resources_post .max-w-7xl,
  .page-template-template-sidebar-php .text-block,
  .page-template-template-sidebar-php .max-w-7xl,
  .page-template-template-homebanner-sidebar .text-block,
  .page-template-template-homebanner-sidebar .wayfinder,
  .page-template-template-homebanner-sidebar .key-benefit,
  .page-template-template-homebanner-sidebar .colored-box,
  .page-template-template-homebanner-sidebar .max-w-7xl
  {
    padding-left: 0;
    padding-right: 0;
  }

  .single .post-filter__form-wrapper .desktop-filters {
    margin-right: 1rem;
  }
  .single .related-downloads {
    justify-content: space-evenly;
  }

  .single #faqs-accordion-wrapper .faq-accordion {
    margin-left: 0;
    margin-right: 0;
  }

  .single .faqs .accordion-item,
  .single .faqs .topic,
  .single .faqs .subtopic
  {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .single .faqs .faq-topic ul.topics-list li.topic p,
  .single .faqs .faq-topic ul.topics-list li.subtopic p {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .single .faqs #faqs-section,
  .single .team .team-content,
  .single .will-faq-content {
    padding-right: 0;
  }
  

  .single .faqs .faq-topic,
  .single .team .team-select,
  .single .will-faq-topic {
    padding-left: 0;
  }


  .single .testimonial-slider, .single .testimonial-slide .max-w-7xl .slick-slide.slick-active.slick-active {
    max-height: 60vh;
  }
}

.single p a, .single p a:hover {
  color: #132076;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #132076;
}


h2{
  font-weight: 500 !important;
}






.standard-product-estate {
  padding-top: 72px;
}

.estate-administration .background-cream-heart p {
  font-size: 2rem;
}
.estate-administration .h-key-benefits {
  margin-top: 2rem;
}
.estate-administration .key-benefit {
  padding-top: 42px;
}

.estate-administration .h-how-to-access-this-service {
  padding-bottom: 1.902rem;
}

.t-font-size-16 {
  font-size: 16px !important;
}
.estate-administration .table1-block {
  padding-top: 0px;
  padding-bottom: 58px;
}
.estate-administration .table1-block  ul {
  color: #000000;
  list-style: none;
  margin: 0px;
  padding-bottom: 0px;
}
.estate-administration .table1-block ul li {
  margin-bottom: 0px;
}
.estate-administration .table1-block td {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .h-working-example-fee {
  padding-top: 2rem;
}
.estate-administration #faqs-accordion-wrapper {
  margin-top: 1rem;
  padding-bottom: 72px;
}
.estate-administration #faqs-accordion-wrapper h2 {
  text-align: left;
}
.estate-administration #faqs-accordion-wrapper .faq-accordion {
  margin-top: 48px;
}
.estate-administration .accordion-content p {
  font-size: 16px;
}
.estate-administration .related-download-block {
  padding-top: 42px;
  padding-bottom: 72px;
}
.estate-administration .related-download-block .download-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.estate-administration .h-related-services {
  padding-top: 2rem;
}
.estate-administration .step-by-step-related-service {
  padding-top: 42px;
  padding-bottom: 96px;
}

@media (max-width: 1023px) { 
  .estate-administration p {
    font-size: 24px;
    line-height: 35px;
  }
  .estate-administration .background-cream-heart p {
    font-size: 24px;
  }
  .estate-administration #faqs-accordion-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .single-testimonial {
    margin-bottom: 16px;
    padding-top: 4rem;
  }
  .h-fee-summary {
    padding-bottom: 0px;
  }
  .estate-administration .related-download-block .bg-st-digi-orange-400 {
    padding: 0.5rem;
  }
  .estate-administration .text-block p{
    font-size: 16px;
    line-height: 24px;
  }
  .estate-administration .testimonials-text {
    font-size: 20px !important;
    margin-top: 0px;
  }
}


@media (min-width: 1024px) {
  .estate-administration .background-cream-heart-lg {
    background-size: 730px;
    background-position: left -17rem top 2rem;
  }
  .estate-administration .lg\:w-1\/2 {
    width: 70%;
  }
}

@media (max-width: 1023px ) {
  .testimonial-text-content {
    background-image: url("../../images/testimonial-icons-mob.svg");
    background-repeat: no-repeat;
    background-size: 87px;
    background-position: right bottom;
  }
  .testimonial-slide {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .testimonial-text-content {
    position: unset;
    align-items: flex-start;
    margin-top: 24px;
    height: auto;
  }
  .testimonials-text, .testimonials-name {
    margin-left: 0px;
  }
  .single-testimonial .testimonial-text-content {
    background-position: bottom left !important;
    padding: 0px 0px 10% 10%;
  }
}
/* Estate .estate-administration Styling */
.estate-administration .ea-text.py-9, .estate-administration .ea-text .py-3, .estate-administration .wp-block-heading.py-4,  .estate-administration .article-cta .py-9{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .ea-text {
  padding-top: 42px !important;
  padding-bottom: 72px !important;
}
.estate-administration .ea-text p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.24px;
}
.estate-administration .ea-text ul, .fb-text ul {
  color: #132076;
  font-size: 16px;
  line-height: 24px;
  list-style: disc;
  margin-top: 24px;
  margin-left: 20px;
}

.estate-administration .ea-text ul li, .fb-text ul li  {
  margin-bottom: 24px;
}
.estate-administration .ea-text li:last-child, .fb-text li:last-child {
  margin-bottom: 0px;
}
.estate-administration .article-cta p.lg\:pb-4{ 
  padding-bottom: 0px;
}
.estate-administration .make-an-enquiry {
  margin: 72px 0px 72px 0px;
}
.estate-administration .article-cta .bg-st-digi-orange-400 {
  width: 180px;
  height: 55px;
  padding: 16px 20px 16px 20px;
}
.contact-form .gchoice {
  margin-bottom: 12px;
}
.contact-form .gchoice label {
  margin-left: 10px;
}
.guide-form .disclaimer a {
  color: #132076;
  text-decoration: underline;
}
.contact-form .gfield .disclaimer, .contact-form .f-font-size-xsmall .gfield_description{
  font-size: 80%;
}
@media (max-width: 1023px) {
  .contact-form-mt-0 {
    margin-top: 0px !important;
  }
}
.estate-administration .summary-text {
  padding-top: 42px !important;
  padding-bottom: 58px !important;
}
.estate-administration .summary-text.py-9, .estate-administration .summary-text .py-3{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .learn-fee {
  padding-bottom: 72px;
}
.estate-administration .h-working-example {
  font-size: 24px;
  line-height: 35px;
}
.estate-administration .fee-structure {
  padding-top: 24px !important;
  padding-bottom: 8px !important;
}
.estate-administration .fee-structure p {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .make-will-2 {
  padding-bottom: 72px;
}
.estate-administration .img-block {
  margin-bottom: 72px;
}
.estate-administration .img-block .py-9 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.testimonials-text {
  text-align: left;
  margin-left: 70px;
}
.testimonials-name {
  margin-left: 70px;
}


@media (max-width: 1023px ) {
  .estate-administration .background-cream-heart-lg {
    background-size: 360px;
    background-position: left -7rem top 42vh;
  }
  .estate-administration .img-block .md\:w-1\/2 {
    width: 100%;
  }
  .estate-administration .img-block .md\:flex {
    flex-direction: column-reverse;
  }
  .estate-administration .px-7 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .testimonials-text, .testimonials-name {
    margin-left: 0px;
  }

  .estate-administration .ea-text {
    padding-bottom: 48px !important;
    padding-top: 24px !important;
  }
  .estate-administration .key-benefit {
    padding-top: 24px;
  }
  .key_benefits {
    margin-bottom: 0px;
  }
  .estate-administration .ea-text p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.19px;
  }
  .estate-administration .make-an-enquiry {
    margin-top: 48px;
    margin-bottom: 32px;
  }
  .estate-administration .summary-text {
    padding-top: 24px !important;
    padding-bottom: 38px !important;
  }
  .estate-administration .table1-block {
    padding-bottom: 48px;
  }
  .estate-administration .learn-fee {
    padding-bottom: 48px;
  }
  .estate-administration #faqs-accordion-wrapper .faq-accordion {
    margin-top: 32px;
  }
  .estate-administration #faqs-accordion-wrapper, .estate-administration .make-will-2 {
    padding-bottom: 48px;
  }
  .estate-administration .img-block {
    margin-bottom: 48px;
  }
  .estate-administration .related-download-block {
    padding-top: 32px;
    padding-bottom: 30px;
  }
  .estate-administration .related-download-block .gap-4, .estate-administration .step-by-step-related-service .gap-4 {
    gap: 30px;
  }
  .estate-administration .step-by-step-related-service {
    padding-top: 32px;
  }
}

.key_benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.key_benefits .benefit{
  display: flex;
  margin-bottom: 48px;
}
/* .key_benefits .benefit .icon-box {
  flex: 0 25%;
} */

.key_benefits .benefit-item {
  flex: 50%;
}
@media (max-width: 500px) {
  .key_benefits .benefit-item {
    flex: 100%;
  }
  .key_benefits .box-body {
    margin-left: 24px !important;
  }
}
.key_benefits .benefit h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  padding: 0px !important;
}

.key_benefits .box-body {
  margin-left: 25px;
  margin-right: 25px;
}
.key_benefits .benefit p {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .faq-accordion{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.standard-product-estate {
  padding-top: 72px;
}

.estate-administration .background-cream-heart p {
  font-size: 2rem;
}
.estate-administration .h-key-benefits {
  margin-top: 2rem;
}
.estate-administration .key-benefit {
  padding-top: 42px;
}

.estate-administration .h-how-to-access-this-service {
  padding-bottom: 1.902rem;
}

.t-font-size-16 {
  font-size: 16px !important;
}
.estate-administration .table1-block {
  padding-top: 0px;
  padding-bottom: 58px;
}
.estate-administration .table1-block  ul {
  color: #000000;
  list-style: none;
  margin: 0px;
  padding-bottom: 0px;
}
.estate-administration .table1-block ul li {
  margin-bottom: 0px;
}
.estate-administration .table1-block td {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .h-working-example-fee {
  padding-top: 2rem;
}
.estate-administration #faqs-accordion-wrapper {
  margin-top: 1rem;
  padding-bottom: 72px;
}
.estate-administration #faqs-accordion-wrapper h2 {
  text-align: left;
}
.estate-administration #faqs-accordion-wrapper .faq-accordion {
  margin-top: 48px;
}
.estate-administration .accordion-content p {
  font-size: 16px;
}
.estate-administration .related-download-block {
  padding-top: 42px;
  padding-bottom: 72px;
}
.estate-administration .related-download-block .download-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.estate-administration .h-related-services {
  padding-top: 2rem;
}
.estate-administration .step-by-step-related-service {
  padding-top: 42px;
  padding-bottom: 96px;
}

@media (max-width: 1023px) { 
  .estate-administration p {
    font-size: 24px;
    line-height: 35px;
  }
  .estate-administration .background-cream-heart p {
    font-size: 24px;
  }
  .estate-administration #faqs-accordion-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .single-testimonial {
    margin-bottom: 16px;
    padding-top: 4rem;
  }
  .h-fee-summary {
    padding-bottom: 0px;
  }
  .estate-administration .related-download-block .bg-st-digi-orange-400 {
    padding: 0.5rem;
  }
  .estate-administration .text-block p{
    font-size: 16px;
    line-height: 24px;
  }
  .estate-administration .testimonials-text {
    font-size: 20px !important;
    margin-top: 0px;
  }
}


@media (min-width: 1024px) {
  .estate-administration .background-cream-heart-lg {
    background-size: 730px;
    background-position: left -17rem top 2rem;
  }
  .estate-administration .lg\:w-1\/2 {
    width: 70%;
  }
}
/* Estate .estate-administration Styling */
.estate-administration .ea-text.py-9, .estate-administration .ea-text .py-3, .estate-administration .wp-block-heading.py-4,  .estate-administration .article-cta .py-9{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .ea-text {
  padding-top: 42px !important;
  padding-bottom: 72px !important;
}
.estate-administration .ea-text p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.24px;
}
.estate-administration .ea-text ul {
  color: #132076;
  font-size: 16px;
  line-height: 24px;
  list-style: disc;
  margin-top: 24px;
  margin-left: 20px;
}

.estate-administration .ea-text ul li {
  margin-bottom: 24px;
}
.estate-administration .ea-text li:last-child {
  margin-bottom: 0px;
}
.estate-administration .article-cta p.lg\:pb-4{ 
  padding-bottom: 0px;
}
.estate-administration .make-an-enquiry {
  margin: 72px 0px 72px 0px;
}
.estate-administration .article-cta .bg-st-digi-orange-400 {
  width: 180px;
  height: 55px;
  padding: 16px 20px 16px 20px;
}
.estate-administration .summary-text {
  padding-top: 42px !important;
  padding-bottom: 58px !important;
}
.estate-administration .summary-text.py-9, .estate-administration .summary-text .py-3{
  padding-top: 0px;
  padding-bottom: 0px;
}
.estate-administration .learn-fee {
  padding-bottom: 72px;
}
.estate-administration .h-working-example {
  font-size: 24px;
  line-height: 35px;
}
.estate-administration .fee-structure {
  padding-top: 24px !important;
  padding-bottom: 8px !important;
}
.estate-administration .fee-structure p {
  font-size: 16px;
  line-height: 24px;
}
.estate-administration .make-will-2 {
  padding-bottom: 72px;
}
.estate-administration .img-block {
  margin-bottom: 72px;
}
.estate-administration .img-block .py-9 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.testimonials-text {
  text-align: left;
  margin-left: 70px;
}
.testimonials-name {
  margin-left: 70px;
}


@media (max-width: 1023px ) {
  .testimonial-text-content {
    background-image: url("../../images/testimonial-icons-mob.svg");
    background-repeat: no-repeat;
    background-size: 87px;
    background-position: right bottom;
  }
  .estate-administration .background-cream-heart-lg {
    background-size: 360px;
    background-position: left -7rem top 42vh;
  }
  .estate-administration .img-block .md\:w-1\/2 {
    width: 100%;
  }
  .estate-administration .img-block .md\:flex {
    flex-direction: column-reverse;
  }
  .estate-administration .px-7 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .testimonials-text, .testimonials-name {
    margin-left: 0px;
  }

  .estate-administration .ea-text {
    padding-bottom: 48px !important;
    padding-top: 24px !important;
  }
  .estate-administration .key-benefit {
    padding-top: 24px;
  }
  .key_benefits {
    margin-bottom: 0px;
  }
  .estate-administration .ea-text p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.19px;
  }
  .estate-administration .make-an-enquiry {
    margin-top: 48px;
    margin-bottom: 32px;
  }
  .estate-administration .summary-text {
    padding-top: 24px !important;
    padding-bottom: 38px !important;
  }
  .estate-administration .table1-block {
    padding-bottom: 48px;
  }
  .estate-administration .learn-fee {
    padding-bottom: 48px;
  }
  .estate-administration #faqs-accordion-wrapper .faq-accordion {
    margin-top: 32px;
  }
  .estate-administration #faqs-accordion-wrapper, .estate-administration .make-will-2 {
    padding-bottom: 48px;
  }
  .estate-administration .img-block {
    margin-bottom: 48px;
  }
  .estate-administration .related-download-block {
    padding-top: 32px;
    padding-bottom: 30px;
  }
  .estate-administration .related-download-block .gap-4, .estate-administration .step-by-step-related-service .gap-4 {
    gap: 30px;
  }
  .estate-administration .step-by-step-related-service {
    padding-top: 32px;
  }
  .single-testimonial .testimonial-text-content p {
      font-size: 16px;
      line-height: 24px;
  }
}




/* Customize */
.nested-decimal {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
.nested-decimal > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
.nested-decimal > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
.nested-decimal > li ol{
counter-reset: item;
  list-style-type: none;
}
.nested-decimal > li ol > li{
display:block;
position:relative;
}
.nested-decimal li ol > li:before {
  content: counters(item, ".") ;
  counter-increment: item;
  position: absolute;
  top: 0.5rem;
  left: -25px;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  /* line-height: 25px; */
}
.nested-decimal > li > ol > li > ol > li > ol > li:before {
 content: "(" counter(item, lower-alpha) ")";
  counter-increment: item;
  margin-right: 0.5em;
}
.nested-decimal > li > ol > li > ol > li > ol > li > ol > li:before{
 content: "(" counter(item, lower-roman) ")";
  counter-increment: item;
  margin-right: 0.5em;
}
.nested-decimal > li > ol > ol > ol{
list-style-type: decimal;
}


body > main > div.py-12.lg\:py-20.bg-st-natural-300 > div > div > div > img {
max-height: 93px !important;
height: 93px !important;
width:150px !important;
}

#gform_1_validation_container > div {
padding: 0px !important;
border: 0px !important;
text-align: left;
margin-top: 20px !important;
font-size: 15px !important;
font-weight: normal;
}

.contact-form .gfield_html_formatted {
font-size: 14px;
font-weight: 500;
}

h2 {
color: #132076;
}

body.page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
max-width: 72rem;
}

.faqs-accordion .divider.border-b {
border: 1px solid #FFDDBF;
}

.page-id-1094 main .max-w-2xl {
min-height: 100vh;
}

svg.ml-2.w-8 {
margin-left: 6px !important;
}


#mobile-notif p {
	text-align: left !important;
}

span a, p a {
	text-decoration: underline;
  color: #132076;
}

.post-filter span a {
	text-decoration: none;
}

h2 {
	font-size: 32px;
	padding-top: 0;
	padding-left: 0px;
	padding-right: 0px;
}
h3 {
	font-size: 24px;
	padding-top: 0;
	padding-left: 0px;
	padding-right: 0px;
}
h4 {
	font-size: 20px;
	padding-top: 0;
	padding-left: 0px;
	padding-right: 0px;
}

.testimonial-slide .relative .mb-6.text-xl.mr-2 {
	margin-right: 2rem;
}
/* Customize ends */



/* GUIDE FOM styling */

.guide-form .text-block ul {
  list-style: disc;
  margin-top: 20px;
  margin-left: 20px;
}
.guide-form .text-block {
  flex-direction: column;
}
@media (max-width: 1023px ) {
  .guide-form .text-block { 
    margin-top: 30px;
  }
}


span a, p a {
	text-decoration: underline;
  color: #132076;
}

ul {
	list-style: disc;
}

ol {
	list-style: numbers;
}
.wills-faq-block ul {
	list-style: none;
}




/*
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************                                    
                                                           Resource Post Filter and Document Post filter
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
*/

input.keyword-search:hover {
  border: 2px solid #59629D;
  border-radius: 8px;
  box-shadow: none;
  -webkit-appearance: none;
}

input.keyword-search:focus {
  border: 2px solid #132076;
  border-radius: 8px;
  box-shadow: none;
  -webkit-appearance: none;
}

input.keyword-search:active {
  border: 2px solid #132076;
  border-radius: 8px;
  box-shadow: none;
  -webkit-appearance: none;
}

#filter-modal {
    height: auto !important;
    overflow-y: auto !important;
    z-index: 111;
    padding-bottom: 12rem !important;

}
.body-no-scroll {
    overflow-y: hidden !important;
}

#close_modal {
    position: absolute;
    right: 0;
    z-index: 1000;
}
.post-filter h2.wp-block-heading {
    font-size: 18px !important;
}

.post-filter h3.wp-block-heading {
    font-size: 16px !important;
}

@media (max-width: 768) {
  .post-filter__form-wrapper {
      position: fixed; 
      top: 0; 
      left: 0;
      right: 0;
      bottom: 0; 
      overflow-y: scroll;
      z-index: 1000; 
      background: white; 
      padding-top: 100px
  }
}





/*
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************                                    
                                                                          Contact Form
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
*/
.contact-form .gfield_label {
  color: rgb(19 32 118);
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 500 !important;
}

.contact-form .gfield_error .gfield_label{
  color: #132076 !important;
}

.contact-form .gfield_error .gfield_required_asterisk {
  color: #D83907 !important;
}

/* .gfield_description.validation_message.gfield_validation_message {
  padding: 8px 0 0 0;
  margin-top: 0;
  margin-bottom: 8px;
  border: none;
  background-color: transparent;
} */
.gfield_description.validation_message.gfield_validation_message {
  padding: 8px 0 0 0 !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  border: none !important;
  background-color: transparent !important;
}

.contact-form .gfield_error label,
.contact-form .gform_submission_error {
  color: rgb(19 32 118);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 2px solid #c4c2bb;
  border-radius: 5px;
}

/* Hover styles for inputs, selects, and textareas */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border: 2px solid #59629D;
  outline: none !important;
  box-shadow: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  /* border: 2px solid #132076; */
  outline: none !important;
  box-shadow: none;
  -webkit-appearance: none;
}

.contact-form input:active,
.contact-form select:active,
.contact-form textarea:active {
  border: 2px solid #132076;
  outline: none !important;
  box-shadow: none;
  -webkit-appearance: none;
}

/* Focus and hover styles for inputs, selects, and textareas with errors */
.contact-form .gfield_error input,
.contact-form .gfield_error select,
.contact-form .gfield_error textarea,
.contact-form .gfield_error input:hover,
.contact-form .gfield_error select:hover,
.contact-form .gfield_error textarea:hover,
.contact-form .gfield_error input:focus,
.contact-form .gfield_error select:focus,
.contact-form .gfield_error textarea:focus {
  border: 2px solid #D83907 !important;
  outline: none !important;
  -webkit-appearance: none !important;
  box-shadow: none;
}

.contact-form .gform_validation_error .field_sublabel_below.required {
  display: none;
}

/* Styles for validation errors and submission errors */
.contact-form .gform_submission_error,
.gform_validation_errors, .gform_validation_errors h2 {
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.gfield_required_asterisk {
  color: #132076 !important;
}

/* Styles for the close icon */
.gform-icon.gform-icon--close {
  display: none !important;
}

/* Styles for form headings and required legends */
.gform_heading {
  margin-bottom: 6px;
  padding: 8px 0;
  color: #132076;
}

.gform_required_legend {
  display: none !important;
}

/* Styles for the submit button */
.contact-form input[type="submit"] {
  color: #ffffff;
  background-color: #d83907 !important;
  width: 172px;
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  border: none !important;
  height: 55px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
}

.contact-form .gfield_html_formatted {
  font-size: 14px;
  font-weight: 500;
}







/*
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************                                    
                                                                          Misc
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
*/



details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}


.intro-highlight {
	font-weight: 500;
}

@media (max-width: 768px) {
	.what-we-do a {
		margin: 0;
}
}


#step-by-step img {
  max-height: 56px;
  transform: scale(1.2);
}

@media screen and (max-width: 1025px) {
  .page-id-2 #step-by-step > div > div > div > img {
    width: auto !important;
    transform: scale(1);
  }
}




ul.nav-main {
	list-style: none;
}


@media (max-width: 768px) {
	
	ul.nav-main li a {
		font-weight: 300 !important;
	}
}

#overview #faqs-accordion-wrapper .faq-accordion {
	margin-left: 0;
	margin-right: 0;
}


.search-filter-result ul {
	list-style: none;
}


body.page-id-3 main {
	padding: 2rem 8rem !important;
}

.contact-form .gfield_required {
	margin-left: 0;
	left: 0;
}

.gform_legacy_markup_wrapper li.gfield.gfield_error, .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent;
	border-bottom: none;
	border-top: none;
}

.validation_message.gfield_validation_message {
	font-size: 16px;
	font-weight: 400;
	color: #c02b0a;
}

.gform_legacy_markup_wrapper div.validation_error {
  padding: 0px !important;
  border: 0px !important;
  text-align: left;
  margin-top: 20px !important;
  font-size: 15px !important;
  font-weight: normal;
	color: #c02b0a
}

.gform_legacy_markup_wrapper li.gfield.gfield_error, .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	padding-bottom: 0;
	padding-top: 0;
}

/* .gform_wrapper.gravity-theme .validation_error {
	color: #c02b0a;
	font-size: 1rem;
	padding: 8px 0 0;
	margin-bottom: 0;
	text-align: start;
	border: none;
} */
.gform_wrapper.gravity-theme .validation_error {
  border-top: none !important;
  border-bottom: none !important;
  padding: 16px 0 !important;
  text-align: start !important;
  margin-bottom: 0 !important;
}



.will-poa {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#form_section .will-poa_wrapper .gform_heading {
  margin-bottom: 0 !important;
}



p a,
p em a,
p a span,
p span a {
  font-weight: 500 !important;
}

p a:hover, 
p em a:hover, 
p a span:hover,
p span a:hover {
        color: #132076 !important;
        text-decoration-color: #BC2D00 !important;
}



/*
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************                                    
                                                                          Wills Header
******************************************************************************************************************************************************************  
******************************************************************************************************************************************************************
******************************************************************************************************************************************************************  
*/
.card-container {
  /* overflow: hidden; */
  position: relative; /* Needed for absolute positioning of shadows */
  border-radius: 18px;
}

.card-2 {
  position: relative;
  /* border-radius: 18px; */
/* padding: 12px; */
  /* Other styles for your card */
}

@media (max-width: 1024px) {
  .desktop-footer-column {
      display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.testimonial-slider .testimonial-text-content {
		padding-left: 2rem;
		background-position: 0;
  }
    .free-resources .relative figure img {
          min-height: 300px !important;
  }
}
@media (min-width: 1024px) {
   .mobile-footer-column {
      display: none;
  }
  .background-footer {
    background-size: 750px;
    background-position: right -55% bottom -50px
  }
}
@media (min-width: 1440px) {

  .background-footer {
    background-size: 1000px;
    background-position: right -55% bottom -50px;
  }
}




@media (min-width: 600px) and (max-width: 768px) {
  .review-slider .slick-prev {
    top: 22rem !important;
    left: 18rem !important;
  }


  .review-slider .slick-next {
      top: 21.5rem;
      left: 20rem;
    }
  }



.text-block li {
	margin-left: 1.5rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.page-template-template-sidebar .image-block-item {
		padding: 0;
	}
  .single-testimonial .testimonial-text-content {
    background-image: url(../../images/single-testimonial-shape.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 286px;
    height: 286px;
    left: 0;
    position: relative;
    top:0 !important;
  }
}


@media (min-width: 768px) {
  .postid-1899 .wayfinder {
          padding-left: 0;
  }
  .single-testimonial .testimonial-text-content {
      top: 11rem;
  }
}
@media (max-width: 1024px) {
  .mobile-wills-plans-section {
    padding-bottom: 2.5rem;
  }
}

 @media only screen and (max-device-width: 768px){
    .full-width-testimonial-text-content{
      background-size: 87px!important;
      height: auto !important;
      left: 0px!important;
      background-position: bottom right !important;
    }
    .full-width-testimonial-text-content .testimonials-text{
      margin-top: 1.5rem!important;
      margin-left: 0rem!important;
      font-size: 20px;
    }
    .full-width-testimonial-text-content .testimonials-name{
      margin-left: 0rem!important;
    }
    .full-width-layout{
      height: 20rem!important;
    }

    .single-testimonial .testimonial-text-content{
        background-image: url("../../images/single-testimonial-shape.svg");
        background-repeat: no-repeat;
        background-position: bottom left !important;
        background-size: 200px;
        height: 286px;
        padding:0px 0px 10% 10%;
        left: 0;
        top:0;
    }
    
 .home-intro img {
      width: 340px !important;
  }
  .hide-mobile {
    display: none !important;
  }
  .sidebar-review-slider .slick-slide, .review-slider .slick-slide {
    margin-left: 12px;
    margin-right: 12px;
  }
  .slider-single img {
    aspect-ratio: 6/5;
  }
}

.text-st-digi-orange-500 {
  font-weight: 500;
}

.text-st-navy-400 {
  font-weight: 500;
}

.absolute-bottom{
  position: absolute;
  bottom: -50;

}

.height-100{
  height: 100% !important;
}

.bg-st-digi-orange-400{
  font-weight: 500 !important;
}


#results .search-results a.group > span {
  font-weight: 500 !important;
}


@media (min-width: 1600px){
  .\32xl\:pl-44{
    padding-left: 8rem;
  }

}

.header-menu-dropdown{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}


/* Hover effect */
input[name="products_services[]"]:hover {
  border-width: 4px; /* Change the background color on hover */
  /* Add any other hover styles you need */
}

.bordered:hover{
  border: 2px solid #D83907;
}

@media (min-width: 640px) {
  
  #filter-modal .mb-6 > .sm\:w-full{
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .md\:media-height {
    height: 187px;
  }
  @media (min-width: 768px) {
  .md\:media-height {
    height: 370px;
  }
  }
  @media (min-width: 1024px) {

  .md\:media-height {
    height: 428px;
  }
  }
  .md\:text-h1 {
    font-size: 2.5rem;
    line-height: 1;
  }
  .md\:text-h2 {
    font-size: 2rem;
  }
  .md\:text-h3 {
    font-size: 1.5rem;
  }
  .md\:w-video {
    width: 680px;
  }
  
  #filter-modal .mb-6 > .md\:w-full{
    height: 100vh;
  }

  @media (max-width: 1023px) {
     {
      background-size: 301px;
      background-position: left -91px bottom -38px;
      padding-left: 2rem;
      padding-right: 2rem;
      overflow: scroll;
      height: 100%;
      /* transition: all ease-out 0.6s; */
      transition: all ease-out 0.3s;
    }
    .md\:hidden#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh !important;
      height: 0;
    }
     {
      box-sizing: border-box;
    }
  }
}

@media (min-width: 1024px) {

  .lg\:aspect-none {
    position: static;
    padding-bottom: 0;
  }

  .lg\:aspect-none > * {
    position: static;
    height: auto;
    width: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .lg\:mr-16 {
    margin-right: 4rem;
  }
  .lg\:media-height {
    height: 187px;
  }
  @media (min-width: 768px) {
  .lg\:media-height {
    height: 370px;
  }
  }
  @media (min-width: 1024px) {

  .lg\:media-height {
    height: 428px;
  }
  }
  .lg\:text-h1 {
    font-size: 2.5rem;
    line-height: 1;
  }
  .lg\:text-h2 {
    font-size: 2rem;
  }
  .lg\:text-h3 {
    font-size: 1.5rem;
  }
  .lg\:w-video {
    width: 680px;
  }
  #filter-modal .lg\:mb-6,
  #filter-modal .lg\:mb-6 > .w-full{
    height: 100vh;
  }
  
  #filter-modal .mb-6 > .lg\:w-full{
    height: 100vh;
  }
  .lg\:border-1{
    border-width: 1px;
  }

  @media (max-width: 1023px) {
     {
      background-size: 301px;
      background-position: left -91px bottom -38px;
      padding-left: 2rem;
      padding-right: 2rem;
      overflow: scroll;
      height: 100%;
      /* transition: all ease-out 0.6s; */
      transition: all ease-out 0.3s;
    }
    .lg\:hidden#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh !important;
      height: 0;
    }
     {
      box-sizing: border-box;
    }
  }
}

@media (min-width: 1280px) {

  .xl\:container {
    width: 100%;
  }

  @media (min-width: 640px) {

    .xl\:container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {

    .xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {

    .xl\:container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {

    .xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1600px) {

    .xl\:container {
      max-width: 1600px;
    }
  }
}

@media (min-width: 1600px) {

  .\32xl\:container {
    width: 100%;
  }

  @media (min-width: 640px) {

    .\32xl\:container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {

    .\32xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {

    .\32xl\:container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {

    .\32xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1600px) {

    .\32xl\:container {
      max-width: 1600px;
    }
  }
}

@media (max-width: 1023px) {
     {
      background-size: 301px;
      background-position: left -91px bottom -38px;
      padding-left: 2rem;
      padding-right: 2rem;
      overflow: scroll;
      height: 100%;
      /* transition: all ease-out 0.6s; */
      transition: all ease-out 0.3s;
    }
    .\[\&\[x-cloak\]\]\:hidden[x-cloak]#nav-buttons {
      display: block;
      min-height: 0;
      padding-bottom: 0vh !important;
      height: 0;
    }
     {
      box-sizing: border-box;
    }
  }

.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}

.hover\:bg-\[\#d44335\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(212 67 53 / var(--tw-bg-opacity));
}

.hover\:bg-st-digi-orange-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(216 57 7 / var(--tw-bg-opacity));
}

.hover\:bg-st-digi-orange-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(188 45 0 / var(--tw-bg-opacity));
}

.hover\:bg-st-peach-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 229 / var(--tw-bg-opacity));
}

.hover\:fill-black:hover {
  fill: #000;
}

.hover\:fill-white:hover {
  fill: #fff;
}

.hover\:pr-1:hover {
  padding-right: 0.25rem;
}

.hover\:font-semibold:hover {
  font-weight: 600;
}

.hover\:hover\:text-white:hover:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:text-st-digi-orange-400:hover {
  --tw-text-opacity: 1;
  color: rgb(216 57 7 / var(--tw-text-opacity));
}

.hover\:text-st-navy-200:hover {
  --tw-text-opacity: 1;
  color: rgb(89 98 157 / var(--tw-text-opacity));
}

.hover\:text-st-navy-400:hover {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}

.hover\:text-st-orange-400:hover {
  --tw-text-opacity: 1;
  color: rgb(243 109 53 / var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.focus\:rounded-none:focus {
  border-radius: 0px;
}

.group:first-of-type .group-first-of-type\:order-first {
  order: -9999;
}

.group:first-of-type .group-first-of-type\:h-auto {
  height: auto;
}

.group:first-of-type .group-first-of-type\:w-auto {
  width: auto;
}

.group:first-of-type .group-first-of-type\:flex-initial {
  flex: 0 1 auto;
}

.group:first-of-type .group-first-of-type\:justify-start {
  justify-content: flex-start;
}

.group\/link:hover .group-hover\/link\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity));
}

.group:hover .group-hover\:bg-green-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:fill-st-orange-400 {
  fill: #F36D35;
}

.group:hover .group-hover\:fill-white {
  fill: #fff;
}

.group:hover .group-hover\:text-st-navy-400 {
  --tw-text-opacity: 1;
  color: rgb(19 32 118 / var(--tw-text-opacity));
}

@media (min-width: 640px) {

  .sm\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:max-w-\[466px\] {
    max-width: 466px;
  }

  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:right-5 {
    right: 1.25rem;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:top-16 {
    top: 4rem;
  }

  .md\:top-24 {
    top: 6rem;
  }

  .md\:order-last {
    order: 9999;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .md\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mr-4 {
    margin-right: 1rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-1 {
    margin-top: 0.25rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-44 {
    height: 11rem;
  }

  .md\:h-56 {
    height: 14rem;
  }

  .md\:h-72 {
    height: 18rem;
  }

  .md\:h-\[245px\] {
    height: 245px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-10\/12 {
    width: 83.333333%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-4\/6 {
    width: 66.666667%;
  }

  .md\:w-7\/12 {
    width: 58.333333%;
  }

  .md\:w-9\/12 {
    width: 75%;
  }

  .md\:w-96 {
    width: 24rem;
  }

  .md\:w-\[22rem\] {
    width: 22rem;
  }

  .md\:w-\[48rem\] {
    width: 48rem;
  }

  .md\:w-\[52rem\] {
    width: 52rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:flex-auto {
    flex: 1 1 auto;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

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

  .md\:items-baseline {
    align-items: baseline;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:gap-36 {
    gap: 9rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }

  .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .md\:rounded-md {
    border-radius: 0.375rem;
  }

  .md\:rounded-l-lg {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .md\:rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0px;
  }

  .md\:bg-right {
    background-position: right;
  }

  .md\:object-contain {
    -o-object-fit: contain;
       object-fit: contain;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pl-0 {
    padding-left: 0px;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pl-3 {
    padding-left: 0.75rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pl-6 {
    padding-left: 1.5rem;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

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

  .md\:text-center {
    text-align: center;
  }

  .md\:text-start {
    text-align: start;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:font-medium {
    font-weight: 500;
  }

  .md\:font-normal {
    font-weight: 400;
  }

  .md\:text-black-400 {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }

  @media (min-width: 1024px) {

    .md\:lg\:h-72 {
      height: 18rem;
    }
  }
}

@media (min-width: 1024px) {

  .lg\:static {
    position: static;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:left-1\/2 {
    left: 50%;
  }

  .lg\:left-64 {
    left: 16rem;
  }

  .lg\:left-\[-8rem\] {
    left: -8rem;
  }

  .lg\:right-0 {
    right: 0px;
  }

  .lg\:top-0 {
    top: 0px;
  }

  .lg\:top-12 {
    top: 3rem;
  }

  .lg\:top-28 {
    top: 7rem;
  }

  .lg\:top-48 {
    top: 12rem;
  }

  .lg\:top-52 {
    top: 13rem;
  }

  .lg\:top-8 {
    top: 2rem;
  }

  .lg\:top-full {
    top: 100%;
  }

  .lg\:z-10 {
    z-index: 10;
  }

  .lg\:order-last {
    order: 9999;
  }

  .lg\:order-none {
    order: 0;
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .lg\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:ml-2 {
    margin-left: 0.5rem;
  }

  .lg\:mr-16 {
    margin-right: 4rem;
  }

  .lg\:mr-2 {
    margin-right: 0.5rem;
  }

  .lg\:mr-2\.5 {
    margin-right: 0.625rem;
  }

  .lg\:mr-24 {
    margin-right: 6rem;
  }

  .lg\:mr-4 {
    margin-right: 1rem;
  }

  .lg\:mr-8 {
    margin-right: 2rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .lg\:mt-8 {
    margin-top: 2rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:h-32 {
    height: 8rem;
  }

  .lg\:h-40 {
    height: 10rem;
  }

  .lg\:h-52 {
    height: 13rem;
  }

  .lg\:h-72 {
    height: 18rem;
  }

  .lg\:h-96 {
    height: 24rem;
  }

  .lg\:h-\[23\.4rem\] {
    height: 23.4rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:min-h-0 {
    min-height: 0px;
  }

  .lg\:min-h-\[412px\] {
    min-height: 412px;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-12 {
    width: 3rem;
  }

  .lg\:w-16 {
    width: 4rem;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-36 {
    width: 9rem;
  }

  .lg\:w-4\/6 {
    width: 66.666667%;
  }

  .lg\:w-44 {
    width: 11rem;
  }

  .lg\:w-80 {
    width: 20rem;
  }

  .lg\:w-96 {
    width: 24rem;
  }

  .lg\:w-\[52rem\] {
    width: 52rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:min-w-\[466px\] {
    min-width: 466px;
  }

  .lg\:max-w-6xl {
    max-width: 72rem;
  }

  .lg\:max-w-md {
    max-width: 28rem;
  }

  .lg\:flex-auto {
    flex: 1 1 auto;
  }

  .lg\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-flow-col {
    grid-auto-flow: column;
  }

  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

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

  .lg\:items-stretch {
    align-items: stretch;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-28 {
    gap: 7rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-48 {
    gap: 12rem;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:gap-64 {
    gap: 16rem;
  }

  .lg\:gap-x-1 {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .lg\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .lg\:gap-x-20 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .lg\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .lg\:rounded-lg {
    border-radius: 0.5rem;
  }

  .lg\:rounded-none {
    border-radius: 0px;
  }

  .lg\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0px;
  }

  .lg\:border-0 {
    border-width: 0px;
  }

  .lg\:bg-st-natural-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 249 245 / var(--tw-bg-opacity));
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .lg\:bg-left {
    background-position: left;
  }

  .lg\:bg-right {
    background-position: right;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .lg\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pl-3 {
    padding-left: 0.75rem;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem;
  }

  .lg\:pl-7 {
    padding-left: 1.75rem;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:pr-2 {
    padding-right: 0.5rem;
  }

  .lg\:pr-4 {
    padding-right: 1rem;
  }

  .lg\:pr-8 {
    padding-right: 2rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-12 {
    padding-top: 3rem;
  }

  .lg\:pt-16 {
    padding-top: 4rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

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

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:font-medium {
    font-weight: 500;
  }

  .lg\:font-normal {
    font-weight: 400;
  }

  .lg\:text-black-400 {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }

  .lg\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:first-of-type\:row-span-3:first-of-type {
    grid-row: span 3 / span 3;
  }

  .group:first-of-type .lg\:group-first-of-type\:block {
    display: block;
  }

  .group:first-of-type .lg\:group-first-of-type\:flex-col {
    flex-direction: column;
  }
}

@media (min-width: 1280px) {

  .xl\:absolute {
    position: absolute;
  }

  .xl\:top-12 {
    top: 3rem;
  }

  .xl\:top-8 {
    top: 2rem;
  }

  .xl\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:mb-0 {
    margin-bottom: 0px;
  }

  .xl\:mr-14 {
    margin-right: 3.5rem;
  }

  .xl\:gap-64 {
    gap: 16rem;
  }

  .xl\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xl\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xl\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:pl-1 {
    padding-left: 0.25rem;
  }

  .xl\:pl-16 {
    padding-left: 4rem;
  }

  .xl\:pl-2 {
    padding-left: 0.5rem;
  }

  .xl\:pl-8 {
    padding-left: 2rem;
  }

  .xl\:pl-9 {
    padding-left: 2.25rem;
  }

  .xl\:pr-8 {
    padding-right: 2rem;
  }

  .xl\:pt-0 {
    padding-top: 0px;
  }

  .xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1600px) {

  .\32xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .\32xl\:w-1\/3 {
    width: 33.333333%;
  }

  .\32xl\:max-w-3xl {
    max-width: 48rem;
  }

  .\32xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .\32xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .\32xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .\32xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .\32xl\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .\32xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .\32xl\:pl-44 {
    padding-left: 11rem;
  }

  .\32xl\:pl-6 {
    padding-left: 1.5rem;
  }

  .\32xl\:pl-8 {
    padding-left: 2rem;
  }
}

.\[\&\[x-cloak\]\]\:hidden[x-cloak] {
  display: none;
}
