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

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

@font-face {
   font-family: 'CreamCake';
   src: url('../fonts/CreamCake.eot');
   src: url('../fonts/CreamCake.eot?#iefix') format('embedded-opentype'), url('../fonts/CreamCake.woff2') format('woff2'), url('../fonts/CreamCake.woff') format('woff'),
      url('../fonts/CreamCake.ttf') format('truetype'), url('../fonts/CreamCake.svg#CreamCake') format('svg');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

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

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

   --font-primary: 'Poppins', sans-serif;
   --font-secondary: 'CreamCake';

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

   --dark-olive: #254100;
   --dark-olive-rgb: 37, 65, 0;

   --soft-green: #98be67;
   --soft-green-rgb: 152, 190, 103;

   --charcoal: #252525;
   --charcoal-rgb: 37, 37, 37;

   --cream: #f5f2ef;
   --cream-rgb: 245, 242, 239;

   --light-green: #e4eed7;
   --light-green-rgb: 228, 238, 215;

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

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

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

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

   --container-xs: 700px;
   --container-sm: 930px;
   --container-md: 1080px;
   --container-lg: 1310px;

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

   --transition: 0.25s ease;
}

/* Responsive */

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

@media (max-width: 920px) {
   :root {
      --header-height: 70px;
   }
}
@media (max-width: 767px) {
   :root {
      --header-height: 61px;
   }
}
/*-----------------------------------------------------------------------
   Base
-----------------------------------------------------------------------*/

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

.comnz-theme * {
   scroll-margin-top: calc(var(--header-height));
}
body.comnz-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: 26px;
   font-weight: 300;
   margin: 0px;
   padding: 0px;
}

body.comnz-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.comnz-theme {
   padding-top: calc(var(--header-height) + var(--notice-height)) !important;
}

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

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

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

   .comnz-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) {
   .comnz-theme .container-lg,
   .comnz-theme .container-md,
   .comnz-theme .container-sm,
   .comnz-theme .container-xs {
      width: calc(100% - 30px);
   }

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

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

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

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

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

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

.comnz-theme ul,
.comnz-theme ol,
.comnz-theme li,
.comnz-theme p,
.comnz-theme a {
   margin: 0;
   padding: 0;
   color: var(--black);
   text-wrap: wrap;
   word-wrap: break-word;
}

.comnz-theme h1,
.comnz-theme h1 *,
.comnz-theme .h1,
.comnz-theme .h1 *,
.comnz-theme h2,
.comnz-theme h2 *,
.comnz-theme .h2,
.comnz-theme .h2 *,
.comnz-theme h3,
.comnz-theme h3 *,
.comnz-theme .h3,
.comnz-theme .h3 *,
.comnz-theme h4,
.comnz-theme h4 *,
.comnz-theme .h4,
.comnz-theme .h4 *,
.comnz-theme h5,
.comnz-theme h5 *,
.comnz-theme .h5,
.comnz-theme .h5 *,
.comnz-theme h6,
.comnz-theme h6 *,
.comnz-theme .h6,
.comnz-theme .h6 * {
   margin: 0;
   padding: 0;
   color: var(--dark-olive);
   font-weight: 600;
   text-wrap: wrap;
   word-wrap: break-word;
}

.comnz-theme h1,
.comnz-theme h1 *,
.comnz-theme .h1,
.comnz-theme .h1 * {
   font-size: 50px;
   line-height: 60px;
}

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

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

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

.comnz-theme h5,
.comnz-theme h5 *,
.comnz-theme .h5,
.comnz-theme .h5 * {
   font-size: 20px;
   line-height: 28px;
}

.comnz-theme h6,
.comnz-theme h6 *,
.comnz-theme .h6,
.comnz-theme .h6 * {
   font-size: 30px;
   line-height: 24px;
   font-weight: 400;
   font-family: var(--font-secondary);
   color: var(--black);
}

.comnz-theme h5 em:before {
   content: '';
   background-image: url('../img/icon-quote.svg');
   width: 20px;
   height: 20px;
   position: relative;
   display: inline-block;
   background-repeat: no-repeat;
   background-size: contain;
   margin-right: 10px;
}

.comnz-theme p,
.comnz-theme li {
   font-weight: 300;
   font-size: 17px !important;
   line-height: 26px !important;
}

.comnz-theme strong,
.comnz-theme strong * {
   font-weight: 500 !important;
}

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

.comnz-theme a:hover,
.comnz-theme a:focus {
   color: var(--dark-olive);
}

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

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

.comnz-theme mark {
   background: none;
}

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

/* Responsive */

@media (max-width: 767px) {
   .comnz-theme h1,
   .comnz-theme h1 *,
   .comnz-theme .h1,
   .comnz-theme .h1 * {
      font-size: 40px;
      line-height: 45px;
   }
}

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

.comnz-theme .text-white,
.comnz-theme .text-white *:not(.button, button, .button *, button *, [style*='color'], [class*='gform']) {
   color: var(--white) !important;
   border-color: var(--white);
}
.comnz-theme .text-white a:not(.button):hover {
   color: var(--soft-green) !important;
}
.comnz-theme .text-white ul li:before {
   background-color: var(--white);
}

.comnz-theme .text-green,
.comnz-theme .text-green *:not(.button, button, .button *, button *, [style*='color'], [class*='gform']) {
   color: var(--soft-green) !important;
   border-color: var(--soft-green);
}
.comnz-theme .text-green ul li:before {
   background-color: var(--soft-green);
}
.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
	float:left;
}
/*-----------------------------------------------------------------------
   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 h6:not(:last-child) {
   margin-bottom: 5px !important;
}
.wysiwyg-content li:not(:last-child) {
   margin: 0 0 10px !important;
}

/* Links */

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

/* Lists */

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

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

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

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

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

.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: 0px 0 0px 20px;
   border-left: 6px solid var(--soft-green);
}

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

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

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

/* Labels */

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

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

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

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

/* Basic Fields */

.comnz-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.comnz-theme select:not([class*='ui-']),
.comnz-theme .select2-container .select2-selection,
.comnz-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(--cream) !important;
   background: var(--cream) !important;
   padding: 7px 15px !important;
   color: var(--black) !important;
   font-size: 15px !important;
   line-height: 26px !important;
   font-weight: 300 !important;
   text-align: left !important;
   text-decoration: none !important;
   transition: none !important;
   resize: none;
}

.comnz-theme .text-white input:not([class*='ui-'], [type='button'], [type='submit']),
.comnz-theme .text-white select:not([class*='ui-']),
.comnz-theme .text-white .select2-container .select2-selection,
.comnz-theme .text-white textarea:not([class*='ui-']) {
   color: var(--black) !important;
}

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

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

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

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

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

/* Select */

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

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

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

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

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

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

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

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

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

/* Checkbox & Radio */

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

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

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

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

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

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

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

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

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

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

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

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

/* Default Styles */

.comnz-theme button,
.comnz-theme button:hover,
.comnz-theme button:focus,
.comnz-theme .button,
.comnz-theme .button:hover,
.comnz-theme .button:focus {
   appearance: none;
   -webkit-appearance: none;
   position: relative;
   display: flex !important;
   align-items: center;
   justify-content: center;
   gap: 10px;
   margin: 0;
   outline: 0;
   width: auto;
   height: auto;
   min-width: 100px;
   min-height: 0 !important;
   padding: 15px 18px !important;
   font-size: 16px !important;
   font-family: var(--font-primary);
   color: var(--dark-olive);
   font-weight: 500;
   line-height: 22px !important;
   text-align: center;
   text-decoration: none !important;
   border-radius: 12px !important;
   background: var(--soft-green);
   transition: var(--transition) all;
   cursor: pointer;
   max-width: max-content;
   border: none;
}
.comnz-theme button .btn-arrow,
.comnz-theme .button .btn-arrow,
.comnz-theme .primary-button .btn-arrow {
   width: 27px;
   height: 27px;
   background-color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

.comnz-theme button .btn-arrow svg,
.comnz-theme .button .btn-arrow svg,
.comnz-theme button .btn-arrow img,
.comnz-theme .button .btn-arrow img {
   width: 13px;
   height: 13px;
}

.comnz-theme button .btn-arrow svg path,
.comnz-theme .button .btn-arrow svg path {
   fill: var(--dark-olive);
}

.comnz-theme button:hover,
.comnz-theme .button:hover {
   background-color: var(--dark-olive);
   color: var(--white);
}
.comnz-theme button:hover svg,
.comnz-theme button:hover img,
.comnz-theme .button:hover svg,
.comnz-theme .button:hover img {
   animation: arrowMove 0.3s ease-in-out;
}
@keyframes arrowMove {
   0% {
      opacity: 1;
      transform: translateX(0);
   }
   50% {
      opacity: 0;
      transform: translateX(10px);
   }
   51% {
      opacity: 0;
      transform: translateX(-10px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}

/* Additional Styles */

.comnz-theme .button.button-white {
   background-color: var(--white);
   color: var(--dark-olive);
}

.comnz-theme .button.button-white:hover {
   background-color: var(--dark-olive);
   color: var(--white);
}

.comnz-theme .button.button-white .btn-arrow {
   background-color: var(--soft-green);
}

.comnz-theme .button.button-white:hover .btn-arrow {
   background-color: var(--white);
}

.comnz-theme .button.button-black {
   background-color: var(--black);
   color: var(--white);
}

.comnz-theme .button.button-black:hover {
   background-color: var(--dark-olive);
   color: var(--white);
}

/* Hover/Focus */

.comnz-theme button:hover,
.comnz-theme button:focus,
.comnz-theme .button:hover,
.comnz-theme .button:focus {
   outline: 0;
   box-shadow: none;
   border-color: var(--grey);
}

/* Responsive */

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

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

.site-notice {
   padding: 6px 0;
   background: var(--black);
   color: var(--white);
}
.site-notice p {
   color: var(--white);
   text-align: center;
   font-size: 15px !important;
   font-style: normal;
   font-weight: 400;
   line-height: 26px !important;
   margin: 0px;
}
.site-notice p a {
   color: var(--soft-green);
   font-weight: 400;
}
.site-notice p a:hover {
   color: var(--white);
}
/*-----------------------------------------------------------------------
   Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
   display: block;
   max-width: 363px;
   max-height: 73px;
   width: auto;
   height: auto;
   z-index: 20000;
   transition: none;
}

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

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

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

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

.site-header {
   top: 0;
   width: 100%;
   display: block;
   position: fixed;
   background: var(--white);
   box-shadow: var(--box-shadow);
   z-index: 2000000002;
}
.site-header .header-wrapper {
   padding: 0px;
   background-color: var(--white);
}
body.comnz-theme.admin-bar .site-header {
   top: var(--admin-height);
}

.site-header .header-right .button.primary-button {
   background-color: var(--charcoal);
   color: var(--white);
}
.site-header .header-right .button.primary-button:hover {
   background-color: var(--soft-green);
   color: var(--white);
}
.site-header .header-wrapper {
   padding: 10px 0px;
}
.site-header .header-wrapper {
   padding: 3.519px 0px;
}

/* 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;
   transition: var(--transition) all;
   font-size: 16px;
   font-weight: 400;
   line-height: 22px;
   text-decoration: none;
   align-items: center;
   color: var(--dark-olive);
   text-transform: uppercase;
}

.site-header .main-menu ul li a:hover {
   color: var(--soft-green);
   text-decoration: none !important;
}
.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a {
   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 {
   text-decoration: underline;
   color: var(--soft-green);
}

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

/* Sub Menu */

.site-header .trigger-sub-menu svg {
   width: 10px;
   height: 11px;
   margin-left: 3px;
}

.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 {
   background: var(--white);
   width: 100%;
   display: block;
   position: absolute;
   top: 30px;
   left: 0%;
   right: 0%;
   margin: 0;
   pointer-events: none;
   z-index: 20000;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   padding: 23px 34px;
}
.site-header .main-menu ul.sub-menu li a {
   font-size: 16px;
   padding: 0px;
   color: var(--dark-olive);
   text-transform: uppercase;
   line-height: normal;
}
.site-header .main-menu ul.sub-menu li a:hover {
   color: var(--soft-green);
}
.site-header .main-menu ul.sub-menu li.current-menu-item a {
   color: var(--soft-green);
   text-decoration: none;
}
.site-header .main-menu li:hover .trigger-sub-menu svg {
   transform: rotate(45deg);
}
.site-header .main-menu ul.sub-menu li:not(:last-child) {
   margin-bottom: 5px;
}
.site-header .main-menu ul li .sub-menu-wrap {
   width: 300px;
   opacity: 0;
   display: block;
   position: absolute;
   top: 100%;
   left: 50%;
   right: 50%;
   margin: 0;
   transform: translate(-50%);
   padding: 30px 0 0 0;
   pointer-events: none;
   z-index: 20000;
}

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

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

/* Icon Menu */

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

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

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

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

/* Hamburger */

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

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
   display: block;
   position: absolute;
   left: 0;
   width: 18px;
   height: 2px;
   background: var(--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: -6px;
   transition-property: top, transform;
   transition-duration: 0.3s, 0.3s;
   transition-delay: 0.3s, 0s;
}

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

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

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

body.comnz-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;
   background-color: var(--white);
   z-index: 999;
   transition: var(--transition);
   transform: translate(-100%, 0);
}

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%;
   transition: var(--transition) all;
}

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

/* Responsive Menu: Menu */

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

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

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

.site-responsive-menu .main-menu > ul > li > a {
   font-family: var(--font-primary);
   font-size: 24px;
   font-weight: 400;
   text-decoration: none;
   color: var(--dark-olive);
}
.site-responsive-menu .main-menu ul > li.current-menu-item > a,
.site-responsive-menu .main-menu ul > li.current-menu-parent > a {
   font-weight: 600;
   color: var(--soft-green);
}
.site-responsive-menu .main-menu ul > li > a:hover {
   color: var(--soft-green);
}
.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;
   text-decoration: none;
}

.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: 920px) {
   .site-header .trigger-menu,
   .site-responsive-menu {
      display: none !important;
   }
}

@media (max-width: 1199px) {
   .site-header .header-wrapper {
      padding: 11px 0px;
   }

   .site-header .main-menu ul:not(.sub-menu) {
      gap: 5px;
   }
   .site-header .main-menu ul li a {
      padding: 10px 6px;
      font-size: 14px;
   }
}

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

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

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

   body.menu-active .site-responsive-menu {
      transform: none;
   }

   body.menu-active .site-responsive-menu div[class*='container'] {
      opacity: 1;
   }
   .site-header .header-wrapper {
      padding: 5px 0px;
   }
}

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

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

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

/* Responsive */

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

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

.site-footer {
   background-color: #1a2e00;
   background-image: url('../img/footer-bg.svg');
   background-repeat: no-repeat;
   background-position: right bottom;
}
.site-footer .footer-wrapper {
   padding: 45px 0px 80px;
}
.site-footer .footer-column.left-column p {
   color: var(--white);
   font-size: 16px !important;
   font-weight: 400;
   line-height: 20px !important;
   text-transform: uppercase;
   max-width: 350px;
}
.site-footer .footer-column.left-column p a {
   color: var(--soft-green);
}
.site-footer .footer-column.left-column {
   width: 50%;
}
.site-footer .footer-column.left-column .site-logo {
   margin-bottom: 12px;
}
.site-footer .footer-column.left-column .column-content p {
   margin-top: 8px;
}
.site-footer .footer-column.right-column {
   margin-top: 78px;
   width: 50%;
}
.site-footer .footer-column.right-column .flex-layout {
   padding-left: 130px;
   gap: 15%;
   flex-wrap: nowrap;
}
.site-footer .footer-menu span {
   font-size: 16px;
   line-height: 35px;
   color: var(--white);
   font-weight: 700;
}
.site-footer .footer-menu span {
   font-size: 16px;
   line-height: 35px;
   color: var(--white);
   font-weight: 700;
}

.site-footer .footer-menu ul li a {
   font-size: 16px;
   line-height: normal;
   text-decoration: none;
   color: var(--white);
   font-weight: 400;
   text-transform: uppercase;
}
.site-footer .footer-menu ul li a:hover {
   color: var(--soft-green);
}

.site-footer .footer-menu ul li {
   margin-bottom: 7px;
}
.site-footer .footer-menu:first-child {
   width: 15%;
}

.site-footer .footer-menu:nth-child(2) {
   width: 85%;
}

/*.site-footer .footer-menu:nth-child(2) ul {
   display: grid;
   gap: 0px 23px;
   grid-template-columns: repeat(2, 1fr);
}*/
.site-footer .footer-copyright {
   padding: 0px;
   background-color: var(--soft-green);
}
.site-footer .footer-copyright .left-content {
   width: 33%;
}
.site-footer .footer-copyright .left-content a {
   text-decoration: none;
   text-transform: uppercase;
}
.site-footer .footer-copyright .right-content {
   width: 67%;
   padding-left: 130px;
}
.site-footer .footer-copyright .left-content p {
   font-size: 10px !important;
   font-weight: 400;
}
.site-footer .footer-copyright .flex-gap {
   flex-wrap: nowrap;
}
.site-footer .footer-copyright .right-content ul {
   display: flex;
   gap: 53px;
}

.site-footer .footer-copyright .right-content ul li a {
   font-size: 10px !important;
   text-decoration: none;
   font-weight: 400;
}
.site-footer .footer-copyright .right-content p {
   padding-left: 30%;
   font-size: 10px !important;
}
.site-footer .footer-copyright .right-content a,
.site-footer .footer-copyright .right-content p {
   font-size: 10px;
   text-decoration: none;
   font-weight: 400;
   text-transform: uppercase;
}
.site-footer .footer-copyright .right-content {
   display: flex;
}
.site-footer .footer-copyright .right-content a:hover {
   color: rgba(var(--dark-olive-rgb), 80%);
}
/* Footer Menu */

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

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

/* Responsive */
@media (max-width: 1199px) {
   .site-footer a.site-logo {
      margin: auto;
   }
   .site-footer .footer-column.right-column {
      width: 100%;
   }
   .site-footer .footer-column.left-column {
      width: 100%;
      margin-bottom: 30px;
      text-align: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
      align-items: center;
   }
   .site-footer .footer-column.right-column .flex-layout {
      padding-left: 0px;
      gap: 0;
      justify-content: center;
   }
   .site-footer .footer-menu {
      width: 370px !important;
      text-align: center;
   }
   .site-footer .footer-copyright .right-content p {
      padding-left: 5%;
   }
   .site-footer .footer-copyright .right-content ul {
      gap: 15px;
   }
   .site-footer .footer-copyright .right-content {
      width: 50%;
   }
   .site-footer .footer-copyright .left-content {
      width: 50%;
   }
}
@media (max-width: 767px) {
   .site-footer .footer-wrapper {
      padding-bottom: 40px;
   }
   .site-footer .footer-menu:first-child {
      width: 100%;
   }
   .site-footer .footer-column.right-column .flex-layout {
      flex-wrap: wrap;
      gap: 20px;
   }
   .site-footer .footer-column.right-column {
      margin-top: 30px;
   }
   .site-footer .footer-copyright .left-content {
      width: 100%;
   }
   .site-footer .footer-copyright .flex-gap {
      flex-wrap: wrap;
      gap: 0px;
   }
   .site-footer .footer-copyright .right-content {
      width: 100%;
      padding: 0px;
      justify-content: center;
   }
   .site-footer .footer-copyright .left-content p {
      text-align: center;
   }
   .site-footer .footer-copyright {
      padding: 10px 0px;
   }
}
@media (max-width: 550px) {
   .site-footer .footer-menu:nth-child(2) ul {
      grid-template-columns: repeat(1, 1fr);
   }
}

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

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

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

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

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

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

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

/* Background Elements */

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

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

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

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

/* Video Embed */

.comnz-theme .responsive-embed {
   position: relative;
   padding-bottom: 56.25%;
   height: 0;
   overflow: hidden;
   border-radius: 12px;
}

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

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

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

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

body.wp-admin .comnz-theme .swiper,
body.wp-admin .comnz-theme .swiper-slide {
   pointer-events: none;
}
body.wp-admin .comnz-theme .swiper-slide a,
body.wp-admin .comnz-theme .swiper-slide .button,
body.wp-admin .comnz-theme .swiper-button-prev,
body.wp-admin .comnz-theme .swiper-button-next,
body.wp-admin .comnz-theme .swiper-pagination {
   pointer-events: auto;
}

/* Pagination */

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

.comnz-theme .swiper-pagination span {
   opacity: 100%;
   margin: 0 !important;
   width: 100%;
   height: 2px;
   border-radius: 0px;
   background: var(--soft-green);
   transition: var(--transition) width, var(--transition) background;
}

.comnz-theme .swiper-pagination span.swiper-pagination-bullet-active {
   width: 100%;
   background: var(--dark-olive);
}

/* Navigation */

.comnz-theme .swiper-navigation {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

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

.comnz-theme .swiper-navigation div[class*='swiper-nav-'] svg {
   display: block;
   width: 20px;
   height: 20px;
}
.comnz-theme .swiper-nav-prev,
.comnz-theme .swiper-nav-next {
   width: 44px;
   height: 44px;
   border: 2px solid var(--soft-green);
   border-radius: 50%;
   transition: var(--transition);
}
.comnz-theme .swiper-nav-prev:hover,
.comnz-theme .swiper-nav-next:hover {
   background-color: var(--dark-olive);
   border-color: var(--dark-olive);
}
.comnz-theme .swiper-nav-prev img,
.comnz-theme .swiper-nav-next img,
.comnz-theme .swiper-nav-prev svg,
.comnz-theme .swiper-nav-next svg {
   width: 20px !important;
   height: auto !important;
   max-height: 20px !important;
   min-height: 20px !important;
}
.comnz-theme .swiper-nav-prev svg path,
.comnz-theme .swiper-nav-next svg path {
   fill: var(--soft-green);
}
/* Responsive */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Close Button */

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

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

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

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

.comnz-theme .archive-pagination a {
   margin: 0 10px;
   padding: 15px 18px !important;
   font-size: 16px !important;
   font-weight: 500;
   line-height: 18px !important;
   text-align: center;
   text-decoration: none !important;
   text-align: center;
   border-radius: 12px;
}

.comnz-theme .archive-pagination a:hover,
.comnz-theme .archive-pagination a.current {
   background: var(--white);
}

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

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

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

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

.comnz-theme .entry-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 20px 44px;
   background-color: var(--white);
   border-radius: 12px;
   margin-bottom: 17px;
}

.comnz-theme .entry-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
   gap: 20px;
}
.comnz-theme .entry-accordion .trigger-accordion svg {
   width: 16px;
   height: 30px;
   min-width: 16px;
   min-height: 30px;
   margin-left: 10px;
}
.comnz-theme .entry-accordion .trigger-accordion svg path {
   fill: var(--dark-olive);
}
.comnz-theme .block-accordion .entry-accordion.active .trigger-accordion svg path {
   fill: var(--white);
}
.comnz-theme .entry-accordion.active .trigger-accordion svg {
   transform: rotate(180deg);
}
.comnz-theme .entry-accordion .wysiwyg-content {
   display: none;
   margin-top: 16px;
}
.comnz-theme .entry-accordion.active {
   background-color: var(--dark-olive);
}
.comnz-theme .block-accordion .entry-accordion.active * {
   color: var(--white);
}

/* responsive */

@media (max-width: 767px) {
   .comnz-theme .entry-accordion {
      padding: 20px 25px;
   }
}

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

.block-image-gallery .carousel-gallery img {
   width: auto;
   height: 50vw;
   min-height: 400px;
   max-height: 494px;
   border-radius: 16px;
}
.block-image-gallery .nav-pagination {
   max-width: 900px;
   margin: auto;
   display: flex;
   align-items: center;
   gap: 50px;
   margin-top: 28px;
   padding: 0px 20px;
}

/* responsive */

@media (max-width: 767px) {
   .block-image-gallery .nav-pagination {
      gap: 20px;
   }
}

/*-----------------------------------------------------------------------
   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 {
   position: relative;
}
.block-split-content.soft-green:before,
.block-split-content.soft-green:after {
   mix-blend-mode: difference;
}

.block-split-content .wrapper {
   z-index: 1;
   position: relative;
   align-items: center;
}

.block-split-content:before {
   content: '';
   position: absolute;
   width: 272px;
   height: 100%;
   background-repeat: no-repeat;
   background-size: contain;
   top: 0;
   left: 0;
   opacity: 0.1;
   z-index: 1;
   pointer-events: none;
}
.block-split-content.shape-left-leaf:before {
   background-image: url('../img/leaf.svg');
}
.block-split-content:after {
   content: '';
   position: absolute;
   width: 381px;
   height: 690px;
   background-repeat: no-repeat;
   background-size: cover;
   bottom: 0;
   right: 0px;
   background-position: left top;
   opacity: 0.1;
   z-index: 1;
   pointer-events: none;
}
.block-split-content.shape-right-straight-leaf:after {
   background-image: url('../img/straight-leaf.svg');
}

.block-split-content.shape-right-spiral:after {
   background-image: url('../img/spiral.svg');
   width: 400px;
   height: 300px;
   top: 20px;
}

.block-split-content .image-block > img {
   width: 100%;
   aspect-ratio: 2 / 1.39;
   object-fit: cover;
   border-radius: 23px;
}

.block-split-content .text-content {
   font-size: 60px;
   line-height: 69px;
   background: #ffffff;
   box-shadow: 0px 4px 10.2px rgba(86, 85, 85, 0.25);
   border-radius: 12px;
   padding: 0px 10px;
   display: inline-block;
   font-family: var(--font-secondary);
   color: var(--dark-olive);
}

.block-split-content .text-content.top-left {
   position: absolute;
   top: 55px;
   left: -28px;
}

.block-split-content .column-image {
   position: relative;
}

.block-split-content .text-content.bottom-left {
   position: absolute;
   bottom: -27px;
   right: -25px;
}

.block-split-content .image-shape.top-right {
   position: absolute;
   right: -26px;
   top: 14px;
   max-width: 96px;
}

.block-split-content .image-shape.bottom-left {
   position: absolute;
   bottom: -9px;
   left: -37px;
   max-width: 142px;
}
.block-split-content .image-shape svg {
   width: 100%;
}
.block-split-content .button-group {
   margin-top: 30px;
}
.block-split-content .image-block {
   position: relative;
}
.block-split-content.layout-inner-color .col-image,
.block-split-content.layout-inner-color .col-content {
   height: 100%;
}
.block-split-content.layout-inner-color .col-image .image-block,
.block-split-content.layout-inner-color .col-image .image-block img {
   height: 100%;
}
.block-split-content.layout-inner-color .col-content.col-2 {
   padding: 60px 50px 60px 0px;
}
.block-split-content.layout-inner-color .col-content.col-1 {
   padding: 60px 0px 60px 50px;
}
.block-split-content.layout-inner-color .wrapper {
   border-radius: 23px;
}
.block-split-content.layout-inner-color .col-image.col-1 .image-block > img {
   border-radius: 23px 0px 0px 23px;
}
.block-split-content.layout-inner-color .col-image.col-2 .image-block > img {
   border-radius: 0px 23px 23px 0px;
}
.block-split-content.dark-olive .button:hover {
   background-color: var(--white);
   color: var(--dark-olive);
}
.block-split-content.dark-olive .button:hover .btn-arrow {
   background-color: var(--soft-green);
}

/* Responsive */

@media (max-width: 1400px) {
   .block-split-content .text-content.bottom-left {
      right: -10px;
   }
   .block-split-content .image-shape.top-right {
      right: -10px;
   }
}
@media (max-width: 1199px) {
   .block-split-content .text-content.top-left {
      top: 20px;
   }
   .block-split-content .image-shape.bottom-left {
      max-width: 100px;
   }
   .block-split-content .image-shape.top-right {
      max-width: 60px;
   }
   .block-split-content .text-content {
      font-size: 35px;
      line-height: 50px;
   }
   .block-split-content:after {
      width: 300px;
      height: 700px;
   }
   .block-split-content:before {
      width: 272px;
      height: 540px;
   }
   .block-split-content .text-content.bottom-left {
      bottom: -10px;
   }
   .block-split-content.layout-inner-color .wrapper {
      gap: 30px;
   }
}
@media (max-width: 860px) {
   .block-split-content .col-content {
      order: 9;
   }

   .block-split-content .col-image {
      order: 1;
   }
   .block-split-content:before {
      top: 4%;
      left: 0%;
      width: 150px;
   }
   .block-split-content:after {
      top: -5%;
      right: 0;
      background-position: left center;
      width: 160px;
   }
   .block-split-content .text-content.top-left {
      left: -20px;
   }
   .block-split-content.layout-inner-color .col-content.col-2 {
      padding: 0px 30px 30px;
   }
   .block-split-content.layout-inner-color .col-image .image-block > img {
      border-radius: 23px 23px 0px 0px !important;
   }
}
@media (max-width: 767px) {
   .block-split-content:after {
      top: 2%;
      right: 0;
      background-position: left center;
      width: 160px;
      height: 300px;
   }
   .block-split-content:before {
      top: 4%;
      left: 0%;
      width: 150px;
      height: 200px;
   }
   .block-split-content .image-shape.bottom-left {
      bottom: -20px;
      left: -15px;
   }
   .block-split-content.shape-right-spiral:after {
      width: 210px;
      height: 220px;
      top: 20px;
   }
}

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

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

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

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

/*-----------------------------------------------------------------------
  Block : Hero banner
-----------------------------------------------------------------------*/

.block-hero-banner {
   position: relative;
   overflow: hidden;
}
.block-hero-banner .bottom-content {
   display: flex;
   align-items: flex-end;
   min-height: 830px;
}
.block-hero-banner .swiper {
   height: 100%;
}
.block-hero-banner .background-overlay:before {
   background: linear-gradient(77.16deg, #000000 -1.4%, rgba(102, 102, 102, 0) 57.77%);
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: 1;
}

.block-hero-banner .slider-image {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
}

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

.block-hero-banner .slider-content {
   max-width: 643px;
}

.block-hero-banner .slider-content h1 {
   color: var(--white);
   margin-bottom: 7px;
}

.block-hero-banner .slider-content p {
   font-size: 22px;
   line-height: 34px;
   color: var(--white);
}

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

.block-hero-banner .swiper-pagination {
   margin-top: 46px !important;
   display: block !important;
   top: inherit !important;
   left: 50% !important;
   text-align: left;
   transform: translate(-50%, 0px);
   max-width: 1317px;
   margin: auto;
   z-index: 111;
   justify-content: flex-start !important;
   position: absolute;
   bottom: 60px !important;
   gap: 7px;
   display: flex !important;
}
.block-hero-banner .swiper-pagination .swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   border-radius: 26px;
   background-color: rgba(var(--white-rgb), 30%) !important;
}
.block-hero-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
   width: 26px !important;
   border-radius: 23px;
   background-color: var(--white) !important;
}

@media (max-width: 860px) {
   .block-hero-banner .slider-content {
      margin-bottom: 30px;
   }
}

@media (max-width: 767px) {
   .block-hero-banner .slider-content p {
      font-size: 18px;
      line-height: 24px;
   }
   .block-hero-banner .bottom-content {
      min-height: 630px;
   }
}

/*-----------------------------------------------------------------------
   Block : Service
-----------------------------------------------------------------------*/
.block-services [class*='container-'] {
   margin-left: auto;
   margin-right: 0px;
   max-width: 100%;
   width: calc(var(--container-lg) + ((100% - var(--container-lg)) / 2));
   padding-right: 0px;
}
.block-services {
   position: relative;
   border-radius: 23px 23px 0px 0px;
   overflow: hidden;
}
.block-services.soft-green:after {
   mix-blend-mode: difference;
}
.block-services:after {
   content: '';
   position: absolute;
   width: 413px;
   height: 314px;
   background-image: url('../img/spiral.svg');
   top: 0;
   right: 0;
   background-size: contain;
   background-repeat: no-repeat;
   background-position: right;
   opacity: 0.1;
   z-index: 1;
   pointer-events: none;
}

.block-services .title h2 {
   margin-bottom: 19px;
}

.block-services .title p {
   color: var(--dark-olive);
   font-weight: 400;
}

.block-services .wrapper {
   margin-bottom: 50px;
   align-items: flex-end;
   z-index: 11;
   position: relative;
   max-width: 1310px;
}
.block-services .wrapper .title {
   margin-bottom: 0px;
}
.block-services .service-block .item-column {
   width: 50%;
   display: flex;
}

.block-services .service-block {
   background-color: var(--white);
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0px 4px 17.4px rgba(164, 164, 164, 0.25);
   height: 100%;
}

.block-services .service-block .item-column .content-block {
   padding: 44px 30px;
   display: flex;
   justify-content: space-between;
   flex-direction: column;
   align-items: stretch;
}

.block-services .service-block .item-column .image-block {
   height: 100%;
   width: 100%;
}

.block-services .swiper.service-slider {
   padding: 10px 0px;
   overflow: visible;
}

.block-services .service-block .item-column .image-block img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.block-services .service-block .item-column .description h4 {
   font-size: 20px;
   line-height: 25px;
   color: var(--dark-olive);
   margin-bottom: 20px;
}

.comnz-theme .btn-learn-more {
   font-size: 16px;
   line-height: 22px;
   color: var(--black);
   text-decoration: none;
   display: flex;
   align-items: center;
   margin-top: 20px;
   transition: var(--transition);
   font-weight: 400;
}
.comnz-theme .btn-learn-more:hover .btn-arrow svg,
.comnz-theme .btn-learn-more:hover .btn-arrow img {
   animation: arrowMove 0.3s ease-in-out;
}
.comnz-theme .btn-learn-more:hover {
   color: var(--soft-green);
}

.comnz-theme .btn-learn-more .btn-arrow {
   width: 27px;
   height: 27px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: var(--soft-green);
   border-radius: 50%;
   margin-left: 9px;
}

.comnz-theme .btn-learn-more .btn-arrow img {
   filter: invert();
}

.block-services .service-block .item-column .content-block .description {
   margin-bottom: 14px;
}

/* responsive */
@media (max-width: 1325px) {
   .block-services [class*='container-'] {
      padding-left: 20px;
      padding-right: 20px;
   }
}
@media (max-width: 860px) {
   .block-services .wrapper .item-column .button-group {
      justify-content: flex-start;
   }
   .block-services:after {
      width: 300px;
      height: 280px;
   }
}

@media (max-width: 600px) {
   .block-services .service-block .item-column {
      width: 100%;
   }
   .block-services .service-block {
      flex-wrap: wrap;
   }
   .block-services .service-block .item-column .content-block {
      padding: 20px;
   }
   .block-services .service-block .item-column .image-block img {
      aspect-ratio: 2 / 2;
   }
}

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

.block-cta {
   background-color: #000;
   position: relative;
}

.block-cta:after {
   content: '';
   width: 420px;
   height: 100%;
   background-image: url(../img/green-pattern-lines.svg);
   background-repeat: no-repeat;
   background-size: cover;
   position: absolute;
   background-position: left top;
   right: 0;
   top: 0;
}

.block-cta:before {
   content: '';
   width: 609px;
   height: 190px;
   background-image: url('../img/cta-climb-shape.svg');
   background-repeat: no-repeat;
   background-size: cover;
   position: absolute;
   background-position: right top;
   left: -48px;
   bottom: 0;
   z-index: 1;
}

.block-cta .cta-content h2 {
   color: var(--soft-green);
}

.block-cta .cta-content h2 span {
   color: var(--white);
   display: block;
}

.block-cta .cta-content p {
   color: var(--white);
}
.block-cta .button-group {
   margin-top: 15px;
}

/* responsive */
@media (max-width: 1199px) {
   .block-cta:before {
      width: 460px;
      height: 165px;
   }

   .block-cta:after {
      width: 270px;
   }
}
@media (max-width: 860px) {
   .block-cta:after {
      width: 180px;
   }
   .block-cta:before {
      width: 300px;
      height: 110px;
   }
}

@media (max-width: 767px) {
   .block-cta:after {
      width: 80px;
   }
}
/*-----------------------------------------------------------------------
   Block : Icon Grid
-----------------------------------------------------------------------*/

.block-icon-grid {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}

.block-icon-grid .item-column {
   background-color: var(--white);
   padding: 20px;
   border-radius: 22px;
}

.block-icon-grid .item-column .entry-icon {
   margin-bottom: 25px;
}

.block-icon-grid .item-column h5 {
   margin-bottom: 0px;
   font-size: 17px;
   line-height: 20px;
}

.block-icon-grid .wrapper {
   gap: 43px 30px;
   margin: auto;
}

.block-icon-grid .bg-image {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
}

.block-icon-grid .bg-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: relative;
}
.block-icon-grid .bg-image:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: rgba(var(--white-rgb), 20%);
   top: 0;
   left: 0;
}

/* responsive */

@media (max-width: 860px) {
   .block-icon-grid .wrapper {
      gap: 25px;
   }
}

@media (max-width: 767px) {
   .block-icon-grid .wrapper {
      gap: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block : Post feed
-----------------------------------------------------------------------*/

.block-post-feed .block-setting-padding {
   background-image: url('../img/content-bg-vector.svg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
.block-post-feed.charcoal .block-setting-padding {
   background-image: none;
}
.block-post-feed .title-wrapper {
   margin-bottom: 50px;
   grid-template-columns: repeat(2, 1fr);
}
.block-post-feed .title-wrapper h2 {
   margin: 0px;
}
.listing-posts .listing-wrapper a {
   background: var(--white);
   box-shadow: 0px 4px 17.4px rgba(164, 164, 164, 0.25);
   border-radius: 12px;
   padding: 20px 20px 45px 20px;
   text-decoration: none;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.listing-posts .listing-wrapper a .img {
   margin-bottom: 21px;
}

.listing-posts .listing-wrapper a .img img {
   aspect-ratio: 2/1.13;
   object-fit: cover;
   width: 100%;
   border-radius: 12px;
}

.listing-posts .listing-wrapper a .tag {
   margin-bottom: 15px;
}

.listing-posts .listing-wrapper a .tag ul li {
   background: rgba(var(--soft-green-rgb), 50%);
   border-radius: 2px;
   font-size: 12px !important;
   line-height: 26px !important;
   text-decoration: none;
   color: var(--black);
   padding: 0px 18px;
}

.listing-posts .listing-wrapper a .tag ul {
   display: flex;
   gap: 10px;
}

.listing-posts .listing-wrapper a .description h5 {
   margin-bottom: 10px;
}

.listing-posts .listing-wrapper a .description p {
   margin: 0px;
   color: var(--black);
}
.listing-posts .listing-wrapper a:hover .btn-learn-more {
   color: var(--soft-green);
}
.listing-posts .listing-wrapper a:hover .btn-learn-more .btn-arrow svg {
   animation: arrowMove 0.3s ease-in-out;
}

/* responsive */

@media (max-width: 767px) {
   .block-post-feed .title-wrapper {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
   }
   .block-post-feed .title-wrapper .button-group {
      justify-content: flex-start;
   }
}

/*-----------------------------------------------------------------------
   Block : Logo slider
-----------------------------------------------------------------------*/

.block-logo-slider .swiper-wrapper {
   -webkit-transition-timing-function: linear !important;
   -o-transition-timing-function: linear !important;
   transition-timing-function: linear !important;
}

.block-logo-slider .logo img {
   height: 64px;
   width: auto;
   margin: auto;
   z-index: 1;
   position: relative;
   object-fit: contain;
}

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

.block-page-banner .background-image:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: linear-gradient(0deg, rgba(var(--black-rgb), 40%) 0%, rgba(var(--black-rgb), 40%) 100%);
}
.block-page-banner .full-img {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
}

.block-page-banner .full-img img {
   height: 100%;
   width: 100%;
   object-fit: cover;
}
.block-page-banner .wysiwyg-content {
   max-width: 600px;
   margin: auto;
   text-align: center;
   z-index: 1;
   position: relative;
}
.block-page-banner .wysiwyg-content h1 {
   color: var(--white);
}
.block-page-banner .wysiwyg-content h1 span {
   color: var(--soft-green);
}
.block-page-banner .wysiwyg-content p {
   color: var(--white);
   font-size: 22px !important;
   line-height: 33px !important;
   font-weight: 400;
}

.block-page-banner.layout-2 .wysiwyg-content p {
   color: var(--dark-olive);
}
.block-page-banner.layout-2 .wysiwyg-content h1 span {
   color: var(--dark-olive);
}
.block-page-banner.layout-2.cream .wysiwyg-content h1,
.block-page-banner.layout-2.light-green .wysiwyg-content h1,
.block-page-banner.layout-2.bg-none .wysiwyg-content h1,
.block-page-banner.layout-2.none .wysiwyg-content h1 {
   color: var(--dark-olive);
}

.block-page-banner.layout-2:after {
   content: '';
   width: 420px;
   height: 200px;
   background-image: url(../img/banner-climb-shape.svg);
   background-repeat: no-repeat;
   background-size: cover;
   position: absolute;
   right: 0;
   bottom: -10px;
   left: inherit;
   top: inherit;
}

.block-page-banner.layout-2:before {
   content: '';
   width: 609px;
   height: 112%;
   background-image: url('../img/banner-green-pattern.svg');
   background-repeat: no-repeat;
   background-size: cover;
   position: absolute;
   background-position: right top;
   left: -0;
   bottom: 0;
   z-index: 1;
}

/* responisve */

@media (max-width: 860px) {
   .block-page-banner.layout-2:before {
      width: 310px;
   }
   .block-page-banner.layout-2:after {
      width: 220px;
      bottom: -40px;
   }
}

/*-----------------------------------------------------------------------
   Block : Therapy
-----------------------------------------------------------------------*/
.block-therapy .block-setting-padding {
   background-image: url('../img/content-bg-vector.svg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
.block-therapy .title.wysiwyg-content {
   max-width: 700px;
   margin: auto;
   margin-bottom: 50px;
}
.block-therapy .entry-accordion {
   background-color: var(--white);
   padding: 36px 30px;
   border-radius: 22px;
   box-shadow: 0 4px 11.1px 0 rgba(212, 212, 212, 0.25);
   transition: var(--transition);
   margin: 0px;
}
.block-therapy .entry-accordion .trigger-accordion strong {
   font-weight: 600 !important;
}
.block-therapy .entry-accordion .wysiwyg-content {
   margin-top: 14px;
}
.block-therapy .entry-accordion.active {
   background: var(--soft-green);
}
.block-therapy .wrapper {
   gap: 36px;
}

/* responsive */

@media (max-width: 767px) {
   .block-therapy .wrapper {
      gap: 15px;
   }
   .block-therapy .entry-accordion {
      padding: 20px 25px;
      border-radius: 12px;
   }
}

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

.block-video .title {
   margin-bottom: 50px;
}
.block-video .video-play-pause {
   display: inline-block;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.block-video .video-play-pause img {
   z-index: 1;
}
.block-video .video-wrapper {
   position: relative;
   border-radius: 23px;
   overflow: hidden;
}
.block-video .video-wrapper video {
   height: 100%;
   width: 100%;
   object-fit: cover;
   display: block;
   aspect-ratio: 2/1.3;
}

.block-video .video-overlay-play-button:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: rgba(var(--black-rgb), 30%);
   left: 0;
   top: 0;
}
.block-video .video-play-pause svg {
   position: relative;
   z-index: 1;
}

/* responsive */

@media (max-width: 767px) {
   .block-video .video-play-pause img {
      width: 65px;
   }
}

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

.block-accordion .title {
   margin-bottom: 50px;
}

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

.block-contact-info:after {
   content: '';
   position: absolute;
   width: 320px;
   height: 94%;
   background-image: url('../img/straight-leaf.svg');
   background-repeat: no-repeat;
   background-size: contain;
   right: 0px;
   background-position: left bottom;
   opacity: 0.1;
   z-index: 1;
   bottom: 0;
   pointer-events: none;
}

.block-contact-info .image-block > img {
   width: 100%;
   aspect-ratio: 2 / 1.39;
   object-fit: cover;
   border-radius: 23px;
}
.block-contact-info .column-content ul li {
   padding: 0px;
}

.block-contact-info .column-content ul li:before {
   display: none;
}

.block-contact-info .column-content .wysiwyg-content ul li span {
   color: var(--dark-olive);
   font-style: normal;
   font-weight: 600;
}
.block-contact-info .column-content .wysiwyg-content ul li:first-child a {
   text-decoration: underline;
   display: block;
}
.block-contact-info .column-content .wysiwyg-content ul li {
   margin-bottom: 10px !important;
}
.block-contact-info .column-content .wysiwyg-content ul li a {
   text-decoration: none;
}
.block-contact-info .column-content .wysiwyg-content ul li:last-child {
   margin-bottom: 0px;
}
.block-contact-info .column-content .wysiwyg-content ul {
   max-width: 300px;
}
.block-contact-info .text-content {
   font-size: 60px;
   line-height: 69px;
   background: var(--white);
   box-shadow: 0px 4px 10.2px rgba(86, 85, 85, 0.25);
   border-radius: 12px;
   padding: 0px 10px;
   display: inline-block;
   font-family: var(--font-secondary);
   color: var(--dark-olive);
}
.block-contact-info .wrapper {
   align-items: center;
}
.block-contact-info .text-content.top-left {
   position: absolute;
   top: 55px;
   left: -28px;
}

.block-contact-info .column-image {
   position: relative;
}

.block-contact-info .text-content.bottom-left {
   position: absolute;
   bottom: -27px;
   right: -25px;
}

.block-contact-info .image-shape.top-right {
   position: absolute;
   right: -26px;
   top: 14px;
   max-width: 96px;
}

.block-contact-info .image-shape.bottom-left {
   position: absolute;
   bottom: -9px;
   left: -37px;
   max-width: 142px;
}
.block-contact-info .image-shape svg {
   width: 100%;
}
.block-contact-info .button-group {
   margin-top: 30px;
}
.block-contact-info .image-block {
   position: relative;
}
.block-contact-info.soft-green:after {
   mix-blend-mode: difference;
}

/* Responsive */

@media (max-width: 1400px) {
   .block-contact-info .text-content.bottom-left {
      right: -10px;
   }
   .block-contact-info .image-shape.top-right {
      right: -10px;
   }
}
@media (max-width: 1199px) {
   .block-contact-info .text-content.top-left {
      top: 20px;
   }
   .block-contact-info .image-shape.bottom-left {
      max-width: 100px;
   }
   .block-contact-info .image-shape.top-right {
      max-width: 60px;
   }
   .block-contact-info .text-content {
      font-size: 35px;
      line-height: 50px;
   }
   .block-contact-info:after {
      width: 300px;
      height: 700px;
   }
   .block-contact-info:before {
      width: 272px;
      height: 540px;
   }
   .block-contact-info .text-content.bottom-left {
      bottom: -10px;
   }
}
@media (max-width: 860px) {
   .block-contact-info .column-content {
      order: 9;
   }

   .block-contact-info .column-image {
      order: 1;
   }
   .block-contact-info:before {
      top: 4%;
      left: 0%;
      width: 150px;
   }
   .block-contact-info:after {
      top: -5%;
      right: 0;
      background-position: left center;
      width: 160px;
   }
   .block-contact-info .text-content.top-left {
      left: -20px;
   }
   .block-contact-info:after {
      display: none;
   }
}
@media (max-width: 767px) {
   .block-contact-info:after {
      top: 2%;
      right: 0;
      background-position: left center;
      width: 160px;
      height: 300px;
   }
   .block-contact-info:before {
      top: 4%;
      left: 0%;
      width: 150px;
      height: 200px;
   }
   .block-contact-info .image-shape.bottom-left {
      max-width: 90px;
      left: 0;
      bottom: -32px;
   }
}

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

.block-contact-form:before {
   content: '';
   position: absolute;
   width: 218px;
   height: 95%;
   background-image: url('../img/leaf.svg');
   background-repeat: no-repeat;
   background-size: contain;
   bottom: 0;
   left: 0;
   opacity: 0.1;
   z-index: 1;
}
.block-contact-form.soft-green:before {
   mix-blend-mode: difference;
}

.blog-listing .title {
   margin-bottom: 50px;
   text-align: center;
}

.blog-listing .category {
   margin-bottom: 40px;
}

.blog-listing .category ul {
   gap: 5px;
}

.blog-listing .category ul li a {
   text-decoration: none;
   color: var(--black);
   text-align: center;
   font-size: 12px;
   font-style: normal;
   font-weight: 300;
   line-height: 26px;
   border-radius: 2px;
   padding: 4px 15px;
   min-width: 90px;
}
.blog-listing .category ul li a:hover,
.blog-listing .category ul li.active a {
   background: rgba(255, 255, 255, 0.5);
}

/* responsive */

@media (max-width: 991px) {
   .blog-listing {
      padding: 50px 0px;
   }
}
@media (max-width: 767px) {
   .blog-listing .title {
      margin-bottom: 30px;
   }
   .blog-listing .category {
      margin-bottom: 25px;
   }
}

/*-----------------------------------------------------------------------
   Block : Intro
-----------------------------------------------------------------------*/

.block-intro .tag ul li {
   text-decoration: none;
   color: var(--black);
   text-align: center;
   font-size: 12px !important;
   font-style: normal;
   font-weight: 300;
   line-height: 26px !important;
   border-radius: 2px;
   padding: 4px 15px;
   min-width: 90px;
   border-radius: 2px;
   background: rgba(255, 255, 255, 0.5);
   display: inline-block;
}
.block-intro .tag {
   margin-bottom: 12px;
}
.block-intro .author-content {
   display: flex;
   gap: 10px;
}

.block-intro .author-content .img {
   width: 40px;
   height: 40px;
   background-color: var(--white);
   border-radius: 50%;
   min-width: 40px;
   overflow: hidden;
}

.block-intro .author-content p {
   color: var(--black);
   font-size: 12px;
   font-style: normal;
   font-weight: 300;
   line-height: 17px;
}
.block-intro .column-content .wrapper {
   margin-top: 25px;
   max-width: 580px;
}
.block-intro .column-content .wrapper ul {
   display: flex;
   gap: 30px;
   align-items: flex-start;
}
.block-intro .column-content .wrapper li {
   max-width: 210px;
   display: flex;
   align-items: center;
   gap: 10px;
}
.block-intro .column-content .wrapper li .entry-icon {
   display: flex;
}
.block-intro .column-content .wrapper li .entry-icon img {
   width: 18px;
}
.block-intro .column-content .wrapper li p {
   color: var(--black);
   font-size: 12px !important;
   font-style: normal;
   font-weight: 300;
   line-height: 17px !important;
}
.block-intro .image-block img {
   border-radius: 12px;
   aspect-ratio: 2/1.16;
   width: 100%;
   object-fit: cover;
   aspect-ratio: 50 / 29;
}
.block-intro.charcoal .column-content .wrapper li svg path {
   fill: #fff;
}
/* responsive */

@media (max-width: 1199px) {
   .block-intro .wrapper h1 {
      font-size: 35px;
      line-height: 45px;
   }
}

@media (max-width: 767px) {
   .block-intro .column-content .wrapper ul {
      flex-direction: column;
   }
   .block-intro .column-content .wrapper li {
      width: 100%;
   }
   .block-intro .author-content {
      align-items: center;
   }
   .block-intro .column-content .wrapper li p {
      max-width: 145px;
   }
   .block-intro .wrapper h1 {
      font-size: 30px;
      line-height: 40px;
   }
}

/*-----------------------------------------------------------------------
   Block : Blog Single
-----------------------------------------------------------------------*/

.block-blog-content .item-column.column-news {
   width: 29%;
   padding-right: 50px;
}

.block-blog-content .item-column.column-content {
   width: 71%;
   padding-left: 50px;
}

.block-blog-content .content-list span {
   margin-bottom: 20px;
   display: block;
   position: relative;
}
.block-blog-content .content-list span:after {
   content: '';
   position: absolute;
   width: 20px;
   height: 20px;
   background-image: url('../img/icon-chevron-down.svg');
   background-repeat: no-repeat;
   top: 0;
   right: 0;
   transform: rotate(180deg);
   transition: var(--transition);
}
.block-blog-content .content-list span.active:after {
   transform: none;
}
.block-blog-content .content-list ul li a {
   text-decoration: none;
}

.block-blog-content .content-list ul li {
   margin-bottom: 7px;
}

.block-blog-content .content-list {
   margin-bottom: 70px;
}

.block-blog-content .sidebar-block {
   padding: 30px;
   border-radius: 22px;
   background: var(--soft-green);
}

.block-blog-content .button-group {
   margin-top: 20px;
}

.block-blog-content .sidebar-block h5 {
   margin-bottom: 15px;
}

.block-blog-content .sidebar-block {
   margin-bottom: 50px;
}

.block-blog-content .sidebar-block:nth-child(even) {
   background: var(--dark-olive);
}

.block-blog-content.soft-green .sidebar-block {
   background-color: var(--white);
}

.block-blog-content .sidebar-block .gform_wrapper {
   margin-top: 20px;
}
.block-blog-content .sidebar-block .gform_button {
   background-color: var(--white);
   color: var(--dark-olive) !important;
}
.block-blog-content .sidebar-block .gform_button:hover {
   background-color: var(--soft-green);
}
.block-blog-content .sidebar-block .gform_button:hover .btn-arrow {
   background-color: var(--white);
}
.block-blog-content .sidebar-block .gform_button .btn-arrow {
   background-color: var(--soft-green);
}
.block-blog-content .sidebar-block .gform_button .btn-arrow svg path {
   fill: var(--black);
}
.block-blog-content .sidebar-block .ginput_container input {
   background-color: #1e3600 !important;
   color: var(--cream) !important;
   border-radius: 9px !important;
   border: none !important;
   font-size: 17px !important;
   line-height: 26px !important;
   padding: 9px 21px !important;
}
.block-blog-content .sidebar-block .gform_wrapper .gform_fields {
   gap: 0px !important;
}
.block-blog-content .sidebar-block .ginput_container input::placeholder {
   color: var(--cream) !important;
}
.block-blog-content .next-prev {
   margin-top: 80px;
}
/* responsive */
@media (max-width: 1199px) {
   .block-blog-content .item-column.column-news {
      padding-right: 0px;
   }
   .block-blog-content .sidebar-block {
      padding: 20px;
   }
}
@media (max-width: 860px) {
   .block-blog-content .item-column.column-news {
      width: 33%;
      padding-right: 0px;
   }
   .block-blog-content .item-column.column-content {
      width: 67%;
      padding-left: 40px;
   }
}
@media (max-width: 767px) {
   .block-blog-content .item-column.column-news {
      width: 100%;
   }
   .block-blog-content .item-column.column-content {
      width: 100%;
      padding-left: 0px;
      margin-top: 40px;
   }
   .block-blog-content .content-list {
      margin-bottom: 40px;
   }
   .block-blog-content .sidebar-block {
      margin-bottom: 20px;
   }

   .block-blog-content .sidebar-block.mobile-only {
      margin: 20px 0 0;
   }

   .block-blog-content .next-prev {
      margin: 50px 0 30px;
   }
}

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

.block-team .column > img {
   height: 355px;
   object-fit: cover;
   width: 100%;
   border-radius: 5px;
}

.block-team .team-content {
   bottom: 18px;
   position: absolute;
   width: calc(100% - 36px);
   left: 19px;
   transition: var(--transition);
   z-index: 1;
   max-height: calc(100% - 80px);
}

.block-team .column {
   position: relative;
   overflow: hidden;
   border-radius: 12px;
   background: #e4eed8;
}

.block-team .team-wrapper {
   overflow: hidden;
   height: auto;
   overflow: auto;
   max-height: 295px;
   padding-right: 15px;
}
.block-team .column:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   border-radius: 12px;
   background: linear-gradient(358deg, var(--soft-green) 14.99%, rgba(152, 190, 103, 0) 58.15%);
   transition: var(--transition);
}
.block-team .column:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   border-radius: 12px;
   opacity: 0;
   transition: var(--transition);
   background: linear-gradient(358deg, var(--soft-green) 14.99%, rgba(152, 190, 103, 0.95) 58.15%);
}
.block-team .column.active:before {
   opacity: 1;
}
.block-team .team-wrapper .team-description {
   display: none;
}
.block-team .trigger-icon {
   width: 23px;
   height: 23px;
   background-color: var(--white);
   display: flex;
   align-items: center;
   border-radius: 50%;
   position: absolute;
   right: 7px;
   bottom: 7px;
   z-index: 1;
   cursor: pointer;
   transition: var(--transition);
   justify-content: center;
}
.block-team .trigger-icon svg {
   width: 12px;
}
.block-team .team-description ul {
   display: flex;
   gap: 13px;
}

.block-team .team-description ul li a {
   color: var(--black);
   font-size: 17px;
   line-height: 22px;
   text-transform: uppercase;
}

.block-team .team-description ul {
   margin-top: 30px;
}

.block-team .team-description span {
   color: rgba(var(--black-rgb), 55%);
   font-size: 17px;
   font-weight: 400;
   line-height: 22px;
   text-transform: uppercase;
   margin-bottom: 12px;
   display: inline-block;
}

.block-team .team-description .trigger-icon {
   top: 13px;
   width: 28px;
   height: 28px;
   transform: rotate(45deg);
   transition: var(--transition);
}

.block-team .team-description {
   padding-top: 32px;
}

.block-team .team-content span {
   font-size: 15px;
   font-weight: 400;
   line-height: 12px;
   text-transform: uppercase;
   color: var(--dark-olive);
}

.block-team .team-wrapper::-webkit-scrollbar {
   width: 7px;
   background-color: var(--cream);
   border-radius: 100px;
}
.block-team .close-icon {
   top: 18px;
   position: absolute;
   left: 18px;
   cursor: pointer;
   z-index: 1;
   transition: var(--transition);
   width: 20px;
   height: 20px;
}

.block-team .column.active .close-icon svg {
   transform: rotate(45deg);
}
.block-team .team-wrapper::-webkit-scrollbar-thumb {
   border-radius: 100px;
   background-color: #d9d9d9;
}
.block-team .team-wrapper h4 {
   cursor: pointer;
   font-size: 17px;
   line-height: 20px;
   font-weight: 600;
}
.block-team .wrapper {
   gap: 40px;
}
.title {
   margin-bottom: 50px;
}
/* responsive */

@media (max-width: 767px) {
   .block-team .team-content h4 {
      font-size: 20px;
      line-height: 24px;
   }
   .block-team .team-content span {
      font-size: 14px;
      line-height: 18px;
   }
   .title {
      margin-bottom: 30px;
   }
}

/*-----------------------------------------------------------------------
   Block: wysiwyg-content
-----------------------------------------------------------------------*/

.block-wysiwyg-content.bg-vector.charcoal .block-setting-padding {
   background-image: none;
}
.block-wysiwyg-content.bg-vector .block-setting-padding {
   background-image: url(../img/content-bg-vector.svg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}

.comnz-theme.border-bottom-radius + .comnz-theme .block-setting-padding:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 82px;
   top: -51px;
   left: 0;
   background-color: inherit;
   z-index: -1;
}

.comnz-theme.border-bottom-radius .block-setting-padding {
   border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;
}

.comnz-theme.border-top-radius .block-setting-padding {
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
   z-index: 1;
}

.comnz-theme.border-top-radius {
   margin-top: -21px;
}

.block-wysiwyg-content.shape-right-spiral:after {
   content: '';
   position: absolute;
   background-repeat: no-repeat;
   background-size: cover;
   bottom: 0;
   right: 0px;
   background-position: left top;
   opacity: 0.1;
   z-index: 1;
   pointer-events: none;
   background-image: url(../img/spiral.svg);
   width: 400px;
   height: 300px;
   top: 35px;
}

.block-wysiwyg-content.shape-left-leaf.soft-green:before,
.block-wysiwyg-content.shape-right-spiral.soft-green:after {
   mix-blend-mode: difference;
}

.block-wysiwyg-content.shape-left-leaf:before {
   content: '';
   position: absolute;
   width: 272px;
   height: 500px;
   background-repeat: no-repeat;
   background-size: contain;
   bottom: 0;
   left: 0;
   opacity: 0.1;
   z-index: 1;
   pointer-events: none;
   background-image: url(../img/leaf.svg);
}

/* responsive */
@media (max-width: 1199px) {
   .block-wysiwyg-content.shape-right-spiral:after {
      width: 220px;
      height: 200px;
      background-size: contain;
   }

   .block-wysiwyg-content.shape-left-leaf:before {
      width: 272px;
      height: 540px;
   }
}

@media (max-width: 860px) {
   .block-wysiwyg-content.shape-right-spiral:after {
      top: 10%;
      right: 0;
      width: 150px;
   }

   .block-wysiwyg-content.shape-left-leaf:before {
      left: 0%;
      width: 150px;
   }
}

@media (max-width: 767px) {
   .block-wysiwyg-content.shape-left-leaf:before {
      left: 0%;
      width: 150px;
      height: 200px;
   }
}

/*-----------------------------------------------------------------------
   Block: Modules
-----------------------------------------------------------------------*/

.block-modules .item-column {
   background-color: var(--soft-green);
   padding: 30px;
   border-radius: 12px;
}

.block-modules .wrapper.grid-col-3 {
   gap: 12px;
}

.block-modules .wrapper .tag span {
   border-radius: 2px;
   background: var(--dark-olive);
   color: var(--white);
   text-align: center;
   font-size: 17px;
   font-style: normal;
   font-weight: 400;
   line-height: 26px;
   padding: 2px 10px;
   display: inline-block;
}

.block-modules .wrapper .tag {
   margin-bottom: 16px;
}

.block-modules .wrapper .item-column h3 {
   color: var(--white);
   font-weight: 600;
   margin-bottom: 16px;
}

.block-modules .title {
   max-width: 757px;
   margin-left: auto;
   margin-right: auto;
}

.block-modules .item-column .image-block img {
   aspect-ratio: 2/1.1;
   width: 100%;
   object-fit: cover;
   margin-bottom: 12px;
}

/* responsive */
@media (max-width: 1199px) {
   .block-modules .item-column {
      padding: 20px;
   }
}

/*-----------------------------------------------------------------------
   Block: Countdown
-----------------------------------------------------------------------*/

.block-countdown .item-column {
   background-color: var(--light-green);
   padding: 40px;
   text-align: center;
   /* width: 25%; */
}

.block-countdown .item-column h3 {
   color: var(--black);
   text-align: center;
   font-size: 35px;
   margin-bottom: 10px;
}

.block-countdown .wrapper {
   gap: 16px !important;
}

.block-countdown.cream .item-column {
   background-color: var(--white);
}

/* responsive */
@media (max-width: 767px) {
   .block-countdown .item-column {
      padding: 20px;
   }

   .block-countdown .wrapper {
      gap: 5px;
   }
}

/*-----------------------------------------------------------------------
   Block: pricing
-----------------------------------------------------------------------*/

.block-pricing .price-block {
   border-radius: 12px;
   background: var(--white);
   max-width: 460px;
   margin: auto;
   padding: 59px 33px 40px;
}

.block-pricing .price-block .wysiwyg-content h5 {
   color: var(--black);
}

.block-pricing .price-block .button-group {
   margin-top: 40px;
}
.block-pricing.bg-none .price-block {
   border: 1px solid var(--dark-olive);
}
.block-pricing .price-block h2,
.block-pricing .price-block h2 span {
   font-size: 50px;
   line-height: 48px;
   margin-bottom: 47px !important;
}
/* responsive */

@media (max-width: 767px) {
   .block-pricing .price-block {
      padding: 30px;
   }
}
