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

@import url('https://use.typekit.net/euj8oml.css');

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

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

   --font-primary: 'europa', sans-serif;

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

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

   --light-grey: #171717;
   --light-grey-rgb: 23, 23, 23;

   --mid-grey: #111111;
   --mid-grey-rgb: 17, 17, 17;

   --dark-grey: #0a0a0a;
   --dark-grey-rgb: 10, 10, 10;

   --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: 30px;

   --container-xs: 600px;
   --container-sm: 860px;
   --container-md: 1000px;
   --container-lg: 1400px;

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

   --transition: 0.3s ease;
}

/* Responsive */

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

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

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

.editsuite-theme *,
.editsuite-theme *:before,
.editsuite-theme *:after {
   box-sizing: border-box;
}

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

body.editsuite-theme,
.editor-styles-wrapper {
   background: var(--dark-grey);
   font-optical-sizing: auto;
   -webkit-text-size-adjust: none;
   -webkit-font-smoothing: antialiased;
   font-family: var(--font-primary) !important;
   font-size: 16px !important;
   color: var(--white);
   line-height: 1.5;
   font-weight: 400;
}

/* Block Editor */

.editor-styles-wrapper h1.wp-block-post-title {
   border: 0 !important;
   color: var(--black) !important;
}

.editor-styles-wrapper .wp-block-post-content {
   margin: 10px !important;
   width: auto !important;
   max-width: 100% !important;
   padding: 0 !important;
}

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

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

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

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

/*-----------------------------------------------------------------------
   Layout
-----------------------------------------------------------------------*/

.site-main {
   position: relative;
   z-index: 1;
}

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

@media (min-width: 860px) {
   .editsuite-theme .grid-col-2.sidebar-left {
      grid-template-columns: 1fr 1.75fr;
   }

   .editsuite-theme .grid-col-2.sidebar-right {
      grid-template-columns: 1.75fr 1fr;
   }
}

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

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

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

   .editsuite-theme .padding-lg,
   .editsuite-theme .padding-lg-top {
      padding-top: 40px;
   }

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

   .editsuite-theme .grid-col-3,
   .editsuite-theme .grid-col-4,
   .editsuite-theme .grid-col-5,
   .editsuite-theme .grid-col-6 {
      gap: 10px;
   }

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

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

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

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

@media (max-width: 720px) {
   .editsuite-theme .grid-col-4,
   .editsuite-theme .grid-col-5 {
      grid-template-columns: repeat(2, 1fr);
   }

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

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

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

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

/*-----------------------------------------------------------------------
   Background Colours
-----------------------------------------------------------------------*/

.editsuite-theme .background-white {
   background: var(--white);
}

.editsuite-theme .background-black {
   background: var(--black);
}

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

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

.editsuite-theme h1,
.editsuite-theme h1 *,
.editsuite-theme .h1,
.editsuite-theme .h1 * {
   font-size: 50px;
   line-height: 55px;
   letter-spacing: 1px;
}

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

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

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

.editsuite-theme h5,
.editsuite-theme h5 *,
.editsuite-theme .h5,
.editsuite-theme .h5 * {
   font-size: 12px;
   letter-spacing: 2px;
   line-height: 18px;
   text-transform: uppercase;
}

.editsuite-theme h6,
.editsuite-theme h6 *,
.editsuite-theme .h6,
.editsuite-theme .h6 * {
   font-size: 10px;
   letter-spacing: 1px;
   line-height: 14px;
   text-transform: uppercase;
}

.editsuite-theme ul,
.editsuite-theme ol,
.editsuite-theme li {
   margin: 0;
   padding: 0;
   list-style: none;
}

.editsuite-theme p,
.editsuite-theme li,
.editsuite-theme .para {
   font-size: 15px;
   line-height: 22px;
   font-weight: 300;
}

.editsuite-theme a {
   text-decoration-thickness: 0.5px !important;
   text-underline-position: under !important;
}

.editsuite-theme a:hover {
   color: var(--silver);
}

.editsuite-theme strong,
.editsuite-theme strong * {
   font-weight: 600;
}

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

.editsuite-theme mark {
   background: none;
}

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

/* Responsive */

@media (max-width: 860px) {
   .editsuite-theme h1,
   .editsuite-theme h1 *,
   .editsuite-theme .h1,
   .editsuite-theme .h1 * {
      font-size: 38px;
      line-height: 42px;
   }

   .editsuite-theme h2,
   .editsuite-theme h2 *,
   .editsuite-theme .h2,
   .editsuite-theme .h2 * {
      font-size: 28px;
      line-height: 32px;
   }
}

@media (max-width: 720px) {
   .editsuite-theme h3,
   .editsuite-theme h3 *,
   .editsuite-theme .h3,
   .editsuite-theme .h3 * {
      font-size: 20px;
      line-height: 24px;
   }

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

   .editsuite-theme .title-row {
      text-align: center;
   }
}

/* 

@media (max-width: 550px) {
  .editsuite-theme h1,
  .editsuite-theme h1 *,
  .editsuite-theme .h1,
  .editsuite-theme .h1 * {
    font-size: 36px;
  }

  .editsuite-theme h2,
  .editsuite-theme h2 *,
  .editsuite-theme .h2,
  .editsuite-theme .h2 * {
    font-size: 34px;
  }

  .editsuite-theme h3,
  .editsuite-theme h3 *,
  .editsuite-theme .h3,
  .editsuite-theme .h3 * {
    font-size: 28px;
  }
} */

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

.editsuite-theme .text-white,
.editsuite-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),
.wysiwyg-content .responsive-embed:not(:last-child) {
   margin: 0 0 20px !important;
}

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

/* Lists */

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

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

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

.wysiwyg-content ul li:before {
   content: '';
   display: block;
   position: absolute;
   top: 10px;
   left: 2px;
   width: 3px;
   height: 3px;
   border-radius: 3px;
   background: var(--silver);
}

.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);
}

/* Links */

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

/* 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
-----------------------------------------------------------------------*/

.editsuite-theme form,
.editsuite-theme form *:not(table, table *, button) {
   border: 0;
   padding: 0;
   margin: 0;
   outline: 0 !important;
   box-shadow: none !important;
   position: relative;
}

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

/* Labels */

.editsuite-theme label,
.editsuite-theme legend,
.editsuite-theme form .ginput_preview,
.editsuite-theme form .gform-field-label,
.editsuite-theme form .gfield_description,
.editsuite-theme form .ginput_quantity_label,
.editsuite-theme form .gform_fileupload_rules,
.editsuite-theme form .gfield_password_strength {
   display: block !important;
   margin: 0 !important;
   padding: 0 !important;
   font-family: var(--font-primary);
   color: var(--white) !important;
   font-size: 12px !important;
   line-height: 25px !important;
   font-weight: 400 !important;
   margin: 5px 0 !important;
}

.editsuite-theme fieldset legend {
   font-size: 16px !important;
}

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

.editsuite-theme label .required,
.editsuite-theme form .gfield_label .gfield_required {
   color: var(--silver);
   margin-left: 2px !important;
   text-decoration: none !important;
}

/* Basic Fields */

.editsuite-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.editsuite-theme select:not([class*='ui-']),
.editsuite-theme .select2-container .select2-selection,
.editsuite-theme textarea:not([class*='ui-']) {
   appearance: none;
   -webkit-appearance: none;
   display: block;
   width: 100% !important;
   height: auto !important;
   border: 0 !important;
   border-bottom: 1px solid rgba(var(--silver-rgb), 25%) !important;
   border-radius: 0 !important;
   background: transparent !important;
   padding: 30px 20px !important;
   color: var(--white) !important;
   font-size: 15px !important;
   line-height: 20px !important;
   font-weight: 300 !important;
   text-align: left !important;
   text-decoration: none !important;
   transition: none !important;
   resize: none;
}

.editsuite-theme textarea:not([class*='ui-']) {
   min-height: 100px;
   max-height: 200px;
}

.editsuite-theme input:not([class*='ui-'], [type='button'], [type='submit']):hover,
.editsuite-theme input:not([class*='ui-'], [type='button'], [type='submit']):focus,
.editsuite-theme select:not([class*='ui-']):hover,
.editsuite-theme select:not([class*='ui-']):focus,
.editsuite-theme textarea:not([class*='ui-']):hover,
.editsuite-theme textarea:not([class*='ui-']):focus {
   outline: 0 !important;
   box-shadow: none !important;
}

.editsuite-theme input:not([class*='ui-'])[disabled],
.editsuite-theme select:not([class*='ui-'])[disabled],
.editsuite-theme textarea:not([class*='ui-'])[disabled],
.editsuite-theme button:not([class*='ui-'])[disabled] {
   opacity: 50%;
   pointer-events: none;
}

.editsuite-theme input:not([class*='ui-']):-webkit-autofill,
.editsuite-theme input:not([class*='ui-']):-webkit-autofill:hover,
.editsuite-theme input:not([class*='ui-']):-webkit-autofill:focus,
.editsuite-theme input:not([class*='ui-']):-webkit-autofill:active,
.editsuite-theme textarea:not([class*='ui-']):-webkit-autofill,
.editsuite-theme textarea:not([class*='ui-']):-webkit-autofill:hover,
.editsuite-theme textarea:not([class*='ui-']):-webkit-autofill:focus,
.editsuite-theme textarea:not([class*='ui-']):-webkit-autofill:active {
   -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
   -webkit-text-fill-color: var(--black);
}

.editsuite-theme ::placeholder {
   color: var(--silver);
}

/* Select */

.editsuite-theme select:not([class*='ui-'], [multiple='multiple']) {
   padding-right: 45px !important;
   background: url(../img/icon-chevron-down.svg) 50% no-repeat !important;
   background-size: 12px !important;
   background-position: center right 20px !important;
   cursor: pointer;
}

.editsuite-theme .select2,
.editsuite-theme .select2 * {
   margin: 0 !important;
   padding: 0 !important;
}

.editsuite-theme .select2-container .select2-selection {
   background: transparent url(../img/icon-chevron-down.svg) 50% no-repeat !important;
   background-size: 12px !important;
   background-position: center right 20px !important;
   cursor: pointer;
}

.editsuite-theme .select2-container .select2-selection,
.editsuite-theme .select2-container .select2-selection * {
   line-height: 20px !important;
}

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

.editsuite-theme .select2-dropdown {
   top: 0;
   border-width: 1px !important;
   border-color: var(--black) !important;
   border-radius: 0 !important;
   background: var(--white);
}

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

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

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

/* Checkbox & Radio */

.editsuite-theme input[type='checkbox']:not([class*='ui-']),
.editsuite-theme input[type='radio']:not([class*='ui-']) {
   min-height: 25px !important;
   min-width: 25px !important;
   max-width: 25px !important;
   max-height: 25px !important;
   border-radius: 0 !important;
   border: 1px solid var(--black) !important;
   padding: 0 !important;
   background: var(--white);
   box-shadow: none !important;
   margin: 0 10px 0 0 !important;
   position: relative;
   display: inline-block;
   cursor: pointer;
   transition: none !important;
}

.editsuite-theme input[type='radio']:not([class*='ui-']) {
   border-radius: 25px !important;
}

.editsuite-theme input[type='checkbox']:not([class*='ui-']) + label,
.editsuite-theme input[type='radio']:not([class*='ui-']) + label {
   font-weight: 400 !important;
   font-size: 14px !important;
   font-family: var(--font-primary);
   letter-spacing: inherit;
   text-transform: none !important;
   margin: 0 !important;
}

.editsuite-theme input[type='checkbox']:not([class*='ui-']):checked {
   border-color: var(--black) !important;
   background: var(--black) url(../img/icon-checkbox.svg) 50% no-repeat !important;
   background-size: 16px !important;
}

.editsuite-theme input[type='radio']:not([class*='ui-']):checked {
   border: 6px solid var(--black) !important;
}

.editsuite-theme input[type='radio']:not([class*='ui-']):before,
.editsuite-theme input[type='checkbox']:not([class*='ui-']):before {
   display: none !important;
}

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

.gform_wrapper .gform_body,
.gform_wrapper .gform_fields,
.gform_wrapper .gform_footer {
   margin: 0 !important;
}

.gform_wrapper .gform_footer {
   padding-bottom: 0 !important;
}

.gform_wrapper .gform_fields {
   gap: 10px 20px !important;
}

.gform_wrapper .ginput_complex {
   gap: 0 !important;
}

.gform_wrapper .gform_required_legend {
   display: none !important;
}

/* AJAX Spinner */

.gform_wrapper .gform_ajax_spinner,
.gform_wrapper .gform-loader {
   width: 12px !important;
   height: 12px !important;
   margin: 0 0 0 20px !important;
}

/* Labels */

.gform_wrapper .gfield_description,
.gform_wrapper .gfield_list_group_item:before,
.gform_wrapper .gfield_list .gform-field-label,
.gform_wrapper .gform-field-label--type-sub {
   font-size: 12px !important;
   font-weight: 400 !important;
   color: rgba(var(--black-rgb), 50%) !important;
   text-transform: none !important;
   letter-spacing: 0 !important;
}

.gform_wrapper .gform_title {
   font-size: 38px;
   font-weight: 700;
   margin-bottom: 30px;
}

/* Radio / Checkbox */

.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
   margin: 10px 0 !important;
}

/* Date / Time */

.gform_wrapper .ginput_container_date,
.gform_wrapper .ginput_container_time {
   flex-basis: auto !important;
   max-width: 100% !important;
   flex: 1 !important;
}

.gform_wrapper .hour_minute_colon {
   line-height: 35px !important;
}

/* List */

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

/* File Upload */

.gform_wrapper .gform_drop_area {
   padding: 20px !important;
   border-radius: 0 !important;
   background: transparent !important;
   border: 1px dashed rgba(var(--black-rgb), 25%) !important;
}

.gform_wrapper .gform_drop_area:before {
   display: none !important;
}

.gform_wrapper .gform_drop_area .gform_button_select_files {
   margin: auto !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview {
   font-size: 14px;
   display: flex !important;
   align-items: center;
   margin: 10px 0 0 !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview * {
   margin: 0 5px 0 0 !important;
   order: 9;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview .gfield_fileupload_progressbar {
   display: none;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file * {
   padding: 0 !important;
   margin: 0 0 1px !important;
   min-width: 0 !important;
   box-shadow: none !important;
   font-size: 16px !important;
   line-height: 18px !important;
   color: var(--black) !important;
   order: 1 !important;
}

.gform_wrapper .gform_delete_file:hover * {
   color: var(--red) !important;
}

.gform_wrapper .gfield--type-fileupload .gform_fileupload_rules {
   padding-top: inherit !important;
}

/* Price / Product */

.gform_wrapper .ginput_product_price_wrapper {
   width: 100%;
   margin: 0 0 10px;
}

/* Consent */

.gform_wrapper .ginput_container_consent {
   display: flex;
}

/* Progress Bar */

.gform_wrapper .gf_progressbar_wrapper {
   margin: 0 0 30px;
}

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

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

.gform_wrapper .gf_progressbar_percentage {
   height: 16px !important;
   background: var(--light-grey) !important;
}

.gform_wrapper .gf_progressbar_title,
.gform_wrapper .gf_progressbar_percentage span {
   margin: 0 !important;
}

.gform_wrapper .gf_progressbar_title {
   font-size: 12px !important;
   font-weight: 400 !important;
}

.gform_wrapper .gf_progressbar_percentage span {
   padding: 0 5px !important;
   color: var(--black) !important;
   font-size: 10px !important;
   line-height: 15px !important;
   text-transform: uppercase !important;
}

/* Page Footer */

.gform_wrapper .gform_page_footer {
   display: flex;
   gap: 15px;
   align-items: center;
}

.gform_wrapper .gform_page_footer .button {
   margin: 0 !important;
}

.gform_wrapper .gform_page_footer .gform_previous_button:not(:hover, :focus),
.gform_wrapper .gform_page_footer .gform_next_button:not(:hover, :focus) {
   color: var(--black) !important;
}

/* Validation */

.gform_wrapper .gform_validation_errors {
   outline: 0 !important;
   border: 0 !important;
   border-radius: 0 !important;
   box-shadow: none !important;
   margin-bottom: 20px !important;
}

.gform_wrapper .gform_validation_errors * {
   color: var(--red) !important;
   font-family: var(--font-primary);
   font-weight: 400;
   letter-spacing: 0 !important;
}

.gform_wrapper .gfield_validation_message {
   background: transparent !important;
   border: 0 !important;
   padding: 0 !important;
}

/*-----------------------------------------------------------------------
   Filter Form
-----------------------------------------------------------------------*/

.editsuite-theme form.filter-form {
   width: fit-content !important;
   max-width: 100%;
}

.editsuite-theme *[id*='response'] {
   transition: var(--transition) all;
}

.editsuite-theme .filter-loading {
   opacity: 50%;
}

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

.editsuite-theme .button-group {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
}

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

/* Default Styles */

.editsuite-theme button:not([class*='pswp']),
.editsuite-theme button:not([class*='pswp']):hover,
.editsuite-theme button:not([class*='pswp']):focus,
.editsuite-theme .button,
.editsuite-theme .button:hover,
.editsuite-theme .button:focus {
   appearance: none;
   position: relative;
   display: flex !important;
   align-items: center;
   gap: 10px;
   width: auto;
   height: auto;
   margin: 0;
   padding: 5px 0 !important;
   outline: 0;
   border: 0;
   border-radius: 0 !important;
   box-shadow: none;
   background: transparent !important;
   font-family: var(--font-primary);
   font-size: 12px !important;
   font-weight: 600;
   color: var(--white);
   letter-spacing: 1px;
   line-height: 20px !important;
   text-align: center;
   text-decoration: none !important;
   text-transform: uppercase;
   cursor: pointer;
}

.editsuite-theme .button:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 3px;
   bottom: 0;
   left: 0;
   background: var(--white);
   transform: scaleX(0);
   transform-origin: bottom right;
   transition: transform 0.25s ease-out;
}

/* Hover/Focus */

.editsuite-theme .button:hover:after,
.editsuite-theme .button:focus:after {
   transform: scaleX(1);
   transform-origin: bottom left;
}

/* Responsive */

@media (max-width: 550px) {
   .editsuite-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: 100px;
   max-height: 50px;
   width: auto;
   height: auto;
   z-index: 20000;
   transition: none;
}

@media (max-width: 550px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 100px;
      max-height: 40px;
   }
}

/*-----------------------------------------------------------------------
   Site Header
-----------------------------------------------------------------------*/

.site-header {
   top: 0;
   width: 100%;
   display: block;
   position: fixed;
   background: rgba(var(--black-rgb), 60%);
   z-index: 2000000002;
}

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

.site-header > div[class*='container'] {
   height: var(--header-height);
}

.site-header > .grid-col-3 {
   grid-template-columns: repeat(3, 1fr) !important;
}

/* Hamburger */

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

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

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

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

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

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

/* Responsive Menu */

.site-responsive-menu {
   position: fixed;
   bottom: 0;
   right: 0;
   top: 0;
   width: 100%;
   overflow-y: auto;
   background: var(--black);
   display: flex;
   align-items: center;
   justify-content: center;
   pointer-events: none;
   opacity: 0;
   z-index: 0;
}

body.admin-bar .site-responsive-menu {
   top: var(--admin-height);
}

.site-responsive-menu .main-menu ul > li {
   opacity: 0;
   transform: translateY(10px);
}

/* Active State */

body.menu-active .site-responsive-menu {
   pointer-events: all;
   z-index: 2;
   opacity: 1;
}

body.menu-active .site-responsive-menu .main-menu > ul > li {
   opacity: 100%;
   transform: translateY(0px);
   transition: var(--transition) opacity, var(--transition) transform;
}

body.menu-active .site-responsive-menu .main-menu > ul > li:nth-child(1) {
   transition-delay: 0.1s;
}

body.menu-active .site-responsive-menu .main-menu > ul > li:nth-child(2) {
   transition-delay: 0.2s;
}

body.menu-active .site-responsive-menu .main-menu > ul > li:nth-child(3) {
   transition-delay: 0.3s;
}

body.menu-active .site-responsive-menu .main-menu > ul > li:nth-child(4) {
   transition-delay: 0.4s;
}

/* Responsive Menu: Menu */

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

.site-responsive-menu .main-menu ul li {
   padding: 30px 0;
   text-align: center;
}

.site-responsive-menu .main-menu ul li a {
   position: relative;
   color: var(--white);
   text-decoration: none;
   padding: 10px 0;
}

.site-responsive-menu .main-menu ul li a:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 3px;
   bottom: 0;
   left: 0;
   background: var(--white);
   transform: scaleX(0);
   transform-origin: bottom right;
   transition: transform 0.25s ease-out;
}

.site-responsive-menu .main-menu ul li a:hover:after,
.site-responsive-menu .main-menu ul li a:focus:after,
.site-responsive-menu .main-menu ul li.current-menu-item > a:after {
   transform: scaleX(1);
   transform-origin: bottom left;
}

.site-responsive-menu .main-menu > ul > li > a {
   font-size: 60px;
   line-height: 65px;
   font-weight: 600;
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu ul li.menu-item-has-children > a {
   position: relative;
}

.site-responsive-menu .main-menu .trigger-sub-menu {
   position: absolute;
   top: 40px;
   right: -40px;
}

.site-responsive-menu .main-menu .trigger-sub-menu,
.site-responsive-menu .main-menu .trigger-sub-menu svg {
   display: block;
   width: 30px;
   height: 30px;
}

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

.site-responsive-menu ul li ul.sub-menu a {
   font-size: 22px;
   line-height: 30px;
   padding: 10px 0;
   font-weight: 500;
}

.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 > .sub-menu-wrap {
   display: block !important;
}

/* Responsive */

@media (max-width: 720px) {
   .site-header > div[class*='container'] {
      width: calc(100% - 20px);
   }

   .site-responsive-menu .main-menu ul li {
      padding: 15px 0;
   }

   .site-responsive-menu .main-menu > ul > li > a {
      font-size: 30px;
      line-height: 35px;
      padding: 5px 0;
   }

   .site-responsive-menu .main-menu .trigger-sub-menu {
      top: 22px;
      right: -30px;
   }

   .site-responsive-menu .main-menu .trigger-sub-menu,
   .site-responsive-menu .main-menu .trigger-sub-menu svg {
      width: 20px;
      height: 20px;
   }
}

@media (max-width: 640px) {
   .site-header {
      background: rgba(var(--black-rgb), 80%);
   }
}

/*-----------------------------------------------------------------------
   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(--light-grey);
}

body.editsuite-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;
}

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

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

/* Responsive */

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

/*-----------------------------------------------------------------------
   Site Newsletter
-----------------------------------------------------------------------*/

.trigger-newsletter,
.site-newsletter {
   background: var(--black);
   position: fixed;
   bottom: 30px;
   border-left: 3px solid rgba(var(--white-rgb), 15%);
   right: -100%;
   z-index: 20000000000;
   transition: 0.3s all;
}

.trigger-newsletter.active,
.site-newsletter.active {
   right: 0;
}

.site-newsletter {
   padding: 40px 25px 20px;
   width: 400px;
   z-index: 200000000002;
}

.site-newsletter .gform_wrapper .gfield input {
   padding: 20px 10px !important;
}

.trigger-newsletter {
   display: flex;
   align-items: center;
   gap: 15px;
   cursor: pointer;
   padding: 18px;
}

.trigger-newsletter svg {
   color: var(--white);
   width: 20px;
   height: 20px;
}

.site-newsletter .close-newsletter:not(.button) {
   position: absolute;
   right: 0;
   top: 0;
   padding: 15px;
   cursor: pointer;
}

.site-newsletter .close-newsletter svg {
   width: 14px;
   height: 14px;
   color: var(--white);
}

/* Responsive */

@media screen and (max-width: 550px) {
   .trigger-newsletter,
   .site-newsletter {
      bottom: 0;
      border-left: 0;
      border-top: 3px solid rgba(var(--white-rgb), 15%);
   }

   .site-newsletter {
      width: 100%;
      max-width: 100%;
   }
}

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

.site-footer {
   padding: 10px 0;
}

/* Responsive */

@media (max-width: 640px) {
   .site-footer .flex-layout {
      flex-direction: column;
      text-align: center;
      justify-content: center;
      gap: 5px;
   }
}

/*-----------------------------------------------------------------------
   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
-----------------------------------------------------------------------*/

.editsuite-theme img:not([class*='pswp']) {
   max-width: 100%;
   height: auto;
   display: block;
}

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

.editsuite-theme .image-square,
.editsuite-theme .image-portrait,
.editsuite-theme .image-landscape {
   position: relative;
   display: block;
   overflow: hidden;
}

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

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

.editsuite-theme .image-landscape {
   /* aspect-ratio: 5 / 4; */
   aspect-ratio: 16 / 9;
}

/* Background Elements */

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

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

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

.editsuite-theme .background-overlay:before {
   content: '';
   background: linear-gradient(to bottom, rgba(var(--dark-grey-rgb), 50%) 60%, var(--dark-grey));
}

/* Video Embed */

.editsuite-theme .responsive-embed {
   position: relative;
   padding-bottom: 56.25%; /* 16:9 */
   height: 0;
   overflow: hidden;
}

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

/*-----------------------------------------------------------------------
   Photoswipe
-----------------------------------------------------------------------*/

.editsuite-theme .pswp--open {
   z-index: 200000000000002;
}

.editsuite-theme button[class*='pswp'] svg,
.editsuite-theme button[class*='pswp'] svg * {
   stroke-width: 0 !important;
}

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

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

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

/* Pagination */

.editsuite-theme .swiper .swiper-pagination {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
   margin-top: 40px;
}

.editsuite-theme .swiper .swiper-pagination span {
   opacity: 100%;
   margin: 0;
   width: 30px;
   height: 2px;
   border-radius: 0;
   background: rgba(var(--silver-rgb), 50%);
   transition: var(--transition) background;
}

.editsuite-theme .swiper .swiper-pagination span.swiper-pagination-bullet-active {
   background: var(--white);
}

/* Navigation */

.editsuite-theme .swiper .swiper-button-prev:after,
.editsuite-theme .swiper .swiper-button-next:after {
   color: var(--white);
   font-size: 20px;
}

/* Responsive */

@media (max-width: 720px) {
   .editsuite-theme .swiper .swiper-pagination {
      justify-content: center;
   }
}

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

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

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

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

.editsuite-theme table th {
   background: rgba(var(--black-rgb), 5%);
}

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

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

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

.editsuite-theme .social-icons {
   gap: 10px;
}

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

.editsuite-theme .social-icons svg {
   width: 15px;
   height: 15px;
   color: var(--white);
}

.editsuite-theme .social-icons a:hover svg,
.editsuite-theme .social-icons div:hover svg {
   color: var(--silver);
}

.editsuite-theme .social-icons h6 {
   margin-top: 2px;
}

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

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

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

.editsuite-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(--white) transparent transparent transparent;
}

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

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

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

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

.editsuite-theme .popup-overlay {
   position: fixed;
   left: 0;
   top: 0;
   bottom: 0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(var(--mid-grey-rgb), 95%);
   z-index: 200000000002;
}

/* Containers */

.editsuite-theme .popup-overlay > *[class*='container'] {
   position: relative;
   overflow-y: auto;
   max-height: 80vh;
   padding: 25px;
}

/* Close Button */

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

body.editsuite-theme.admin-bar .popup-overlay .close-popup:not(.button) {
   top: var(--admin-height);
}

.editsuite-theme .popup-overlay .close-popup svg {
   width: 50px;
   height: 50px;
}

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

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

.editsuite-theme .archive-pagination a {
   margin: 0 10px;
   font-size: 12px;
   text-align: center;
}

.editsuite-theme .archive-pagination a:hover,
.editsuite-theme .archive-pagination a.current {
   text-decoration: underline;
}

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

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

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

/*-----------------------------------------------------------------------
   Entry: Thumbnail
-----------------------------------------------------------------------*/

.editsuite-theme .entry-thumb {
   display: block;
   text-decoration: none;
}

.editsuite-theme .entry-thumb .entry-thumb-image {
   background: var(--light-grey);
}

.editsuite-theme .entry-thumb .entry-thumb-image .background-image {
   transition: var(--transition) all;
}

.editsuite-theme .entry-thumb .entry-thumb-title {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: var(--transition) opacity;
}

.editsuite-theme .entry-thumb:hover .entry-thumb-title {
   opacity: 100%;
}

.editsuite-theme .entry-thumb:hover .entry-thumb-image .background-image {
   opacity: 60%;
   filter: blur(8px);
   transform: scale(105%);
}

/*-----------------------------------------------------------------------
   Entry: Page
-----------------------------------------------------------------------*/

.editsuite-theme .entry-page {
   display: block;
   text-decoration: none;
}

.editsuite-theme .entry-page .entry-page-image {
   background: var(--mid-grey);
}

.editsuite-theme .entry-page .entry-page-image .background-image {
   opacity: 35%;
   transition: var(--transition) opacity;
}

.editsuite-theme .entry-page .entry-page-title {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.editsuite-theme .entry-page .entry-page-title h3 {
   position: relative;
   padding: 5px 0;
}

.editsuite-theme .entry-page .entry-page-title h3:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 3px;
   bottom: 0;
   left: 0;
   background: var(--white);
   transform: scaleX(0);
   transform-origin: bottom right;
   transition: transform 0.25s ease-out;
}

.editsuite-theme a.entry-page:hover .entry-page-title h3:after {
   transform: scaleX(1);
   transform-origin: bottom left;
}

.editsuite-theme a.entry-page:hover .entry-page-image .background-image {
   opacity: 20%;
}

/*-----------------------------------------------------------------------
   Entry: Post
-----------------------------------------------------------------------*/

.editsuite-theme .entry-post {
   display: block;
   text-decoration: none;
   background: var(--mid-grey);
}

.editsuite-theme .entry-post .entry-post-image {
   background: var(--light-grey);
}

.editsuite-theme .entry-post .entry-post-image .background-image {
   transition: var(--transition) transform;
}

.editsuite-theme .entry-post .entry-post-content {
   padding: 30px 25px;
}

.editsuite-theme a.entry-post:hover .entry-post-image .background-image {
   transform: scale(105%);
}

/*-----------------------------------------------------------------------
   Single: Post
-----------------------------------------------------------------------*/

.single-post .post-footer {
   margin-top: 30px;
   padding-top: 20px;
   border-top: 1px solid var(--light-grey);
}

/*-----------------------------------------------------------------------
   Single: Project
-----------------------------------------------------------------------*/

.editsuite-theme .single-project .wysiwyg-content {
   width: 80%;
   margin: auto;
}

.editsuite-theme .single-project .responsive-embed {
   margin: 30px 0;
}

.editsuite-theme .single-project .social-icons {
   justify-content: flex-end;
}

/* Popup */

.editsuite-theme div[id*='popup-project'] a.post-title-perma {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

.editsuite-theme div[id*='popup-project'] a.post-title-perma svg {
   width: 16px;
   height: 16px;
}

.editsuite-theme div[id*='popup-project'] a.post-title-perma svg,
.editsuite-theme div[id*='popup-project'] a.post-title-perma svg * {
   color: var(--silver) !important;
}

/* Responsive */

@media (max-width: 720px) {
   .editsuite-theme .single-project .wysiwyg-content {
      width: 90%;
   }
}

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

.block-accordion .item-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 25px 15px;
   border-top: 1px solid var(--light-grey);
}

.block-accordion .item-accordion:first-child {
   border-top: 0;
}

.block-accordion .item-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
}

.block-accordion .item-accordion .trigger-accordion svg {
   width: 14px;
   height: 14px;
   min-width: 14px;
   min-height: 14px;
   margin: 2px;
   margin-left: 10px;
}

.block-accordion .item-accordion.active .trigger-accordion svg {
   transform: rotate(135deg);
}

.block-accordion .item-accordion .wysiwyg-content {
   display: none;
}

.block-accordion .item-accordion .wysiwyg-content > :first-child {
   margin-top: 10px !important;
}

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

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

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

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

.block-image-gallery .carousel-gallery img {
   width: auto;
   height: 50vw;
   max-height: 720px;
}

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

/* Responsive */

@media (min-width: 860px) {
   .block-split-content .grid-col-2 {
      gap: 40px;
   }
}

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

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

   .block-split-content .wysiwyg-content {
      text-align: center;
   }
}

/*-----------------------------------------------------------------------
   Block: Title Banner
-----------------------------------------------------------------------*/

.block-title-banner {
   overflow: hidden;
}

.block-title-banner h3 {
   font-weight: 400;
}

.block-title-banner .h4 {
   font-weight: 400;
}

.block-title-banner > div[class*='block-setting'] {
   height: 100vh;
   display: flex;
   align-items: center;
}

body.editsuite-theme.admin-bar .block-title-banner > div[class*='block-setting'] {
   height: calc(100vh - var(--admin-height));
}

.block-title-banner .animated-arrow,
.block-title-banner .animated-arrow svg {
   width: 24px;
   height: 24px;
}

.block-title-banner .animated-arrow {
   position: absolute;
   bottom: 40px;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 2000;
}

.block-title-banner .animated-arrow svg {
   animation: bounce 1.25s ease infinite;
}

@keyframes bounce {
   0% {
      transform: translateY(0px);
   }
   50% {
      transform: translateY(12px);
   }
   100% {
      transform: translateY(0px);
   }
}

/*-----------------------------------------------------------------------
   Block: About
-----------------------------------------------------------------------*/

/* Responsive */

@media (min-width: 720px) {
   .block-about .grid-col-2 {
      grid-template-columns: 300px 1fr;
   }
}

@media (max-width: 720px) {
   .block-about .wysiwyg-content {
      text-align: center;
   }

   .block-about .button-group {
      justify-content: center;
   }
}

/*-----------------------------------------------------------------------
   Block: Values
-----------------------------------------------------------------------*/

.block-values .listing-values.grid-col-3 {
   gap: 60px;
}

.block-values .entry-value h5,
.block-values .entry-value .value-svg {
   margin-bottom: 30px;
}

.block-values .entry-value .value-svg svg {
   width: 60px;
   height: 60px;
   transition: none;
}

.block-values .entry-value.is-animated .value-svg svg {
   animation: draw 2s forwards;
   stroke-dasharray: 200;
   stroke-dashoffset: 200;
}

.block-values .entry-value.is-animated:nth-child(2) .value-svg svg {
   animation-delay: 1s;
}

.block-values .entry-value.is-animated:nth-child(3) .value-svg svg {
   animation-delay: 2s;
}

@keyframes draw {
   0% {
      stroke-dashoffset: 200;
   }
   100% {
      stroke-dashoffset: 0;
   }
}

/*-----------------------------------------------------------------------
   Block: Testimonials
-----------------------------------------------------------------------*/

.block-testimonials .swiper-carousel-wrap {
   position: relative;
   padding-left: 90px;
}

.block-testimonials .icon-quote svg {
   width: 60px;
   height: 55px;
   position: absolute;
   left: 0;
   top: 0;
}

.block-testimonials .entry-testimonial p {
   font-size: 16px;
   margin: 0 0 30px !important;
}

/* Responsive */

@media (min-width: 720px) {
   .block-testimonials .entry-testimonial p {
      font-size: 20px;
      line-height: 25px;
   }
}

@media (max-width: 720px) {
   .block-testimonials .swiper-carousel-wrap {
      padding: 70px 0 0;
   }

   .block-testimonials .icon-quote svg {
      width: 50px;
      height: 45px;
      right: 0;
      margin: auto;
   }

   .block-testimonials .entry-testimonial {
      text-align: center;
   }
}

/*-----------------------------------------------------------------------
   Block: Client Feed
-----------------------------------------------------------------------*/

/* Responsive */

@media (max-width: 720px) {
   .block-client-feed .listing-clients.grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
   }
}

/*-----------------------------------------------------------------------
   Block: Contact
-----------------------------------------------------------------------*/

/* Responsive */

@media (max-width: 860px) {
   .block-contact .wysiwyg-content {
      text-align: center;
   }
}

/*-----------------------------------------------------------------------
   Block: 404
-----------------------------------------------------------------------*/

.block-404 h1,
.block-404 h1 * {
   font-size: 200px;
   line-height: 1;
}

/* Responsive */

@media (max-width: 720px) {
   .block-404 h1,
   .block-404 h1 * {
      font-size: 100px;
   }
}
