/*-----------------------------------------------------------------------
   Fonts
-----------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*-----------------------------------------------------------------------
   Variables
-----------------------------------------------------------------------*/
:root {
   /* --none: #fff; */
   --admin-height: 32px;
   --header-height: 104px;
   --notice-height: 0px;
   --font-primary: 'Poppins', sans-serif;
   --font-secondary: 'Cal Sans', sans-serif;
   --bright-orange: #f4760e;
   --bright-orange-rgb: 244, 118, 14;
   --orange: #ee9208;
   --orange-rgb: 238, 146, 8;
   --light-orange: #ff974d;
   --light-orange-rgb: 255, 151, 77;
   --blue-dark: #042542;
   --blue-dark-rgb: 4, 37, 66;
   --blue: #134877;
   --blue-rgb: 19, 72, 119;
   --cream: #f8f3eb;
   --cream-rgb: 248, 243, 235;
   --grey-light: #f1f1f1;
   --grey-light: 241, 241, 241;
   --white: #ffffff;
   --white-rgb: 255, 255, 255;
   --grey: #e6e9ec;
   --grey-rgb: 230, 233, 236;
   --black: #000000;
   --black-rgb: 0, 0, 0;
   --red: #ff1414;
   --red-rgb: 255, 20, 20;
   --border-radius-sm: 5px;
   --border-radius-md: 15px;
   --border-radius-lg: 30px;
   --container-xs: 670px;
   --container-sm: 760px;
   --container-md: 1120px;
   --container-lg: 1380px;
   --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);
   --transition: 0.4s ease-in-out;
}

/* Responsive */

@media (max-width: 1199px) {
   :root {
      --header-height: 90px;
   }
}
@media (max-width: 991px) {
   :root {
      --header-height: 90px;
      --admin-height: 46px;
   }
}
@media (max-width: 767px) {
   :root {
      --header-height: 70px;
      --admin-height: 46px;
   }
}

/*-----------------------------------------------------------------------
   Base
-----------------------------------------------------------------------*/
.gctrailer-theme *,
.gctrailer-theme *:before,
.gctrailer-theme *:after {
   box-sizing: border-box;
}

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

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

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

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

/*-----------------------------------------------------------------------
   Admin Bar
-----------------------------------------------------------------------*/
body.gctrailer-theme {
   padding-top: calc(var(--header-height) + var(--notice-height)) !important;
   margin: 0;
}

body.gctrailer-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
-----------------------------------------------------------------------*/
.gctrailer-theme *[class*='container-'],
.gctrailer-theme *[class*='section-'],
.gctrailer-theme *[class*='block-'],
.gctrailer-theme *[class*='entry-'],
.gctrailer-theme .relative {
   position: relative;
}

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

/* Flex Layout */
.gctrailer-theme .flex-layout,
.gctrailer-theme .flex-align-start,
.gctrailer-theme .flex-align-center,
.gctrailer-theme .flex-align-end,
.gctrailer-theme .flex-justify-start,
.gctrailer-theme .flex-justify-center,
.gctrailer-theme .flex-justify-end,
.gctrailer-theme .flex-justify-between {
   display: flex;
   flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

/* Containers */
.gctrailer-theme .container,
.gctrailer-theme .container-xl,
.gctrailer-theme .container-lg,
.gctrailer-theme .container-md,
.gctrailer-theme .container-sm,
.gctrailer-theme .container-xs {
   z-index: 99;
   margin: auto;
   width: 100%;
   padding: 0 20px;
}

.gctrailer-theme .container,
.gctrailer-theme .container-xl {
   width: 100%;
   padding: 0;
}

.gctrailer-theme .container-lg {
   max-width: var(--container-lg);
   padding: 0 20px;
}

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

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

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

/* Padding */
.gctrailer-theme .padding-lg,
.gctrailer-theme .padding-lg-top {
   padding-top: 80px;
}

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

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

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

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

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

/* Grid Layout */
.gctrailer-theme .grid-col-1,
.gctrailer-theme .grid-col-2,
.gctrailer-theme .grid-col-3,
.gctrailer-theme .grid-col-4,
.gctrailer-theme .grid-col-5,
.gctrailer-theme .grid-col-6 {
   display: grid;
   gap: 20px;
}

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

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

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

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

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

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

/* Visibility */
.gctrailer-theme .desktop-only {
   display: block;
}

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

/* Block Settings */
.gctrailer-theme .block-setting-padding {
   padding-top: var(--block-padding-top);
   padding-bottom: var(--block-padding-bottom);
}

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

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

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

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

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

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

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

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

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

   .gctrailer-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: 767px) {
   .gctrailer-theme .container-lg,
   .gctrailer-theme .container-md,
   .gctrailer-theme .container-sm,
   .gctrailer-theme .container-xs {
      width: calc(100% - 0px);
      padding: 0 20px;
   }

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

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

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

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

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

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

.gctrailer-theme h1,
.gctrailer-theme h1 *,
.gctrailer-theme .h1,
.gctrailer-theme .h1 * {
   font-size: 60px;
   line-height: 64px;
   font-family: var(--font-secondary);
   letter-spacing: 1.4px;
}

.gctrailer-theme h2,
.gctrailer-theme h2 *,
.gctrailer-theme .h2,
.gctrailer-theme .h2 * {
   font-size: 34px;
   line-height: 43px;
   font-family: var(--font-secondary);
   font-weight: 400;
   letter-spacing: 1.4px;
   color: #042542;
}
.gctrailer-theme h4 *,
.gctrailer-theme h2 * {
   color: #f4760e;
}
.gctrailer-theme h3,
.gctrailer-theme h3 *,
.gctrailer-theme .h3,
.gctrailer-theme .h3 * {
   font-size: 30px;
   line-height: 1.3;
   letter-spacing: 1.4px;
}

.gctrailer-theme h4,
.gctrailer-theme h4 *,
.gctrailer-theme .h4,
.gctrailer-theme .h4 * {
   font-size: 25px;
   line-height: 28px;
   font-family: var(--font-secondary);
   font-weight: 400;
   letter-spacing: 1.4px;
}

.gctrailer-theme h5,
.gctrailer-theme h5 *,
.gctrailer-theme .h5,
.gctrailer-theme .h5 * {
   font-size: 17px;
   line-height: 22px;
   font-family: var(--font-secondary);
   font-weight: 400;
   letter-spacing: 1.4px;
}

.gctrailer-theme h6,
.gctrailer-theme h6 *,
.gctrailer-theme .h6,
.gctrailer-theme .h6 * {
   font-size: 17px;
   letter-spacing: 1px;
   font-weight: 500;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   width: 100%;
   white-space: nowrap;
   word-break: normal;
   margin-bottom: 0px;
}

.gctrailer-theme h6 {
   color: #042542;
   width: 100%;
   margin-bottom: 48px !important;
}

.gctrailer-theme h6:before {
   content: '';
   min-width: 6px;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #f4760e;
   display: inline-flex;
}

.gctrailer-theme .sub-title h6:after {
   content: '';
   height: 1px;
   background: rgba(var(--blue-rgb), 14%);
   display: inline-flex;
   width: 100%;
}

.gctrailer-theme p,
.gctrailer-theme li {
   font-weight: 400;
   font-size: 17px !important;
   line-height: 22px !important;
   color: rgba(var(--black-rgb), 70%);
}

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

.gctrailer-theme a {
   text-underline-offset: 3px !important;
   text-decoration-thickness: 1px !important;
}

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

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

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

.gctrailer-theme mark {
   background: none;
}

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

/* Responsive */
@media (max-width: 1199px) {
   .gctrailer-theme h1,
   .gctrailer-theme h1 *,
   .gctrailer-theme .h1,
   .gctrailer-theme .h1 * {
      font-size: 52px;
      line-height: 1.25;
   }
   .gctrailer-theme h2,
   .gctrailer-theme h2 *,
   .gctrailer-theme .h2,
   .gctrailer-theme .h2 * {
      font-size: 30px;
      line-height: 1.3;
   }
}

@media (max-width: 991px) {
   .gctrailer-theme h1,
   .gctrailer-theme h1 *,
   .gctrailer-theme .h1,
   .gctrailer-theme .h1 * {
      font-size: 42px;
   }
   .gctrailer-theme h2,
   .gctrailer-theme h2 *,
   .gctrailer-theme .h2,
   .gctrailer-theme .h2 * {
      font-size: 26px;
      line-height: 1.3;
   }
}

@media (max-width: 767px) {
   .gctrailer-theme h1,
   .gctrailer-theme h1 *,
   .gctrailer-theme .h1,
   .gctrailer-theme .h1 * {
      font-size: 36px;
   }
   .gctrailer-theme h2,
   .gctrailer-theme h2 *,
   .gctrailer-theme .h2,
   .gctrailer-theme .h2 * {
      font-size: 24px;
      line-height: 1.3;
   }
}

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

/* Sizes */

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

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

/* Alignment */
.gctrailer-theme .text-left {
   text-align: left;
}

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

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

/* Colours */
.gctrailer-theme .text-muted {
   opacity: 40%;
}

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

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

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

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

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

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

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

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

.wysiwyg-content ul li:before {
   content: '';
   display: block;
   position: absolute;
   top: 6px;
   left: 3px;
   width: 8px;
   height: 8px;
   border-radius: 9px;
   background: #f4760e;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Labels */
.gctrailer-theme label,
.gctrailer-theme legend,
.gctrailer-theme form .ginput_preview,
.gctrailer-theme form .gform-field-label,
.gctrailer-theme form .gfield_description,
.gctrailer-theme form .ginput_quantity_label,
.gctrailer-theme form .gform_fileupload_rules,
.gctrailer-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;
}

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

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

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

/* Basic Fields */
.gctrailer-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.gctrailer-theme select:not([class*='ui-']),
.gctrailer-theme .select2-container .select2-selection,
.gctrailer-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: 0px solid var(--grey) !important;
   background: transparent !important;
   padding: 15px 0px !important;
   color: rgba(var(--black-rgb), 40%);
   font-size: 17px !important;
   line-height: 22px !important;
   font-weight: 400 !important;
   text-align: left !important;
   text-decoration: none !important;
   transition: none !important;
   resize: none;
   border-bottom: 1px solid var(--black) !important;
}

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

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

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

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

.gctrailer-theme::placeholder {
   color: rgba(var(--black-rgb), 40%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gctrailer-theme input[type='radio']:not([class*='ui-']):before,
.gctrailer-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
-----------------------------------------------------------------------*/
.gctrailer-theme form.filter-form {
   width: fit-content !important;
   max-width: 100%;
}

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

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

/*-----------------------------------------------------------------------
   Buttons
-----------------------------------------------------------------------*/
.gctrailer-theme .button-group {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
}

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

/* Default Styles */
.gctrailer-theme button,
.gctrailer-theme button:hover,
.gctrailer-theme button:focus,
.gctrailer-theme .button,
.gctrailer-theme .button:hover,
.gctrailer-theme .button:focus {
   appearance: none;
   -webkit-appearance: none;
   position: relative;
   display: inline-flex !important;
   align-items: center;
   justify-content: center;
   gap: 26px;
   margin: 0;
   outline: 0;
   width: auto;
   height: auto;
   min-width: 100px;
   min-height: 62px !important;
   padding: 14px 30px !important;
   font-size: 16px !important;
   font-family: var(--font-primary);
   color: #fff !important;
   font-weight: 500;
   line-height: 20px !important;
   text-align: center;
   text-decoration: none !important;
   background: #ff974d;
   border: 0px solid #f4760e;
   border-radius: 0 !important;
   transition: var(--transition) all;
   cursor: pointer;
   z-index: 1;
   position: relative;
   text-transform: uppercase;
}

.gctrailer-theme .gform_button:after,
.gctrailer-theme .button-group .button:after {
   content: '';
   height: 100%;
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   background: #f4760e;
   z-index: 0;
   width: calc(100% - 45px);
   left: 0;
   transition: var(--transition) all;
   z-index: -1;
}

.gctrailer-theme .button.button-blue {
   background: #134877 !important;
}

.gctrailer-theme .button.button-blue:after {
   background: #042542 !important;
}

.gctrailer-theme .gform_button:hover:after,
.gctrailer-theme .button-group .button:hover:after {
   width: calc(0% - 45px);
}

.gctrailer-theme .gform_button svg,
.gctrailer-theme .button-group .button svg {
   z-index: 1;
   position: relative;
   right: -17px;
   width: 20px;
   height: 20px;
}

/* Additional Styles */
.gctrailer-theme .button.button-white {
   border-color: var(--white);
}

.gctrailer-theme .button.button-white,
.gctrailer-theme .button.button-white svg {
   color: var(--white);
}

/* Hover/Focus */
.gctrailer-theme button:hover,
.gctrailer-theme button:focus,
.gctrailer-theme .button:hover,
.gctrailer-theme .button:focus {
   outline: 0;
   box-shadow: none;
   border-color: var(--grey);
}

/* Responsive */
@media (max-width: 550px) {
   .gctrailer-theme .button-group {
      width: 100%;
   }
   /*.gctrailer-theme .gform_button svg,
   .gctrailer-theme .button-group .button svg {
      right: 0;
   }
   .gctrailer-theme .button {
      min-height: 42px !important;
      padding: 14px 10px !important;
   }*/
}

/*-----------------------------------------------------------------------
   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: 311px;
   max-height: 97px;
   width: 100%;
   height: 100%;
   z-index: 20000;
   transition: none;
}

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

@media (max-width: 1199px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 240px;
      max-height: 75px;
   }
}
@media (max-width: 991px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 240px;
      max-height: 75px;
   }
}

@media (max-width: 767px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 180px;
      max-height: 75px;
   }
}
/*-----------------------------------------------------------------------
   Site Header
-----------------------------------------------------------------------*/
.site-header {
   top: 0;
   width: 100%;
   position: fixed;
   background: var(--white);
   box-shadow: var(--box-shadow);
   z-index: 999;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

body.gctrailer-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: 17px;
   text-decoration: none;
   font-weight: 500;
   letter-spacing: 1px;
   text-transform: uppercase;
}

.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 {
   color: #f4760e;
}

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

header .row {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

header .main-menu {
   display: flex;
   align-items: center;
   gap: 35px;
}

/* Sub Menu */
.site-header .trigger-sub-menu svg {
   width: 10px;
   height: 10px;
   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;
}

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

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

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

/* Icon Menu */
.site-header .header-right {
   gap: 34px;
}

.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: 30px;
   height: 30px;
   align-items: center;
   justify-content: center;
   position: relative;
   cursor: pointer;
}

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

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

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

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

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

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

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

/* Responsive Menu */
.site-responsive-menu {
   width: 100%;
   position: fixed;
   bottom: 0;
   right: 0;
   top: calc(var(--header-height) + var(--notice-height));
   overflow-y: auto;
   z-index: 0;
   opacity: 0;
   pointer-events: none;
   z-index: 999;
   padding-top: 20px;
}

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

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

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

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

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

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

.site-responsive-menu .main-menu > ul > li > a {
   text-transform: uppercase;
   font-family: var(--font-primary);
   font-size: 20px;
   font-weight: 500;
}

.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-size: 18px;
   padding: 0 20px 5px;
}

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

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

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

/* Responsive */
@media (min-width: 991px) {
   .site-header .trigger-menu,
   .site-responsive-menu {
      display: none !important;
   }
}
@media (max-width: 1199px) {
   header .row {
      padding: 7px 0;
   }
   .site-header .main-menu ul:not(.sub-menu) {
      display: flex;
      gap: 0px;
   }
}
@media (max-width: 991px) {
   .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;
   }
   header .row {
      padding: 7px 0;
   }
   body.menu-active {
      overflow: hidden;
   }
   body.menu-active .site-responsive-menu {
      opacity: 1;
      pointer-events: auto;
   }
   .site-header .header-right {
      gap: 0px;
   }
}

/*-----------------------------------------------------------------------
   Site Search
-----------------------------------------------------------------------*/
.search .archive-search {
   min-height: 400px;
}
.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.gctrailer-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;
}

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

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

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

/*-----------------------------------------------------------------------
   Site Footer
-----------------------------------------------------------------------*/
.site-footer {
   border-top: 1px solid var(--black);
}

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

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

.site-footer ul li,
.site-footer h6 {
   margin: 0 0 10px;
}

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

/* Responsive */
@media (max-width: 860px) {
   .site-footer a.site-logo {
      margin: auto;
   }

   .site-footer * {
      text-align: center;
      justify-content: 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
-----------------------------------------------------------------------*/
.gctrailer-theme img {
   max-width: 100%;
   height: auto;
   display: block;
}

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

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

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

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

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

/* Background Elements */
.gctrailer-theme .background-image,
.gctrailer-theme .background-video,
.gctrailer-theme .background-overlay:before {
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
}

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

.gctrailer-theme .background-image::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: linear-gradient(267.85deg, rgba(0, 0, 0, 0) 42.05%, rgba(0, 0, 0, 0.6) 75.64%);
}

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

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

/* Video Embed */
.gctrailer-theme .responsive-embed {
   position: relative;
   padding-bottom: 56.25%;
   height: 0;
   overflow: hidden;
}

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

/*-----------------------------------------------------------------------
   Swiper
-----------------------------------------------------------------------*/
.gctrailer-theme .swiper-carousel-wrap {
   min-width: 100%;
   overflow: hidden;
}

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

/* Pagination */
.gctrailer-theme .swiper-pagination {
   top: 0;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: -15px !important;
}

.gctrailer-theme .swiper-pagination span {
   opacity: 100%;
   margin-right: 10px !important;
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: #fff;
   border: 3px solid #fff;
   transition: var(--transition) all;
}

.gctrailer-theme .swiper-pagination span.swiper-pagination-bullet-active {
   background: #fea31b;
}

/* Navigation */
.gctrailer-theme .swiper-navigation {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 30px;
}

.gctrailer-theme .swiper-navigation div[class*='swiper-nav-'] {
   padding: 10px;
   cursor: pointer;
}

.gctrailer-theme .swiper-navigation div[class*='swiper-nav-'] svg {
   display: block;
   width: 20px;
   height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
   .gctrailer-theme .swiper-pagination {
      margin-top: 15px;
   }
   .block-hero-banner .swiper-pagination {
      top: inherit !important;
      bottom: 50px;
   }
}

/*-----------------------------------------------------------------------
   Tables
-----------------------------------------------------------------------*/
.gctrailer-theme table {
   border-collapse: collapse;
   width: 100%;
}

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

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

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

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

/*-----------------------------------------------------------------------
   Social Icons
-----------------------------------------------------------------------*/
.gctrailer-theme .social-icons {
   gap: 15px;
}

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

.gctrailer-theme .social-icons svg {
   width: 26px;
   height: 26px;
   color: #042542;
}

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

/*-----------------------------------------------------------------------
   Clipboard Copy
-----------------------------------------------------------------------*/
.gctrailer-theme .copy-to-clipboard {
   position: relative;
   cursor: pointer;
}

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

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

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

/*-----------------------------------------------------------------------
   Popups
-----------------------------------------------------------------------*/
.gctrailer-theme .trigger-popup,
.gctrailer-theme .close-popup {
   cursor: pointer;
   z-index: 20000;
}

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

.gctrailer-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 */
.gctrailer-theme .popup-overlay > *[class*='container'] {
   position: relative;
   overflow-y: auto;
   max-height: 80vh;
   padding: 40px;
   background: var(--white);
}

/* Close Button */
.gctrailer-theme .popup-overlay .close-popup:not(.button) {
   position: absolute;
   right: 0;
   top: 0;
   padding: 20px;
}

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

/*-----------------------------------------------------------------------
   Pagination
-----------------------------------------------------------------------*/
.gctrailer-theme .archive-pagination {
   margin: auto;
   margin-top: 40px;
   width: fit-content;
}

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

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

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

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

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

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

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

/*-----------------------------------------------------------------------
   Block - Accordion
-----------------------------------------------------------------------*/
.gctrailer-theme .entry-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 20px;
}

.gctrailer-theme .entry-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
   font-weight: 500;
   font-family: var(--font-primary) !important;
   color: rgba(var(--black-rgb), 70%);
}

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

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

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

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

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

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

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

.block-split-content img {
   width: 100%;
   height: auto !important;
   aspect-ratio: 4/2.5;
   object-fit: cover;
}
.block-split-content .item-column {
   margin: auto;
}
/* Responsive */
@media (max-width: 860px) {
   .block-split-content .column-content {
      order: 9;
   }

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

/*-----------------------------------------------------------------------
   Block - Reviews
-----------------------------------------------------------------------*/
.gctrailer-theme .entry-review .inner-entry-image {
   width: 60px;
   height: auto;
}

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

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

/*-----------------------------------------------------------------------
   Block - block-hero-banner
-----------------------------------------------------------------------*/
body.wp-admin .gctrailer-theme .swiper,
body.wp-admin .gctrailer-theme .swiper-slide {
   pointer-events: none;
}
body.wp-admin .gctrailer-theme .swiper-slide a,
body.wp-admin .gctrailer-theme .swiper-slide .button,
body.wp-admin .gctrailer-theme .swiper-button-prev,
body.wp-admin .gctrailer-theme .swiper-button-next,
body.wp-admin .gctrailer-theme .swiper-pagination {
   pointer-events: auto;
}
.block-hero-banner .slider-content {
   max-width: 660px;
}

.block-hero-banner .slider-content h1 {
   margin-bottom: 18px;
}

.block-hero-banner .slider-content .button-group {
   margin-top: 40px;
}

.block-hero-banner .slider-content h3 {
   margin-bottom: 40px !important;
   font-weight: 500;
}

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

.block-hero-banner .swiper-pagination {
   top: -160px;
   justify-content: flex-start;
   margin-top: 0;
}

.block-hero-banner .swiper-slide {
   height: auto;
}

/*Responsive*/

@media (max-width: 767px) {
   .block-hero-banner .slider-content h3 {
      font-size: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block - block-multicolumn
-----------------------------------------------------------------------*/
.block-head {
   margin-bottom: 57px;
}

.block-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.block-head .wysiwyg-content {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   width: 100%;
   align-items: center;
   z-index: 1;
}
.block-head .wysiwyg-content h6 {
   margin-bottom: 48px !important;
}

.block-multicolumn .bg-img {
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   width: 100%;
   max-width: 470px;
}
.block-multicolumn .bg-left .bg-img {
   left: 0;
   right: auto;
}

.block-multicolumn .column-item h4 {
   max-width: 185px;
   color: #042542;
}

.block-head .wysiwyg-content h2 {
   margin: 0 !important;
   width: 50%;
}

.block-multicolumn .bg-right .block-head .wysiwyg-content {
   grid-template-columns: 754px 1fr;
}

.block-multicolumn .bg-left .block-head .wysiwyg-content {
   align-items: flex-start;
}

.block-multicolumn .block-head .wysiwyg-content > * {
   width: 55%;
}

.block-multicolumn .block-head .wysiwyg-content h6:not(:last-child) {
   width: 100%;
   margin-bottom: 48px !important;
}

.block-multicolumn .block-head .wysiwyg-content .button-group {
   justify-content: flex-end;
   width: auto;
}

.block-multicolumn .block-head .wysiwyg-content p {
   padding-left: 50px;
   width: 45%;
}

@media (max-width: 1512px) {
   .block-multicolumn {
      overflow-x: hidden;
   }
}
@media (max-width: 1199px) {
   .block-multicolumn .grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
      padding-right: 20px;
   }
}
@media (max-width: 991px) {
   .block-multicolumn .block-head .wysiwyg-content > * {
      width: 100% !important;
      margin-bottom: 20px !important;
      padding-left: 0 !important;
   }
   .block-head .wysiwyg-content h2 {
      width: 100%;
      margin: 0 0 20px !important;
   }
   .block-multicolumn .block-head .wysiwyg-content h6:not(:last-child) {
      width: 100%;
      margin-bottom: 25px !important;
   }
}

@media (max-width: 575px) {
   .block-multicolumn .grid-col-4 {
      grid-template-columns: repeat(1, 1fr);
      padding-right: 0px;
      gap: 40px;
   }
}

/*-----------------------------------------------------------------------
   Block - block-trailers-feed
-----------------------------------------------------------------------*/
.block-trailers-feed .column-item,
.block-search-results .column-item {
   padding: 16px;
   background: #fff;
   box-shadow: 0px 4px 22.2px 0px #ababab40;
   height: 100%;
}

.block-trailers-feed .column-item .img,
.block-search-results .column-item .img {
   aspect-ratio: 4/3.28;
   height: auto !important;
   width: 100%;
   margin-bottom: 30px !important;
   object-fit: cover;
   overflow: hidden;
}
.block-trailers-feed .column-item .img img,
.block-search-results .column-item .img img {
   width: 100%;
   height: 100% !important;
   object-fit: cover;
   transform: scale(1);
   transition: all var(--transition);
}
.block-trailers-feed .column-item:hover .img img,
.block-search-results .column-item:hover .img img {
   transform: scale(105%);
}
.block-trailers-feed .column-item h4,
.block-search-results .column-item h4 {
   color: #042542;
}

.block-trailers-feed .column-item p + h4,
.block-search-results .column-item p + h4 {
   margin-top: auto !important;
}

.gctrailer-theme .block-search-results .archive-pagination a {
   margin: 0 5px;
   font-size: 20px;
   text-align: center;
   width: 50px;
   height: 50px;
   background-color: transparent;
   border-radius: 50px;
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   padding-bottom: 4px;
   background-color: var(--black);
   padding-top: 4px;
}

.gctrailer-theme .block-search-results .archive-pagination a:hover,
.gctrailer-theme .block-search-results .archive-pagination a.current {
   color: var(--white);
   background-color: var(--orange);
   text-decoration: none;
}

.block-trailers-feed .column-item p {
   color: rgba(var(--black-rgb), 70%);
   margin: 0 0 30px !important;
}

.block-trailers-feed .column-item h4 span {
   color: #f4760e;
}

.block-trailers-feed .column-item .more-btn {
   background: #042542;
   color: #fff;
   text-align: center;
   padding: 11px 20px;
   margin: 0 !important;
   transition: all var(--transition);
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
}
.block-trailers-feed .column-item:hover .more-btn {
   background: #f4760e;
}

.block-trailers-feed .column-item .wysiwyg-content {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   height: 100%;
   padding-bottom: 40px;
}
@media (max-width: 1199px) {
   .block-trailers-feed .grid-col-3 {
      grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 767px) {
   .block-trailers-feed .grid-col-3 {
      grid-template-columns: repeat(1, 1fr);
   }
}

/*-----------------------------------------------------------------------
   Block - block-cta-block
-----------------------------------------------------------------------*/
.block-cta-block .right_col {
   max-width: 680px;
}

.block-cta-block .wrap {
   display: grid;
   grid-template-columns: 327px 1fr;
   gap: 85px;
   align-items: center;
}

.block-cta-block .left_col:before {
   content: '';
   width: 230px;
   height: 230px;
   background: #fed401;
   display: inline-block;
   position: absolute;
   z-index: -1;
   border-radius: 50%;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.block-cta-block .left_col {
   position: relative;
}

.block-cta-block .left_col img {
   width: 100%;
}

@media (max-width: 767px) {
   .block-cta-block .wrap {
      grid-template-columns: 1fr;
      gap: 40px;
   }
}

/*-----------------------------------------------------------------------
   Block - block-location
-----------------------------------------------------------------------*/

.block-location .right_col .wysiwyg-content a {
   transition: all 0.3s ease-in-out;
}

.block-location .right_col .wysiwyg-content a:hover {
   color: var(--orange);
}
/*.block-location .left_col:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   background: #e6e9ec;
   height: 100%;
   width: 100%;
   background: linear-gradient(270deg, rgba(var(--grey-rgb), 100%) 50%, rgba(255, 255, 255, 0) 100%);
}

.block-location.orange .left_col:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   background: #e6e9ec;
   height: 100%;
   width: 100%;
   background: linear-gradient(270deg, rgba(var(--orange-rgb), 100%) 50%, rgba(255, 255, 255, 0) 100%);
}*/
.block-location .right_col {
   /* padding-left: 80px; */
}

.block-location .left_col img {
   width: 50%;
   height: 100%;
   position: absolute;
   left: 0;
   right: 0;
   object-fit: cover;
}

.block-location .container-lg,
.block-location .container-md {
   position: static;
}

.block-location .wysiwyg-content h2,
.block-location .wysiwyg-content h4,
.block-location .wysiwyg-content h5 {
   color: #042542;
   margin: 15px 0 8px !important;
}

.block-location .wysiwyg-content > a,
.block-location .wysiwyg-content p {
   margin: 5px 0 0 !important;
   text-decoration: none;
   color: rgba(var(--black-rgb), 70%);
}

.block-location .wysiwyg-content h2 {
   margin-bottom: 25px !important;
}

.block-location .wysiwyg-content .button-group {
   margin-top: 28px !important;
}
.block-location .right_col {
   margin-left: auto;
   width: 100%;
   padding-left: 60px;
}
@media (max-width: 1199px) {
   .block-location .grid-col-2 {
      grid-template-columns: repeat(1, 1fr);
      gap: 0;
   }
   .block-location .right_col {
      margin-left: auto;
      width: 50%;
      padding-left: 60px;
   }
}

@media (max-width: 991px) {
   .block-location .right_col {
      padding-left: 40px;
      width: 50%;
      margin-left: auto;
   }
   .block-location .grid-col-2 {
      grid-template-columns: repeat(1, 1fr);
      gap: 0;
   }
}
@media (max-width: 767px) {
   .block-location .left_col img {
      position: static;
      width: 100%;
      aspect-ratio: 4 / 2.2;
   }
   .block-location .right_col {
      padding-left: 0px;
      width: 100%;
      margin-left: auto;
   }
}

/*-----------------------------------------------------------------------
   Block - block-reviews
-----------------------------------------------------------------------*/
.block-reviews .rating {
   display: flex;
   align-items: center;
}

.block-reviews .nav_bn .swiper-button-prev:hover,
.block-reviews .nav_bn .swiper-button-next:hover {
   background-color: var(--orange);
}

.block-reviews .rating img {
   margin: 0 !important;
}

.block-reviews .rating img.empty-star {
   opacity: 0.3;
}

.block-reviews .head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 22px;
}

.block-reviews .swiper-slide {
   padding: 30px 36px;
   border: 1px solid #cf983d;
   opacity: 0.16;
   transition: all 0.5s ease-in-out;
   transform: scale(0.8);
   margin: 8px 0;
}
.block-reviews .review-content {
   font-size: 17px;
   line-height: 30px;
   color: #000;
}

.block-reviews .swiper-slide.swiper-slide-active {
   opacity: 1;
   transform: scale(1);
}

.block-reviews .wysiwyg-content .author * {
   margin: 3px 0 !important;
}

.block-reviews .wysiwyg-content p {
   color: #000;
}

.block-reviews .author {
   display: flex;
   align-items: center;
   gap: 11px;
   margin-top: 22px;
}

.block-reviews .author .img {
   width: 44px;
   height: 44px;
   background: #f4760e;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 22px;
   font-weight: 500;
}

.block-reviews .swiper-button-prev,
.block-reviews .swiper-button-next {
   width: 36px;
   height: 36px;
   background: #cf983d;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: static;
   cursor: pointer;
}

.block-reviews .swiper-button-next:after,
.block-reviews .swiper-button-prev:after {
   content: '';
   display: none;
}

.block-reviews .author .name * {
   color: #042542;
   margin: 3px 0 !important;
}
.block-reviews .author .name h5 {
   text-transform: uppercase;
}
.block-reviews .author .name p {
   font-weight: 300;
}
.block-reviews .nav_bn {
   display: flex;
   gap: 19px;
   position: relative;
   bottom: -10px;
   right: 0;
   z-index: 9;
}

.block-reviews .nav_bn svg {
   width: 17px;
}

/*-----------------------------------------------------------------------
   Block - block-logo-slider
-----------------------------------------------------------------------*/
.block-logo-slider .swiper-wrapper {
   transition-timing-function: linear !important;
}

.block-logo-slider .swiper-wrapper img {
   max-width: 300px;
   max-height: 86px;
   margin: 0 auto;
   width: 100%;
   object-fit: contain;
}

.block-logo-slider .swiper .swiper-slide {
   display: flex;
   align-items: center;
   justify-content: center;
}

@media (max-width: 550px) {
   .block-logo-slider .swiper-wrapper img {
      max-width: 90px;
   }
}

/*-----------------------------------------------------------------------
footer
-----------------------------------------------------------------------*/

footer .column-item p a strong {
   transition: var(--transition);
}
footer {
   position: relative;
   background: #000000;
}
footer:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0.13;
   background: url(../img/logo-graphic.svg) no-repeat right top;
   background-size: 395px;
}

footer .wrapper {
   display: grid;
   grid-template-columns: 500px 190px 320px 120px;
   justify-content: space-between;
   padding: 60px 0 25px;
}

footer .wrapper * {
   color: #f8f3eb;
   text-decoration: none !important;
}
footer .wrapper .site-logo {
   display: inline;
}
footer .wrapper .site-logo svg {
   max-height: 151px;
   width: 451px;
   max-width: 100%;
}

footer .wrapper ul {
   margin: 0;
   padding: 0;
   list-style: none;
}
footer .wrapper .column-item .button-group {
   min-width: 210px;
   float: right;
}

footer .wrapper .column-item ul li {
   margin: 0 0 7px !important;
   padding: 0;
}
footer .wrapper .column-item ul li a:hover {
   color: #f4760e;
}
footer .wrapper ul li:before {
   display: none;
   margin: 0;
   padding: 0;
}

footer .head-bottom {
   background: #f8f3eb;
   position: relative;
   z-index: 1;
}

footer .head-bottom .wrapper {
   padding: 20px 0;
   grid-template-columns: 510px 190px 260px 210px;
}

footer .head-bottom .wrapper * {
   color: #042542;
   font-size: 14px !important;
   text-decoration: none !important;
}
footer .head-bottom .wrapper a:hover strong,
footer .head-bottom .wrapper a:hover {
   color: #f4760e !important;
}
footer .head-bottom .wrapper strong {
   font-weight: 600 !important;
   font-family: var(--font-primary) !important;
   text-decoration: none !important;
}
footer .wrapper .primary-button {
   white-space: nowrap;
   margin-left: -85px !important;
}
footer .wrapper .column-item h5 {
   font-weight: 800;
   font-family: var(--font-primary) !important;
}
footer .wrapper .social-links ul {
   margin-bottom: 48px !important;
}
footer .wrapper .text-upper *,
footer .wrapper .social-links ul,
footer .wrapper ul.menu {
   text-transform: uppercase;
}

footer .wrapper .column-item .button-group .button {
   background: #f8f3eb;
   color: #042542 !important;
}

footer .wrapper .column-item .button-group .button svg * {
   fill: #000;
}

footer .wrapper .column-item .button-group .button:after {
   background: #fff;
   color: #000;
}

@media (max-width: 1512px) {
   footer .wrapper {
      grid-template-columns: 400px 160px 310px 130px;
   }
   footer .wrapper .site-logo * {
      max-width: 350px;
      max-height: 151px;
   }
}

@media (max-width: 1290px) {
   footer .head-bottom .wrapper {
      grid-template-columns: 370px 190px 110px 210px;
   }
}

@media (max-width: 1090px) {
   footer .head-bottom .wrapper {
      text-align: center;
      grid-template-columns: 1fr;
      flex-direction: column-reverse;
      display: flex;
      align-items: center;
   }

   footer .column-item.text-upper {
      order: 1;
   }

   footer .wrapper .column-item .button-group {
      float: initial;
   }

   footer .head-top .wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
   }

   footer .head-top .column-item .site-logo {
      display: flex;
      margin-bottom: 40px;
   }
}

@media (max-width: 991px) {
   footer .wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
   }
   footer .wrapper .column-item:nth-child(1) {
      width: 100%;
      margin-bottom: 40px;
   }
   footer .wrapper .column-item {
      /* width: auto; */
      /* max-width: 29%; */
   }
}
@media (max-width: 767px) {
   footer .head-top .column-item .site-logo {
      max-width: 250px;
      margin-bottom: 0;
   }
   footer .wrapper {
      padding: 40px 0;
   }
   footer .wrapper .column-item .button-group {
      margin-left: 0;
   }
   footer .wrapper .column-item:nth-child(1) {
      margin-bottom: 10px;
   }
}

/*-----------------------------------------------------------------------
   Block - block-page-banner 
-----------------------------------------------------------------------*/
.block-page-banner:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 102, 102, 0) 100%);
}
.block-page-banner .block-setting-padding {
   padding: 200px 0;
}

.block-page-banner .block-setting-padding * {
   color: #fff;
}

/*-----------------------------------------------------------------------
   Block - block-split-content
-----------------------------------------------------------------------*/

.block-split-content .wrap {
   margin: 0 !important;
}
.block-split-content {
   background: #f8f3eb;
}

.block-split-content .wrap {
   margin-bottom: 30px;
}

.block-split-content .group-buttons {
   margin-top: 30px;
}

.block-split-content .image-item img {
   aspect-ratio: 4 / 2.27;
   object-fit: cover;
   width: 100%;
}

.block-split-content .wrap {
   display: grid;
   grid-template-columns: 1fr;
   gap: 50px;
}

@media (max-width: 767px) {
   .block-split-content .item-column.column-image {
      order: 1;
   }

   .block-split-content .item-column.column-content {
      order: 2;
   }
}

/*-----------------------------------------------------------------------
   Block - block-accordion
-----------------------------------------------------------------------*/
.block-accordion .accordion-button {
}

.block-accordion .trigger-accordion {
}

.block-accordion .entry-accordion {
   /*   margin-bottom: 15px;*/
   background: #fff;
   display: flex;
   flex-direction: column;
   padding: 40px;
   margin: 0;
}

.block-accordion .none .entry-accordion.open {
   background: #f8f3eb;
   /*   padding-top: 40px;*/
}

.block-accordion .none .entry-accordion .trigger-accordion {
   color: #042542;
   font-family: var(--font-secondary) !important;
   flex-direction: row-reverse;
   justify-content: space-between;
}

.block-accordion .none .entry-accordion .trigger-accordion .icon {
   margin-top: -6px;
   border-radius: 50%;
}

.block-accordion .none .entry-accordion .wysiwyg-content {
   padding: 20px 80px 0 0;
}

.block-accordion .wysiwyg-content {
   font-weight: 400;
   font-size: 17px !important;
   line-height: 22px !important;
   padding: 20px 0px 20px 55px;
   color: rgba(var(--black-rgb), 70%);
}

.block-accordion .trigger-accordion .icon {
   content: '';
   background: transparent;
   width: 30px;
   height: 30px;
   display: inline-flex;
   min-width: 30px;
   position: relative;
   top: 1px;
   border-radius: 2px;
   border: 2px solid var(--blue-dark);
}

.block-accordion .grey .trigger-accordion .icon {
   content: '';
   background: #e6e9ec;
   width: 30px;
   height: 30px;
   display: inline-flex;
   border: none;
   min-width: 30px;
   position: relative;
   top: 1px;
   border-radius: 2px;
}

.block-accordion .trigger-accordion {
   display: inline-flex;
   gap: 25px;
}

.block-accordion .trigger-accordion svg {
   width: 30px;
   height: 30px;
   min-width: 30px;
   background: #e6e9ec;
}

.block-accordion .trigger-accordion .icon:before,
.block-accordion .trigger-accordion .icon:after {
   content: '';
   width: 13px;
   height: 2px;
   display: inline-flex;
   background: var(--blue-dark);
   position: absolute;
   top: 50%;
   transform: translate(-50%, -50%) rotate(0deg);
   left: 50%;
   /*   transition: all 0.5s ease-in-out;*/
}

.block-accordion .trigger-accordion .icon:after {
   width: 2px;
   height: 13px;
   left: 50%;
   opacity: 1;
}

.block-accordion .trigger-accordion.collapsed .icon:after {
   opacity: 1;
   transform: translate(-50%, -50%) rotate(0deg);
}

.block-accordion .entry-accordion.open .icon:after {
   opacity: 0;
   transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 550px) {
   .block-accordion .entry-accordion {
      padding: 20px;
   }

   .block-accordion .none .entry-accordion .wysiwyg-content {
      padding: 20px 0px 40px 0;
   }
   .block-accordion .none .entry-accordion .trigger-accordion .icon {
      margin-top: 0;
   }
   .entry-accordion,
   .block-accordion .none .entry-accordion.open {
      transition: none;
   }
}

/*-----------------------------------------------------------------------
   Block - block-overview
-----------------------------------------------------------------------*/

.block-overview.orange .item-column.text-white ul li:before {
   background: var(--white);
}

.block-overview .slider-main .swiper-button-next,
.block-overview .slider-main .swiper-button-prev {
   display: none;
}

.block-overview .slider-thumbnail .swiper-slide {
   opacity: 0.5;
}

.block-overview .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
   opacity: 1;
}

.block-overview .item-column {
   width: 50%;
}

.block-overview .wrapper {
   display: flex;
   align-items: flex-start;
   flex-wrap: wrap;
}

.block-overview .swiper .swiper-slide img {
   width: 100%;
   cursor: pointer;
   height: 100%;
   object-fit: cover;
}

.block-overview .item-column ul {
   display: block;
}

.block-overview .item-column .wysiwyg-content {
   padding-left: 65px;
}

.block-overview .slider-main {
   position: relative;
   width: 100%;
   height: 100%;
   margin-bottom: 30px;
}

.block-overview .wrapper iframe {
   width: 100%;
   height: auto;
   aspect-ratio: 4 / 2.6;
}
.block-overview .item-column .wysiwyg-content.top-head h2 {
   margin-bottom: 11px !important;
}

.block-overview .item-column .wysiwyg-content.top-head {
   margin-bottom: 35px;
}
.block-overview .item-column .wysiwyg-content .button-group {
   margin-top: 35px;
}
.block-overview .slider-main .swiper-slide {
   height: auto;
   aspect-ratio: 4 / 3.8;
}

@media (max-width: 991px) {
   .block-overview .item-column .wysiwyg-content {
      padding-left: 30px;
   }
}

@media (max-width: 767px) {
   .block-overview .item-column {
      width: 100%;
   }
   .block-overview .item-column .wysiwyg-content {
      padding-left: 0px;
      margin-top: 40px;
   }
}

/*-----------------------------------------------------------------------
   Block - block-contact-form
-----------------------------------------------------------------------*/

.block-contact-form .map-image {
   margin-top: 80px;
   /* max-height: 410px; */
   /* overflow: hidden; */
}

.block-contact-form .map-image img {
   /* object-position: left;
   object-fit: cover;
    height: 410px; */
   width: 100%;
}

.block-contact-form textarea {
   height: 60px !important;
   min-height: 100px !important;
   max-height: 100px !important;
}

.block-contact-form .wysiwyg-content a {
   transition: all 0.3s ease-in-out;
}

.block-contact-form .wysiwyg-content a:hover {
   color: var(--orange);
}

.block-contact-form .wysiwyg-content h2 {
   margin-bottom: 25px !important;
}

.block-contact-form .wysiwyg-content h2,
.block-contact-form .wysiwyg-content h4,
.block-contact-form .wysiwyg-content h5 {
   color: #042542;
   margin: 17px 0 7px !important;
}

.block-contact-form .wysiwyg-content > a,
.block-contact-form .wysiwyg-content p {
   margin: 5px 0 0 !important;
   text-decoration: none;
   color: rgba(var(--black-rgb), 70%);
}

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

.block-contact-form .wysiwyg-content .button.primary-button {
   margin-top: 28px !important;
}

.block-contact-form .item-column .form {
   width: 100%;
   height: 100%;
   background: #f8f3eb;
   border-radius: 12px;
   padding: 42px 46px;
}

.block-contact-form.cream .item-column .form {
   background: var(--white);
}

.block-contact-form .item-column .form h4 {
   margin-bottom: 20px;
   color: #042542;
}

@media (max-width: 550px) {
   .block-contact-form .wysiwyg-content h4 {
      margin-top: 20px !important;
   }
}

/*-----------------------------------------------------------------------
   Block - block-map
-----------------------------------------------------------------------*/
.block-map iframe {
   width: 100%;
   display: flex;
   height: auto;
   aspect-ratio: 4 / 1.2;
   max-height: 410px;
}

.block-instagram-feed .block-head {
   text-align: center;
   justify-content: center;
   flex-direction: column;
   gap: 20px;
}

.block-instagram-feed .block-head .social-icons a svg path {
   transition: all 0.3s ease-in-out;
}

.block-instagram-feed .block-head .social-icons a:hover svg path {
   fill: var(--orange);
}

.block-instagram-feed.orange .block-head .social-icons a:hover svg path {
   fill: var(--black);
}

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

/*Icon grid*/

.block-icon-grid .item-column.column-left {
   max-width: 772px;
}

.block-icon-grid .wrap {
   margin-bottom: 40px;
}

.block-icon-grid .bg-img {
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0.08;
}
.block-icon-grid .bg-img svg {
   width: 474px;
   height: auto;
}

.block-icon-grid .bg-right .bg-img {
   right: 0;
   left: inherit;
}

.block-icon-grid .grid-col-4 {
   gap: 62px;
   grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.block-icon-grid .column-item h4 {
   max-width: 194px;
   letter-spacing: 0.04em;
   min-height: 56px;
}

.block-icon-grid .icon-grid-img {
   max-height: 91px;
   margin-bottom: 32px;
}

@media (max-width: 991px) {
   .block-icon-grid .bg-right .column-right .button-group {
      justify-content: flex-start !important;
   }
   .block-icon-grid .grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
   .block-icon-grid .grid-col-4 {
       grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 550px) {
   .block-icon-grid .grid-col-4 {
       grid-template-columns: repeat(1, 1fr);
   }
}
