/*-----------------------------------------------------------------------
   Fonts
-----------------------------------------------------------------------*/

@import url("https://use.typekit.net/ehc1zpn.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*-----------------------------------------------------------------------
   Variables
-----------------------------------------------------------------------*/

:root {
   --admin-height: 32px;
   --header-height: 115px;
   --notice-height: 0px;

   --font-primary: "Poppins", sans-serif;
   --font-secondary: "orpheuspro", serif;

   --blue: #03428e;
   --blue-rgb: 3, 66, 142;

   --cream: #faf8f6;
   --cream-rgb: 250, 248, 246;

   --dark-blue: #00152f;
   --dark-blue-rgb: 0, 21, 47;

   --yellow: #ffcb05;
   --yellow-rgb: 255, 203, 5;

   --white: #ffffff;
   --white-rgb: 255, 255, 255;

   --grey: #aaaaaa;
   --grey-rgb: 170, 170, 170;

   --black: #000000;
   --black-rgb: 0, 0, 0;

   --red: #ff1414;
   --red-rgb: 255, 20, 20;

   --border-radius-sm: 5px;
   --border-radius-md: 15px;
   --border-radius-lg: 43px;

   --container-xs: 620px;
   --container-sm: 880px;
   --container-md: 1040px;
   --container-lg: 1320px;

   --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);

   --transition: 0.25s ease;
}

/* Responsive */

@media (max-width: 782px) {
   :root {
      --admin-height: 46px;
   }
}

@media (max-width: 920px) {
   :root {
      --header-height: 80px;
   }
}

/*-----------------------------------------------------------------------
   Base
-----------------------------------------------------------------------*/

.twc-theme *,
.twc-theme *:before,
.twc-theme *:after {
   box-sizing: border-box;
   margin: 0;
}

.twc-theme * {
   scroll-margin-top: calc(var(--header-height));
}

body.twc-theme,
.editor-styles-wrapper {
   font-optical-sizing: auto;
   -webkit-text-size-adjust: none;
   -webkit-font-smoothing: antialiased;
   font-family: var(--font-primary) !important;
   font-size: 17px !important;
   color: var(--dark-blue);
   line-height: 28px;
   font-weight: 300;
}

body.twc-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
   background: var(--white);
}

.site-main {
   position: relative;
   transition: var(--transition) all;
   z-index: 1;
}

/*-----------------------------------------------------------------------
   Admin Bar
-----------------------------------------------------------------------*/

body.twc-theme {
   padding-top: var(--notice-height) !important;
   margin: 0;
}

body.twc-theme.admin-bar {
   padding-top: var(--admin-height) !important;
}

#wpadminbar {
   top: 0;
   position: fixed;
   z-index: 20000000000000001;
}

#wpadminbar ul li.admin-bar-search {
   display: none !important;
}

/*-----------------------------------------------------------------------
   Layouts
-----------------------------------------------------------------------*/

.twc-theme *[class*="container-"],
.twc-theme *[class*="section-"],
.twc-theme *[class*="block-"],
.twc-theme *[class*="entry-"],
.twc-theme .relative {
   position: relative;
}

.twc-theme .absolute {
   position: absolute;
}

/* Flex Layout */

.twc-theme .flex-layout,
.twc-theme .flex-align-start,
.twc-theme .flex-align-center,
.twc-theme .flex-align-end,
.twc-theme .flex-justify-start,
.twc-theme .flex-justify-center,
.twc-theme .flex-justify-end,
.twc-theme .flex-justify-between {
   display: flex;
   flex-wrap: wrap;
}

.twc-theme .flex-align-start {
   align-items: flex-start;
}

.twc-theme .flex-align-center {
   align-items: center;
}

.twc-theme .flex-align-end {
   align-items: flex-end;
}

.twc-theme .flex-justify-start {
   justify-content: flex-start;
}

.twc-theme .flex-justify-center {
   justify-content: center;
}

.twc-theme .flex-justify-end {
   justify-content: flex-end;
}

.twc-theme .flex-justify-between {
   justify-content: space-between;
}

.twc-theme .flex-row-reverse {
   flex-direction: row-reverse;
}

.twc-theme .flex-column-reverse {
   flex-direction: column-reverse;
}

.twc-theme .flex-nowrap {
   flex-wrap: nowrap;
}

.twc-theme .flex-gap {
   gap: 15px;
}

/* Containers */

.twc-theme .container,
.twc-theme .container-xl,
.twc-theme .container-lg,
.twc-theme .container-md,
.twc-theme .container-sm,
.twc-theme .container-xs {
   z-index: 99;
   margin: auto;
   width: calc(100% - 60px);
}

.twc-theme .container,
.twc-theme .container-xl {
   width: 100%;
}

.twc-theme .container-lg {
   max-width: var(--container-lg);
}

.twc-theme .container-md {
   max-width: var(--container-md);
}

.twc-theme .container-sm {
   max-width: var(--container-sm);
}

.twc-theme .container-xs {
   max-width: var(--container-xs);
}

/* Padding */

.twc-theme .padding-lg,
.twc-theme .padding-lg-top {
   padding-top: 80px;
}

.twc-theme .padding-lg,
.twc-theme .padding-lg-bot {
   padding-bottom: 80px;
}

.twc-theme .padding-md,
.twc-theme .padding-md-top {
   padding-top: 40px;
}

.twc-theme .padding-md,
.twc-theme .padding-md-bot {
   padding-bottom: 40px;
}

.twc-theme .padding-sm,
.twc-theme .padding-sm-top {
   padding-top: 20px;
}

.twc-theme .padding-sm,
.twc-theme .padding-sm-bot {
   padding-bottom: 20px;
}

/* Grid Layout */

.twc-theme .grid-col-1,
.twc-theme .grid-col-2,
.twc-theme .grid-col-3,
.twc-theme .grid-col-4,
.twc-theme .grid-col-5,
.twc-theme .grid-col-6 {
   display: grid;
   gap: 20px;
}

.twc-theme .grid-col-2 {
   gap: 80px;
}

.twc-theme .grid-col-2 {
   grid-template-columns: repeat(2, 1fr);
}

.twc-theme .grid-col-3 {
   grid-template-columns: repeat(3, 1fr);
}

.twc-theme .grid-col-4 {
   grid-template-columns: repeat(4, 1fr);
}

.twc-theme .grid-col-5 {
   grid-template-columns: repeat(5, 1fr);
}

.twc-theme .grid-col-6 {
   grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.twc-theme .desktop-only {
   display: block;
}

.twc-theme .mobile-only {
   display: none;
}

/* Block Settings */

.twc-theme .block-setting-padding {
   padding-top: var(--block-padding-top);
   padding-bottom: var(--block-padding-bottom);
}

.twc-theme .block-setting-background-colour {
   background-color: var(--block-background-colour);
}

/* Responsive */

@media (max-width: 1200px) {
   .twc-theme .grid-col-5 {
      grid-template-columns: repeat(3, 1fr);
   }

   .twc-theme .grid-col-6 {
      grid-template-columns: repeat(4, 1fr);
   }
}

@media (max-width: 860px) {
   .twc-theme .padding-lg,
   .twc-theme .padding-lg-top {
      padding-top: 40px;
   }

   .twc-theme .padding-lg,
   .twc-theme .padding-lg-bot {
      padding-bottom: 40px;
   }

   .twc-theme .grid-col-2 {
      gap: 40px;
   }

   .twc-theme .grid-col-2 {
      grid-template-columns: repeat(1, 1fr);
   }

   .twc-theme .grid-col-3,
   .twc-theme .grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .twc-theme .grid-col-5,
   .twc-theme .grid-col-6 {
      grid-template-columns: repeat(3, 1fr);
   }

   .twc-theme .block-setting-padding {
      padding-top: calc(var(--block-padding-top) / 1.5);
      padding-bottom: calc(var(--block-padding-bottom) / 1.5);
   }
}

@media (max-width: 720px) {
   .twc-theme .container-lg,
   .twc-theme .container-md,
   .twc-theme .container-sm,
   .twc-theme .container-xs {
      width: calc(100% - 30px);
   }

   .twc-theme .grid-col-4,
   .twc-theme .grid-col-5 {
      grid-template-columns: repeat(2, 1fr);
   }

   .twc-theme .desktop-only {
      display: none;
   }

   .twc-theme .mobile-only {
      display: block;
   }
}

@media (max-width: 550px) {
   .twc-theme .grid-col-3,
   .twc-theme .grid-col-4 {
      grid-template-columns: repeat(1, 1fr);
   }

   .twc-theme .grid-col-6 {
      grid-template-columns: repeat(2, 1fr);
   }
}

/*-----------------------------------------------------------------------
   Typography
-----------------------------------------------------------------------*/

.twc-theme ul,
.twc-theme ol,
.twc-theme li,
.twc-theme p,
.twc-theme a {
   margin: 0;
   padding: 0;
   color: var(--dark-blue);
   font-weight: 300;
   text-wrap: wrap;
   word-wrap: break-word;
}
.twc-theme h1,
.twc-theme h1 *,
.twc-theme .h1,
.twc-theme .h1 *,
.twc-theme h2,
.twc-theme h2 *,
.twc-theme .h2,
.twc-theme .h2 *,
.twc-theme h3,
.twc-theme h3 *,
.twc-theme .h3,
.twc-theme .h3 *,
.twc-theme h4,
.twc-theme h4 *,
.twc-theme .h4,
.twc-theme .h4 *,
.twc-theme h5,
.twc-theme h5 *,
.twc-theme .h5,
.twc-theme .h5 *,
.twc-theme h6,
.twc-theme h6 *,
.twc-theme .h6,
.twc-theme .h6 * {
   margin: 0;
   padding: 0;
   color: var(--dark-blue);
   font-weight: 500;
   text-wrap: wrap;
   word-wrap: break-word;
   font-family: var(--font-secondary);
}

.twc-theme h1,
.twc-theme h1 *,
.twc-theme .h1,
.twc-theme .h1 * {
   font-size: 65px;
   line-height: 56px;
}

.twc-theme h2,
.twc-theme h2 *,
.twc-theme .h2,
.twc-theme .h2 * {
   font-size: 50px;
   line-height: 48px;
}

.twc-theme h3,
.twc-theme h3 *,
.twc-theme .h3,
.twc-theme .h3 * {
   font-size: 35px;
   line-height: 30px;
}

.twc-theme h4,
.twc-theme h4 *,
.twc-theme .h4,
.twc-theme .h4 * {
   font-size: 25px;
   line-height: 36px;
}

.twc-theme h5,
.twc-theme h5 *,
.twc-theme .h5,
.twc-theme .h5 * {
   font-size: 18px;
   line-height: 22px;
}

.twc-theme h6,
.twc-theme h6 *,
.twc-theme .h6,
.twc-theme .h6 * {
   font-size: 17px;
   line-height: 22px;
   letter-spacing: 0px;
   text-transform: uppercase;
   font-weight: 500;
}
.twc-theme em {
   font-weight: 400;
}
.twc-theme p,
.twc-theme li {
   font-weight: 300;
   font-size: 17px !important;
   line-height: 28px !important;
}

.twc-theme strong,
.twc-theme strong * {
   font-weight: 700 !important;
}

.twc-theme a {
   text-underline-offset: 3px !important;
   text-decoration-thickness: 1px !important;
   color: var(--blue);
   text-decoration: underline;
}

.twc-theme a:hover,
.twc-theme a:focus {
   color: var(--yellow);
}
.twc-theme ul,
.twc-theme ol,
.twc-theme li {
   margin: 0;
   padding: 0;
   list-style: none;
}

.twc-theme code {
   padding: 10px;
   font-size: 14px;
   color: var(--white);
   background: var(--black);
}

.twc-theme mark {
   background: none;
}

.twc-theme hr {
   width: 100%;
   border: 0;
   border-top: 1px solid var(--black);
}

/* Responsive */

@media (max-width: 860px) {
   .twc-theme h1,
   .twc-theme h1 *,
   .twc-theme .h1,
   .twc-theme .h1 * {
      font-size: 50px;
      line-height: 52px;
   }
   .twc-theme h2,
   .twc-theme h2 *,
   .twc-theme .h2,
   .twc-theme .h2 * {
      font-size: 40px;
      line-height: 45px;
   }

   .twc-theme h3,
   .twc-theme h3 *,
   .twc-theme .h3,
   .twc-theme .h3 * {
      font-size: 30px;
      line-height: 35px;
   }

   .twc-theme h4,
   .twc-theme h4 *,
   .twc-theme .h4,
   .twc-theme .h4 * {
      font-size: 20px;
      line-height: 30px;
   }
}

/*-----------------------------------------------------------------------
   Content Styling
-----------------------------------------------------------------------*/

/* Sizes */

.twc-theme .text-small,
.twc-theme .text-small * {
   font-size: 14px !important;
}

.twc-theme .text-sub,
.twc-theme .text-sub * {
   font-size: 8px !important;
}

/* Alignment */

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

.twc-theme .text-center {
   text-align: center;
}

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

/* Colours */

.twc-theme .text-muted {
   opacity: 40%;
}

.twc-theme .text-white,
.twc-theme .text-white *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"]) {
   color: var(--white) !important;
   border-color: var(--white);
}

/*-----------------------------------------------------------------------
   WYSIWYG Content
-----------------------------------------------------------------------*/

.wysiwyg-content {
   width: 100%;
   position: relative;
   z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content h6:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
   margin: 0 0 20px !important;
}

.wysiwyg-content li:not(:last-child) {
   margin: 0 0 10px !important;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
   text-decoration: underline;
}

/* Lists */

.wysiwyg-content ul,
.wysiwyg-content ol {
   display: inline-block;
}

.wysiwyg-content li {
   position: relative;
   text-align: left;
   padding: 0 0 0 20px;
}

.wysiwyg-content li:not(:last-child) {
   margin: 0 0 5px !important;
}

.wysiwyg-content ul li:before {
   content: "";
   display: block;
   position: absolute;
   top: 9px;
   left: 3px;
   width: 3px;
   height: 3px;
   border-radius: 3px;
   background: var(--dark-blue);
}

.wysiwyg-content ul.list-style-checkmark li {
   padding: 0 0 0 25px;
}

.wysiwyg-content ul.list-style-checkmark li:before {
   top: 5px;
   width: 14px;
   height: 14px;
   background: url(../img/icon-checkmark.svg) 50% no-repeat;
   background-size: 14px;
}

.wysiwyg-content ol {
   counter-reset: item;
   list-style-position: outside;
}

.wysiwyg-content ol li:before {
   content: counter(item) ". ";
   counter-increment: item;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
   margin-left: 0;
   margin-right: 0;
   padding: 20px 0 20px 20px;
   border-left: 1px solid var(--black);
}

/* Hr */

.wysiwyg-content hr {
   margin: 30px 0;
}

/* Images */

.wysiwyg-content img {
   display: block;
   max-width: 100% !important;
   height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
   margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
   margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
   margin-left: auto !important;
   margin-right: auto !important;
   float: none;
}

.wysiwyg-content img.alignleft {
   float: left;
}

.wysiwyg-content img.alignright {
   float: right;
}

.wysiwyg-content img.size-full {
   width: 100% !important;
}

/*-----------------------------------------------------------------------
   Global Forms
-----------------------------------------------------------------------*/

.twc-theme form *[disabled] {
   opacity: 50%;
   pointer-events: none;
}

/* Labels */

.twc-theme label,
.twc-theme legend {
   display: block;
   margin: 5px 0;
   color: var(--black);
   font-size: 12px;
   line-height: 16px;
   font-weight: 400;
}

.twc-theme label a,
.twc-theme legend a {
   color: var(--black) !important;
   text-decoration: underline;
}

.twc-theme label .required,
.twc-theme .gravity-theme form label.gfield_required {
   font-size: inherit;
   color: var(--red);
}

/* Basic Fields */

.twc-theme input:not([type="button"], [type="submit"]),
.twc-theme select,
.twc-theme textarea {
   appearance: none;
   -webkit-appearance: none;
   display: block;
   width: 100%;
   height: auto;
   border: 0;
   border-radius: 0;
   border: 1px solid var(--cream);
   background: var(--cream);
   padding: 12px 13px !important;
   color: var(--black);
   font-size: 15px;
   line-height: 20px;
   font-weight: 400;
   text-align: left;
   text-decoration: none;
   transition: none;
   resize: none;
}

.twc-theme textarea {
   min-height: 100px;
   max-height: 200px;
}

.twc-theme ::placeholder,
.twc-theme ::-ms-input-placeholder,
.twc-theme ::-webkit-input-placeholder {
   color: var(--black);
}

/* Select */

.twc-theme select:not([multiple="multiple"]) {
   padding-right: 45px;
}

.twc-theme select:not([multiple="multiple"]),
.twc-theme .select2-container .select2-selection {
   background: url(../img/icon-chevron-down.svg) no-repeat;
   background-size: 12px;
   background-position: center right 20px;
   cursor: pointer;
}

.twc-theme .select2,
.twc-theme .select2 * {
   margin: 0;
   padding: 0;
}

.twc-theme .select2-container .select2-selection,
.twc-theme .select2-container .select2-selection .selection__rendered {
   line-height: 20px;
}

.bwa-theme .select2-container .select2-selection {
   margin: 0;
   display: block;
   height: auto;
   padding: 14px 16px;
   border: 1px solid var(--grey);
   background: transparent;
   color: var(--black);
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
}

.twc-theme .select2-selection__rendered,
.twc-theme .select2-selection__placeholder {
   color: var(--black);
}

.twc-theme .select2-dropdown {
   top: 0;
   border: 1px solid var(--black);
   background: var(--white);
}

.twc-theme .select2-dropdown .select2-search,
.twc-theme .select2-dropdown .select2-results__option {
   padding: 5px;
}

.twc-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
   background: var(--black);
}

.twc-theme .select2-container .select2-selection__arrow {
   display: none;
}

/* Checkbox & Radio */

.twc-theme input[type="checkbox"],
.twc-theme input[type="radio"] {
   position: relative;
   display: inline-block;
   padding: 0;
   margin: 0 10px 0 0;
   min-height: 25px !important;
   min-width: 25px !important;
   max-width: 25px !important;
   max-height: 25px !important;
   border: 1px solid var(--mid-grey);
   border-radius: 3px;
   background: var(--white);
   box-shadow: none;
   transition: none;
   cursor: pointer;
}

.twc-theme input[type="checkbox"],
.twc-theme input[type="radio"],
.twc-theme input[type="checkbox"] + label,
.twc-theme input[type="radio"] + label {
   display: inline-block;
   vertical-align: top;
}

.twc-theme input[type="checkbox"] + label,
.twc-theme input[type="radio"] + label {
   margin: 3px 0 !important;
   font-size: 16px !important;
   line-height: 20px;
   width: calc(100% - 40px);
}

.twc-theme input[type="radio"] {
   border-radius: 25px !important;
}

.twc-theme input[type="checkbox"]:checked {
   border-color: var(--black);
   background: var(--black) url(../img/icon-checkbox.svg) 50% no-repeat;
   background-size: 16px;
}

.twc-theme input[type="radio"]:checked {
   border: 6px solid var(--black);
}

.twc-theme input[type="radio"]:before,
.twc-theme input[type="checkbox"]:before {
   display: none !important;
}

/*-----------------------------------------------------------------------
   Gravity Forms
-----------------------------------------------------------------------*/

.gravity-theme form .gform_body,
.gravity-theme form .gform_fields,
.gravity-theme form .gform_footer {
   margin: 14px 0px 0px !important;
   justify-content: flex-end;
}

.gravity-theme form .gform_fields {
   gap: 10px 20px !important;
}

.gravity-theme form .ginput_complex {
   gap: 0 !important;
}

.gravity-theme form .gform_required_legend {
   display: none !important;
}

.gravity-theme form .gfield .gfield_validation_message{
   font-size: 14px!important;
   line-height: 20px!important;
}
.gravity-theme form .gform-field-label{
   color: var(--dark-blue) !important;
}

/* Validation */

.gravity-theme form .gform_ajax_spinner,
.gravity-theme form .gform-loader {
   width: 12px;
   height: 12px;
   margin: 0 0 0 20px;
}

.gravity-theme .gform_validation_errors {
   outline: 0 !important;
   box-shadow: none !important;
   margin-bottom: 20px;
}

.gravity-theme form .gfield .gfield_validation_message {
   padding: 0;
   border: 0;
   background: transparent;
}

.gravity-theme .gform_validation_errors * {
   font-family: var(--font-primary);
   font-size: 16px;
   color: var(--red);
}

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
   margin: 5px 0;
   font-size: 18px !important;
   font-weight: 500 !important;
   color: var(--dark-blue);
   font-family: var(--font-secondary);
   line-height: 20px;
}

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
   padding: 0 !important;
   font-weight: 300;
   color: rgba(var(--black-rgb), 50%);
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
   margin: 10px 0 !important;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"],
.gravity-theme form .gfield--type-choice input[type="radio"],
.gravity-theme form .gfield--type-consent input[type="checkbox"] {
   display: inline-block;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"] + label,
.gravity-theme form .gfield--type-consent input[type="checkbox"] + label {
   display: inline-block;
   margin: 3px 0 !important;
   width: calc(100% - 40px) !important;
   vertical-align: top !important;
}

/* Date & Time */

.gravity-theme form .gfield--type-date .ginput_container,
.gravity-theme form .gfield--type-time .ginput_container {
   flex-basis: auto !important;
   max-width: 100% !important;
   flex: 1 !important;
}

.gravity-theme form .hour_minute_colon {
   line-height: 42px !important;
}

/* List */

.gravity-theme form .gfield_list .gfield_list_icons button {
   min-width: 16px !important;
   min-height: 16px !important;
   width: 16px !important;
   height: 16px !important;
}

/* File Upload */

.gravity-theme form .gfield--type-fileupload .gform_drop_area {
   border-color: var(--black) !important;
}

.gravity-theme form .gfield--type-fileupload .gform_drop_area .gform_button_select_files {
   margin: auto !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview {
   display: flex !important;
   align-items: center;
   margin: 10px 0 0 !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview * {
   order: 9;
   line-height: 18px;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview .gform_delete_file {
   order: 1;
   margin: 0;
   padding: 0;
   min-width: 0 !important;
   text-decoration: none;
}

/* Product */

.gravity-theme form .ginput_product_price_wrapper {
   width: 100%;
   margin: 0 0 10px;
}

/* Progress Bar */

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar {
   margin: 0 0 20px !important;
}

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar_title {
   font-size: 12px !important;
   margin: 0 0 10px !important;
}

.gravity-theme form .gf_progressbar,
.gravity-theme form .gf_progressbar_wrapper,
.gravity-theme form .gf_progressbar_percentage {
   border-radius: 20px !important;
}

.gravity-theme form .gf_progressbar {
   background: rgba(var(--black-rgb), 5%) !important;
}

.gravity-theme form .gf_progressbar_percentage {
   background: var(--black) !important;
}

/* Page Footer */

.gravity-theme form .gform-page-footer {
   display: flex;
   align-items: center;
   gap: 15px;
}

.gravity-theme form .gform-page-footer .button {
   margin: 0 !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:not(:hover, :focus),
.gravity-theme form .gform-page-footer .gform_next_button:not(:hover, :focus) {
   color: var(--black) !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:hover,
.gravity-theme form .gform-page-footer .gform_next_button :hover {
   color: var(--white) !important;
   background: var(--black) !important;
}

/*-----------------------------------------------------------------------
   Buttons
-----------------------------------------------------------------------*/

.twc-theme .button-group {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
   margin-top: 30px;
}

.twc-theme .button svg {
   width: 14px;
   height: 14px;
   color: var(--black);
}

/* Default Styles */

.twc-theme button,
.twc-theme button:hover,
.twc-theme button:focus,
.twc-theme .button,
.twc-theme .button:hover,
.twc-theme .button:focus {
   appearance: none;
   -webkit-appearance: none;
   position: relative;
   display: inline-flex !important;
   align-items: center;
   justify-content: center;
   gap: 5px;
   margin: 0;
   outline: 0;
   width: auto;
   height: auto;
   min-width: 100px;
   min-height: 0;
   padding: 10px 25px;
   font-size: 15px;
   font-family: var(--font-primary);
   color: var(--dark-blue);
   font-weight: 400;
   line-height: 22px;
   text-align: center;
   text-decoration: none;
   background: var(--yellow);
   border: 1px solid var(--yellow);
   border-radius: var(--border-radius-lg) !important;
   transition: var(--transition) all;
   cursor: pointer;
}

.twc-theme .button.button-transparent {
   background-color: transparent;
   border-color: var(--blue);
}

/* Additional Styles */
.twc-theme .button svg {
   color: var(--blue);
   width: 8px;
   height: 8px;
}
.twc-theme .button.button-white {
   border-color: var(--white);
}

.twc-theme .button.button-white,
.twc-theme .button.button-white svg {
   color: var(--white);
}
.twc-theme .button:hover svg {
   animation: arrowMove 0.4s ease-in-out;
}
@keyframes arrowMove {
   0% {
      opacity: 1;
      transform: translate(0, 0);
   }

   50% {
      opacity: 0;
      transform: translate(7px, -7px);
   }

   51% {
      opacity: 0;
      transform: translate(-7px, 7px);
   }

   100% {
      opacity: 1;
      transform: translate(0, 0);
   }
}
/* Hover/Focus */
.twc-theme .button.button-default:hover svg {
   color: var(--yellow);
}
.twc-theme button.button-default:hover,
.twc-theme button.button-default:focus,
.twc-theme .button.button-default:hover,
.twc-theme .button.button-default:focus {
   outline: 0;
   box-shadow: none;
   background-color: transparent;
   border-color: var(--yellow);
   color: var(--yellow);
}
.twc-theme .button.button-transparent:hover {
   background-color: var(--yellow);
   border-color: var(--yellow);
}

/* Responsive */

@media (max-width: 550px) {
   .twc-theme .button-group {
      width: 100%;
   }
}

/*-----------------------------------------------------------------------
   Site Notice
-----------------------------------------------------------------------*/

.site-notice {
   padding: 10px 0;
   background: var(--black);
   color: var(--white);
}

/*-----------------------------------------------------------------------
   Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
   display: block;
   max-width: 157px;
   max-height: 167px;
   width: auto;
   height: auto;
   z-index: 99;
   transition: none;
   width: 157px;
}

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
   max-width: 260px;
   max-height: 280px;
   width: auto;
}

.is-scrolled .site-header .site-logo svg {
   max-width: 93px;
   max-height: 100px;
   color: #000;
}

@media (max-width: 920px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 100px;
      max-height: 100px;
   }
   .is-scrolled .site-header .site-logo svg {
      max-width: 60px;
      max-height: 60px;
   }
}
@media (max-width: 550px) {
   .site-footer .site-logo, .site-footer .site-logo img, .site-footer .site-logo svg {
       max-width: 160px;
       max-height: 180px;
   }
}
/*-----------------------------------------------------------------------
   Site Header
-----------------------------------------------------------------------*/

.site-header {
   top: 0;
   width: 100%;
   position: fixed;
   background: transparent;
   box-shadow: none;
   z-index: 2000000002;
   align-items: center;
   justify-content: space-between;
   padding: 15px 0px;
   transition: var(--transition);
}
.is-scrolled .site-header {
   box-shadow: var(--box-shadow);
   background-color: var(--white);
   padding: 0px;
}

/* .is-scrolled .site-header .site-logo svg path{
   fill: var(--blue);
} */
.is-scrolled .site-header .main-menu ul li a {
   color: var(--dark-blue);
}
.is-scrolled .site-header .main-menu .button:hover {
   background-color: var(--dark-blue);
   border-color: var(--dark-blue);
   color: var(--white);
}
.is-scrolled .site-header .main-menu .button:hover svg {
   color: var(--white);
}
body:not(.is-scrolled) .site-header .site-logo svg path[fill="#03428E"] {
   fill: var(--white);
}
body:not(.is-scrolled) .site-header .site-logo svg path[fill="#FFCB05"] {
   fill: var(--white);
}
body:not(.is-scrolled) .site-header .site-logo svg .text-color {
   fill: var(--dark-blue) !important;
}

body.twc-theme.admin-bar .site-header {
   top: var(--admin-height);
}

.site-header > div[class*="container"] {
   height: var(--header-height);
}
.main-menu {
   display: inline-flex;
   align-items: center;
   gap: 15px;
}
body.home {
   padding-top: 0 !important;
}

/* Main Menu */

.site-header .main-menu ul li,
.site-header .main-menu ul li a {
   position: relative;
}

.site-header .main-menu ul li a {
   padding: 10px;
   display: block;
   transition: var(--transition) all;
   font-size: 16px;
   color: #fff;
   font-weight: 500;
   text-decoration: none;
   text-transform: uppercase;
}
.site-header .main-menu ul li a:hover {
   color: var(--yellow);
}

.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a {
   font-weight: 700;
   text-decoration: underline;
}
.site-header .main-menu ul.sub-menu li.current-menu-parent a,
.site-header .main-menu ul.sub-menu li.current-menu-item a {
   text-decoration: none;
}
.site-header .main-menu ul.sub-menu li .sub-menu li.current-menu-parent a,
.site-header .main-menu ul.sub-menu li .sub-menu li.current-menu-item a {
   color: var(--blue);
   text-decoration: underline;
}
.site-header .main-menu ul:not(.sub-menu) {
   display: flex;
   gap: 10px;
}

/* Sub Menu */

.site-header .trigger-sub-menu svg {
   width: 15px;
   height: 13px;
   margin-left: 1px;
}

.site-header .main-menu ul.sub-menu,
.site-header .main-menu ul.sub-menu li,
.site-header .main-menu ul.sub-menu li a {
   display: block;
}

.site-header .main-menu ul.sub-menu {
   padding: 20px;
   background: var(--white);
   box-shadow: var(--box-shadow);
   overflow: hidden;
}

.site-header .main-menu ul.sub-menu li a {
   padding: 5px;
}

.site-header .main-menu ul li .sub-menu-wrap {
   width: 206px;
   opacity: 0;
   display: block;
   position: absolute;
   top: 100%;
   left: 80%;
   right: 50%;
   margin: 0;
   transform: translate(-50%);
   padding: 15px 0 0 0;
   pointer-events: none;
   z-index: 20000;
}

.site-header .main-menu ul ul .sub-menu-wrap {
   padding: 0 0 0 8px;
   top: 0;
   right: auto;
   left: 100%;
   transform: translate(0);
}

.site-header .main-menu ul li:hover > .sub-menu-wrap {
   opacity: 1;
   pointer-events: all;
}

.site-header .main-menu ul.sub-menu > li > a {
   color: #0f0f0f;
   font-size: 15px;
   font-weight: 500;
   line-height: 23px; /* 153.333% */
   text-transform: uppercase;
   padding: 0px;
}

.site-header .main-menu > ul > li > .sub-menu-wrap> ul.sub-menu > li > a{
   pointer-events: none;
}

.site-header .main-menu ul.sub-menu .trigger-sub-menu {
   display: none;
}

.site-header .main-menu ul.sub-menu li .sub-menu li a {
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    text-transform: none;
    padding: 0px;
}

.site-header .main-menu ul.sub-menu li .sub-menu-wrap {
   position: relative;
   left: 0;
   transform: none;
   width: 100%;
   padding: 0px;
   opacity: 1;
}
.site-header .main-menu ul.sub-menu li .sub-menu-wrap {
   margin-top: 2px;
}
.site-header .main-menu ul.sub-menu li .sub-menu-wrap .sub-menu {
   padding: 0px;
   box-shadow: none;
}
.site-header .main-menu ul.sub-menu li .sub-menu-wrap .sub-menu li a:hover {
   color: var(--blue) !important;
   text-decoration: underline;
}
.site-header .menu > li > .sub-menu-wrap > .sub-menu > li {
   margin-bottom: 10px;
}
.site-header .menu > li > .sub-menu-wrap > .sub-menu > li:last-child {
   margin-bottom: 0px;
}
/* Icon Menu */

.site-header .header-right {
   gap: 10px;
}

.site-header *[class*="icon-"],
.site-header *[class*="icon-"] svg {
   display: block;
   width: 20px;
   height: 20px;
   color: var(--black);
   cursor: pointer;
}

.site-header .icon-cart {
   position: relative;
   width: 25px;
}

.site-header .icon-cart .cart-count {
   display: block;
   position: absolute;
   top: -5px;
   right: 0;
   font-size: 8px;
   width: 14px;
   line-height: 14px;
   border-radius: 14px;
   text-align: center;
   background: var(--black);
   color: var(--white);
}

/* Hamburger */

.site-header .icon-hamburger {
   width: 18px;
   height: 18px;
   align-items: center;
   justify-content: center;
   position: relative;
   cursor: pointer;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
   display: block;
   position: absolute;
   left: 0;
   width: 18px;
   height: 2px;
   background: var(--white);
   transition: background 0s 0.3s;
}

.is-scrolled .site-header .icon-hamburger span,
.is-scrolled .site-header .icon-hamburger span:before,
.is-scrolled .site-header .icon-hamburger span:after {
   background: var(--blue);
}

.site-header .icon-hamburger span {
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.site-header .icon-hamburger span:before {
   content: "";
   top: -6px;
   transition-property: top, transform;
   transition-duration: 0.3s, 0.3s;
   transition-delay: 0.3s, 0s;
}

.site-header .icon-hamburger span:after {
   content: "";
   bottom: -6px;
   transition-property: bottom, transform;
   transition-duration: 0.3s, 0.3s;
   transition-delay: 0.3s, 0s;
}

body.twc-theme.menu-active .site-header .icon-hamburger span {
   background: none;
}

body.twc-theme.menu-active .site-header .icon-hamburger span:before {
   top: 0;
   transform: rotate(45deg);
   transition-delay: 0s, 0.3s;
}

body.twc-theme.menu-active .site-header .icon-hamburger span:after {
   bottom: 0;
   transform: rotate(-45deg);
   transition-delay: 0s, 0.3s;
}

/* Responsive Menu */

.site-responsive-menu {
   width: 100%;
   position: fixed;
   bottom: 0;
   right: 0;
   top: var(--notice-height);
   overflow-y: auto;
   z-index: 0;
   background-color: var(--dark-blue);
   padding-top: 120px;
}
.site-responsive-menu .main-menu .menu {
   margin-bottom: 20px;
}
.site-responsive-menu .main-menu {
   display: block;
}
.site-responsive-menu .main-menu .button {
   margin-left: 20px !important;
}
body.admin-bar .site-responsive-menu {
   top: var(--admin-height);
}

.site-responsive-menu div[class*="container"] {
   width: 100%;
   opacity: 0;
   transition: var(--transition) all;
}

.site-responsive-menu .button-group,
.site-responsive-menu .menu-search {
   padding: 20px;
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul,
.site-responsive-menu .main-menu ul * {
   display: block;
}

.site-responsive-menu .main-menu ul li a {
   padding: 20px;
}

.site-responsive-menu .menu-search,
.site-responsive-menu .main-menu > ul > li {
   border-bottom: 1px solid var(--grey);
}

.site-responsive-menu .main-menu > ul > li > a {
   font-family: var(--font-primary);
   font-size: 24px;
   color: #fff;
   text-decoration: none;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
   width: 20px;
   float: right;
   margin-top: 5px;
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul.sub-menu {
   padding-bottom: 10px;
}

.site-responsive-menu .main-menu ul.sub-menu li a {
   font-size: 18px;
   padding: 0 20px 5px;
   color: #fff;
   text-decoration: none;
}
.site-responsive-menu .main-menu ul.sub-menu li .sub-menu li a {
   font-size: 16px;
   line-height: 25px;
   font-weight: 200;
}

.site-responsive-menu .main-menu ul.sub-menu li .sub-menu {
   padding-left: 15px;
}
.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
   display: none;
}

.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > a > .trigger-sub-menu svg {
   transform: rotate(135deg);
}

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul.sub-menu li,
.site-responsive-menu ul.sub-menu li a,
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > .sub-menu-wrap {
   display: block !important;
}
.site-responsive-menu .main-menu ul > li.current-menu-item > a,
.site-responsive-menu .main-menu ul > li.current-menu-parent > a {
   color: var(--yellow);
}
.site-responsive-menu .main-menu ul.sub-menu li.current-menu-parent a,
.site-responsive-menu .main-menu ul.sub-menu li.current-menu-item a {
   color: var(--white);
}
.site-responsive-menu .main-menu ul.sub-menu li .sub-menu li.current-menu-parent a,
.site-responsive-menu .main-menu ul.sub-menu li .sub-menu li.current-menu-item a {
   color: var(--yellow);
}
/* Responsive */

@media (min-width: 920px) {
   .site-header .trigger-menu,
   .site-responsive-menu {
      display: none !important;
   }
}

@media (max-width: 920px) {
   .site-header .main-menu,
   .site-header .header-right .button,
   .site-header .icon-search {
      display: none !important;
   }

   .site-header .trigger-menu {
      display: flex !important;
   }

   body.menu-active .site-main {
      transform: translateX(-100%);
   }

   body.menu-active .site-responsive-menu div[class*="container"] {
      opacity: 1;
   }
}

/*-----------------------------------------------------------------------
   Site Search
-----------------------------------------------------------------------*/

.site-search {
   background: var(--white);
   position: fixed;
   left: 0;
   right: 0;
   z-index: 200;
   display: none;
   top: calc(var(--header-height) + var(--notice-height));
   border-bottom: 1px solid var(--grey);
}

body.twc-theme.admin-bar .site-search {
   top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
}

.site-search *[class*="container"] {
   padding: 20px 0;
}

.site-search .close-search {
   margin-left: 15px;
   cursor: pointer;
}

.site-search .close-search,
.site-search .close-search svg {
   display: block;
   width: 14px;
   height: 14px;
}

.twc-theme form.search-form {
   display: flex;
   gap: 15px;
}

.twc-theme form.search-form,
.twc-theme form.search-form > input {
   flex: 1;
}

/* Responsive */

@media (max-width: 920px) {
   .site-search {
      display: none !important;
   }
}

/*-----------------------------------------------------------------------
   Site Footer
-----------------------------------------------------------------------*/

.site-footer .footer-navigation {
   background-image: url("../img/footer-bg.jpg");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   padding: 60px 0px;
   position: relative;
}

.site-footer .footer-navigation:after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background-color: rgba(var(--dark-blue-rgb), 80%);
}

.site-footer .footer-navigation .footer-logo svg {
   width: 100%;
}

.site-footer .footer-logo {
   width: 260px;
}

.site-footer .footer-columns.grid-col-3 {
   width: calc(100% - 260px);
   padding-left: 150px;
   margin-top: 15px;
}

.site-footer a:hover {
   text-decoration: underline;
}
.site-footer .footer-column h5 {
   color: var(--white);
   font-family: var(--font-primary);
   font-size: 16px;
   font-style: normal;
   font-weight: 500;
   margin-bottom: 13px;
   line-height: 22px;
}
.site-footer .footer-column p,
.site-footer .footer-column p a {
   color: #fff;
   font-size: 15px !important;
   font-weight: 300;
   line-height: 22px !important;
   text-decoration: none;
}
.site-footer .footer-column.charters .menu > li > a {
   color: #fff;
   font-size: 15px;
   font-weight: 400;
   line-height: 20px;
   text-transform: uppercase;
   text-decoration: none;
}
.site-footer .footer-column.charters .menu > li {
   margin-bottom: 20px;
}
.site-footer .contact-info h5 {
   margin-bottom: 0px !important;
}
.site-footer .contact-info .c-detail {
   margin-top: 20px;
}
.site-footer .contact-info .c-detail p strong {
   font-weight: 400 !important;
}
.site-footer .footer-column.contact .button {
   margin-top: 20px;
   background-color: transparent;
   color: #fff;
}
.site-footer .footer-column.contact .button:hover {
   background-color: var(--yellow);
   color: var(--dark-blue);
}
.site-footer .footer-column.contact .button:hover svg {
   color: var(--blue);
}
.site-footer .footer-column.contact .button svg {
   color: var(--yellow);
}
.footer-column.about .footer-link {
   color: #fff;
   font-size: 15px;
   font-weight: 400;
   line-height: 22px;
   margin-top: 11px;
   display: flex;
   align-items: center;
   gap: 8px;
   text-decoration: none;
}
.footer-column.about .footer-link svg {
   color: var(--yellow);
   width: 7px;
   height: 7px;
}
.footer-copyright .left-column {
   width: 25%;
}

.footer-copyright {
   background-color: var(--blue);
}

.footer-copyright .right-column {
   width: 69%;
}
.footer-copyright .left-column p,
.footer-copyright .left-column p a,
.footer-copyright .right-column p a,
.footer-copyright .right-column p {
   color: var(--white);
   font-size: 8px !important;
   font-weight: 500;
   line-height: 23px !important;
   text-transform: uppercase;
   text-decoration: none;
}
.footer-copyright a:hover {
   color: var(--yellow) !important;
   text-decoration: none;
}
.footer-copyright {
   padding: 11px 0px !important;
}

.site-footer .footer-column.about p {
   max-width: 200px;
   font-weight: 200;
}
/* Footer Menu */

.site-footer ul,
.site-footer ul li,
.site-footer ul li * {
   display: block;
}

.site-footer ul.sub-menu {
   margin-top: 2px;
}
.site-footer ul.sub-menu li a {
   color: #fff;
   font-size: 15px;
   font-weight: 200;
   line-height: 20px;
   text-decoration: none;
}
.site-footer ul.sub-menu li a:hover,
.site-footer .footer-column.charters .menu > li > a:hover,
.site-footer .footer-column p a:hover,
.footer-column.about .footer-link:hover {
   color: var(--yellow);
   text-decoration: none;
}

/* Responsive */
@media (max-width: 1199px) {
   .site-footer .footer-columns.grid-col-3 {
      padding-left: 50px;
   }
   .site-footer .footer-logo{
      width: 180px;
   }
   .site-footer .footer-columns.grid-col-3{
      width: calc(100% - 180px);
   }
}
@media (max-width: 860px) {
   .site-footer a.site-logo {
      margin: auto;
   }
   .site-footer .footer-logo {
      width: 100%;
   }
   .site-footer .footer-columns.grid-col-3 {
      width: 100%;
      padding-left: 0px;
      grid-template-columns: repeat(3, 1fr);
   }
   .site-footer .footer-logo {
      margin-bottom: 50px;
   }
}
@media (max-width: 767px) {
   .site-footer .footer-columns.grid-col-3 {
      grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 550px) {
   .site-footer .footer-columns.grid-col-3 {
      grid-template-columns: repeat(1, 1fr);
      text-align: center;
   }
   .site-footer .footer-column.about p {
      margin: auto;
   }
   .footer-column.about .footer-link {
      justify-content: center;
   }
   .footer-copyright .right-column {
      width: 100%;
   }
   .footer-copyright .left-column {
      width: 100%;
      text-align: center;
   }
   .footer-copyright .container-lg {
      gap: 0px !important;
   }
   .site-footer .footer-logo {
        margin-bottom: 20px;
   }
}

/*-----------------------------------------------------------------------
   Site Breadcrumbs
-----------------------------------------------------------------------*/

.site-breadcrumbs .flex-layout {
   padding: 20px 0;
   gap: 10px;
}

.site-breadcrumbs a {
   transition: none;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus {
   text-decoration: underline;
}

/*-----------------------------------------------------------------------
   Media
-----------------------------------------------------------------------*/

.twc-theme img {
   max-width: 100%;
   height: auto;
   display: block;
}

.twc-theme svg {
   transition: var(--transition) all;
}

.twc-theme .image-square,
.twc-theme .image-portrait,
.twc-theme .image-landscape {
   background: var(--grey);
   position: relative;
   object-fit: cover;
   width: 100%;
}

.twc-theme .image-square {
   aspect-ratio: 1 / 1;
}

.twc-theme .image-portrait {
   aspect-ratio: 2 / 3;
}

.twc-theme .image-landscape {
   aspect-ratio: 3 / 2;
}

/* Background Elements */

.twc-theme .background-image,
.twc-theme .background-video,
.twc-theme .background-overlay:before {
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
}

.twc-theme .background-image {
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   z-index: 0;
}

.twc-theme .background-video,
.twc-theme .background-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.twc-theme .background-overlay:before {
   content: "";
   background: linear-gradient(2deg, rgba(0, 0, 0, 0) 45.94%, rgba(var(--black-rgb), 50%) 114.73%);
}

/* Video Embed */

.twc-theme .responsive-embed {
   position: relative;
   padding-bottom: 56.25%;
   height: 0;
   overflow: hidden;
}

.twc-theme .responsive-embed iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

/*-----------------------------------------------------------------------
   Swiper
-----------------------------------------------------------------------*/

.twc-theme .swiper-carousel-wrap {
   min-width: 100%;
   overflow: hidden;
}

.twc-theme .swiper .swiper-slide {
   width: auto;
   height: auto;
}

/* Pagination */

.twc-theme .swiper-pagination {
   top: 0;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 30px;
}

.twc-theme .swiper-pagination span {
   opacity: 100%;
   margin: 0 3px;
   width: 4px;
   height: 4px;
   border-radius: 4px;
   background: var(--grey);
   transition: var(--transition) width, var(--transition) background;
}

.twc-theme .swiper-pagination span.swiper-pagination-bullet-active {
   width: 40px;
   background: var(--black);
}

/* Navigation */

/* .twc-theme .swiper-navigation {
   margin-top: 30px;
   position: absolute;
   top: 50%;
   z-index: 1;
   display: flex;
   flex-direction: column;
   gap: 35px;
   right: 40px;
   transform: translate(0%, -50%);
   font-family: var(--font-secondary);
} */

.twc-theme .swiper-navigation div[class*="swiper-nav-"] {
   padding: 10px;
   cursor: pointer;
   width: 78px;
   height: 78px;
   border: 1px solid #fff;
   filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-size: 35px;
   color: #fff;
   transition: var(--transition);
   top: 50%;
   transform: translate(0%, -50%);
   z-index: 1;
   position: absolute;
}
.twc-theme .swiper-navigation div[class*="swiper-nav-"]:hover {
   background-color: var(--yellow);
   border-color: var(--yellow);
}
.twc-theme .swiper-navigation div[class*="swiper-nav-"]:hover svg {
   color: var(--blue);
}
.twc-theme .swiper-navigation div[class*="swiper-nav-"] svg {
   display: block;
   width: 20px;
   height: 20px;
}
.twc-theme .swiper-navigation .swiper-nav-prev {
    left: 7%;
}
.twc-theme .swiper-navigation .swiper-nav-next {
    right: 7%;
}

/* Responsive */

@media (max-width: 860px) {
   .twc-theme .swiper-pagination {
      margin-top: 15px;
   }
   .twc-theme .swiper-navigation div[class*="swiper-nav-"] {
      width: 60px;
      height: 60px;
   }
   .twc-theme .swiper-navigation {
      gap: 20px;
   }
   .twc-theme .swiper-navigation .swiper-nav-prev {
    left: 5%;
   }
   .twc-theme .swiper-navigation .swiper-nav-next {
      right: 5%;
   }

}

/*-----------------------------------------------------------------------
   Tables
-----------------------------------------------------------------------*/

.twc-theme table {
   border-collapse: collapse;
   width: 100%;
}

.twc-theme table,
.twc-theme table tr,
.twc-theme table th,
.twc-theme table td {
   border-color: var(--grey);
}

.twc-theme table th,
.twc-theme table td {
   padding: 10px;
   text-align: left;
   border: 1px solid var(--grey);
}

.twc-theme table th,
.twc-theme table th * {
   font-weight: 600;
}

.twc-theme table .button {
   width: fit-content !important;
   margin: 5px 5px 5px 0 !important;
}

/*-----------------------------------------------------------------------
   Social Icons
-----------------------------------------------------------------------*/

.twc-theme .social-icons {
   gap: 15px;
}

.twc-theme .social-icons a,
.twc-theme .social-icons div,
.twc-theme .social-icons svg {
   margin: 0;
   display: block;
}

.twc-theme .social-icons svg {
   width: 22px;
   height: 22px;
   color: var(--blue);
}

.twc-theme .social-icons a:hover svg,
.twc-theme .social-icons div:hover svg {
   color: var(--dark-blue);
}

/*-----------------------------------------------------------------------
   Clipboard Copy
-----------------------------------------------------------------------*/

.twc-theme .copy-to-clipboard {
   position: relative;
   cursor: pointer;
}

.twc-theme .copy-to-clipboard .tooltip {
   background: var(--black);
   padding: 5px 8px;
   border-radius: 4px;
   position: absolute;
   top: 0;
   left: 50%;
   width: auto;
   white-space: nowrap;
   color: var(--white);
   font-size: 11px;
   line-height: 1.2;
   text-align: center;
   opacity: 0;
   visibility: hidden;
   transform: translate(-50%, -140%);
   transition: var(--transition) all;
}

.twc-theme .copy-to-clipboard .tooltip:after {
   content: "";
   position: absolute;
   top: 100%;
   left: 50%;
   margin-left: -5px;
   border-width: 5px;
   border-style: solid;
   border-color: var(--black) transparent transparent transparent;
}

.twc-theme .copy-to-clipboard:hover .tooltip {
   visibility: visible;
   opacity: 1;
}

/*-----------------------------------------------------------------------
   Popups
-----------------------------------------------------------------------*/

.twc-theme .trigger-popup,
.twc-theme .close-popup {
   cursor: pointer;
   z-index: 20000;
}

.twc-theme .popup-wrap {
   display: none;
}

.twc-theme .popup-overlay {
   position: fixed;
   left: 0;
   top: 0;
   bottom: 0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(var(--black-rgb), 80%);
   z-index: 20000000000;
}

/* Containers */

.twc-theme .popup-overlay > *[class*="container"] {
   position: relative;
   overflow-y: auto;
   max-height: 80vh;
   padding: 40px;
   background: var(--white);
}

/* Close Button */

.twc-theme .popup-overlay .close-popup:not(.button) {
   position: absolute;
   right: 0;
   top: 0;
   padding: 20px;
}

.twc-theme .popup-overlay .close-popup svg {
   width: 16px;
   height: 16px;
}

/*-----------------------------------------------------------------------
   Pagination
-----------------------------------------------------------------------*/

.twc-theme .archive-pagination {
   margin: auto;
   margin-top: 40px;
   width: fit-content;
}

.twc-theme .archive-pagination a {
   margin: 0 4px;
   font-size: 12px;
   text-align: center;
   width: 42px;
   height: 42px;
   border: 1px solid var(--dark-blue);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--dark-blue);
   font-size: 16px;
   line-height: 25px;
   font-weight: 400;
   text-decoration: none !important;
   transition: var(--transition);
}

.twc-theme .archive-pagination a:hover,
.twc-theme .archive-pagination a.current {
   background-color: var(--dark-blue);
   color: var(--white);
}

.twc-theme .post-pagination {
   border-top: 1px solid var(--grey);
}

.twc-theme .post-pagination .button,
.twc-theme .post-pagination .button:hover,
.twc-theme .post-pagination .button:focus {
   padding: 0 !important;
   min-width: 0 !important;
   border: 0 !important;
}

.twc-theme .post-pagination .pagination-next .button svg {
   transform: rotate(-180deg);
}

/*-----------------------------------------------------------------------
   Entry - Default
-----------------------------------------------------------------------*/

.twc-theme *[class^="entry-"] {
   display: block;
   position: relative;
   text-decoration: none;
   transition: var(--transition) all;
}

.twc-theme *[class^="entry-"] .inner-entry-content {
   padding: 10px 0;
}

.twc-theme *[class^="entry-"] .inner-entry-content > *:not(:last-child) {
   margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
   Block - Accordion
-----------------------------------------------------------------------*/

.twc-theme .entry-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 20px 60px;
   border-bottom: 1px solid #000;
}

.twc-theme .entry-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
   overflow-wrap: anywhere;
}

.twc-theme .entry-accordion .trigger-accordion svg {
   width: 16px;
   height: 30px;
   min-width: 16px;
   min-height: 30px;
   margin-left: 10px;
   display: none;
}

.twc-theme .entry-accordion.is-active .trigger-accordion svg {
   transform: rotate(135deg);
}

.twc-theme .entry-accordion .wysiwyg-content {
   display: none;
   padding-top: 45px;
   padding-bottom: 20px;
}
.twc-theme .accordion-icon {
   width: 24px;
   height: 24px;
   border-radius: 24px;
   border: 1px solid #faf8f6;
   background-color: #03428e;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   min-width: 24px;
}

.twc-theme .accordion-icon::before,
.twc-theme .accordion-icon::after {
   content: " ";
   width: 10px;
   height: 1px;
   background-color: var(--white);
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   transition: all 0.15s cubic-bezier(0.42, 0, 0.58, 1);
   opacity: 1;
   border-radius: 2px;
}
.twc-theme .accordion-icon::before {
   transform: translate(-50%, -50%) rotate(90deg);
}
.twc-theme .accordion-icon::after {
   transform: translate(-50%, -50%);
}

.twc-theme .entry-accordion.is-active .accordion-icon::before {
   transform: translate(-50%, -50%) rotate(0deg);
}
.twc-theme .entry-accordion.is-active .accordion-icon::after {
   transform: translate(-50%, -50%) rotate(0deg);
   opacity: 0;
}

.twc-theme .wysiwyg-content.accordion-content p {
   font-size: 13px !important;
   font-weight: 300;
   line-height: 20px !important;
   margin-top: 30px;
}
.twc-theme.block-accordion.layout-layout2.cream .listing-accordion .entry-accordion {
   background-color: var(--white);
}

.twc-theme.blue .wysiwyg-content.accordion-content p,
.twc-theme.blue .wysiwyg-content.accordion-content p * {
   color: var(--white);
}
.twc-theme.blue .wysiwyg-content.accordion-content a:hover {
   color: var(--yellow);
}

.twc-theme.block-accordion.layout-layout2 .listing-accordion .entry-accordion {
   background-color: #faf8f6;
   border: none;
   padding: 21px 42px;
   margin-bottom: 12px;
}
.twc-theme.block-accordion.layout-layout2 .listing-accordion .entry-accordion h3 {
   font-size: 25px;
   line-height: 39px;
   align-items: center;
}
.twc-theme.block-accordion.layout-layout2 .entry-accordion .wysiwyg-content {
   padding: 19px 0px 0px 0px;
}

/* responsive */

@media (max-width: 860px) {
   .twc-theme .entry-accordion {
      padding: 20px;
   }
}
@media (max-width: 550px) {
   .twc-theme .entry-accordion {
      padding: 20px 0px;
   }
   .twc-theme.block-accordion.layout-layout2 .listing-accordion .entry-accordion {
      padding: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block - Image Gallery
-----------------------------------------------------------------------*/

.block-image-gallery .carousel-gallery img {
   width: auto;
   height: 50vw;
   min-height: 400px;
   max-height: 440px;
}
.block-image-gallery .swiper-navigation .swiper-nav-prev {
    right: 5%!important;
    top: 62% !important;
    left: inherit;
}
.block-image-gallery .swiper-navigation .swiper-nav-next {
    right: 5%!important;
   top: 39% !important;
}

/* responsive */
@media (max-width:550px) {
   .block-image-gallery .swiper-navigation .swiper-nav-prev {
    top: 59% !important;
}
.block-image-gallery .swiper-navigation .swiper-nav-next {
   top: 40% !important;
}

}


/*-----------------------------------------------------------------------
   Block - Video
-----------------------------------------------------------------------*/

.block-video video {
   aspect-ratio: 16 / 9;
   object-fit: cover;
}

/*-----------------------------------------------------------------------
   Block - Separator
-----------------------------------------------------------------------*/

.block-separator .separator {
   display: block;
   margin: 0;
   width: 100%;
   height: 1px;
   background: var(--block-background-colour);
}

.block-editor .block-separator {
   padding: 5px 0;
}

/*-----------------------------------------------------------------------
   Block - Split Content
-----------------------------------------------------------------------*/

.block-split-content .grid-col-2 {
   gap: 40px;
}
.block-split-content .title {
   margin-bottom: 60px;
}
.block-split-content .block-setting-background-colour[style*="--block-background-colour: var(--blue)"] .title .entry-icon svg path {
   fill: #fff;
}
.block-split-content .block-setting-background-colour[style*="--block-background-colour: var(--blue)"] .title h2 {
   color: var(--white);
}

/* Responsive */

@media (max-width: 860px) {
   .block-split-content .col-content {
      order: 9;
   }

   .block-split-content .col-image {
      order: 1;
   }
}

/*-----------------------------------------------------------------------
   Block - Reviews
-----------------------------------------------------------------------*/

.twc-theme .entry-review .inner-entry-image {
   width: 60px;
   height: auto;
}

.twc-theme .entry-review .inner-entry-meta {
   margin-top: 25px;
}

.twc-theme .entry-review .toggle-read-more {
   text-decoration: underline;
}

/*-----------------------------------------------------------------------
   Block - block-hero-banner
-----------------------------------------------------------------------*/

.block-hero-banner {
   height: 100vh;
   display: flex;
   min-height: 500px;
}

.block-hero-banner .block-setting-padding {
   width: 100%;
}

.block-hero-banner .background-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.block-hero-banner .wrapper {
   margin: 0 auto;
   position: static;
   height: 100%;
   display: flex;
   align-items: flex-end;
}

.block-hero-banner .wysiwyg-content * {
   color: #fff;
}
.wp-block-acf-block-hero-banner {
    overflow: hidden;
}
/* resposive */
/*@media (max-width:860px) {
   .block-hero-banner{
          min-height: 500px;
          height: auto;
   }
}*/
/*@media (max-width:550px) {
   .block-hero-banner .wrapper .wysiwyg-content h1 br, .wysiwyg-content h2 br{
      display: none;
   } 
}*/

@media (max-width: 860px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

/*-----------------------------------------------------------------------
   Block - Page-banner
-----------------------------------------------------------------------*/
.block-page-banner .background-image:after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(260deg, rgba(0, 0, 0, 0) 64.27%, rgba(0, 0, 0, 0.8) 94.3%), linear-gradient(177deg, rgba(0, 0, 0, 0.5) 5.21%, rgba(0, 0, 0, 0) 49.96%);
   top: 0;
   left: 0;
}

/*-----------------------------------------------------------------------
   Block - Cta
-----------------------------------------------------------------------*/

.block-cta .wysiwyg-content {
   max-width: 500px;
   margin: 0 auto 0;
   text-align: left;
   position: relative;
   right: -10%;
}

.block-cta .background-image {
   width: 23%;
   position: absolute;
   left: 0;
   top: 0;
   max-width: 350px;
   z-index: 1;
}

@media (max-width: 1199px) {
   .block-cta .background-image {
      width: 35%;
   }
   .block-cta .background-image svg {
      width: 100%;
   }
   .block-cta .wysiwyg-content {
      right: 0;
   }
}

/*-----------------------------------------------------------------------
   Block - Charters Feed
-----------------------------------------------------------------------*/

.block-charters-feed .charters-gallery img {
   width: 100%;
   height: auto;
   aspect-ratio: 4 / 4.4;
   object-fit: cover;
}
.block-charters-feed .swiper-slide{
   overflow: hidden;
}
.block-charters-feed .swiper-slide .wrap {
   position: relative;
   transform: scale(1);
   transition: all 0.4s ease-in-out;
}

.block-charters-feed .swiper-slide .wrap:hover {
   transform: scale(1.04);

}

.block-charters-feed .swiper-slide .wrap .wysiwyg-content {
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
   padding: 20px;
   text-align: center;
}

.block-charters-feed .swiper-slide {
   position: relative;
   z-index: 0;
   padding: 20px 0;
}

.block-charters-feed .swiper-slide:hover {
   z-index: 1;
}
.block-charters-feed .swiper-navigation {
   flex-direction: row;
   width: 90%;
   justify-content: space-between;
   right: 0;
   left: 5%;
}

/*-----------------------------------------------------------------------
   Block - Image
-----------------------------------------------------------------------*/

.block-image .full-img img {
   aspect-ratio: 3/1;
   object-fit: cover;
}

/*-----------------------------------------------------------------------
   Block - Info
-----------------------------------------------------------------------*/

.block-info .title {
   text-align: center;
   margin-bottom: 90px;
}

.block-info.blue .top-shape svg path {
   fill: var(--white);
}

.block-info.cream .top-shape svg path {
   fill: var(--blue);
}

.block-info .grid-list {
   display: flex;
}

.block-info .grid-list {
   margin-bottom: 40px;
}

.block-info .grid-list .item-column {
   width: 33.33%;
   padding: 0px 10px;
   text-align: center;
   border-right: 1px solid #000;
}
.block-info .grid-list .item-column:nth-child(3n) {
   border-right: none;
}

.block-info .block-setting-background-colour[style*="--block-background-colour: var(--blue)"] .grid-list .item-column {
   border-color: var(--white);
}

.block-info .grid-list .item-column p {
   max-width: 200px;
   margin: 10px auto;
}

.block-info {
   overflow: hidden;
}

.block-info .top-shape svg {
   width: 100%;
   height: 100%;
}

.block-info .top-shape {
   width: 360px;
   position: absolute;
   right: -6%;
   top: -13%;
   height: 360px;
   z-index: 1;
}

/* responsive */

@media (max-width: 860px) {
   .block-info .top-shape {
      width: 330px;
      height: 390px;
      right: -15%;
   }
   .block-info .title {
      margin-bottom: 50px;
   }
}
@media (max-width: 550px) {
   .block-info .top-shape {
      right: -35%;
   }
   .block-info .grid-list {
      flex-direction: column;
      margin-bottom: 0px;
   }
   .block-info .grid-list .item-column {
      width: 100%;
      border-right: none;
      padding-bottom: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block - Contact-form
-----------------------------------------------------------------------*/

.block-contact-form {
   overflow: hidden;
}

.block-contact-form .top-shape svg {
   width: 100%;
   height: 100%;
}

.block-contact-form .top-shape {
   width: 360px;
   position: absolute;
   right: -6%;
   top: -13%;
   height: 360px;
}

.block-contact-form .contact-detail ul li {
   padding: 0px;
}

.block-contact-form .wysiwyg-content .contact-detail ul li {
   margin-bottom: 20px !important;
}

.block-contact-form .wysiwyg-content .contact-detail ul li h4 {
   margin-bottom: 0px !important;
}

.contact-detail ul li:before {
   display: none;
}

.block-contact-form .contact-detail ul li a {
   display: block;
   text-decoration: none;
   color: var(--dark-blue);
}

.block-contact-form .contact-detail ul li a:hover {
   color: var(--yellow);
}

.block-contact-form .wysiwyg-content .contact-detail ul li.address a {
   text-decoration: underline;
}

.block-contact-form .social-icons {
   margin-top: 20px;
}

.block-contact-form .grid-col-2 {
   align-items: flex-end;
}

.block-contact-form.blue .gform_wrapper.gravity-theme .gfield_label {
   color: var(--white);
}

.block-contact-form.blue .gform_wrapper.gravity-theme .button.button-transparent {
   background-color: var(--yellow);
   border-color: var(--yellow);
}

.block-contact-form.blue .gform_wrapper.gravity-theme .button.button-transparent:hover {
   background-color: transparent;
   color: var(--yellow);
}

.block-contact-form.blue .text-white a:hover {
   color: rgba(var(--white-rgb), 50%) !important;
}

.block-contact-form.blue .gform_wrapper.gravity-theme .button.button-transparent:hover svg {
   color: var(--yellow);
}

.twc-theme.block-contact-form.cream input:not([type="button"], [type="submit"]),
.twc-theme.block-contact-form.cream select,
.twc-theme.block-contact-form.cream textarea {
   background-color: var(--white);
}

.twc-theme.block-contact-form .text-white .social-icons a:first-child path,
.twc-theme.block-contact-form .text-white .social-icons a:hover:first-child path {
   fill: var(--blue) !important;
}

.twc-theme.block-contact-form .text-white .social-icons svg path,
.twc-theme.block-contact-form .text-white .social-icons svg circle {
   fill: var(--yellow) !important;
}

.twc-theme.block-contact-form .text-white .social-icons a:hover svg path,
.twc-theme.block-contact-form .text-white .social-icons a:hover svg circle {
   fill: var(--cream) !important;
}

.block-contact-form.blue .background-image svg path {
   fill: var(--white);
}

.block-contact-form.cream .background-image svg path {
   fill: var(--blue);
}
.block-contact-form .background-image {
   width: 410px;
   height: 450px;
   position: absolute;
   top: -157px;
   right: -100px;
   left: inherit;
   z-index: 1;
}
.block-contact-form .background-image svg {
   width: 100%;
   height: 100%;
}
/* responsive */

@media (min-width: 860px) {
   .block-contact-form .grid-col-2 {
      grid-template-columns: 1fr 1.5fr;
      gap: 150px;
   }
}
@media (max-width: 860px) {
   .block-contact-form .background-image {
      width: 330px;
      height: 390px;
      top: -110px;
   }
}

/*-----------------------------------------------------------------------
   Block - Video
-----------------------------------------------------------------------*/

.block-video .title {
   margin-bottom: 60px;
}

.block-video .play-icon {
   width: 132px;
   height: 132px;
   background: rgb(255 255 255 / 60%);
   position: absolute;
   top: 50%;
   left: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transform: translate(-50%, -50%);
   cursor: pointer;
}

.block-video .video-player {
   position: relative;
}

/* responsive */

@media (max-width: 767px) {
   .block-video .play-icon {
      width: 80px;
      height: 80px;
   }
   .block-video .play-icon svg {
      width: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block - Instagram
--------------------------------------------------------------------*/

.block-instagram .sbi_header_img {
   display: none;
}

.block-instagram .sbi_feedtheme_header_text h3 {
   text-align: center;
   font-size: 55px !important;
   font-style: italic;
   font-weight: 400;
   line-height: 42px !important;
}

.block-instagram .sbi_feedtheme_header_text {
   justify-content: center;
   align-items: center;
   margin-bottom: 40px;
}

.block-instagram .block-setting-background-colour[style*="--block-background-colour: var(--blue)"] .sbi_feedtheme_header_text h3 {
   color: var(--white);
}
.block-instagram #sb_instagram .sb_instagram_header h3,
.sb_instagram_header h3 {
   color: var(--blue);
}
.block-instagram #sb_instagram .sb_instagram_header a,
.sb_instagram_header a {
   display: flex;
   text-align: center;
   justify-content: center;
   max-width: fit-content;
   margin: auto;
}

.block-instagram .sb_instagram_header.sbi_medium .sbi_feedtheme_header_text {
   display: flex;
   flex-direction: row-reverse;
   gap: 5px;
}

.block-instagram .sb_instagram_header.sbi_medium .sbi_feedtheme_header_text p {
   color: var(--dark-blue);
   text-align: center;
   font-family: var(--font-secondary);
   font-size: 55px !important;
   font-weight: 500;
   line-height: 42px !important;
}

.sbi_lightboxOverlay {
	z-index: 9999999999;
}
.sbi_lightbox {
	z-index: 10000000000;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer {
	margin: auto;
}

/* responsive */

@media (max-width: 860px) {
   .block-instagram .sbi_feedtheme_header_text h3,
   #sb_instagram .sb_instagram_header p,
   .sb_instagram_header p {
      font-size: 34px !important;
      line-height: 40px !important;
   }
   .block-instagram .sbi_feedtheme_header_text {
      margin-bottom: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block - Wysiwyg Content
--------------------------------------------------------------------*/

.block-wysiwyg-content {
   overflow: hidden;
}
.block-info.blue .background-image svg path {
   fill: var(--white);
}

.block-info.cream .background-image svg path {
   fill: var(--blue);
}
.block-wysiwyg-content .background-image {
   width: 410px;
   height: 450px;
   position: absolute;
   top: -157px;
   right: -100px;
   left: inherit;
   z-index: 1;
}

.block-wysiwyg-content .background-image svg {
   width: 100%;
   height: 100%;
}
.block-wysiwyg-content.blue .background-image svg path{
   fill: var(--white);
}

/* .block-wysiwyg-content.white .background-image,
.block-wysiwyg-content.blue .background-image {
   display: none;
} */

/* responsive */

@media (max-width: 860px) {
   .block-wysiwyg-content .background-image {
      width: 330px;
      height: 390px;
      top: -110px;
   }
}

.block-multicolumn.cream .background-image {
   display: none;
}
.block-multicolumn.blue .background-image svg path {
   fill: var(--white);
}
.block-multicolumn .background-image svg {
   width: 100%;
   height: 100%;
}
.block-multicolumn.cream .background-image svg path {
   fill: var(--blue);
}
.block-multicolumn .background-image {
   width: 410px;
   height: 450px;
   position: absolute;
   top: -157px;
   right: -100px;
   left: inherit;
   z-index: 1;
}
.block-multicolumn {
   overflow: hidden;
}
/* responsive */

@media (max-width: 860px) {
   .block-multicolumn .background-image {
      width: 330px;
      height: 390px;
      top: -110px;
   }
}

.error404 .site-header .site-logo svg path[fill="#03428E"],
.search .site-header .site-logo svg path[fill="#03428E"] {
   fill: var(--blue) !important;
}

.error404 .site-header .site-logo svg path[fill="#FFCB05"],
.search .site-header .site-logo svg path[fill="#FFCB05"] {
   fill: var(--yellow) !important;
}

.error404 .site-header .site-logo svg .text-color,
.search .site-header .site-logo svg .text-color {
   fill: var(--dark-blue) !important;
}

.error404 .site-header .main-menu > .menu > li > a,
.search .site-header .main-menu > .menu > li > a {
   color: var(--blue);
}
.error404 .site-header .main-menu > .menu > li > a:hover,
.search .site-header .main-menu > .menu > li > a:hover {
   color: var(--yellow);
}

.search .archive-index.archive-search {
   padding: 200px 0px 0px;
}
.search .site-header .icon-hamburger span,
.search .site-header .icon-hamburger span:before,
.search .site-header .icon-hamburger span:after {
   background: var(--black);
}
.search.menu-active .site-header .icon-hamburger span,
.search.menu-active .site-header .icon-hamburger span:before,
.search.menu-active .site-header .icon-hamburger span:after {
   background: var(--white);
}
.search.is-scrolled .site-header .icon-hamburger span,
.search.is-scrolled .site-header .icon-hamburger span:before,
.search.is-scrolled .site-header .icon-hamburger span:after {
   background: var(--black);
}

/* responsive */

@media (max-width: 860px) {
   .search .archive-index.archive-search {
      padding: 100px 0px 0px;
   }
}
