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

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800');
@import url('https://use.typekit.net/cqu8yda.css');

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

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

   --font-primary: 'Open Sans', sans-serif;
   --font-secondary: 'commuters-sans', sans-serif;

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

   --black: #2b2b2b;
   --black-rgb: 43, 43, 43;

   /* --black-gradient: linear-gradient(90deg, #2B2B2B 1.45%, #2C2C2C 97.91%); */

   --grey: #bab3b0;
   --grey-rgb: 186, 179, 176;
   /* --grey-gradient: 5px rgba(var(--grey-rgb), 25%); */

   --light-orange: #f26b41;
   --light-orange-rgb: 242, 107, 65;

   --brown: #81716b;
   --brown-rgb: 129, 113, 107;

   --taupe: #eeeceb;
   --taupe-rgb: 238, 236, 235;

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

   /* --black-gradient: linear-gradient(89.69deg, #2B2B2B 1.45%, #2C2C2C 97.91%); */

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

   --container-xs: 630px;
   --container-sm: 860px;
   --container-md: 1150px;
   --container-lg: 1300px;

   --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);
   --transition: 0.4s ease-in-out;
}

/* Responsive */

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

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

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

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

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

body.rocketba-theme,
.editor-styles-wrapper {
   font-optical-sizing: auto;
   -webkit-text-size-adjust: none;
   -webkit-font-smoothing: antialiased;
   font-family: var(--font-primary) !important;
   font-size: 15px !important;
   color: var(--black);
   line-height: 25px;
   font-weight: 400;
}

body.rocketba-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
   background: var(--white);
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */
.rocketba-theme .padding-xl,
.rocketba-theme .padding-xl-top {
   padding-top: 100px;
}

.rocketba-theme .padding-xl,
.rocketba-theme .padding-xl-bot {
   padding-bottom: 100px;
}

.rocketba-theme .padding-lg,
.rocketba-theme .padding-lg-top {
   padding-top: 70px;
}

.rocketba-theme .padding-lg,
.rocketba-theme .padding-lg-bot {
   padding-bottom: 70px;
}

.rocketba-theme .padding-md,
.rocketba-theme .padding-md-top {
   padding-top: 50px;
}

.rocketba-theme .padding-md,
.rocketba-theme .padding-md-bot {
   padding-bottom: 50px;
}

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rocketba-theme h1,
.rocketba-theme h1 *,
.rocketba-theme .h1,
.rocketba-theme .h1 *,
.rocketba-theme h2,
.rocketba-theme h2 *,
.rocketba-theme .h2,
.rocketba-theme .h2 *,
.rocketba-theme h3,
.rocketba-theme h3 *,
.rocketba-theme .h3,
.rocketba-theme .h3 *,
.rocketba-theme h4,
.rocketba-theme h4 *,
.rocketba-theme .h4,
.rocketba-theme .h4 *,
.rocketba-theme h5,
.rocketba-theme h5 *,
.rocketba-theme .h5,
.rocketba-theme .h5 *,
.rocketba-theme h6,
.rocketba-theme h6 *,
.rocketba-theme .h6,
.rocketba-theme .h6 *,
.rocketba-theme ul,
.rocketba-theme ol,
.rocketba-theme li {
   margin: 0;
   padding: 0;
   color: var(--black);
   font-weight: 600;
   text-wrap: wrap;
   word-wrap: break-word;
   font-family: var(--font-secondary);
}

.rocketba-theme h1,
.rocketba-theme h1 *,
.rocketba-theme .h1,
.rocketba-theme .h1 * {
   font-size: 45px;
   line-height: 45px;
   text-transform: uppercase;
   font-weight: 600;
   /*   color: var(--white);*/
   text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.rocketba-theme h2,
.rocketba-theme h2 *,
.rocketba-theme .h2,
.rocketba-theme .h2 * {
   font-size: 30px;
   line-height: 40px;
   text-transform: uppercase;
}

.rocketba-theme h3,
.rocketba-theme h3 *,
.rocketba-theme .h3,
.rocketba-theme .h3 * {
   font-size: 28px;
   line-height: 35px;
   text-transform: uppercase;
}

.rocketba-theme h4,
.rocketba-theme h4 *,
.rocketba-theme .h4,
.rocketba-theme .h4 * {
   font-size: 24px;
   line-height: 26px;
   text-transform: uppercase;
}

.rocketba-theme h5,
.rocketba-theme h5 *,
.rocketba-theme .h5,
.rocketba-theme .h5 * {
   font-size: 20px;
   line-height: 25px;
   text-transform: uppercase;
}

.rocketba-theme h6,
.rocketba-theme h6 *,
.rocketba-theme .h6,
.rocketba-theme .h6 * {
   font-size: 17px;
   line-height: 17px;
}

.rocketba-theme h5 span,
.rocketba-theme h2 span {
   color: var(--brown) !important;
}

.rocketba-theme p,
.rocketba-theme li {
   font-weight: 300;
   font-size: 17px !important;
   line-height: 25px !important;
}
.rocketba-theme p a,
.rocketba-theme li a {
   color: var(--light-orange);
}

.rocketba-theme p a:hover,
.rocketba-theme li a:hover {
   color: var(--black);
   text-decoration: none;
}

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

.rocketba-theme a {
   text-decoration: none;
}

.rocketba-theme a:hover,
.rocketba-theme a:focus {
   color: inherit;
}

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

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

.rocketba-theme mark {
   background: none;
}

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

/* Responsive */

@media (max-width: 1090px) {
   .rocketba-theme h1,
   .rocketba-theme h1 *,
   .rocketba-theme .h1,
   .rocketba-theme .h1 * {
      font-size: 30px;
      line-height: 34px;
   }

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

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

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

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

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

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

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

/* Links */

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

/* Lists */

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

.wysiwyg-content ul.list-style-center {
   width: 100%;
}

.wysiwyg-content ul.list-style-center li {
   width: fit-content;
   margin: 0 auto !important;
}

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

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

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

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

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

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

/* Blockquote */

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

/* Hr */

.wysiwyg-content hr {
   border-top: 1px dashed var(--black);
   margin: 30px 0 !important;
}

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

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

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

/* Labels */

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

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

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

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

/* Basic Fields */

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

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

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

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

.rocketba-theme input:not([class*='ui-']):-webkit-autofill,
.rocketba-theme input:not([class*='ui-']):-webkit-autofill:hover,
.rocketba-theme input:not([class*='ui-']):-webkit-autofill:focus,
.rocketba-theme input:not([class*='ui-']):-webkit-autofill:active,
.rocketba-theme textarea:not([class*='ui-']):-webkit-autofill,
.rocketba-theme textarea:not([class*='ui-']):-webkit-autofill:hover,
.rocketba-theme textarea:not([class*='ui-']):-webkit-autofill:focus,
.rocketba-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);
}

.rocketba-theme ::placeholder {
   color: var(--black);
}

/* Select */

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

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

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

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

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

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

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

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

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

/* Checkbox & Radio */

.rocketba-theme input[type='checkbox']:not([class*='ui-']),
.rocketba-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;
}

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

.rocketba-theme input[type='checkbox']:not([class*='ui-']) + label,
.rocketba-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;
}

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

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

.rocketba-theme input[type='radio']:not([class*='ui-']):before,
.rocketba-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_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(--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 *,
.gform_wrapper .gfield_validation_message {
   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
-----------------------------------------------------------------------*/

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

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

.rocketba-theme .filter-loading {
   opacity: 40%;
}

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

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

.wp-core-ui .rocketba-theme .button-group {
   font-size: 15px;
}

.rocketba-theme .button svg {
   width: 8px;
   margin-bottom: 3px;
   height: 8px;
   color: var(--black);
   transition: var(--transition) color;
}

/* Default Styles */

.rocketba-theme .button-group {
   display: flex;
   gap: 19px;
}

.rocketba-theme button,
.rocketba-theme button:hover,
.rocketba-theme button:focus,
.rocketba-theme .button,
.rocketba-theme .button:hover,
.rocketba-theme .button:focus {
   appearance: none;
   -webkit-appearance: none;
   position: relative;
   display: flex !important;
   align-items: end;
   justify-content: center;
   gap: 3px;
   margin: 0;
   outline: 0;
   width: auto;
   height: auto;
   min-width: 100px;
   min-height: 0 !important;
   padding: 8px 16px !important;
   font-size: 15px !important;
   font-family: var(--font-primary);
   color: var(--black);
   text-transform: uppercase;
   font-weight: 600;
   line-height: 20px !important;
   text-align: center;
   text-decoration: none !important;
   background: var(--white);
   border: 1px solid var(--white);
   border-radius: 100px !important;
   transition: var(--transition) all;
   cursor: pointer;
}

.rocketba-theme button:hover svg,
.rocketba-theme button:focus svg,
.rocketba-theme .button:hover svg,
.rocketba-theme .button:focus svg {
   color: var(--white);
}

/* Additional Styles */

.rocketba-theme .button.button-white {
   border-color: var(--white);
}
/*
.rocketba-theme .button.button-white,
.rocketba-theme .button.button-white svg {
   color: var(--white);
}*/

/* Hover/Focus */
.rocketba-theme button:hover,
.rocketba-theme button:focus,
.rocketba-theme .button:hover,
.rocketba-theme .button:focus {
   background: var(--light-orange);
   border: 1px solid var(--light-orange);
   color: var(--white);
   outline: 0;
}

.rocketba-theme .button-transparent {
   background: transparent;
   color: var(--black);
   border: 1px solid var(--light-orange);
}
.rocketba-theme.bg-black .button-transparent {
   color: var(--white);
}

.rocketba-theme.bg-black .button-transparent svg {
   color: var(--black);
}
/* Responsive */

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

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

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
   max-width: 100%;
   width: 100%;
   max-height: 100%;
}
.footer-logo .site-logo path {
   fill: rgb(255 255 255 / 7%);
  }
@media (max-width: 1200px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 200px;
   }
}

@media (max-width: 1090px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 99px;
      max-height: 60px;
   }

   .site-footer .site-logo {
      margin-bottom: 0;
   }
}

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

body.is-scrolled .site-header,
body.is-scrolled .site-responsive-menu {
   background-color: var(--black);
}

.site-header {
   top: 0;
   width: 100%;
   display: block;
   position: fixed;
   z-index: 2000000002;
   transition: all var(--transition);
}

.site-header a.site-logo {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.site-header a.site-logo .mobile-header-logo {
   display: none;
}

.site-header .header-menu-bar {
   display: flex;
   align-items: center;
   gap: 25px;
}

.site-header .header-menu-bar .icon-call-header {
   display: none;
}

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

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

/* Main Menu */

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

.site-header .main-menu ul li a {
   padding: 10px;
   display: block;
   transition: var(--transition) all;
   font-size: 40px;
   color: var(--white);
   text-transform: uppercase;
   font-weight: 600;
}

.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a,
.site-header .main-menu ul li a:hover,
.site-header .main-menu ul li a:focus,
.site-responsive-menu .main-menu ul > li.current-menu-item > a,
.site-responsive-menu .main-menu ul > li.current-menu-parent > a,
.site-responsive-menu .main-menu ul li a:hover,
.site-responsive-menu .main-menu ul li a:focus {
   color: var(--light-orange) !important;
}

.site-header .main-menu ul:not(.sub-menu) {
   display: flex;
   gap: 10px;
   flex-direction: column;
   height: calc(100vh - 320px);
   overflow: auto;
}

.site-responsive-menu .main-menu ul:not(.sub-menu) {
   height: calc(100vh - 310px);
   overflow: auto;
}

.site-header .main-menu,
.site-responsive-menu .main-menu {
   height: 100%;
   background-color: var(--black);
   position: fixed;
   left: 0;
   width: 50%;
   top: 0;
   padding: 200px 30px 90px 100px;
   z-index: -1;
   transition: all var(--transition);
   transform: translate(-150%, 0);
}

.site-responsive-menu .main-menu {
   width: 100%;
   padding: 120px 30px 30px 15px;
}



.main-menu::before {
   content: '';
   background-image: url(../img/background-shape-dark.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
}
.main-menu::after {
   content: '';
   background-image: url(../img/background-shape-dark-2.svg);
   background-repeat: no-repeat;
   background-position: left bottom;
   background-size: 65%;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
}

.site-responsive-menu .main-menu::after {
   background-size: 991px;
   background-position: top;
}

.site-header .main-menu .close-icon-menu {
   position: absolute;
   top: 50%;
   left: 100%;
   transform: translate(-50%, -50%) scale(0);
   height: 188px;
   width: 188px;
   border-radius: 100px;
   border: 1px solid var(--brown);
   display: flex;
   align-items: center;
   /* transition: all 0.8s ease-in-out; */
   justify-content: center;
   transition: transform 0.2s ease-out;
   /* smooth movement */
   will-change: transform;
   /* better performance */
}

.menu-active .site-header .main-menu .close-icon-menu {
   transform: translate(-50%, -50%) scale(100%);
}

.menu-active .site-header .main-menu .close-icon-menu:hover {
   transform: translate(-50%, -50%) scale(110%);
}

.site-header .main-menu .close-icon-menu svg path {
   color: var(--white);
}

.menu-contact-social {
   display: flex;
   gap: 114px;
   align-items: flex-start;
}

.menu-contact-social p {
   font-weight: 300;
   font-size: 15px;
   line-height: 23px;
   text-transform: uppercase;
   color: var(--white);
   margin: 0;
}

.menu-contact-social a:hover {
   text-decoration: underline;
}

.menu-contact-social .menu-left a {
   font-weight: 300;
   font-size: 17px;
   line-height: 25px;
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--white);
}

.menu-contact-social .menu-left span {
   height: 34px;
   width: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid var(--brown);
   border-radius: 50%;
}

.menu-contact-social .menu-left .contact-text-menu {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 12px;
}

.menu-contact-social .menu-left span svg path {
   fill: var(--brown);
}

.menu-active .site-header .main-menu,
.menu-active .site-responsive-menu .main-menu {
   display: flex;
   flex-direction: column;
   gap: 50px;
   transform: translate(0, 0);
}

.menu-contact-social .menu-right .social-icons {
   flex-direction: column;
   gap: 7px !important;
   align-items: flex-start;
}
.menu-contact-social .menu-right .social-icons a {
   font-weight: 300;
   font-size: 15px;
   line-height: 23px;
   text-transform: uppercase;
   color: var(--white);
   margin: 0;
}
.menu-contact-social .menu-right .social-icons a svg {
   display: none;
}
/* .rocketba-theme.menu-active {
   overflow-Y: hidden;

} */

/* Sub Menu */

.site-header .trigger-sub-menu svg {
   width: 24px;
   height: 24px;
   margin-left: 5px;
}

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

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

.site-header .main-menu ul.sub-menu li a {
   padding: 5px;
   font-size: 20px;
   line-height: 30px;
   font-weight: 400;
   text-transform: capitalize;
}

.site-header .main-menu ul li .sub-menu-wrap {
   width: 100%;
   display: none;
   position: static;
   margin: 0;
   z-index: 20000;
}

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

/* Icon Menu */

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

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

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

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

/* Hamburger */

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

.site-header .menu-toggle.trigger-menu p {
   margin: 0;
   font-size: 15px !important;
   color: var(--white);
}

.site-header .header-menu-bar .menu-bar a {
   text-transform: uppercase;
   font-size: 15px !important;
   color: var(--white);
   transition: all var(--transition);
}

.site-header .header-menu-bar .menu-bar a:hover {
   color: var(--light-orange);
}

.site-header .trigger-menu {
   cursor: pointer;
}

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

.site-header .header-menu-bar .menu-toggle {
   display: flex;
   align-items: center;
   gap: 5px;
   border: 1px solid var(--grey);
   padding: 6px 25px;
   border-radius: 200px;
}

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

/* Responsive Menu */

.site-responsive-menu {
   display: none;
   width: 100%;
   position: fixed;
   bottom: 0;
   right: 0;
   top: calc(var(--notice-height));
   overflow-y: auto;
   z-index: 0;
}

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

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

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

/* Responsive Menu: Menu */

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

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

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

.site-responsive-menu .main-menu > ul > li > a {
   font-weight: 600;
   font-size: 20px;
   line-height: 37px;
   text-transform: uppercase;
   color: var(--white);
   display: flex;
   align-items: center;
}

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

/* 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-weight: 400;
   font-size: 17px;
   line-height: 27px;
   text-transform: capitalize;
   color: var(--white);
}

.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
   display: none;
}

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

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul.sub-menu li,
.site-responsive-menu ul.sub-menu li a,
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > .sub-menu-wrap {
   display: block !important;
}

/* Responsive */

@media (max-width: 1090px) {
   .menu-active {
      overflow: hidden;
   }
   .site-responsive-menu .main-menu {
      overflow: auto;
   }
   .menu-contact-social {
      flex-direction: column;
      gap: 20px;
   }
   .menu-contact-social .menu-right .social-icons {
      flex-direction: row;
      gap: 14px !important;
      align-items: flex-start;
   }
   .menu-contact-social .menu-right .social-icons a {
      border-right: 1px solid var(--white);
      padding-right: 17px;
      line-height: 15px;
   }

   .menu-contact-social .menu-right .social-icons a:last-child {
      border-right: 0;
      padding-right: 0;
   }
   .site-responsive-menu div[class*='container'] {
      opacity: 1;
      height: 100%;
   }
   .site-header {
      display: none;
   }
   .site-responsive-menu {
      transition: var(--transition);
      width: 100%;
      display: block;
      position: fixed;
      z-index: 2000000009;
      transition: all var(--transition);
      background: transparent;
      height: 90px;
      overflow: visible;
   }

   .site-responsive-menu a.site-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
   }
   .site-responsive-menu .header-menu-bar {
      display: flex;
      align-items: center;
      gap: 25px;
   }
   .site-responsive-menu .header-menu-bar .menu-toggle {
      cursor: pointer;
      justify-content: center;
      display: flex;
      align-items: center;
      gap: 5px;
      height: 40px;
      width: 40px;
      border: 1px solid var(--grey);
      padding: 6px;
      border-radius: 50%;
   }
   .site-responsive-menu .icon-hamburger {
      width: 18px;
      height: 18px;
      align-items: center;
      position: relative;
   }
   .site-responsive-menu .menu-toggle.trigger-menu p {
      display: none;
   }

   .site-responsive-menu .icon-hamburger span {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
   }
   .site-responsive-menu .icon-hamburger span,
   .site-responsive-menu .icon-hamburger span:before,
   .site-responsive-menu .icon-hamburger span:after {
      display: block;
      position: absolute;
      width: 18px;
      height: 2px;
      background: var(--grey);
      transition: background 0s 0.3s;
   }
   .site-responsive-menu .icon-hamburger span:before {
      content: '';
      top: -6px;
      transition-property: top, transform;
      transition-duration: 0.3s, 0.3s;
      transition-delay: 0.3s, 0s;
   }
   .site-responsive-menu .icon-hamburger span:after {
      content: '';
      bottom: -6px;
      transition-property: bottom, transform;
      transition-duration: 0.3s, 0.3s;
      transition-delay: 0.3s, 0s;
   }
   .site-responsive-menu .menu-toggle.trigger-menu p {
      display: none;
   }

   .site-header a.site-logo .desktop-header-logo {
      display: none;
   }

   .site-header a.site-logo .mobile-header-logo {
      display: flex;
   }

   .site-header .header-menu-bar .text-call-header {
      display: none;
   }

   .site-responsive-menu .header-left {
      position: relative;
      width: 100%;
      padding: 0 20px;
      display: flex;
      align-items: center;
   }

   .site-responsive-menu .header-menu-bar .icon-call-header {
      display: flex;
      align-items: center;
      padding: 0;
      height: 40px;
      width: 40px;
      justify-content: center;
      border-radius: 50%;
      gap: 5px;
      border: 1px solid var(--grey);
      position: absolute;
      top: 0;
      right: 20px;
   }

   .site-header .header-menu-bar .menu-toggle {
      padding: 0;
      height: 40px;
      width: 40px;
      justify-content: center;
   }

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */

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

/*-----------------------------------------------------------------------
   Block social feed
-----------------------------------------------------------------------*/
.block-social-feed .sb_instagram_header {
   display: flex;
   justify-content: center;
}

.block-social-feed {
   border-bottom: 1px solid rgba(var(--brown-rgb), 0.42);
}

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

.site-footer {
   /* padding-top: 50px; */
   /* background-color: var(--grey); */
   background: linear-gradient(179.32deg, rgba(186, 178, 176, 0.25) 73.26%, rgba(255, 255, 255, 0.25) 106.23%);
}

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

/* Footer Menu */

.site-footer ul,
.site-footer ul li,
.site-footer ul li * {
   display: block;
   font-size: 15px;
   font-weight: 400;
   font-family: var(--font-primary);
   color: var(--black);
}

.site-footer ul li {
   display: flex;
   align-items: start;
}

.site-footer ul li p {
   margin: 0;
   font-size: 15px !important;
}

.site-footer ul li p a {
   display: inline;
}

.site-footer ul li span {
   font-weight: 600;
   display: inline;
   margin-right: 4px;
}

.site-footer .social-media,
.site-footer .social-media .social-icons {
   gap: 0;
   justify-content: right;
   text-align: right;
   flex-direction: column;
   align-items: end;
}

.site-footer .footer-menu-lists {
   margin-bottom: 40px;
}

.site-footer .social-media a {
   display: flex !important;
   align-items: center;
   gap: 7px;
   font-weight: 500;
   font-size: 15px;
   color: var(--black);
   line-height: 23px;
   text-transform: uppercase;
}

.site-footer .social-media a * {
   width: 7px !important;
   height: 7px !important;
}

.footer-copyright p,
.footer-copyright p * {
   font-weight: 600;
   font-size: 8px !important;
   line-height: 23px !important;
   text-transform: uppercase;
   /* color: var(--black) !important; */
   text-align: center;
}
.footer-copyright p:last-child {
   text-align: right;
}
.footer-copyright p:first-child {
   text-align: left;
}
.site-footer h5 {
   margin: 0 0 7px;
}

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

/* Responsive */

@media (max-width: 1090px) {
   .site-footer .social-media a {
      margin: 0 auto !important;
   }
   .site-footer a.site-logo {
      margin: auto;
   }

   .site-footer * {
      text-align: center;
      justify-content: center;
   }

   .site-footer .container-lg.padding-md {
      padding-bottom: 0;
   }

   .site-footer .social-media,
   .site-footer .social-media ul li {
      justify-content: center;
      text-align: center;
   }
   .footer-copyright {
      padding-top:40px ;
   }
   .footer-copyright .grid-col-4 {
      /* grid-template-columns: repeat(4, 1fr); */
      gap: 0;
   }
   .footer-copyright p:last-child, .footer-copyright p:first-child  {
      text-align: center;
   }
}

@media (max-width: 360px) {
   .footer-copyright .grid-col-4 {
      grid-template-columns: repeat(1, 1fr);
   }
   .footer-copyright p:last-child {
      text-align: center;
   }
}

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

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

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

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

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

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

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

/* Background Elements */

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

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

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

.rocketba-theme .background-overlay:before {
   content: '';
   background: rgba(var(--black-rgb), 30%);
}

/* Video Embed */

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

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

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

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

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

.block-image-gallery .swiper .swiper-slide {
   max-height: 525px;
}

/* Pagination */

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

.rocketba-theme .swiper-pagination span {
   opacity: 100%;
   background: transparent;
   transition: var(--transition) width, var(--transition) background;
}

.rocketba-theme .swiper-pagination span.swiper-pagination-bullet-active {
   width: 40px;
   background: transparent;
}

/* Navigation */

.rocketba-theme .swiper-navigation {
   display: flex;
   align-items: center;
   justify-content: end;
   margin-top: 30px;
   gap: 14px;
}

.rocketba-theme.block-image-gallery .swiper-navigation {
   position: relative;
   top: 0%;
   right: 0%;
   z-index: 99;
   max-width: var(--container-lg);
   width: auto;
   margin-left: auto;
}

.rocketba-theme .swiper-navigation div[class*='swiper-nav-'] {
   padding: 10px;
   cursor: pointer;
   user-select: none;
   border-radius: 100px;
   border: 1px solid var(--black);
   height: 45px;
   width: 45px;
   display: flex;
   align-items: center;
   transition: var(--transition);
   justify-content: center;
}

.rocketba-theme .swiper-navigation div[class*='swiper-nav-']:hover {
   background-color: var(--light-orange);
   border: 1px solid var(--light-orange);
}

.rocketba-theme.bg-black .swiper-navigation div[class*='swiper-nav-']:hover {
   border: 1px solid var(--light-orange);
}

.rocketba-theme .swiper-navigation div[class*='swiper-nav-'] svg {
   display: block;
   width: 13px;
   height: 13px;
   color: var(--black);
}

.rocketba-theme .swiper-navigation div[class*='swiper-nav-']:hover svg {
   color: var(--white);
}

.rocketba-theme.bg-black .swiper-navigation div[class*='swiper-nav-'] {
   border: 1px solid var(--white);
   color: var(--white);
}

/* Responsive */

@media (max-width: 1090px) {
   .rocketba-theme .swiper-pagination {
      margin-top: 15px;
   }
}

@media (max-width: 767px) {
   .rocketba-theme.block-image-gallery .swiper-navigation {
      margin-left: 0;
   }
}

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

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

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

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

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

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

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

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

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

.rocketba-theme .social-icons svg {
   width: 16px;
   height: 16px;
   color: var(--black);
}

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

/* Close Button */

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

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

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

.rocketba-theme .archive-pagination {
   gap: 5px;
   margin: auto;
   padding-top: 40px;
   width: fit-content;
}

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

.rocketba-theme .archive-pagination a.current {
   background: var(--light-orange);
   border-color: var(--light-orange);
   color: var(--white);
   text-decoration: none;
}
.rocketba-theme .archive-pagination a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border: 1px solid var(--light-orange);
   border-radius: 50%;
   color: var(--black);
   text-decoration: none;
   transition: var(--transition);
   margin: 0;
   font-size: 15px;
   line-height: 22px;
}

.rocketba-theme .archive-pagination a:hover {
   background: var(--light-orange);
   border-color: var(--light-orange);
   color: var(--white);
   text-decoration: none;
}

@media (max-width: 767px) {
   .rocketba-theme .archive-pagination {
      padding-top: 0px;
   }
}

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

.block-404 h1 {
   font-size: 100px;
   line-height: 100px;
}

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

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

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

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

.rocketba-theme .entry-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 20px 0;
   border-bottom: 1px dashed var(--black);
}

.rocketba-theme .entry-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   padding-right: 50px;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
}

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

.block-accordion .entry-accordion:after,
.block-accordion .entry-accordion:before {
   content: '';
   background: var(--black);
   width: 22px;
   height: 2px;
   display: block;
   position: absolute;
   right: 20px;
   top: 30px;
   transition: all var(--transition);
}

.block-accordion .text-white .entry-accordion:after,
.block-accordion .text-white .entry-accordion:before {
   background: var(--white);   
}

.block-accordion .entry-accordion:after {
   transform: rotate(90deg);
   opacity: 1;
}

.block-accordion .entry-accordion.is-active:after {
   transform: rotate(180deg);
   opacity: 0;
}

.block-accordion .entry-accordion .wysiwyg-content p {
   font-weight: 300;
   margin: 0;
   color: var(--black);
}

/* Responsive */

@media (max-width: 550px) {
   .block-accordion .entry-accordion:after,
   .block-accordion .entry-accordion:before {
      top: 35px;
   }

   .rocketba-theme .entry-accordion .trigger-accordion {
      padding-right: 45px;
   }
}

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

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

/* Responsive */

@media (max-width: 767px) {
   .block-image-gallery .carousel-gallery img {
      height: 50vw;
      min-height: 350px;
      max-height: 450px;
   }
}
/*-----------------------------------------------------------------------
   Block - Video
-----------------------------------------------------------------------*/

.block-video .video {
   cursor: pointer;
   position: relative;
}

.block-video video {
   aspect-ratio: 16 / 9;
   object-fit: cover;
   min-height: 455px;
   display: block;
}

.block-video .video.paused .player-icon {
   opacity: 1;
   visibility: visible;
}

.block-video .video.playing .player-icon {
   opacity: 0;
   visibility: hidden;
}

.block-video .player-icon {
   pointer-events: none;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
}

.block-video .video.paused::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: rgba(0, 0, 0, 0.2);
}

/* Responsive */

@media (max-width: 767px) {
   .block-video video {
      min-height: 300px;
   }

   .block-video .player-icon img {
      width: 50px;
      height: 50px;
   }
}

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

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

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

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

.spine-stamp-animate {
   position: absolute;
   left: 0;
   bottom: 0;
   width: 150px;
   height: 150px;
   z-index: 1;
}

.background-shape-rocket.bg-black::after {
   content: '';
   background-image: url(../img/background-shape-dark-2.svg);
   background-repeat: no-repeat;
   background-position: left 150px;
   background-size: contain;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
.background-shape-rocket.bg-black .block-setting-background-colour::after {
   content: '';
   background-image: url(../img/background-shape-dark.jpg);
   background-repeat: no-repeat;
   background-size: 70% 100%;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}

.background-shape-rocket.bg-taupe::after {
   content: '';
   background-image: url(../img/background-shape-light-2.svg);
   background-repeat: no-repeat;
   background-position: left 150px;
   background-size: contain;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
.background-shape-rocket.bg-taupe .block-setting-background-colour::after {
   content: '';
   background: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.00) 40%);
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}

.block-split-content .split-image,
.block-split-content .col-image .wysiwyg-content {
   aspect-ratio: 630 / 465;
   min-height: 465px;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

.block-split-content .graphic-animated {
  aspect-ratio: 4 / 3 !important;
/*    min-height: 415px !important;*/
    overflow: visible !important;
}

.block-split-content .col-image .wysiwyg-content img {
   height: 100% !important;
   object-fit: cover;
}

.block-split-content .wysiwyg-content h5 {
   /*   border-top: 1px dashed var(--black);*/
   padding: 20px 0;
   margin: 0 !important;
}

/*.block-split-content .wysiwyg-content h5:last-child {
   border-bottom: 1px dashed var(--black);

}*/

.block-split-content .orbit-container {
            position: relative;
            width: 600px;
            height: 600px;
        }

        .block-split-content .orbit-container::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            transform: translate(-50%, -50%) scale(0.8);
            /* background: radial-gradient(circle, rgba(242, 107, 65, 0.3) 0%, rgba(0, 0, 0, 0) 80%); */
            background: radial-gradient(50% 50% at 50% 50%, #8A4D0F 0%, #2b2b2b00 100%);
            border-radius: 50%;
            z-index: -1;
            animation: glow 4s ease-in-out infinite;
        }



        .block-split-content .orbit-container .center-logo {
            background: radial-gradient(42.78% 42.78% at 50% 50%,
                    rgba(138, 77, 15, 0.5) 0%,
                    rgba(43, 43, 43, 0.5) 100%);
            height: 217px;
            width: 217px;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 10;
            transform: translate(-50%, -50%);
        }


        .block-split-content .orbit-container .center-logo svg {
            width: 145px;
            height: 165px;
        }

        .block-split-content .orbit-container .main-circle {
            animation: circle linear infinite;

        }

        /* Orbit rings */
        .block-split-content .orbit-container .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            /* border: 1px solid rgba(255, 102, 0, 0.2); */
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: orbitRotate linear infinite;

        }

        .block-split-content .orbit-container .orbit1 {
            width: 250px;
            height: 250px;
            animation-duration: 36s;
            border: 1px solid rgba(242, 107, 65, 1);
        }

        .block-split-content .orbit-container .orbit2 {
            width: 300px;
            height: 300px;
            animation-duration: 32s;
            border: 1px solid rgba(242, 107, 65, 1);
        }

        .block-split-content .orbit-container .orbit3 {
            width: 350px;
            height: 350px;
            animation-duration: 30s;
            border: 1px solid rgba(242, 107, 65, 0.8);
        }

        .block-split-content .orbit-container .orbit4 {
            width: 400px;
            height: 400px;
            animation-duration: 28s;
            border: 1px solid rgba(242, 107, 65, 0.7);
        }

        .block-split-content .orbit-container .orbit5 {
            width: 450px;
            height: 450px;
            animation-duration: 26s;
            border: 1px solid rgba(242, 107, 65, 0.6);
        }

        .block-split-content .orbit-container .orbit6 {
            width: 500px;
            height: 500px;
            animation-duration: 24s;
            border: 1px solid rgba(242, 107, 65, 0.5);
        }

        .block-split-content .orbit-container .orbit7 {
            width: 550px;
            height: 550px;
            animation-duration: 22s;
            border: 1px solid rgba(242, 107, 65, 0.4);
        }

        /* Icon position and rotation */
        .block-split-content .orbit-container .icon {
            position: absolute;
            width: 27px;
            height: 27px;
            top: 50%;
            overflow: hidden;
            left: 50%;
            border-radius: 200px;
          
            transform-origin: center;
            /* background: #2b2b2b; */
        }

        /* Each icon placed at a specific angle (matching screenshot) */
        .block-split-content .orbit-container .orbit1 .icon {
            transform: rotate(60deg) translateX(105px) rotate(-60deg);
        }

        .block-split-content .orbit-container .orbit2 .icon {
            transform: rotate(0deg) translateX(135px) rotate(0deg);
        }

        .block-split-content .orbit-container .orbit3 .icon {
            transform: rotate(120deg) translateX(170px) rotate(-120deg);
        }

        .block-split-content .orbit-container .orbit4 .icon {
            transform: rotate(210deg) translateX(220px) rotate(-210deg);
        }

        .block-split-content .orbit-container .orbit5 .icon {
            transform: rotate(300deg) translateX(230px) rotate(-300deg);
        }

        .block-split-content .orbit-container .orbit6 .icon {
            transform: rotate(150deg) translateX(255px) rotate(-150deg);
        }

        .block-split-content .orbit-container .orbit7 .icon {
            transform: rotate(330deg) translateX(270px) rotate(-330deg);
        }

       /* .block-split-content .orbit-container .icon svg {
            width: 27px;
            height: 27px;
               border: 1px solid rgba(242, 107, 65, 1); 
            border-radius: 500px;
            padding: 3px;
        }
*/
        .block-split-content .orbit-container .orbit1 svg {
            animation: Rotate-reverse 36s linear infinite;
        }

        .block-split-content .orbit-container .orbit2 svg {
            animation: Rotate-reverse 32s linear infinite;
        }

        .block-split-content .orbit-container .orbit3 svg {
            animation: Rotate-reverse 30s linear infinite;
        }

        .block-split-content .orbit-container .orbit4 svg {
            animation: Rotate-reverse 28s linear infinite;
        }

        .block-split-content .orbit-container .orbit5 svg {
            animation: Rotate-reverse 26s linear infinite;
        }

        .block-split-content .orbit-container .orbit6 svg {
            animation: Rotate-reverse 24s linear infinite;
        }


        .block-split-content .orbit-container .orbit7 svg {
            animation: Rotate-reverse 22s linear infinite;
        }


        /* Animate each orbit (rotation around center) */
        @keyframes circle {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes orbitRotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes glow {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.5;
            }
        }

        @keyframes Rotate-reverse {
            0% {
                transform: rotate(360deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }
/* Responsive */

@media (max-width: 1090px) {
   .spine-stamp-animate {
      right: 0;
      top: -30px;
      width: 100px;
      left: inherit;
      bottom: inherit;
      height: 100px;
   }

   .spine-stamp-animate svg {
      width: 100px;
   }
   .bg-shape-spinner .grid-col-2 {
      gap: 100px;
   }
   .block-split-content .col-content {
      order: 9;
   }

   .block-split-content .split-image,
   .block-split-content .col-image .wysiwyg-content {
      height: 100%;
      max-height: 350px;
      min-height: auto;
   }
  .block-split-content .graphic-animated {
    min-height: 0px !important;
        aspect-ratio: 450 / 450 !important;
        height: 100% !important;
        max-height: 100% !important;
  }

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

@media (max-width: 767px){
.block-split-content .graphic-animated{
/*      width: 320px;*/
      transform: scale(.5);
      margin: 0 auto;
  }
  .block-split-content .orbit-container{
    height: 100%;
    width: 100%;
  }
}

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

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

body.rocketba-theme.admin-bar .block-hero-banner {
   height: calc(100vh - var(--admin-height));
}
.block-hero-banner::before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   /* background: linear-gradient(281.06deg, rgba(var(--black-rgb), 0%) 67.29%, rgba(var(--black-rgb), 5%) 87.99%); */
   background: linear-gradient(281.06deg, rgba(0, 0, 0, 0) 67.29%, rgba(0, 0, 0, 0.5) 87.99%);

   z-index: 1;
}

.block-hero-banner .block-setting-padding {
   width: 100%;
   display: flex;
   align-items: flex-end;
}

.block-hero-banner h5 {
   font-style: normal;
   font-weight: 600;
   font-size: 20px;
   line-height: 25px;
   text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

/* Responsive */

@media (max-width: 1090px) {
   .block-hero-banner h5 {
      font-size: 17px;
      line-height: 21px;
      max-width: 234px;
   }

   .block-hero-banner {
      min-height: 800px;
   }
}

/*-----------------------------------------------------------------------
   Block - Counter
-----------------------------------------------------------------------*/

.block-counter .counter-number span {
   font-style: normal;
   font-weight: 600;
   font-size: 80px;
   display: flex;
   align-items: center;
   line-height: 60px;
}

.block-counter .counter-number {
   display: flex;
   align-items: center;
   font-style: normal;
   font-weight: 600;
   font-size: 40px;
   line-height: 35px;
   text-transform: capitalize;
}

.block-counter .counter-number span .count-symbol {
   font-weight: 600;
   font-size: 40px;
   line-height: 35px;
}

.block-counter .listing-counter .entry-counter .inner-entry-content p {
   font-style: normal;
   font-weight: 400;
   font-size: 15px !important;
   line-height: 16px !important;
   font-family: var(--font-secondary);
   max-width: 220px;
   margin-bottom: 0;
}

.block-counter .listing-counter .entry-counter {
   border-left: 1px solid rgba(var(--light-orange-rgb), 40%);
}

.block-counter .listing-counter .entry-counter .inner-entry-content {
   padding-left: 25px;
   padding-top: 42px;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-counter .counter-number span {
      font-size: 47px;
      line-height: 20px;
   }
}

@media (max-width: 550px) {
   .block-counter .listing-counter {
      grid-template-columns: repeat(2, 1fr);
   }

   .block-counter .counter-number span .count-symbol {
      font-size: 20px;
   }

   .block-counter .listing-counter .entry-counter .inner-entry-content {
      padding-left: 15px;
   }

   .block-counter .listing-counter .entry-counter .inner-entry-content p {
      font-size: 9px !important;
      line-height: 12px !important;
   }
}

@media (max-width: 375px) {
   .block-counter .listing-counter {
      /* grid-template-columns: repeat(1, 1fr); */
   }

   .block-counter .listing-counter .entry-counter .inner-entry-content {
      padding-top: 25px;
   }

   .block-counter .counter-number span,
   .block-counter .counter-number {
      font-size: 30px;
   }
}

/*-----------------------------------------------------------------------
   Block - Service
-----------------------------------------------------------------------*/
.rocketba-theme.block-service {
   overflow: hidden;
}
.block-service .swiper-wrapper {
   display: flex;
   align-items: center;
}

.block-service .service-card {
   margin: 0 20px;
   aspect-ratio: 1 / 1;
   width: 340px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.25);
   position: relative;
}

.block-service .service-card,
.block-service .service-card .background-image {
   transition: all var(--transition);
}

.block-service .service-card h5 {
   display: block;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 15px 73px 15px 20px;
   color: var(--white);
   background: rgba(11, 11, 11, 0.3);
   transition: all var(--transition);
}

.block-service .service-card:hover h5 {
   bottom: -20px;
}

.block-service .service-card:hover .background-image {
   top: -20px;
   bottom: -20px;
}

.block-service .swiper-navigation {
   position: absolute;
   bottom: 0;
   left: 20px;
   gap: 3px;
   width: fit-content;
   display: none;
}

.block-service .swiper-navigation div[class*='swiper-nav-'] {
   border: 1px solid var(--black);
}

/* Responsive */

@media (max-width: 1090px) {
   .service-slider {
      overflow: hidden;
      padding: 30px 0;
   }
}

/*-----------------------------------------------------------------------
   Block - process
-----------------------------------------------------------------------*/

.block-process .process-cards-img .process-card-slider-img {
   aspect-ratio: 3.45 / 2;
   position: relative;
}

.block-process .process-cards-img .process-card-slider-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.block-process .rocketba-img {
   position: absolute;
   bottom: -30px;
   left: -80px;
}

.process-cards-img {
   width: 25%;
   margin-left: auto;
}

.rocketba-theme .arrow-button {
   display: flex;
   gap: 11px;
   align-items: center;
   text-transform: uppercase;
}

.rocketba-theme .arrow-button span {
   border: 1px solid var(--light-orange) !important;
   border-radius: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 24px;
   width: 24px;
   transition: var(--transition) background-color;
}

.rocketba-theme.bg-black .arrow-button span svg path {
   fill: var(--white);
}

.rocketba-theme.bg-black .arrow-button:hover span {
   background-color: var(--light-orange);
}

.block-process .process-main-content {
   align-items: center;
   gap: 45px;
}

.block-process .process-main-content .process-slider {
   width: 49%;
   margin-right: 0;
   margin-left: 0;
   position: static;
}

.block-process .process-main-content .process-slider .process-counter-slide p span {
   opacity: 0.2;
}

.block-process .swiper-pagination-bullet {
   font-weight: 600;
   font-size: 30px;
   line-height: 32px;
   text-align: center;
   text-transform: uppercase;
   position: relative;
   width: 60px !important;
   height: 60px !important;
   border-radius: 50%;
   background: transparent;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   margin: 0 !important;
   cursor: pointer;
   overflow: hidden;
}

.block-process .process-slider .swiper-pagination {
   position: absolute;
   left: 0;
   top: 0;
   justify-content: center;
   align-items: flex-start;
   width: fit-content;
   flex-direction: column;
}

.block-process .process-cards-content .button-group a {
   color: var(--black);
}
.block-process .text-white .process-cards-content .button-group a {
   color: var(--white);
}

/* animate only on active bullet */
.block-process .swiper-pagination-bullet-active::before {
   animation: fill-border 4s linear forwards;
}

@keyframes fill-border {
   from {
      background: conic-gradient(var(--light-orange) 0deg, transparent 0deg);
   }

   to {
      background: conic-gradient(var(--light-orange) 360deg, transparent 0deg);
   }
}

.block-process .swiper-pagination-bullet span svg {
   position: absolute;
   top: 0;
   left: 0;
   transform: rotateY(180deg) rotate(-90deg);
   width: 100%;
   height: 100%;
}

.block-process .swiper-pagination-bullet span svg circle {
   fill: none;
   stroke: var(--light-orange);
   /* red stroke */
   stroke-width: 4;
   stroke-dasharray: 190;
   stroke-dashoffset: 0;
}

.swiper-pagination-bullet-active svg circle {
   animation: countdown 4.2s linear forwards;
}

@keyframes countdown {
   from {
      stroke-dashoffset: 0;
   }

   /* full */
   to {
      stroke-dashoffset: 190;
   }

   /* empty */
}

.block-process .grid-col-2 {
   gap: 25px;
}

/* Responsive */

@media (max-width: 991px) {
   .block-process .process-main-content {
      position: relative;
      margin-top: 50px;
   }

   .block-process .rocketba-img {
      right: -70px;
      left: inherit;
   }

   .process-cards-img {
      width: 100%;
      margin-left: 0;
      margin-top: 120px;
   }

   .block-process .process-main-content .process-slider {
      width: 100%;
   }

   .block-process .process-slider .swiper-pagination {
      height: fit-content;
      justify-content: flex-start;
      align-items: unset;
      flex-direction: row;
   }

   .block-process .process-cards-img .process-card-slider-img {
      aspect-ratio: unset;
      max-width: 262px;
   }
}

@media (max-width: 360px) {
   .block-process .rocketba-img {
      right: -15px;
   }
}

/*-----------------------------------------------------------------------
   Block - Team
-----------------------------------------------------------------------*/

/* Apply only on frontend */
body.rocketba-theme::-webkit-scrollbar,
body.rocketba-theme *::-webkit-scrollbar {
   width: 10px;
}

body.rocketba-theme::-webkit-scrollbar-track,
body.rocketba-theme *::-webkit-scrollbar-track {
   background: var(--white);
   border-radius: 30px;
}

body.rocketba-theme::-webkit-scrollbar-thumb,
body.rocketba-theme *::-webkit-scrollbar-thumb {
   background: #d3cba6;
   border-radius: 30px;
}

body.rocketba-theme::-webkit-scrollbar-thumb:hover,
body.rocketba-theme *::-webkit-scrollbar-thumb:hover {
   background: #d3cba6;
}

.block-teams .team-card > img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
   aspect-ratio: 300 / 403;
   transition: var(--transition);
}

.block-teams .team-card {
   position: relative;
   overflow: hidden;
   cursor: pointer;
}

.block-teams .team-card:hover > img {
   transform: scale(103%);
}

.block-teams .team-info h6 {
   margin: 0;
   font-size: 16px;
   line-height: 30px;
   font-weight: 600;
}

.block-teams .team-info {
   position: absolute;
   bottom: 10px;
   left: 10px;
   right: 10px;
   background: rgba(186 179 176 / 61%);
   color: var(--white);
   padding: 10px 33px 10px 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.block-teams .team-info p {
   margin: 0;
   font-size: 16px !important;
   color: rgba(var(--black-rgb), 80%);
   font-weight: 500;
}

.block-teams .team-details h5 {
   margin-top: 0;
   font-size: 18px;
   color: var(--white);
   font-weight: 400;
   padding-right: 30px;
   margin-bottom: 6px;
}

.block-teams .team-details p {
   padding-right: 5px;
}

.block-teams .team-details button:hover svg path {
   fill: var(--black);
}

.team-details h6 {
   font-size: 16px !important;
   line-height: 1.5 !important;
   margin: 0 !important;
   font-weight: 500;
   font-family: var(--font-primary);
   color: rgba(var(--white-rgb), 80%);
}

.team-details .head {
   margin-bottom: 25px;
   position: relative;
   padding-right: 30px;
}

.block-teams button,
.block-teams button:hover,
.block-teams button:focus {
   background: var(--white);
   border: none;
   cursor: pointer;
   width: 24px;
   max-width: 24px;
   padding: 0 !important;
   min-width: 24px;
   height: 24px;
   position: absolute;
   right: 0;
   top: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--light-orange);
}

.block-teams button.open-details {
   position: absolute;
   right: 10px;
   bottom: 10px;
   top: auto;
}

.block-teams button.open-details svg path {
   fill: var(--light-orange);
}

.block-teams button.open-details:hover svg path {
   fill: var(--white);
}

.block-teams button.open-details:hover {
   background: var(--light-orange);
}

.block-teams button.open-details img {
   margin: 0;
}

.block-teams button.close-btn img {
   margin: 0;
}

.block-teams .team-details {
   overflow: hidden;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   color: var(--white);
   padding: 30px 20px;
   box-sizing: border-box;
   transform: translateY(100%);
   transition: transform 0.3s ease-in-out;
   background: rgba(var(--black-rgb), 0.96);
   box-shadow: 0px 4px 4px rgba(var(--black-rgb), 0.25);
   border-radius: 5px;
}

.block-teams .team-card.active .team-details {
   transform: translateY(0);
}

.block-teams .team-details .content {
   overflow: auto;
   max-height: 210px;
}

/* Respondive */

@media (max-width: 1090px) {
   .block-teams .team-details p {
      margin-top: 0;
   }

   .block-teams .team-info h6 {
      line-height: 20px;
   }

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

@media (max-width: 767px) {
   .block-teams .grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
   }
}

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

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

.block-post-feed .listing-posts .inner-entry-image {
   aspect-ratio: 641 / 363 !important;
}
.block-post-feed .listing-posts .inner-entry-image .background-image {
   background-size: 100%;
   transition: var(--transition);
}

.block-post-feed .listing-posts a:hover .inner-entry-image .background-image {
   background-size: 103%;
}

.block-post-feed .listing-posts .inner-entry-content {
   gap: 11px;
   display: flex;
   align-items: center;
}

.block-post-feed .listing-posts .entry-post .inner-entry-content h5 {
   margin: 0 !important;
}

.block-post-feed .listing-posts .inner-entry-content h6 {
   position: relative;
   font-size: 15px;
   line-height: 15px;
   text-transform: uppercase;
   color: var(--grey);
   padding-left: 11px;
}

.block-post-feed .listing-posts h6::before {
   content: '';
   height: 4px;
   width: 4px;
   background-color: var(--light-orange);
   border-radius: 100px;
   position: absolute;
   left: 0;
   top: 5px;
}

.block-post-feed .entry-post .listing-posts-footer {
   display: flex;
   align-items: center;
   margin-top: 15px;
   overflow: hidden;
   justify-content: space-between;
}

.block-post-feed .entry-post .listing-posts-footer .arrow-button {
   color: var(--black);
}

.block-post-feed .entry-post .listing-posts-footer .arrow-button {
   position: relative;
   transform: translateX(301%);
   transition: all var(--transition);
}

.block-post-feed.bg-black .entry-post .listing-posts-footer .arrow-button {
   color: var(--white);
}
.block-post-feed .entry-post:hover .listing-posts-footer .arrow-button {
   transform: translateX(0);
}

.block-post-feed .listing-posts {
   margin-bottom: 53px;
   gap: 105px 45px;
}

.block-post-feed .listing-posts .entry-post:nth-child(even) {
   position: relative;
   top: 53px;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-post-feed .listing-posts {
      gap: 50px;
   }

   .block-post-feed .listing-posts .entry-post:nth-child(even) {
      top: 0;
   }
   .block-post-feed .listing-posts .entry-post .inner-entry-content h5 {
      font-size: 17px;
   }
   .block-post-feed .listing-posts .entry-post .listing-posts-footer .button-group {
      width: auto;
   }
}

@media (max-width: 767px) {
   .block-post-feed .listing-posts {
      gap: 50px;
   }

   .block-post-feed .listing-posts .entry-post:nth-child(even) {
      top: 0;
   }
   .block-post-feed .listing-posts .entry-post .inner-entry-content h5 {
      font-size: 17px;
   }
}

@media (max-width: 460px) {
   .block-post-feed .entry-post .listing-posts-footer {
      font-size: 0;
   }
}

/*-----------------------------------------------------------------------
   Block - Review
-----------------------------------------------------------------------*/

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

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

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

.block-reviews {
  overflow: hidden;
}

.block-reviews .title-content .review-main .review-stars,
.block-reviews .swiper-carousel-wrap .swiper-star-slider .review-stars {
   display: flex;
   align-items: center;
   margin-bottom: 0 !important;
}

.block-reviews .title-content .review-main .review-stars li::before {
   content: none;
}

.block-reviews .title-content .review-main .review-stars li,
.block-reviews .swiper-carousel-wrap .swiper-star-slider .review-stars li {
   margin-bottom: 0 !important;
   padding-left: 0;
   padding-right: 4px;
}
.block-reviews .title-content .review-main .review-stars img {
   margin: 0 !important;
}

.block-reviews .title-content .review-main {
   display: flex;
   align-items: center;
   gap: 6px;
}

.block-reviews .title-content .review-main .from-review span {
   font-weight: 300;
}

.block-reviews .title-content {
   width: 355px;
}

.block-reviews *[class*='container-'] {
   max-width: calc(100% + (1300px - 100%) / 2);
   padding: 0;
   margin-left: auto;
   margin-right: 0;
}

.block-reviews .review-box .swiper-slide {
   background-color: #343434;
   width: 472px !important;
   padding: 46px 35px 35px;
}

.block-reviews .review-box .swiper-slide .swiper-star-slider {
   display: flex;
   align-items: center;
}

.block-reviews .review-box .swiper-slide .feedback-name {
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 14px;
}

.block-reviews .review-box .swiper-slide .feedback-name .byline {
   font-weight: 300;
}

.block-reviews .swiper-navigation svg {
   color: var(--black);
}

.swiper-navigation .swiper-nav-prev:hover svg,
.swiper-navigation .swiper-nav-next:hover svg {
   color: var(--white);
}

.block-reviews .review-box .swiper-slide .feedback-name p {
   background-color: #d9d9d9;
   border-radius: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0;
   height: 36px;
   font-weight: 600;
   width: 36px;
   color: var(--black);
}

.block-reviews .review-box {
   display: flex;
   align-items: center;
}

.block-reviews .review-box .swiper-carousel-wrap {
   min-width: auto;
   margin-left: 100px;
   flex: 1;
}

.block-reviews .review-box .swiper-carousel-wrap .swiper-wrapper {
   align-items: start;
}

.block-reviews .swiper-navigation {
   margin-top: 20px;
   justify-content: flex-start;
}

.block-reviews .swiper-navigation .swiper-nav-prev,
.block-reviews .swiper-navigation .swiper-nav-next {
   height: 34px !important;
   width: 34px !important;
}

.block-reviews.bg-black .swiper-navigation .swiper-nav-prev,
.block-reviews.bg-black .swiper-navigation .swiper-nav-next {
   border: 1px solid var(--white);
}
.block-reviews.bg-black .swiper-navigation .swiper-nav-prev svg,
.block-reviews.bg-black .swiper-navigation .swiper-nav-next svg {
   color: var(--white);
}

.block-reviews .swiper-navigation .swiper-nav-prev:hover,
.block-reviews .swiper-navigation .swiper-nav-next:hover {
   background-color: var(--light-orange);
   border: 1px solid var(--light-orange);
}

.block-reviews.none .swiper-navigation .swiper-nav-prev,
.block-reviews.none .swiper-navigation .swiper-nav-next {
   border: 1px solid var(--black);
}

/* Responsive */

@media (max-width: 1512px) {
   .block-reviews .review-box .swiper-carousel-wrap {
      width: 80%;
   }
}

@media (max-width: 991px) {
   .block-reviews .review-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 100px;
   }

   .block-reviews .review-box .swiper-carousel-wrap {
      margin-left: 0;
      width: 100%;
      position: relative;
      overflow: visible;
   }

   .block-reviews .review-box .swiper-navigation {
      top: -60px;
      z-index: 1;
   }
   .block-reviews .title-content {
      width: 320px;
   }
}

@media (max-width: 767px) {
   .block-reviews .review-box .swiper-slide {
      width: 100% !important;
   }
   .block-reviews *[class*='container-'] {
      max-width: var(--container-lg);
      margin-right: auto;
   }
}

/*-----------------------------------------------------------------------
   Block - CTA
-----------------------------------------------------------------------*/

.block-cta .flex-cta {
   gap: 60px;
   flex-wrap: nowrap;
}

.block-cta .flex-cta .mask-cta {
   width: auto;
}

.block-cta .flex-cta .cta-content {
   max-width: 625px;
   width: 100%;
}

.block-cta .flex-cta .cta-content h2 {
   font-size: 45px;
   line-height: 53px;
   margin-bottom: 40px;
}

.block-cta .flex-cta .mask-cta img {
   -webkit-mask-image: url('../img/rocket-mask-shap.svg');
   -webkit-mask-repeat: no-repeat;
   -webkit-mask-position: center;
   -webkit-mask-size: auto;
   mask-image: url('../img/rocket-mask-shap.svg');
   mask-repeat: no-repeat;
   mask-position: center;
   mask-size: auto;
   height: 332px;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-cta .flex-cta {
      gap: 0;
   }
}

@media (max-width: 991px) {
   .block-cta .flex-cta .cta-content h2 {
      font-size: 30px;
      line-height: 30px;
   }

   .block-cta .flex-cta {
      gap: 40px;
   }

   .block-cta .flex-cta {
      flex-wrap: wrap;
   }

   .block-cta .flex-cta .mask-cta img {
      max-width: 310px;
      height: 358px;
   }

   .block-cta .flex-cta .cta-content h2 {
      text-align: center;
   }

   .block-cta .flex-cta .mask-cta {
      width: 52%;
      margin: 0 auto;
      display: flex;
      justify-content: center;
   }

   .block-cta .flex-cta .cta-content {
      max-width: 100%;
      width: 100%;
   }

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

/*-----------------------------------------------------------------------
   Block - Solution
-----------------------------------------------------------------------*/
.rocketba-theme.block-solutions {
   overflow: hidden;
}
.block-solutions .drag-indicator {
   position: absolute;
   right: 15%;
   top: 0;
   bottom: 0;
   margin: auto;
   z-index: 200;
   background: rgba(var(--black-rgb), 0.66);
   border: 1px solid var(--grey);
   color: var(--grey);
   font-size: 12px;
   text-transform: uppercase;
   border-radius: 100px;
   height: 72px;
   width: 72px;
   transition: all var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-left: auto;
   animation: dragAnim 1.5s infinite ease-in-out;
   font-weight: 500;
}

@keyframes dragAnim {
   0% {
      transform: translateX(-50%) translateX(0);
   }

   50% {
      transform: translateX(-50%) translateX(20px);
   }

   100% {
      transform: translateX(-50%) translateX(0);
   }
}

.block-solutions .drag-indicator.hide {
   opacity: 0;
   visibility: hidden;
}

/* .block-solutions .solution-slider .container-lg {
   position: absolute;
   transform: translate(-50%, -50%);
   left: 50%;
   top: 50%;
   text-align: right;
   pointer-events: none;
} */

.block-solutions .swiper-wrapper {
   display: flex;
   align-items: center;
}

.block-solutions .solution-card {
   margin: 0 20px;
   aspect-ratio: 1 / 1;
   width: 340px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.25);
   position: relative;
}

.block-solutions .solution-card,
.block-solutions .solution-card .background-image {
   transition: all var(--transition);
}

.block-solutions .solution-card h5 {
   display: block;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 15px 73px 15px 20px;
   color: var(--white);
   background: rgba(11, 11, 11, 0.3);
   transition: all var(--transition);
}

.block-solutions .solution-card:hover h5 {
   bottom: -20px;
}

.block-solutions .solution-card:hover .background-image {
   top: -20px;
   bottom: -20px;
}

/* Responsive */

@media (max-width: 1090px) {
   .solution-slider {
      overflow: hidden;
      padding: 30px 0;
   }
}

@media (max-width: 860px) {
   .block-solutions .drag-indicator {
      right: 40px;
   }
}

/*-----------------------------------------------------------------------
   Block - Inner Banner
-----------------------------------------------------------------------*/

.block-page-banner {
   position: relative;
}

.block-page-banner::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0;
   background: rgba(var(--black-rgb), 0.2);
}
.block-page-banner::before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0;
   background: linear-gradient(281.06deg, rgba(0, 0, 0, 0) 67.29%, rgba(0, 0, 0, 0.5) 87.99%);
   z-index: 1;
}

/* Responsive */

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

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

.block-icon-grid .title-content .wysiwyg-content h2 span {
   display: block;
}

.block-icon-grid .icon-grid-img {
   margin-bottom: 15px;
}

.block-icon-grid .col-icons-grid h5 {
   margin-bottom: 41px;
}

.block-icon-grid .col-icons-grid p {
   max-width: 370px;
}

.block-icon-grid .icon-grid-main {
   gap: 50px 45px;
}

.block-icon-grid .col-icons-grid {
   padding-right: 20px;
   position: relative;
}

.block-icon-grid .col-icons-grid::after {
   content: '';
   background-color: #636363;
   height: 100%;
   position: absolute;
   right: 0;
   top: 0;
   width: 1px;
}

.block-icon-grid .col-icons-grid:nth-child(3n)::after {
   content: none;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-icon-grid .col-icons-grid:nth-child(3n)::after {
      content: '';
   }
}

@media (max-width: 767px) {
   .block-icon-grid .col-icons-grid::after {
      height: 1px;
      left: 0;
      top: -30px;
      width: 100%;
      right: inherit;
   }
}

/*-----------------------------------------------------------------------
   Block - logo list
-----------------------------------------------------------------------*/

.block-logo-list .logos-grids {
   gap: 20px;
}

.block-logo-list .logos-grids-main p {
   font-weight: 600;
   line-height: 21px !important;
   color: var(--brown);
   min-width: 204px;
}

.block-logo-list .logos-list-grids {
   gap: 70px;
}

/* Responsive */

@media (max-width: 550px) {
   .block-logo-list .logo-list-col {
      flex-wrap: nowrap;
   }

   .block-logo-list .logos-list-grids {
      gap: 40px;
      flex-wrap: nowrap;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      align-items: center;
      justify-items: center;
   }

   .block-logo-list .logos-grids-main {
      width: 47%;
   }
}

/*-----------------------------------------------------------------------
   Block - accreditations
-----------------------------------------------------------------------*/
.block-accreditations .accreditations-left p {
   margin-top: 0 !important;
}

.block-accreditations .accreditations-left h6,
.block-accreditations .accreditations-right h2 {
   margin-bottom: 50px !important;
}

.block-accreditations .accreditations-right .accreditations-img {
   aspect-ratio: 610 / 345;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

.block-accreditations .accreditations-lists-main h6 {
   color: var(--brown) !important;
}

.block-accreditations .accreditations-lists,
.block-accreditations .sponsorships-logos {
   display: flex;
   border-bottom: 1px solid #636363 !important;
   padding: 22px 0;
   align-items: center;
}

.block-accreditations .sponsorships-logos .accreditations-lists-img {
   flex-wrap: wrap;
   display: flex;
   gap: 20px;
}

.block-accreditations .accreditations-lists .accreditations-lists-text p {
   color: var(--brown);
   font-weight: 600;
   font-family: var(--font-secondary);
}

.block-accreditations .accreditations-lists .accreditations-lists-img,
.sponsorships-logos .accreditations-lists-text {
   min-width: 400px;
}

.sponsorships-logos .accreditations-lists-images {
   display: flex;
   align-items: center;
   gap: 20px;
}

.block-accreditations .accreditations-lists-main {
   margin-top: 70px;
}

.block-accreditations .accreditations-lists-main .accreditations-lists-box {
   margin-top: 40px;
}

.sponsorships-logos .accreditations-lists-text p {
   color: var(--brown) !important;
   font-weight: 600;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-accreditations .accreditations-lists,
   .block-accreditations .sponsorships-logos {
      flex-direction: column;
      align-items: flex-start;
   }

   .block-accreditations .accreditations-lists .accreditations-lists-img,
   .sponsorships-logos .accreditations-lists-text {
      min-width: auto;
   }
}

/*-----------------------------------------------------------------------
   Block - PROJECT DETAILS
-----------------------------------------------------------------------*/

.project-details-left {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 0 88px;
}

.project-details-left .projects-list {
   border-bottom: 1px solid rgba(var(--black-rgb), 13%) !important;
   margin-bottom: 16px;
}
.bg-black .project-details-left .projects-list {
   border-bottom: 1px solid rgba(var(--white-rgb), 13%) !important;
}

.bg-black .project-details-left .projects-list a svg path {
   stroke: var(--white);
}

.block-project-details .title-content {
   margin-bottom: 45px;
}

.project-details-left .projects-list span,
.project-details-right span {
   color: var(--brown) !important;
   font-weight: 600;
}

.project-details-left .projects-list p {
   margin-top: 0;
   margin-bottom: 17px;
}

.project-details-left .projects-list p a {
   align-items: baseline;
   text-transform: uppercase;
   gap: 5px;
   color: var(--black);
}

.project-details-left .projects-list p a img {
   margin-left: 3px;
}

.project-details-left .projects-list p a:hover {
   text-decoration: underline;
}

/* Responsive */

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

/*-----------------------------------------------------------------------
   Block - testimonial
-----------------------------------------------------------------------*/

.block-testimonial .testimonial-left,
.block-testimonial .testimonial-right {
   width: 50%;
}

.block-testimonial .testimonial-grid .testimonial-right .swiper-navigation {
   margin-top: 0;
   justify-content: start;
   position: relative;
   top: -40px;
   z-index: 1;
}

.testimonial-images {
   display: flex;
   justify-content: end;
   position: relative;
}

.testimonial-top-img {
   width: 37%;
   position: absolute;
   left: 0;
   top: 0;
}

.testimonial-top-img img {
   object-fit: cover;
   aspect-ratio: 22 / 29;
}

.testimonial-right-img {
   margin-top: 10%;
   width: 80%;
}

.testimonial-right-img img {
   object-fit: cover;
   aspect-ratio: 50 / 34;
}

.block-testimonial .testimonial-grid .testimonial-right .swiper-carousel-wrap {
   height: 100%;
}

.block-testimonial .testimonial-grid .testimonial-right .swiper-carousel-wrap .testimonial-text span {
   font-family: var(--font-secondary);
   margin-top: 50px;
   display: block;
   line-height: 32px;
   text-transform: uppercase;
}

.testimonial-grid {
   position: relative;
   gap: 52px;
   flex-wrap: nowrap !important;
   display: flex;
   align-items: stretch;
}

.testimonial-grid .document-list {
   margin-top: 20px;
   width: 100%;
}

.testimonial-slider {
   height: 100% !important;
   display: flex !important;
   flex-direction: column !important;
   justify-content: space-between !important;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-testimonial .testimonial-grid .testimonial-right .swiper-navigation {
      top: 0;
   }
   .testimonial-grid {
      flex-wrap: wrap !important;
   }

   .block-testimonial .testimonial-left,
   .block-testimonial .testimonial-right {
      width: 100%;
   }
   .block-testimonial .testimonial-right {
      width: calc(100% - 60px);
      margin: 0 auto;
   }
}

@media (max-width: 767px) {
   .testimonial-images,
   .block-testimonial .testimonial-left,
   .block-testimonial .testimonial-right {
      width: 100%;
   }
   .block-testimonial .testimonial-right {
      width: calc(100% - 30px);
   }
}

/*-----------------------------------------------------------------------
   Block - post banner
-----------------------------------------------------------------------*/

.block-project-banner .post-banner-img img {
   width: 100%;
   height: 100%;
   max-height: 658px;
   object-fit: cover;
}

.block-project-banner .partner-logo-post {
   display: flex;
   align-items: start;
   justify-content: space-between;
   padding: 30px 0 19px 0;
   border-bottom: 1px solid #636363 !important;
}

.block-project-banner .partner-logo-post .partner-logo-lists-banner {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 96px;
}

.block-project-banner .partner-logo-post > * {
   width: 50%;
}

.block-project-banner .partner-logo-post p {
   color: var(--brown) !important;
   font-family: var(--font-secondary);
   font-weight: 600;
}

/* Responsive */

@media (max-width: 1090px) {
   .block-project-banner .partner-logo-post {
      gap: 20px;
   }
}

@media (max-width: 767px) {
   .project-details-left {
      grid-template-columns: repeat(1, 1fr);
   }
}

/*-----------------------------------------------------------------------
   Block - legislation
-----------------------------------------------------------------------*/

.block-legislation .testimonial-right .wysiwyg-content {
   margin-bottom: 50px;
}

.block-legislation .testimonial-right .document-list p {
   margin: 10px 0;
}
.block-legislation .testimonial-right .document-list p,
.block-legislation .testimonial-right .document-list p a {
   display: flex;
   font-style: normal;
   font-weight: 400;
   color: var(--black);
   align-items: center;
}

.block-legislation .testimonial-images {
   margin-top: 70px;
}

.block-legislation .testimonial-right .document-list p a {
   margin: 0;
   align-items: baseline;
   gap: 5px;
}

.block-legislation .testimonial-right .document-list p a:hover {
   text-decoration: underline;
}

.block-legislation .text-white .testimonial-right .document-list p a {
   color: var(--white);
}

.block-legislation .testimonial-right .document-list p span {
   margin-right: 13px;
   border: 1px solid var(--light-orange);
   height: 34px;
   min-height: 34px;
   width: 34px;
   min-width: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 100px;
   padding: 7px;
}

.block-legislation .testimonial-right .document-list p a svg {
   width: 12px !important;
   min-width: 12px;
   height: auto;
}

/*-----------------------------------------------------------------------
   Block - Doc List
-----------------------------------------------------------------------*/

.block-downloads .testimonial-grid .document-list p,
.block-downloads .testimonial-grid .document-list p a {
   margin: 0;
   display: flex;
   font-style: normal;
   font-weight: 400;
   color: var(--black);
   align-items: center;
}

.block-downloads .testimonial-grid .document-list p a {
   display: inline;
}

.block-downloads .testimonial-grid .document-list p a:hover {
   text-decoration: underline;
}

.block-downloads .text-white .testimonial-grid .document-list p a {
   color: var(--white);
}

.block-downloads .testimonial-grid .document-list p span {
   margin-right: 13px;
   border: 1px solid var(--light-orange);
   height: 34px;
   min-height: 34px;
   width: 34px;
   min-width: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 100px;
   padding: 7px;
}

.block-downloads .testimonial-grid .document-list p a svg {
   width: 12px;
   min-width: 12px;
   height: auto;
}

/* Responsive */

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

/*-----------------------------------------------------------------------
   Block - Logo List
-----------------------------------------------------------------------*/

.block-logo-list .logo-grid .logos-list-grids {
   margin-top: 40px;
   gap: 36px;
}

.block-logo-list .logo-grid .logo-main-content {
   position: relative;
   display: flex;
   align-items: center;
}

.block-logo-list .logo-grid .logo-main-content::after {
   content: '';
   height: 47px;
   width: 1px;
   background-color: #e0e0e0;
   position: absolute;
   right: 0;
   top: 0;
   top: 50%;
   transform: translateY(-50%);
}

/* Responsive */

@media (max-width: 1512px) {
   .block-logo-list .logo-grid .logos-list-grids {
      gap: 20px;
   }
}

@media (min-width: 1200px) {
   /* .block-logo-list .logo-grid .logos-list-grids{
      grid-template-columns: repeat(4, 1fr);
   }*/
   .block-logo-list .logo-grid .logo-main-content:nth-child(5n)::after {
      content: none;
   }
}
@media (min-width: 991px) and (max-width: 1199px) {
   .block-logo-list .logo-grid .logos-list-grids {
      grid-template-columns: repeat(4, 1fr);
   }
   .block-logo-list .logo-grid .logo-main-content:nth-child(4n)::after {
      content: none;
   }
}

@media (min-width: 767px) and (max-width: 990px) {
   .block-logo-list .logo-grid .logos-list-grids {
      grid-template-columns: repeat(3, 1fr);
   }
   .block-logo-list .logo-grid .logo-main-content:nth-child(3n)::after {
      content: none;
   }
}

@media (min-width: 320px) and (max-width: 766px) {
   .block-logo-list .logo-grid .logos-list-grids {
      grid-template-columns: repeat(2, 1fr);
   }

   .block-logo-list .logo-grid .logo-main-content:nth-child(2n)::after {
      content: none;
   }
   .block-logo-list .logo-grid .logo-main-content {
      width: 100%;
   }
   .block-logo-list .logo-grid .logo-main-content img {
      width: 80%;
   }
}

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

.number-contact,
.email-contact {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 16px;
}

.number-contact a,
.email-contact a {
   color: var(--light-orange);
   font-weight: 300;
   font-size: 17px;
}

.number-contact a:hover,
.email-contact a:hover {
   text-decoration: underline;
}

.location-contact {
   display: flex;
   gap: 14px;
}

.location-contact p {
   font-size: 15px !important;
}

.location-contact p a {
   display: block;
   color: var(--light-orange);
}

.location-contact p a:hover {
   text-decoration: none;
}

.contact-info-details .contact-box-details {
   position: relative;
}

.contact-info-details .contact-box-details::before {
   content: '';
   position: absolute;
   top: 0;
   right: -40px;
   height: 100%;
   width: 1px;
   opacity: 0.6;
   background-color: var(--white);
}

.contact-info-details:last-child .contact-box-details::before {
   display: none;
}

.contact-info-details p {
   font-weight: 600;
   font-size: 15px !important;
}

.number-contact span,
.email-contact span,
.location-contact span {
   background-color: var(--white);
   height: 34px;
   border-radius: 50%;
   min-width: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.contact-info-details .location-contact p {
   margin: 0;
   font-weight: 300;
}

.contact-info-details p a {
   text-decoration: underline;
   text-transform: uppercase;
   font-weight: 400;
}

.contact-info-details h5 {
   margin-bottom: 25px;
}

.contact-info {
   margin-top: 40px;
}

.right-info-contact .contact-cards {
   gap: 22px;
}

.right-info-contact .contact-cards .contact-card-col {
   background-color: #343434;
   position: relative;
}

.right-info-contact .contact-cards .contact-card-col .contact-card-img {
   max-height: 180px;
   overflow: hidden;
}

.right-info-contact .contact-cards .contact-card-col .contact-card-img img {
   width: 100%;
   height: 100%;
   max-height: 180px;
   object-fit: cover;
}

.right-info-contact .contact-cards .contact-card-col .contact-card-text {
   padding: 20px 20px 34px;
}

.right-info-contact .contact-cards .contact-card-col .contact-card-text h5 {
   color: var(--white);
}

.right-info-contact .contact-cards .contact-card-col .contact-card-text p {
   color: var(--white);
   padding-bottom: 40px;
   margin-top: 5px;
}

.right-info-contact .contact-cards .contact-card-col .contact-card-text .button-group {
   position: absolute;
   bottom: 34px;
}

.block-contact.bg-black .left-info-contact .contact-box-details span svg * {
   color: var(--black) !important;
}

.block-contact.bg-none .left-info-contact .number-contact span,
.block-contact.bg-none .left-info-contact .email-contact span,
.block-contact.bg-none .left-info-contact .location-contact span {
   background-color: var(--black);
}

.block-contact.bg-none .left-info-contact .contact-box-details span svg * {
   color: var(--white) !important;
}

/* Responsive */

@media (max-width: 1190px) {
   .block-info-contact .grid-col-2 {
      gap: 20px;
   }

   .block-info-contact .grid-col-2.contact-info {
      grid-template-columns: repeat(1, 1fr);
   }

   .block-info-contact .grid-col-2.contact-cards {
      grid-template-columns: repeat(2, 1fr);
   }

   .contact-info-details .contact-box-details::before {
      right: 0;
      width: 100%;
      height: 1px;
      bottom: -10px;
      left: 0;
      top: inherit;
   }
}

@media (max-width: 767px) {
   .block-info-contact .grid-col-2.contact-cards {
      grid-template-columns: repeat(1, 1fr);
   }
}

/*-----------------------------------------------------------------------
   Block - Project
-----------------------------------------------------------------------*/

.fixed-header-bg {
   position: sticky;
   background-color: var(--black);
}

.archive-index .block-post-feed .title h1 {
   color: var(--black);
   text-shadow: none;
}

.archive-index .block-post-feed.bg-black .title h1 {
   color: var(--white);
}

.archive-index .block-post-feed .listing-categories a {
   font-weight: 600;
   line-height: 15px;
   text-transform: uppercase;
   padding: 6px 20px;
   border-radius: 20px;
   color: var(--grey);
   border: 1px solid transparent;
}

.archive-index .block-post-feed .listing-categories {
   gap: 2px;
}

.archive-index .block-post-feed .listing-categories a.active {
   border: 1px solid var(--black);
}
.archive-index .block-post-feed .listing-categories a:hover {
   border: 1px solid var(--black);
}
/*Responsive*/
@media (max-width: 1512px) {
   .archive-index .block-post-feed .title {
      padding-bottom: 120px;
   }

   .archive-index .bg-shape-spinner *[class*='container-']::before {
      top: -25px;
   }
}

@media (max-width: 767px) {
   .archive-index .bg-shape-spinner *[class*='container-']::before {
      top: 0;
      width: 70px;
      height: 70px;
   }
}

/*-----------------------------------------------------------------------
   Block - Search Results
-----------------------------------------------------------------------*/

.block-search-results .button-group {
   display: none;
}

.block-search-results .inner-entry-content {
   margin: 20px 0;
   transition: var(--transition);
}

.block-search-results .entry-post .listing-posts-footer .inner-entry-content h5 {
   transition: var(--transition);
}

.block-search-results .entry-post:hover .listing-posts-footer .inner-entry-content h5 {
   color: var(--light-orange);
}


/*-----------------------------------------------------------------------
   Block - Process section layout - 2
-----------------------------------------------------------------------*/
.process-layout-two::-webkit-scrollbar{
   width: 0px;
}
.process-layout-two .process-layout-column{
   gap: 80px;
   margin-bottom: 40px;
}
.process-layout-two .text-default .button-group a{
   color: var(--black);
   font-weight: 500;
}
.process-layout-two .process-counter-slide p{
   font-weight: 500;
}
.process-layout-two .process-layout-column .item-column{
   transform: translateY(40px);
   transition: all 0.8s ease;
   position: relative;
   opacity: 0;
   max-width: 450px;
}

.process-layout-two .process-layout-column:nth-child(odd) .item-column{
   order: 2;
   transform: translateX(60px);
   padding-left: 30px;
}
.process-layout-two .process-layout-column:nth-child(even) .item-column{
   padding-right: 30px;
   transform: translateX(-60px);
   margin-right: 0;
   margin-left: auto;
}
.process-layout-two .process-layout-column {
   position: relative;
 }
 .process-layout-two .black-dot {
   position: absolute;
   top: 23px;
   left: 50%;
   transform: translateX(-50%);
   width: 8px;
   height: 8px;
   border: 1px solid #000;
   background: #fff;
   border-radius: 50%;
   z-index: 3;
 }
.process-layout-two .process-layout-column .item-column.active{
   transform: none !important;
   opacity: 1;
}
.block-process .process-layout-two .process-timeline .timeline {
   position: absolute;
   left: 50%;
   top: 0;
   height: 100%;
   width:1px;
}

.process-layout-two .process-timeline .timeline .line {
   width: 1px;
   height: 100%;
   background-color: rgba(43,43,43,1);
   position: absolute;
}


.process-layout-two .process-timeline .timeline .dot {
   width: 12px;
   height: 12px;
   background: var(--light-orange);
   border-radius: 50%;
   position: absolute;
   left: -6px;
   top:23px;
   z-index: 9;
}
@media (max-width: 1199px) {
   .process-layout-two .process-layout-column
   {
      gap: 40px;
   }
}
@media (max-width: 1090px) {
   .block-process .process-layout-two .process-timeline .timeline{
      left: 0;
   }
   .process-layout-two .black-dot {
      left: -4px;
      transform: none;
  }
  .process-layout-two .process-layout-column:nth-child(even) .item-column {
      padding-left: 30px;
      margin-right: auto;
      margin-left: 0;
      transform: translateX(60px);
   }
   .process-layout-two .process-layout-column .item-column {
      max-width: 100%;
  }
  .process-layout-two .process-layout-column
   {
      gap: 25px;
      margin-bottom: 25px;
   }
   .process-layout-two .empty-div{
      display: none;
   }
}

div#wprev_header_txt_id_1, .prev.wprs_nav_arrow_1, .next.wprs_nav_arrow_1 {
    display: none;
}
#wprev-slider-1 .wprs_rd_less {
       color: #f26b41;
}

.review-box .indrevdiv {
   display: flex;
    flex-wrap: wrap;
    text-align: left;
    align-items: center;
}
.review-box .indrevdiv span, .review-box .indrevdiv .indrevtxt , .review-box .indrevdiv .readmoretextdiv 
{
	width:100%;
	text-align:left;
	font-family: var(--font-primary) !important;
}
.indrevdiv span{
    font-family: var(--font-primary) !important;
    margin-bottom: 17px;
}
.review-box .indrevdiv .wpproslider_t12_H3_3 {
	margin-top: 10px;
    margin-left: 20px;
	font-family: var(--font-primary) !important;
	font-weight: 400;
}