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

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

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

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

  --font-theme: mundial, sans-serif;

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

  --silver: #f2f4f6;
  --silver-rgb: 242, 244, 246;

  --smoke: #e5e9ed;
  --smoke-rgb: 229, 233, 237;

  --charcoal: #6e7d89;
  --charcoal-rgb: 153, 169, 181;

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

  --navy: #002846;
  --navy-rgb: 0, 40, 70;

  --bright-green: #00b06e;
  --bright-green-rgb: 0, 176, 110;

  --pale-green: #26bf86;
  --pale-green-rgb: 38, 191, 134;

  --blue: #23a1ff;
  --blue-rgb: 35, 161, 255;

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

  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;

  --container-xs: 680px;
  --container-sm: 860px;
  --container-md: 1120px;
  --container-lg: 1320px;

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

  --transition: 0.3s ease;
}

/* Responsive */

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

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

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

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

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

body.rightlane-theme,
.editor-styles-wrapper {
  font-optical-sizing: auto;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-theme) !important;
  font-size: 16px !important;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 300;
}

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

.site-main {
  position: relative;
}

.site-main:before {
  content: '';
  display: block;
  background: rgba(var(--navy-rgb), 45%);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition) all;
}

/* Scroll Bar */

/* ::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--white-rgb), 50%);
} */

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

body.rightlane-theme {
  padding-top: calc(var(--header-height) + var(--notice-height)) !important;
}

body.rightlane-theme.admin-bar {
  padding-top: calc(var(--header-height) + var(--notice-height) + var(--admin-height)) !important;
}

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

@media (min-width: 940px) {
  .rightlane-theme .grid-col-2.sidebar-left {
    grid-template-columns: 340px 1fr;
  }

  .rightlane-theme .grid-col-2.sidebar-right {
    grid-template-columns: 1fr 340px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 640px) {
}

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

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

.rightlane-theme .background-silver {
  background: var(--silver);
}

.rightlane-theme .background-navy {
  background: var(--navy);
}

.rightlane-theme .background-green {
  background: var(--bright-green);
}

.rightlane-theme .background-blue {
  background: var(--blue);
}

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

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

.rightlane-theme strong,
.rightlane-theme strong * {
  font-weight: 600 !important;
}

.rightlane-theme .h0,
.rightlane-theme .h0 *,
.rightlane-theme h1,
.rightlane-theme h1 *,
.rightlane-theme .h1,
.rightlane-theme .h1 *,
.rightlane-theme h2,
.rightlane-theme h2 *,
.rightlane-theme .h2,
.rightlane-theme .h2 *,
.rightlane-theme h3,
.rightlane-theme h3 *,
.rightlane-theme .h3,
.rightlane-theme .h3 *,
.rightlane-theme h4,
.rightlane-theme h4 *,
.rightlane-theme .h4,
.rightlane-theme .h4 * {
  font-weight: 600;
}

.rightlane-theme .h0,
.rightlane-theme .h0 * {
  font-size: 80px;
  line-height: 72px;
}

.rightlane-theme h1,
.rightlane-theme h1 *,
.rightlane-theme .h1,
.rightlane-theme .h1 * {
  font-size: 52px;
  line-height: 54px;
  letter-spacing: -1px;
}

.rightlane-theme h2,
.rightlane-theme h2 *,
.rightlane-theme .h2,
.rightlane-theme .h2 * {
  font-size: 44px;
  line-height: 46px;
  letter-spacing: -1px;
}

.rightlane-theme h3,
.rightlane-theme h3 *,
.rightlane-theme .h3,
.rightlane-theme .h3 * {
  font-size: 36px;
  line-height: 38px;
  letter-spacing: -1px;
}

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

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

.rightlane-theme h6,
.rightlane-theme h6 *,
.rightlane-theme .h6,
.rightlane-theme .h6 * {
  font-size: 13px;
  font-weight: 400;
}

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

.rightlane-theme p,
.rightlane-theme li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
}

.rightlane-theme a,
.rightlane-theme a:hover,
.rightlane-theme a:focus {
  color: var(--navy);
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
}

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

.rightlane-theme mark {
  background: none;
}

.rightlane-theme hr {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(var(--navy-rgb), 10%);
}

/* Responsive */

@media (max-width: 720px) {
  .rightlane-theme h1,
  .rightlane-theme h1 *,
  .rightlane-theme .h1,
  .rightlane-theme .h1 * {
    font-size: 36px;
    line-height: 38px;
  }

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

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

/* @media (max-width: 940px) {
  .rightlane-theme h1,
  .rightlane-theme h1 *,
  .rightlane-theme .h1,
  .rightlane-theme .h1 * {
    font-size: 50px;
  }

  .rightlane-theme h2,
  .rightlane-theme h2 *,
  .rightlane-theme .h2,
  .rightlane-theme .h2 * {
    font-size: 40px;
  }

  .rightlane-theme h3,
  .rightlane-theme h3 *,
  .rightlane-theme .h3,
  .rightlane-theme .h3 * {
    font-size: 34px;
  }
}

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

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

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

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

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

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

/* Alignment */

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

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

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

/* Colours */

.rightlane-theme .text-muted {
  opacity: 60%;
}

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

.rightlane-theme .text-white li:before {
  background: var(--white);
}

.rightlane-theme .text-green,
.rightlane-theme .text-green svg,
.rightlane-theme .text-green *:not(.button, button, .button *, button *, [class*='text-'], [style*='color-']) {
  color: var(--bright-green) !important;
  border-color: var(--bright-green);
}

.rightlane-theme .text-green li:before {
  background: var(--bright-green);
}

.rightlane-theme .text-blue,
.rightlane-theme .text-blue svg,
.rightlane-theme .text-blue *:not(.button, button, .button *, button *, [class*='text-'], [style*='color-']) {
  color: var(--blue) !important;
  border-color: var(--blue);
}

.rightlane-theme .text-blue li:before {
  background: var(--blue);
}

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

.wysiwyg-content p,
.wysiwyg-content li,
.wysiwyg-content h5 {
  color: var(--charcoal);
}

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

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

.rightlane-theme .wysiwyg-content blockquote {
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 40px;
  padding-top: 90px;
  border-radius: var(--border-radius-md);
  background: var(--bright-green);
  position: relative;
  text-align: center;
}

.rightlane-theme .wysiwyg-content blockquote:before {
  content: '';
  display: block;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 30px;
  background: url(../img/icon-quote.svg) 50% no-repeat;
  background-size: contain;
}

.rightlane-theme .wysiwyg-content blockquote * {
  opacity: 100%;
  color: var(--white);
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
  text-decoration: underline;
  color: var(--bright-green);
  word-break: break-all;
}

/* Hr */

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

/* Images */

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

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

.wysiwyg-content img:not(:last-child) {
  margin-bottom: 20px !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
-----------------------------------------------------------------------*/

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

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

/* Labels */

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

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

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

.rightlane-theme label .required,
.rightlane-theme form .gfield_label .gfield_required {
  color: var(--bright-green);
  text-decoration: none !important;
}

/* Basic Fields */

.rightlane-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.rightlane-theme select:not([class*='ui-']),
.rightlane-theme .select2-container .select2-selection,
.rightlane-theme textarea:not([class*='ui-']) {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100% !important;
  height: auto !important;
  border: 0 !important;
  border-radius: var(--border-radius-sm) !important;
  border: 1px solid var(--smoke) !important;
  background: var(--white) !important;
  padding: 10px 16px 12px !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 300 !important;
  text-align: left !important;
  text-decoration: none !important;
  transition: none !important;
  resize: none;
}

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

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

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

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

.rightlane-theme ::placeholder {
  color: var(--charcoal);
}

/* Select */

.rightlane-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 16px !important;
  cursor: pointer;
}

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

.rightlane-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 16px !important;
  cursor: pointer;
}

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

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

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

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

.rightlane-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
  background: var(--navy);
}

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

/* Checkbox & Radio */

.rightlane-theme input[type='checkbox']:not([class*='ui-']),
.rightlane-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: var(--border-radius-sm) !important;
  border: 1px solid var(--silver) !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;
}

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

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

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

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

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

/* File Upload */

.everythingoutside-theme input[type='file']:not([class*='ui-'])::file-selector-button {
  font-family: var(--font-theme);
  border: 0 !important;
  border-right: 1px solid var(--navy) !important;
  padding-right: 15px !important;
  margin-right: 15px !important;
  background: transparent !important;
  padding-left: 0 !important;
  font-weight: 400 !important;
  color: var(--navy);
  cursor: pointer;
}

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

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

.gform_wrapper .gform_footer {
  padding-top: 25px !important;
}

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

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

.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield .gfield_validation_message {
  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 label.gform-field-label,
.gform_wrapper label.gform-field-label--type-sub {
  font-size: 12px !important;
  font-weight: 300 !important;
  line-height: 18px !important;
  color: var(--charcoal) !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 {
  display: flex;
  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 var(--silver) !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(--navy) !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(--silver-rgb), 10%) !important;
}

.gform_wrapper .gf_progressbar_percentage {
  height: 16px !important;
  background: var(--silver) !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(--navy) !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(--navy) !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-theme);
  font-weight: 500;
  letter-spacing: 0 !important;
}

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

/*-----------------------------------------------------------------------
  Filter Transition
-----------------------------------------------------------------------*/

.rightlane-theme #response {
  transition: var(--transition) opacity;
}

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

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

.rightlane-theme .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rightlane-theme .button svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--white);
}

/* Default Styles */

.rightlane-theme button,
.rightlane-theme .button,
.rightlane-theme .button:hover,
.rightlane-theme .button:focus,
.rightlane-theme button:hover,
.rightlane-theme button:focus,
.rightlane-theme a.added_to_cart,
.rightlane-theme a.added_to_cart:hover,
.rightlane-theme a.added_to_cart:focus,
.rightlane-theme .form-submit *[type='submit'],
.rightlane-theme .form-submit *[type='submit']:hover,
.rightlane-theme .form-submit *[type='submit']:focus {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  outline: 0;
  width: auto;
  height: auto;
  min-width: 100px;
  min-height: 0 !important;
  padding: 10px 20px 13px !important;
  font-size: 15px !important;
  font-family: var(--font-theme);
  color: var(--white);
  font-weight: 600;
  line-height: 18px !important;
  text-align: center;
  text-decoration: none !important;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 30px !important;
  transition: var(--transition) box-shadow;
  cursor: pointer;
}

/* Additional Styles */

.rightlane-theme .button.button-outline {
  background: transparent;
}

.rightlane-theme .button.button-outline,
.rightlane-theme .button.button-outline svg {
  color: var(--navy) !important;
}

.rightlane-theme .button.button-green {
  background: var(--bright-green);
  border-color: var(--bright-green);
}

.rightlane-theme .button.button-green,
.rightlane-theme .button.button-green svg {
  color: var(--white) !important;
}

.rightlane-theme .button.button-green.button-outline {
  background: transparent;
}

.rightlane-theme .button.button-green.button-outline,
.rightlane-theme .button.button-green.button-outline svg {
  color: var(--bright-green) !important;
}

.rightlane-theme .button.button-white {
  background: var(--white);
  border-color: var(--white);
}

.rightlane-theme .button.button-white,
.rightlane-theme .button.button-white svg {
  color: var(--navy) !important;
}

.rightlane-theme .button.button-white.button-outline {
  background: transparent;
}

.rightlane-theme .button.button-white.button-outline,
.rightlane-theme .button.button-white.button-outline svg {
  color: var(--white) !important;
}

.rightlane-theme .button.button-icon {
  padding: 0 !important;
  border: 0;
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none !important;
  max-width: max-content;
  min-width: 0;
  transition: var(--transition) color;
}

.rightlane-theme .button.button-icon,
.rightlane-theme .button.button-icon svg {
  color: var(--navy);
}

/* Hover/Focus */

.rightlane-theme button:hover,
.rightlane-theme button:focus,
.rightlane-theme .button:hover,
.rightlane-theme .button:focus,
.rightlane-theme a.added_to_cart:hover,
.rightlane-theme a.added_to_cart:focus,
.rightlane-theme .form-submit *[type='submit']:hover,
.rightlane-theme .form-submit *[type='submit']:focus {
  outline: 0;
  box-shadow: 0 10px 10px -5px rgba(var(--navy-rgb), 50%);
}

.rightlane-theme .button.button-green:hover,
.rightlane-theme .button.button-green:focus {
  box-shadow: 0 10px 10px -5px rgba(var(--bright-green-rgb), 50%);
}

.rightlane-theme .button.button-icon:hover,
.rightlane-theme .button.button-icon:hover svg {
  color: var(--blue);
}

/* Responsive */

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

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

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

.rightlane-theme svg {
  color: var(--navy);
  transition: var(--transition) all;
}

/* Background Elements */

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

.rightlane-theme .background-image,
.rightlane-theme .background-graphic {
  z-index: 0;
}

.rightlane-theme .background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rightlane-theme .background-graphic {
  overflow: hidden;
  pointer-events: none;
}

.rightlane-theme .background-graphic svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
  opacity: 5%;
  color: var(--white);
}

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

.rightlane-theme .background-overlay:before {
  content: '';
  background: rgba(0, 0, 0, 30%);
}

/* Video Embed */

.rightlane-theme .responsive-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

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

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

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

/* Pagination */

.rightlane-theme .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 40px !important;
}

.rightlane-theme .swiper-pagination-bullets span {
  opacity: 25%;
  width: 5px !important;
  height: 5px !important;
  border-radius: 5px !important;
  margin: 0 3px !important;
  background: var(--navy) !important;
  transition: var(--transition) opacity, var(--transition) width;
}

.rightlane-theme .swiper-pagination-bullets span[class*='active'] {
  width: 20px !important;
  opacity: 100% !important;
}

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

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

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

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

.rightlane-theme table th {
  background: rgba(var(--silver-rgb), 25%);
}

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

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

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

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

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

.rightlane-theme .social-icons a,
.rightlane-theme .social-icons div {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rightlane-theme .social-icons svg {
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
  margin: auto;
  color: var(--bright-green);
}

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

/* Share */

.rightlane-theme .share-icons a,
.rightlane-theme .share-icons div {
  background: var(--silver);
}

/* Copy to Clipboard */

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

.rightlane-theme .copy-to-clipboard .tooltip {
  background: var(--navy);
  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: 0.3s ease all;
}

.rightlane-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(--navy) transparent transparent transparent;
}

.rightlane-theme .copy-to-clipboard:hover .tooltip {
  visibility: visible;
  opacity: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

/* Close Button */

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

.rightlane-theme .popup-overlay .close-popup svg {
  color: var(--bright-green);
}

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

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

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

.site-logo,
.site-logo img,
.site-logo svg {
  display: block;
  max-width: 170px;
  max-height: 50px;
  width: auto;
  height: 100%;
  z-index: 20000;
  transition: none !important;
}

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

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

.site-header {
  top: 0;
  width: 100%;
  display: block;
  position: fixed;
  background: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 2000000002;
}

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

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

.site-header .site-logo {
  margin-top: 5px;
}

.site-header .button-group {
  width: fit-content;
}

/* Main Menu */

.rightlane-theme .main-menu ul li {
  position: relative;
}

.rightlane-theme .main-menu ul li a {
  position: relative;
  display: block;
  padding: 10px;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition) all;
}

.rightlane-theme .main-menu ul li a:hover,
.rightlane-theme .main-menu ul > li[class*='current-'] > a {
  color: var(--bright-green);
}

.site-header ul:not(.sub-menu) {
  display: flex;
  gap: 10px;
}

/* Sub Menu */

.rightlane-theme .site-header .trigger-sub-menu {
  display: none;
}

.rightlane-theme .main-menu ul.sub-menu,
.rightlane-theme .main-menu ul.sub-menu li,
.rightlane-theme .main-menu ul.sub-menu li a {
  display: block;
}

.site-header ul.sub-menu {
  padding: 12px 10px;
  background: var(--smoke);
  border-bottom-left-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);
  overflow: hidden;
}

.rightlane-theme .main-menu ul.sub-menu li a {
  padding: 5px;
  text-align: center;
}

.site-header ul li .sub-menu-wrap {
  opacity: 0;
  display: block;
  min-width: 160px;
  max-width: 300px;
  width: max-content;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  margin: 0;
  transform: translate(-50%);
  padding: 29px 0 0 0;
  pointer-events: none;
  z-index: 20000;
  transition: var(--transition) opacity;
}

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

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

/* 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(--navy);
  cursor: pointer;
}

/* Hamburger */

.site-header .icon-hamburger {
  width: 22px;
  height: 22px;
  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: 22px;
  height: 2px;
  background: var(--navy);
  transition: background 0s 0.3s;
}

.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.rightlane-theme.menu-active .site-header .icon-hamburger span {
  background: none;
}

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

body.rightlane-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: 300px;
  position: fixed;
  top: calc(var(--header-height) + var(--notice-height));
  bottom: 0;
  right: -300px;
  z-index: 20000;
  transition: var(--transition) right;
}

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

/* Responsive Menu: Menu */

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

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

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

.site-responsive-menu .main-menu > ul > li > a {
  font-family: var(--font-theme);
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -1px;
  font-weight: 600;
  text-align: center;
}

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

.site-responsive-menu ul.sub-menu li a:hover,
.site-responsive-menu ul.sub-menu > li[class*='current-'] > a {
  color: var(--navy);
  text-decoration: underline;
}

/* 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: 16px;
  padding: 5px 0;
}

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

/* Responsive */

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

@media (max-width: 940px) {
  .site-header > .grid-col-3 {
    grid-template-columns: auto 1fr !important;
  }

  .site-header .main-menu,
  .site-header .header-right .button span,
  .site-header .icon-search {
    display: none !important;
  }

  .site-header .header-right .button {
    min-width: auto;
    padding: 10px 13px 13px !important;
  }

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

  body.menu-active .site-responsive-menu {
    right: 0;
  }

  body.menu-active .site-main {
    pointer-events: none;
  }

  body.menu-active .site-main:before {
    opacity: 1;
    visibility: visible;
  }
}

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

.site-search {
  transition: var(--transition) all;
  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(--silver);
}

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

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

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

.rightlane-theme form.blog-search-form {
  max-width: 320px;
  margin: auto;
}

.rightlane-theme form.blog-search-form > input {
  padding-right: 40px !important;
}

.rightlane-theme form.blog-search-form .form-submit {
  position: absolute;
  right: 0;
}

.rightlane-theme form.blog-search-form input[type='submit'],
.rightlane-theme form.blog-search-form input[type='submit']:hover,
.rightlane-theme form.blog-search-form input[type='submit']:focus {
  min-width: 0 !important;
  padding: 13px 22px !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: url(../img/icon-search.svg) 50% no-repeat !important;
  background-size: 18px !important;
}

.rightlane-theme a.clear-search {
  font-size: 13px !important;
  color: var(--charcoal);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 6px 12px 9px;
  background: var(--silver);
  border-radius: var(--border-radius-lg);
}

.rightlane-theme a.clear-search svg {
  width: 11px;
  height: 11px;
  margin: 3px 3px 0 0;
  color: var(--charcoal);
}

.rightlane-theme a.clear-search:hover,
.rightlane-theme a.clear-search:focus,
.rightlane-theme a.clear-search:hover svg,
.rightlane-theme a.clear-search:focus svg {
  color: var(--navy);
}

/* Responsive */

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

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

.site-footer {
  background: var(--silver);
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  display: flex;
}

.site-footer p,
.site-footer a {
  color: var(--charcoal);
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer ul,
.site-footer ul li,
.site-footer ul li * {
  color: var(--navy);
  display: block;
}

.site-footer h4,
.site-footer ul li {
  margin: 0 0 15px;
}

.site-footer ul li a {
  opacity: 70%;
  line-height: 1.5;
}

.site-footer ul li.contact-icon {
  display: flex;
  gap: 10px;
}

.site-footer ul li svg {
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
  margin: 4px 0;
  display: block;
}

.site-footer ul.sub-menu {
  display: none;
}

/* Layout */

.site-footer div[class*='container'] {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}

.site-footer .footer-left {
  min-width: 450px;
  width: 30%;
  border-radius: var(--border-radius-lg);
  border-bottom-left-radius: 0;
  background: var(--smoke);
}

.site-footer .footer-right {
  flex: 1;
}

/* Footer Logos */

.site-footer .site-logo {
  margin-bottom: 30px;
}

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
  max-width: 220px;
  max-height: 70px;
}

.site-footer .footer-logos {
  margin: 40px 0;
  gap: 50px;
}

.site-footer .footer-logos img {
  height: 80px;
  width: auto;
}

/* Copyright */

.site-footer .footer-copyright {
  margin: auto 0 0;
  gap: 10px;
}

.site-footer .footer-policies span {
  width: 2px;
  height: 2px;
  background: rgba(var(--charcoal-rgb), 50%);
  border-radius: 2px;
  margin: 4px 8px 0;
}

.site-footer .footer-policies span:last-child {
  display: none;
}

/* Responsive */

@media (max-width: 1200px) {
  .site-footer .grid-col-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer .social-icons {
    margin-bottom: 30px;
  }
}

@media (max-width: 940px) {
  .site-footer,
  .site-footer .footer-copyright {
    flex-direction: column;
  }

  .site-footer .container-lg {
    padding: 40px 0 !important;
  }

  .site-footer .footer-left,
  .site-footer .footer-right {
    width: 100%;
    min-width: 0;
  }

  .site-footer .footer-left {
    text-align: center;
    border-radius: var(--border-radius-lg);
  }

  .site-footer a.site-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-logos {
    justify-content: center;
  }

  .site-footer .footer-copyright {
    align-items: flex-start;
  }
}

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

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

.site-breadcrumbs a {
  transition: none;
}

/* Hover State */

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

/*-----------------------------------------------------------------------
  Item: Tag
-----------------------------------------------------------------------*/

.rightlane-theme .item-tag {
  padding: 10px 20px 13px !important;
  font-size: 15px !important;
  font-family: var(--font-theme);
  color: var(--navy);
  font-weight: 600;
  line-height: 18px !important;
  text-align: center;
  text-decoration: none !important;
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 30px !important;
  opacity: 40%;
  cursor: pointer;
  transition: var(--transition) all;
}

/* Active State */

.rightlane-theme .item-tag.current,
.rightlane-theme .item-tag:hover,
.rightlane-theme .item-tag:focus {
  opacity: 100%;
  background: var(--bright-green);
  border-color: var(--bright-green);
  color: var(--white);
}

/*-----------------------------------------------------------------------
  Item: Separator
-----------------------------------------------------------------------*/

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

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

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

.block-accordion .listing-accordion {
  padding: 30px;
  background: var(--silver);
  border-radius: var(--border-radius-md);
}

.block-accordion .listing-accordion .entry-accordion {
  background: var(--white);
}

.rightlane-theme .listing-accordion,
.rightlane-theme .listing-accordion .column {
  display: grid;
  align-items: flex-start;
  gap: 10px;
}

.rightlane-theme .entry-accordion {
  margin: 0;
  height: auto;
  display: block;
  padding: 13px 22px 15px;
  background: var(--silver);
  border-radius: var(--border-radius-sm);
}

.rightlane-theme .entry-accordion .trigger-accordion {
  margin: 0 !important;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-theme);
  position: relative;
  flex-wrap: nowrap;
  cursor: pointer;
}

.rightlane-theme .entry-accordion .trigger-accordion,
.rightlane-theme .entry-accordion .trigger-accordion strong {
  flex: 1;
  line-height: 24px;
}

.rightlane-theme .entry-accordion .trigger-accordion svg {
  width: 16px;
  height: 20px;
  min-width: 16px;
  min-height: 20px;
  margin: 4px 0 4px 10px;
}

.rightlane-theme .entry-accordion .wysiwyg-content {
  display: none;
}

.rightlane-theme .entry-accordion .wysiwyg-content > :first-child {
  margin-top: 10px !important;
}

.rightlane-theme .entry-accordion .wysiwyg-content > :last-child {
  margin-bottom: 10px !important;
}

/* Active State */

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

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

.block-image-gallery .owl-carousel img {
  height: 720px;
}

/* Responsive */

@media (max-width: 940px) {
  .block-image-gallery .owl-carousel img {
    height: 520px;
  }
}

/*-----------------------------------------------------------------------
  Block: Hero Banner
-----------------------------------------------------------------------*/

.block-hero-banner {
  position: relative;
  overflow: hidden;
}

.block-hero-banner .wysiwyg-content h1 {
  max-width: 500px;
}

.block-hero-banner .wysiwyg-content > *:not(:last-child) {
  margin: 0 auto 30px !important;
}

/* Animations */

.block-hero-banner svg[class*='shape-'] {
  position: absolute;
  display: none;
}

@media (min-width: 940px) {
  .block-hero-banner svg.shape-hero-left,
  .block-hero-banner svg.shape-hero-right {
    display: block;
  }

  .block-hero-banner svg.shape-hero-left {
    bottom: 0;
    left: 0;
  }

  .block-hero-banner svg.shape-hero-left path.animated-arrow-body {
    stroke-dasharray: 770;
    stroke-dashoffset: 0;
    animation: left_arrow_body 1.5s ease;
  }

  .block-hero-banner svg.shape-hero-left path.animated-arrow-head {
    stroke-dasharray: 130;
    stroke-dashoffset: 0;
    animation: left_arrow_head 1.5s ease;
  }

  .block-hero-banner svg.shape-hero-left path.animated-line-top {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
    animation: left_line_top 1.2s ease;
  }

  .block-hero-banner svg.shape-hero-left path.animated-line-bottom {
    stroke-dasharray: 450;
    stroke-dashoffset: 0;
    animation: left_line_bottom 1.2s ease;
  }

  .block-hero-banner svg.shape-hero-right {
    top: 0;
    bottom: 0;
    right: -70px;
  }

  .block-hero-banner svg.shape-hero-right path.animated-arrow-body {
    stroke-dasharray: 720;
    stroke-dashoffset: 0;
    animation: right_arrow_body 2s ease;
  }

  .block-hero-banner svg.shape-hero-right path.animated-arrow-head {
    stroke-dasharray: 130;
    stroke-dashoffset: 0;
    animation: right_arrow_head 2s ease;
  }

  .block-hero-banner svg.shape-hero-right path.animated-line-top {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
    animation: right_line_top 1.5s ease;
  }

  .block-hero-banner svg.shape-hero-right path.animated-line-bottom {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
    animation: right_line_bottom 1.5s ease;
  }

  @keyframes left_arrow_body {
    0% {
      stroke-dashoffset: 770;
    }
    25% {
      stroke-dashoffset: 770;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes left_arrow_head {
    0% {
      stroke-dashoffset: 130;
    }
    75% {
      stroke-dashoffset: 130;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes left_line_top {
    0% {
      stroke-dashoffset: 500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes left_line_bottom {
    0% {
      stroke-dashoffset: 450;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes right_arrow_body {
    0% {
      stroke-dashoffset: 720;
    }
    50% {
      stroke-dashoffset: 720;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes right_arrow_head {
    0% {
      stroke-dashoffset: 130;
    }
    75% {
      stroke-dashoffset: 130;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes right_line_top {
    0% {
      stroke-dashoffset: 500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes right_line_bottom {
    0% {
      stroke-dashoffset: 500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
}

@media (max-width: 940px) {
  .block-hero-banner svg.shape-hero-top-left,
  .block-hero-banner svg.shape-hero-bottom-left,
  .block-hero-banner svg.shape-hero-top-right,
  .block-hero-banner svg.shape-hero-bottom-right {
    display: block;
  }

  .block-hero-banner svg.shape-hero-top-left {
    top: 0;
    left: 0;
  }

  .block-hero-banner svg.shape-hero-top-left path {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: left_line_top 1.2s ease;
  }

  .block-hero-banner svg.shape-hero-bottom-left {
    bottom: -20px;
    left: 0;
  }

  .block-hero-banner svg.shape-hero-bottom-left path.animated-arrow-body {
    stroke-dasharray: 170;
    stroke-dashoffset: 0;
    animation: left_arrow_body 1s ease;
  }

  .block-hero-banner svg.shape-hero-bottom-left path.animated-arrow-head {
    stroke-dasharray: 70;
    stroke-dashoffset: 0;
    animation: left_arrow_head 1s ease;
  }

  .block-hero-banner svg.shape-hero-top-right {
    top: 0;
    right: 0;
  }

  .block-hero-banner svg.shape-hero-top-right path {
    stroke-dasharray: 150;
    stroke-dashoffset: 0;
    animation: right_line_top 1.5s ease;
  }

  .block-hero-banner svg.shape-hero-bottom-right {
    bottom: 0;
    right: 0;
  }

  .block-hero-banner svg.shape-hero-bottom-right path {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: right_line_bottom 1.2s ease;
  }

  @keyframes left_arrow_body {
    0% {
      stroke-dashoffset: 170;
    }
    25% {
      stroke-dashoffset: 170;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes left_arrow_head {
    0% {
      stroke-dashoffset: 70;
    }
    70% {
      stroke-dashoffset: 70;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

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

  @keyframes right_line_top {
    0% {
      stroke-dashoffset: 150;
    }
    50% {
      stroke-dashoffset: 150;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

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

/* Responsive */

@media (min-width: 940px) {
  .block-hero-banner .wysiwyg-content h1 {
    font-size: 58px !important;
  }

  .block-hero-banner .wysiwyg-content h5 {
    font-size: 22px !important;
  }
}

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

.block-split-content .column-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

/* Responsive */

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

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

/*-----------------------------------------------------------------------
  Block: Services
-----------------------------------------------------------------------*/

@media (min-width: 940px) {
  .block-services .grid-col-2 {
    grid-template-columns: 440px 1fr;
  }
}

/*-----------------------------------------------------------------------
  Block: Sector Banner
-----------------------------------------------------------------------*/

.block-sector-banner .post-icon svg {
  width: 60px;
  height: 60px;
  color: var(--bright-green);
  margin-bottom: 30px !important;
}

/*-----------------------------------------------------------------------
  Block: Sectors
-----------------------------------------------------------------------*/

.rightlane-theme .entry-sector {
  position: relative;
  border-radius: var(--border-radius-md);
  background: var(--bright-green);
  overflow: hidden;
}

.rightlane-theme .entry-sector a {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--transition) background;
}

.rightlane-theme .entry-sector .entry-icon svg {
  max-width: 40px;
  max-height: 40px;
  color: var(--white);
}

.rightlane-theme .entry-sector .entry-content {
  z-index: 9;
  padding: 55px 0 0;
}

.rightlane-theme .entry-sector .entry-content > *:not(:last-child) {
  margin: 0 0 10px;
}

.rightlane-theme .entry-sector:before {
  content: '';
  display: block;
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  opacity: 5%;
  transform: rotate(45deg);
  background: url(../img/shape-dot-cluster.svg) 50% no-repeat;
  background-size: contain;
  pointer-events: none;
}

.rightlane-theme .entry-sector:nth-child(2n):before {
  background: url(../img/shape-spiral.svg) 50% no-repeat;
  background-size: contain;
}

.rightlane-theme .entry-sector:nth-child(3n):before {
  background: url(../img/shape-curve.svg) 50% no-repeat;
  background-size: contain;
}

.rightlane-theme .entry-sector:nth-child(4n):before {
  background: url(../img/shape-line-wave.svg) 50% no-repeat;
  background-size: contain;
}

.rightlane-theme .entry-sector:nth-child(5n):before {
  background: url(../img/shape-dot-grid.svg) 50% no-repeat;
  background-size: contain;
}

.rightlane-theme .entry-sector:nth-child(6n):before {
  background: url(../img/shape-line-rounded.svg) 50% no-repeat;
  background-size: contain;
}

/* Hover State */

.rightlane-theme .entry-sector a:hover {
  background: var(--navy);
}

/*-----------------------------------------------------------------------
  Block: Statistics
-----------------------------------------------------------------------*/

.block-statistics .entry-statistic {
  padding: 40px;
  padding-bottom: 50px;
  text-align: center;
  border-radius: var(--border-radius-md);
  background: var(--white);
}

.block-statistics .entry-statistic .h0 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.block-statistics .entry-statistic .h0 span.prefix,
.block-statistics .entry-statistic .h0 span.suffix {
  font-size: 54px;
  margin: 0 10px;
}

.block-statistics .entry-statistic h5 {
  font-weight: 500;
}

/*-----------------------------------------------------------------------
  Block: Icon Grid
-----------------------------------------------------------------------*/

.block-icon-grid .listing-icons.grid-col-4 {
  gap: 40px;
}

.block-icon-grid .entry-icon {
  padding-top: 50px;
  border-top: 1px solid rgba(var(--navy-rgb), 10%);
}

.block-icon-grid .entry-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 25px !important;
}

.block-icon-grid .entry-icon .entry-content > *:not(:last-child) {
  margin: 0 0 10px;
}

/*-----------------------------------------------------------------------
  Block: Call to Action
-----------------------------------------------------------------------*/

.block-call-to-action div[class*='container'] {
  padding: 60px;
  border-radius: var(--border-radius-lg);
}

.block-call-to-action .background-graphic svg {
  top: -100px;
  bottom: auto;
}

/* Responsive */

@media (max-width: 940px) {
  .block-call-to-action div[class*='container'] {
    padding: 40px;
  }

  .block-call-to-action .grid-col-2 {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .block-call-to-action div[class*='container'] {
    padding: 25px;
  }
}

/*-----------------------------------------------------------------------
  Block: Logo Slider
-----------------------------------------------------------------------*/

.block-logo-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
}

.block-logo-slider .carousel-logos .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.block-logo-slider .carousel-logos .swiper-slide img {
  max-height: 100%;
  max-width: 160px;
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  /* display: block;
  height: 45px;
  width: auto;
  max-width: 180px; */
}

/* Responsive */

@media (max-width: 720px) {
  .block-logo-slider .carousel-logos .swiper-slide img {
    max-width: 130px;
    height: 35px;
  }
}

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

.block-reviews .carousel-reviews .swiper-slide.swiper-slide-active {
  margin-top: 0;
  opacity: 100%;
}

.block-reviews .item-review {
  padding: 40px;
  background: var(--silver);
  border-radius: var(--border-radius-lg);
  max-width: var(--container-xs);
}

.block-reviews .item-review svg {
  width: 50px;
  height: 25px;
  margin-bottom: 20px;
}

.block-reviews .item-review .review-meta {
  margin-top: 30px;
}

.block-reviews .item-review .review-meta p.text-green {
  margin-top: 5px;
  opacity: 100%;
}

.block-reviews .item-review .review-meta img {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  border: 2px solid rgba(var(--charcoal-rgb), 30%);
}

/* Responsive */

@media (min-width: 940px) {
  .block-reviews .carousel-reviews .swiper-slide {
    opacity: 60%;
    margin-top: 40px;
    transition: var(--transition) opacity, var(--transition) margin-top;
  }
}

@media (max-width: 720px) {
  .block-reviews .item-review {
    padding: 25px;
  }
}

/*-----------------------------------------------------------------------
  Block: Newsletter
-----------------------------------------------------------------------*/

.block-newsletter div[class*='container-'] {
  padding: 60px;
  border-radius: var(--border-radius-lg);
}

.block-newsletter .background-graphic svg {
  top: -100px;
  bottom: auto;
}

/* Responsive */

@media (max-width: 940px) {
  .block-newsletter div[class*='container-'] {
    padding: 40px;
  }

  .block-newsletter .grid-col-2 {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .block-newsletter div[class*='container-'] {
    padding: 25px;
  }
}

/*-----------------------------------------------------------------------
  Block: Post Feed
-----------------------------------------------------------------------*/

.block-post-feed .listing-categories {
  gap: 10px;
}

.rightlane-theme .entry-post {
  background: var(--silver);
  border-radius: var(--border-radius-lg);
}

.rightlane-theme .entry-post a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.rightlane-theme .entry-post .post-logo,
.rightlane-theme .entry-post .post-icon {
  height: 50px;
  border-radius: var(--border-radius-md);
  margin-bottom: 30px !important;
}

.rightlane-theme .entry-post .post-logo {
  width: max-content;
  max-width: 100%;
  background: var(--white);
}

.rightlane-theme .entry-post .post-logo img {
  padding: 10px;
  height: 100%;
  width: auto;
  display: block;
}

.rightlane-theme .entry-post .post-icon {
  width: 50px;
  background: var(--navy);
}

.rightlane-theme .entry-post .post-icon svg {
  margin: 15px;
  color: var(--white);
}

.rightlane-theme .entry-post .entry-content {
  flex: 1;
  padding: 40px;
  background: var(--smoke);
  border-radius: var(--border-radius-lg);
}

.rightlane-theme .entry-post .entry-button {
  padding: 20px 40px 22px;
}

.rightlane-theme .entry-post .entry-content > *:not(:last-child) {
  margin: 0 0 10px;
}

/* Hover State */

.rightlane-theme .entry-post:hover .button,
.rightlane-theme .entry-post:hover .button svg {
  color: var(--blue);
}

/* Responsive */

@media (max-width: 720px) {
  .rightlane-theme .entry-post .entry-content {
    padding: 25px;
  }

  .rightlane-theme .entry-post .entry-button {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*-----------------------------------------------------------------------
  Block: Post Content
-----------------------------------------------------------------------*/

.block-post-content .grid-col-1 {
  gap: 30px;
}

.block-post-content .post-title h1.post-title {
  margin: 25px 0 30px;
}

.block-post-content .listing-meta span {
  width: 2px;
  height: 2px;
  background: rgba(var(--charcoal-rgb), 50%);
  border-radius: 2px;
  margin: 4px 8px 0;
}

.block-post-content .listing-meta span:last-child {
  display: none;
}

/* Author */

.block-post-content .post-author {
  padding: 10px;
  display: flex;
  align-items: center;
  background: var(--silver);
  border-radius: 100px;
}

.block-post-content .post-author p.author-name {
  font-weight: 400;
}

.block-post-content .post-author p {
  color: var(--navy);
}

.block-post-content .post-author p a:hover {
  opacity: 100%;
}

.block-post-content .post-author .img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 80px;
  background: var(--smoke);
}

.block-post-content .post-author > div {
  padding: 10px;
  margin-right: 15px;
}

/*-----------------------------------------------------------------------
  Block: Team Feed
-----------------------------------------------------------------------*/

.rightlane-theme .entry-team {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.rightlane-theme .entry-team:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  opacity: 80%;
  background: var(--bright-green);
  transition: var(--transition) all;
}

.rightlane-theme .entry-team .entry-image {
  aspect-ratio: 4 / 5;
  background: var(--silver);
}

.rightlane-theme .entry-team .entry-content {
  padding: 20px 0;
  text-align: center;
  position: absolute;
  right: 25px;
  left: 25px;
  bottom: 25px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--white-rgb), 80%);
  backdrop-filter: blur(10px);
  z-index: 9;
  transition: var(--transition) all;
}

.rightlane-theme .entry-team h6 {
  margin: 5px 0;
}

.rightlane-theme .entry-team .button {
  margin: auto;
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  opacity: 0;
  transition: var(--transition) all;
  pointer-events: none;
}

/* Hover State */

.rightlane-theme .entry-team:hover:after {
  top: 0;
}

.rightlane-theme .entry-team:hover .entry-content {
  padding-bottom: 40px;
}

.rightlane-theme .entry-team:hover .button {
  opacity: 100%;
  bottom: 20px;
}

/* Popup */

.rightlane-theme div[id*='popup-team'] div[class*='container-'] {
  padding: 0 !important;
  background: var(--navy);
  overflow: hidden;
  max-height: 700px;
  height: 100%;
}

.rightlane-theme div[id*='popup-team'] div[class*='container-']:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  right: 0;
  opacity: 5%;
  background: url(../img/shape-dot-cluster.svg) 50% no-repeat;
  background-size: 950px;
  background-position: -10px;
  filter: invert(1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.rightlane-theme div[id*='popup-team'] .popup-image,
.rightlane-theme div[id*='popup-team'] .popup-main {
  position: absolute;
  display: block;
  top: 0;
}

.rightlane-theme div[id*='popup-team'] .popup-image {
  width: 40%;
  left: 0;
  top: 0;
  border-top-right-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

.rightlane-theme div[id*='popup-team'] .popup-main {
  padding: 60px;
  padding-left: calc(40% + 60px);
  overflow: auto;
  height: 100%;
  width: 100%;
}

.rightlane-theme div[id*='popup-team'] .position {
  margin-top: 10px;
}

.rightlane-theme div[id*='popup-team'] .excerpt {
  opacity: 70%;
}

.rightlane-theme div[id*='popup-team'] .excerpt,
.rightlane-theme div[id*='popup-team'] .listing-accordion,
.rightlane-theme div[id*='popup-team'] .social-media {
  margin-top: 30px;
}

.rightlane-theme div[id*='popup-team'] .listing-accordion,
.rightlane-theme div[id*='popup-team'] .entry-accordion {
  background: transparent;
  border-radius: 0;
  gap: 0;
}

.rightlane-theme div[id*='popup-team'] .listing-accordion {
  margin: 30px 0;
}

.rightlane-theme div[id*='popup-team'] .entry-accordion {
  padding: 15px 0;
  border-bottom: 1px solid var(--silver);
}

.rightlane-theme div[id*='popup-team'] .social-icons a {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.rightlane-theme div[id*='popup-team'] .social-icons a[title*='Linkedin'] {
  margin-bottom: 3px;
}

.rightlane-theme div[id*='popup-team'] .social-icons a svg * {
  color: inherit !important;
}

.rightlane-theme div[id*='popup-team'] .social-icons a:hover svg {
  color: var(--blue) !important;
}

.rightlane-theme div[id*='popup-team'] .close-popup svg {
  color: var(--white);
}

/* Responsive */

@media (max-width: 720px) {
  .rightlane-theme div[id*='popup-team'] div[class*='container-'] {
    overflow: scroll;
  }

  .rightlane-theme div[id*='popup-team'] .popup-image,
  .rightlane-theme div[id*='popup-team'] .popup-main {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
  }

  .rightlane-theme div[id*='popup-team'] .popup-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-lg);
  }

  .rightlane-theme div[id*='popup-team'] .popup-main {
    padding: 30px;
  }
}

/*-----------------------------------------------------------------------
  Block: Team Grid
-----------------------------------------------------------------------*/

.block-team-grid .listing-categories {
  margin-top: 30px;
  gap: 10px;
}

/* Responsive */

@media (min-width: 940px) {
  .block-team-grid .grid-sidebar {
    position: sticky;
    top: calc(var(--header-height) * 2);
  }
}

@media (max-width: 1200px) {
  .block-team-grid .listing-team.grid-col-3,
  .block-team-feed .listing-team.grid-col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .block-team-grid .listing-team.grid-col-3,
  .block-team-feed .listing-team.grid-col-3 {
    grid-template-columns: 1fr;
  }
}

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

.block-contact-form .form-wrapper {
  padding: 40px;
  background: var(--silver);
  border-radius: var(--border-radius-lg);
}

.block-contact-form .listing-contact {
  margin-top: 30px;
}

.block-contact-form .entry-contact {
  margin: 0 0 20px;
}

.block-contact-form .entry-contact h4 {
  margin: 2px 0 2px 15px !important;
}

.block-contact-form .entry-contact h4 a.text-small {
  text-decoration: underline;
  font-weight: 300;
  color: var(--charcoal);
}

.block-contact-form .entry-contact h4 a:hover {
  color: var(--bright-green);
}

.block-contact-form .entry-contact,
.block-contact-form .entry-contact .icon-wrap {
  display: flex;
}

.block-contact-form .entry-contact .icon-wrap {
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--bright-green);
}

.block-contact-form .entry-contact .icon-wrap svg {
  color: var(--white);
  width: 16px;
  height: 16px;
  margin: auto;
}

/* Responsive */

@media (min-width: 940px) {
  .block-contact-form .grid-col-2 {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (max-width: 720px) {
  .block-contact-form .form-wrapper {
    padding: 20px;
  }
}

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

.block-404 .h0 {
  font-size: 170px;
  line-height: 120px;
}

.block-404 .wysiwyg-content h2 {
  color: var(--charcoal);
}

.block-404 .wysiwyg-content > *:not(:last-child) {
  margin: 0 0 35px !important;
}

/*-----------------------------------------------------------------------
  Misc
-----------------------------------------------------------------------*/

.rightlane-theme #acknowledgement .block-setting-background-colour {
  position: relative;
}

.rightlane-theme #acknowledgement .block-setting-background-colour:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/shape-line-wave.svg);
  background-position: 50%;
  background-size: 250px;
  opacity: 2%;
  pointer-events: none;
}
