@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Thin.woff2') format('woff2'),
    url('../_fonts/Gotham-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-XLight.woff2') format('woff2'),
    url('../_fonts/Gotham-XLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('https://www.prime-purchase.com/_fonts/Gotham-Light.woff2') format('woff2'),
    url('https://www.prime-purchase.com/_fonts/Gotham-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Book.woff2') format('woff2'),
    url('../_fonts/Gotham-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Medium.woff2') format('woff2'),
    url('../_fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Bold.woff2') format('woff2'),
    url('../_fonts/Gotham-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Ultra.woff2') format('woff2'),
    url('../_fonts/Gotham-Ultra.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('../_fonts/Gotham-Black.woff2') format('woff2'),
    url('../_fonts/Gotham-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fontello';
  src:
    url('../_fonts/fontello.woff2') format('woff2'),
    url('../_fonts/fontello.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* ==========================================================================
   Main Stylesheet
   Project: Prime Purchase
   Author: Gajen
   Date: 2024
   ========================================================================== */
/* ==========================================================================
   Table of Contents
   ==========================================================================
   1.0 Variables
   2.0 Reset & Base Styles
   3.0 Typography
   4.0 Layout
   5.0 Components
   6.0 Forms
   7.0 Utilities
   8.0 Media Queries
   ========================================================================== */
/* 1.0 Variables
   ========================================================================== */
:root {
  /* Theme Colors */
  --color-theme-1: #25273a;
  --color-theme-2: #283a2c;

  /* Theme 1 Colors */
  --color-primary: #25273a;
  --color-secondary: #283a2c;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-accent: #ff4d4d;
  --color-text: #ffffff;
  --color-text-gold: #cba25b;
  --color-text-light: #cccccc;
  --color-background: #ffffff;
  --color-background-light: #f5f0e7;
  --color-background-grey: #f4f4f5;
  --color-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-family-base: 'Gotham', Arial, sans-serif;
  --font-family-heading: 'Gotham', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.2;
  --font-weight-light: 350;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;

  /* Breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 640px;
  --breakpoint-lg: 768px;
  --breakpoint-xl: 992px;
  --breakpoint-xxl: 1224px;
  --breakpoint-xxxl: 1400px;

  /* Container */
  --container-max-width: 1236px;
  --container-padding: 8px;
  --logo-gap: 60px;
}
/* Theme 2 Overrides */
body.theme-2 {
  --color-primary: #283a2c;
}
body.theme-2 .theme_block,
body.theme-2 .hero__overlay,
body.theme-2 .site-header,
body.theme-2 .site_footer,
body.theme-2 .hero .media_wrapper.theme_banner,
body.theme-2 .video_banner_block .media_wrapper.theme_banner,
body.theme-2 .area_item:hover,
body.theme-2 .contactus_block .container,
.case_study_slider .case_study_slider_item.Country {
  background-color: #283a2c;
}
body.theme-2 .default_button a:hover,
body.theme-2 .profile-link:hover,
body.theme-2 .button_link a:hover,
body.theme-2 .footer_list a:hover,
body.theme-2 .footer_contact a:hover,
body.theme-2 .footer_social a:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
body.theme-2 .image_slider,
body.theme-2 .case_study_iamge,
body.theme-2 .column_left__imgae,
.case_study_slider .case_study_slider_item.Country .case_study_iamge {
  background-image: url('../_images/pattern-bg-theme-2.png');
}
body.theme-2 .footer_bg_pattern {
  background-image: url('../_images/footer-pattern-theme-2.png');
}
/* 2.0 Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}
body {
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-size: var(--font-size-base);
  line-height: 1.2;
  line-height: var(--line-height-base);
  color: #ffffff;
  color: var(--color-text);
  background: #ffffff;
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
#_blocks img {
  width: auto;
}
a {
  color: #ffffff;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
/* 3.0 Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-heading);
  font-weight: 350;
  font-weight: var(--font-weight-light);
  line-height: 1;
  color: #ffffff;
  color: var(--color-text);
  margin-bottom: 20px;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}
h1 {
  font-size: 34px;
  line-height: 34px;
  letter-spacing: 3px;
  font-weight: 500;
}
h1 strong {
  font-weight: 500;
  color: #cba25b;
  color: var(--color-text-gold);
}
h2 {
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 3px;
  font-weight: 500;
}
h2 strong {
  font-weight: 500;
  color: #cba25b;
  color: var(--color-text-gold);
}
h3 {
  font-size: 36px;
  line-height: 47px;
  letter-spacing: 4px;
}
h4 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 5px;
}
h5 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 5px;
}
p {
  margin-bottom: 20px;
  margin-bottom: var(--spacing-md);
  line-height: 26px;
}
ul {
  margin-bottom: 20px;
  margin-bottom: var(--spacing-md);
  list-style: disc outside;
  padding-left: 20px;
}
ul li {
  margin-bottom: 0;
  color: #000000;
  color: var(--color-black);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
/* 4.0 Layout
   ========================================================================== */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.container {
  width: 100%;
  max-width: 1236px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 8px;
  padding: 0 var(--container-padding);
  position: relative;
}
/* 7.0 Utilities
   ========================================================================== */
.font-icon {
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
  speak: never;
}
.icon-right-open-mini:before {
  content: '\e800';
}
.icon-down-open-mini:before {
  content: '\e801';
}
.icon-bxl-instagram:before {
  content: '\e802';
}
.icon-search:before {
  content: '\e803';
}
.icon-bxl-linkedin-square:before {
  content: '\e804';
}
.icon-social-icons:before {
  content: '\e805';
}
.icon-left-open-mini:before {
  content: '\e806';
}
.icon-up-open-mini:before {
  content: '\e807';
}
.icon-down-open:before {
  content: '\f004';
}
.icon-up-open:before {
  content: '\f005';
}
.icon-right-open:before {
  content: '\f006';
}
.icon-left-open:before {
  content: '\f007';
}
.hide {
  display: none;
}
.clear {
  clear: both;
}
.centered {
  text-align: center;
}
.pull_right {
  float: right;
}
.pull_left {
  float: left;
}
.dropdown_arrow {
  font-size: 11px;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
}
.menu_left ul,
.menu_right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 96px;
}
.menu_left ul li,
.menu_right ul li {
  display: flex;
  align-items: center;
  height: 96px;
}
.menu_left ul li a,
.menu_right ul li a {
  color: #ffffff;
  color: var(--color-white);
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 5px;
  height: 96px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
}
.menu_left ul li a.highlight,
.menu_right ul li a.highlight {
  color: #cba25b;
  color: var(--color-text-gold);
}
.menu_left ul li a:hover,
.menu_left ul li a:focus,
.menu_right ul li a:hover,
.menu_right ul li a:focus {
  color: #6c757d;
}
.menu_left,
.menu_right,
.menu_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}
.menu_right ul li:last-child a {
  color: #cba25b;
  color: var(--color-text-gold);
}
.mb-40 {
  margin-bottom: 40px;
}
/* 6.0 Forms
   ========================================================================== */
.main-form {
  margin-bottom: 20px;
}
.main-form p {
  margin-bottom: 10px;
  overflow: hidden;
}
.main-form p label {
  display: inline-block;
}
.main-form p > label {
  display: block;
  margin-bottom: 5px;
}
form {
  width: 100%;
}
input,
select,
textarea {
  border: none;
  font-size: 18px;
  line-height: 22px;
  padding: 6px 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  font-weight: 400;
  outline: none;
}
label {
  display: block;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
  font-weight: 300;
  text-transform: capitalize;
}
[type='checkbox'],
[type='radio'] {
  border: none;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7f7f7f;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #7f7f7f;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #7f7f7f;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #7f7f7f;
}
input[readonly] {
  border-color: #acacac;
  color: #c1bebe;
}
.form_group {
  margin-bottom: 15px;
  overflow: hidden;
}
.form_group label {
  display: inline-block;
}
.form_group > label {
  display: block;
  margin-bottom: 5px;
}
.form_group span {
  font-family: 'PublicSans-Bold';
}
.form_group.submit {
  text-align: left;
}
.form_group.select {
  position: relative;
}
.form_group.select label:after {
  width: 36px;
  height: 36px;
  content: '\66';
  position: absolute;
  right: 8px;
  top: 32px;
  pointer-events: none;
  font-family: 'alumni2019';
  color: #ffffff;
  color: var(--color-text);
  text-align: center;
  line-height: 36px;
  background: none;
  text-transform: none;
  font-size: 20px;
}
.form_group.select select::-ms-expand {
  display: none;
}
.form_group.select option {
  background-color: #ffffff;
  background-color: var(--color-white);
  color: #ffffff;
  color: var(--color-text);
}
.form_group .radio {
  position: relative;
  margin-bottom: 2px;
  margin-right: 15px;
}
.form_group .radio input[type='checkbox'],
.form_group .radio input[type='radio'] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.form_group .radio .checkbox_label,
.form_group .radio .radio_label {
  padding-left: 24px;
  display: inline-block;
}
.form_group .radio .checkbox_label:before,
.form_group .radio .radio_label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 3px;
  font-family: 'alumni2019';
  text-transform: none;
}
.form_group .radio .checkbox_label:before {
  content: '\75';
}
.form_group .radio .radio_label:before {
  content: '\77';
}
.form_group .radio input[type='checkbox']:checked + label,
.form_group .radio input[type='radio']:checked + label {
  color: #cba25b;
  color: var(--color-text-gold);
}
.form_group .radio input[type='checkbox']:checked + label::before {
  content: '\76';
}
.form_group .radio input[type='radio']:checked + label::before {
  content: '\78';
}
/*	VX FORM STYLES */
.vx_form {
  margin-bottom: 20px;
}
.vx_form p {
  margin-bottom: 20px;
  overflow: hidden;
}
.vx_form p label {
  display: inline-block;
}
.vx_form p > label {
  display: block;
  margin-bottom: 10px;
}
.interaction_field > span,
.multiple_choice > span,
.checkboxes > span,
.salesforce_rsvp > span {
  display: block;
  color: #1f4d64;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  font-family: 'PublicSans-Bold';
  font-weight: 700;
  text-transform: uppercase;
}
.interaction_field > label,
.multiple_choice > label,
.checkboxes > label,
.salesforce_rsvp > label {
  position: relative;
  margin-bottom: 2px;
  margin-right: 15px;
}
.interaction_field > label span,
.multiple_choice > label span,
.checkboxes > label span,
.salesforce_rsvp > label span {
  padding-left: 24px;
  display: inline-block;
}
.interaction_field > label span:before,
.multiple_choice > label span:before,
.checkboxes > label span:before,
.salesforce_rsvp > label span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'alumni2019';
  text-transform: none;
}
.interaction_field input[type='checkbox']:checked + span,
.interaction_field input[type='radio']:checked + span,
.multiple_choice input[type='checkbox']:checked + span,
.multiple_choice input[type='radio']:checked + span,
.checkboxes input[type='checkbox']:checked + span,
.checkboxes input[type='radio']:checked + span,
.salesforce_rsvp input[type='checkbox']:checked + span,
.salesforce_rsvp input[type='radio']:checked + span {
  color: #cba25b;
  color: var(--color-text-gold);
}
.multiple_choice input[type='radio'] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.multiple_choice > label input[type='radio'] + span::before {
  content: '\77';
}
.multiple_choice input[type='radio']:checked + span::before {
  content: '\78';
}
.checkboxes input[type='checkbox'] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.checkboxes > label input[type='checkbox'] + span::before {
  content: '\75';
}
.checkboxes input[type='checkbox']:checked + span::before {
  content: '\76';
}
.interaction_field input[type='checkbox'],
.interaction_field input[type='radio'] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.interaction_field > label input[type='checkbox'] + span::before {
  content: '\75';
}
.interaction_field > label input[type='radio'] + span::before {
  content: '\77';
}
.interaction_field input[type='checkbox']:checked + span::before {
  content: '\76';
}
.interaction_field input[type='radio']:checked + span::before {
  content: '\78';
}
/* 5.0 Components
   ========================================================================== */
.site-header {
  background: #25273a;
  background: var(--color-theme-1);
  min-height: 71px;
  display: flex;
  align-items: center;
  padding: 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 71px;
}
.header-logo {
  z-index: 1001;
  width: 126px;
  display: flex;
}
.header-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 1px;
  width: 100%;
  height: auto;
  /* Optimize SVG rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Ensure crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.prime_purchase_text {
  font-size: 22px;
  color: #cba25b;
  color: var(--color-text-gold);
  letter-spacing: 8px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1px;
  line-height: 24px;
}
.dynamic_menu {
  flex: 1 1 auto;
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.dynamic_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 96px;
}
.dynamic_menu ul > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 96px;
}
.dynamic_menu ul > li:hover > a .dropdown_arrow,
.dynamic_menu ul > li:focus-within > a .dropdown_arrow {
  transform: rotate(180deg);
}
.dynamic_menu ul > li:hover > ul,
.dynamic_menu ul > li:focus-within > ul {
  display: flex;
}
.dynamic_menu ul ul {
  display: none;
  position: absolute;
  top: 96px;
  left: 0;
  background: #25273a;
  background: var(--color-primary);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 6px 6px;
  z-index: 10;
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  height: auto;
}
.dynamic_menu ul ul li {
  width: 100%;
  height: auto;
}
.dynamic_menu ul ul li a {
  display: block;
  transition: color 0.2s;
  height: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
}
.dynamic_menu ul ul li a:hover,
.dynamic_menu ul ul li a:focus {
  color: #283a2c;
  color: var(--color-secondary);
}
.dynamic_menu a {
  color: #fff;
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-heading);
  font-size: 13.5px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0 5px;
  height: 96px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
}
.dynamic_menu a.highlight,
.dynamic_menu a:hover,
.dynamic_menu a:focus {
  color: #cba25b;
  color: var(--color-text-gold);
}
.main_menu {
  display: block;
  position: fixed;
  top: 71px;
  left: 0;
  width: 100%;
  height: 0;
  background: #25273a;
  background: var(--color-theme-1);
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  z-index: 999;
}
.main_menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.main_menu ul li a {
  color: #fff;
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
  justify-content: center;
}
.main_menu ul li a:hover,
.main_menu ul li a:focus {
  color: #cba25b;
  color: var(--color-text-gold);
}
.main_menu ul ul {
    gap: 0px;
    padding: 0;
}
.main_menu ul ul li a {
    padding: 5px;
}
.menu_open {
  overflow: hidden;
}
.menu_open .mobile_nav_toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 120;
}
.menu_open .mobile_nav_toggle span {
  background: #cba25b;
  background: var(--color-text-gold);
}
.menu_open .main_menu {
  visibility: visible;
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    visibility 0s;
  height: calc(100vh - 71px);
}
.menu_open .main_menu ul {
  opacity: 1;
}
.mobile-nav-toggle {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  z-index: 1000;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.hero,
.video_banner_block {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero .media_wrapper,
.video_banner_block .media_wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 718px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.hero .media_wrapper .hero_image,
.video_banner_block .media_wrapper .hero_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .media_wrapper .hero_image img,
.video_banner_block .media_wrapper .hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .media_wrapper .hero_image .vx_image,
.video_banner_block .media_wrapper .hero_image .vx_image {
  height: 100%;
}
.hero .media_wrapper .hero__media,
.video_banner_block .media_wrapper .hero__media {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero .media_wrapper .hero__overlay,
.video_banner_block .media_wrapper .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 39, 58, 0.48);
  z-index: 2;
}
.hero .media_wrapper .hero__content,
.video_banner_block .media_wrapper .hero__content {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  width: 100%;
}
.hero .media_wrapper .hero__content .hero__content__text,
.video_banner_block .media_wrapper .hero__content .hero__content__text {
  max-width: 738px;
  padding: 0 8px;
}
.hero .media_wrapper .hero__content .hero__content__text h1,
.video_banner_block .media_wrapper .hero__content .hero__content__text h1 {
  margin-bottom: 30px;
}
.hero .media_wrapper .hero__content .hero__content__text .hero__subtitle,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle {
  margin-bottom: 20px;
}
.hero .media_wrapper .hero__content .hero__content__text .hero__subtitle p,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle
  p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.hero
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--profile,
.hero
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--article,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--profile,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--article {
  margin-bottom: 5px;
}
.hero
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--profile
  p,
.hero
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--article
  p,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--profile
  p,
.video_banner_block
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle.hero__subtitle--article
  p {
  font-size: 18px;
  line-height: 22px;
  color: #cba25b;
  color: var(--color-text-gold);
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero .media_wrapper.theme_banner,
.video_banner_block .media_wrapper.theme_banner {
  height: 400px;
  background: #25273a;
  background: var(--color-theme-1);
}
.hero .media,
.video_banner_block .media {
  width: 100%;
}
.hero.hero--home
  .hero__content
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle,
.video_banner_block.hero--home
  .hero__content
  .media_wrapper
  .hero__content
  .hero__content__text
  .hero__subtitle {
  max-width: 427px;
}
.hero .default_button p,
.video_banner_block .default_button p {
  text-align: center;
}
.hero .default_button p a,
.video_banner_block .default_button p a {
  display: block;
}
.video_banner_block .media_wrapper {
  min-height: 420px;
  height: 647px;
}
.video_banner_block .media_wrapper .video iframe, .hero .media_wrapper .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video_banner_block:last-child {
  padding-bottom: 0;
}
.video-box video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.video-box img {
  width: auto;
}
.default_button p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.default_button p a {
  font-family: Gotham;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  color: var(--color-black);
  background: #cba25b;
  background: var(--color-text-gold);
  padding: 15px 40px 15px 20px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #bd9b60;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.default_button p a:hover {
  background: transparent;
  color: #cba25b;
  color: var(--color-text-gold);
}
.submit button {
  font-family: Gotham;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  color: var(--color-black);
  background: #cba25b;
  background: var(--color-text-gold);
  padding: 15px 20px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #bd9b60;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
}
.submit button:hover {
  background: transparent;
  color: #cba25b;
  color: var(--color-text-gold);
}
.default_button a,
.default_link a,
.button_link a {
  color: #000000;
  color: var(--color-black);
  position: relative;
}
.default_button a:hover,
.default_link a:hover,
.button_link a:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.default_button a:before,
.default_link a:before,
.button_link a:before {
  font-family: 'fontello';
  content: '\e800';
  margin-right: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}
.default_link a,
.button_link a {
  padding-right: 40px;
}
.profile-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #232323;
  text-decoration: none;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  position: relative;
  padding-right: 40px;
}
.profile-link span {
  font-size: 22px;
  margin-left: 2px;
  transition: margin 0.2s;
}
.profile-link:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.profile-link:hover span {
  margin-left: 8px;
}
.profile-link:before {
  font-family: 'fontello';
  content: '\e800';
  margin-right: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}
.home_blocks {
  padding: 60px 0;
}
.home_blocks h2 {
  color: #25273a;
  color: var(--color-theme-1);
}
.home_blocks p {
  color: rgba(0, 0, 0, 0.64);
}
.home_blocks.two_column_image_text {
  padding: 0 0 60px;
}
.home_blocks.two_column_image_text.no_tb_padding {
  padding: 0;
}
.home_blocks.two_column_image_text.no_tb_padding .case_study_slider_controls {
  bottom: -80px;
}
.home_blocks.banner_block {
  padding: 0;
}
.home_blocks.theme_block h2 {
  color: #ffffff;
  color: var(--color-white);
}
.home_blocks.theme_block p {
  color: #ffffff;
  color: var(--color-white);
}
.home_blocks.two_col_text p {
  color: #000000;
  color: var(--color-black);
}
.theme_block {
  background: #25273a;
  background: var(--color-theme-1);
  color: #ffffff;
  color: var(--color-white);
}
.theme_block .area_item .area_item__text h3 {
  color: #ffffff;
  color: var(--color-white);
}
.theme_block .area_item .area_item__text h3 a {
  color: #ffffff;
  color: var(--color-white);
}
.theme_block .area_item .area_item__text p {
  color: #ffffff;
  color: var(--color-white);
}
.theme_block .area_item .area_item__text p a {
  color: #ffffff;
  color: var(--color-white);
}
.light_block h2,
.grey_block h2 {
  color: #25273a;
  color: var(--color-theme-1);
}
.light_block .default_button a:hover,
.grey_block .default_button a:hover {
  color: #25273a;
  color: var(--color-theme-1);
}
.light_block {
  background: #f5f0e7;
  background: var(--color-background-light);
}
.grey_block {
  background: #f4f4f5;
  background: var(--color-background-grey);
}
.section_header {
  margin-bottom: 20px;
}
.two_column_image_text .column_right .paragraph_text {
  max-width: 566px;
}
.two_column_image_text .column_right .paragraph_text p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #c1c1c1;
}
.two_column_image_text .column_right .paragraph_text .default_button {
  margin-top: 40px;
}
.two_column_image_text .column_right form .paragraph_text {
  padding-left: 8px;
  width: 100%;
  max-width: none;
}
.two_column_image_text .col-lg-6 {
  flex-basis: 100%;
}
.two_column_image_text.case_study_block .column_right .paragraph_text p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
}
.two_column_image_text.case_study_block.country_selected {
  background-color: #283a2c;
  background-color: var(--color-theme-2);
}
.area_item {
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}
.area_item .area_item__text {
  padding: 30px 15px;
}
.area_item .area_item__text h3 {
  font-size: 21px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 500;
  color: #25273a;
  color: var(--color-theme-1);
  margin-bottom: 10px;
}
.area_item .area_item__text h3 a {
  color: #25273a;
  color: var(--color-theme-1);
  text-decoration: none;
}
.area_item .area_item__text p {
  color: #25273a;
  color: var(--color-theme-1);
}
.area_item .button_link p a {
  color: #25273a;
  color: var(--color-theme-1);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.area_item .area_item__image {
  overflow: hidden;
}
.area_item img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.area_item:hover {
  background-color: #25273a;
  background-color: var(--color-theme-1);
}
.area_item:hover img {
  transform: scale(1.15);
}
.area_item:hover .area_item__text h3 {
  color: #cba25b;
  color: var(--color-text-gold);
}
.area_item:hover .area_item__text h3 a {
  color: #cba25b;
  color: var(--color-text-gold);
}
.area_item:hover .area_item__text p {
  color: #ffffff;
  color: var(--color-white);
}
.area_item:hover .area_item__text .button_link p a {
  color: #ffffff;
  color: var(--color-white);
}
.banner_block .container {
  max-width: 100%;
  padding: 0;
}
.banner_block img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 440px;
}
.image_slider {
  position: relative;
  width: auto;
  min-height: 1px;
  max-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.5s;
  background: url('../_images/pattern-bg.png') center center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  margin: 0 -16px 66px;
}
.image_slider .image_slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition:
    opacity 1s ease-in-out,
    visibility 0s 1s;
}
.image_slider .image_slider__item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition:
    opacity 1s ease-in-out,
    visibility 0s;
}
.image_slider .image_slider__item img {
  max-width: 100%;
  max-height: 660px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 20px;
}
.testimonials_block {
  padding-top: 120px;
}
.testimonials_block .col-lg-12 {
  flex-basis: 100%;
}
.testimonials_carousel {
  position: relative;
  width: 100%;
  min-height: 1px;
  display: block;
  max-width: 1010px;
  margin: 0 auto;
  height: 450px;
}
.testimonials_carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition:
    all 1s ease-in-out,
    visibility 0s 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #25273a;
  background-color: var(--color-theme-1);
  background-image: url('../_images/quote.png');
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonials_carousel__item p {
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
}
.testimonials_carousel__item.theme_2 {
  background-color: #283a2c;
  background-color: var(--color-theme-2);
}
.testimonials_carousel__item.theme_3 {
  background-color: #cba25b;
  background-color: var(--color-text-gold);
}
.testimonials_carousel__item.theme_3 p {
  color: #000000;
  color: var(--color-black);
}
.testimonials_carousel__item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition:
    opacity 1s ease-in-out,
    visibility 0s;
}
.tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  margin-left: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0;
  gap: 16px;
}
.tabs button {
  background: none;
  border: none;
  padding: 0 0 8px 0;
  cursor: pointer;
  font-size: 18px;
  color: #25273a;
  color: var(--color-theme-1);
  transition:
    color 0.2s,
    border-color 0.2s;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.tabs button.active {
  color: #cba25b;
  color: var(--color-text-gold);
  border-color: #cba25b;
  border-color: var(--color-text-gold);
}
.carousel {
  position: relative;
  overflow: visible;
  padding-bottom: 32px;
}
.carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 28px;
  color: #888;
  transition:
    background 0.2s,
    color 0.2s;
}
.carousel .arrow.left {
  left: -24px;
}
.carousel .arrow.right {
  right: -24px;
}
.carousel .arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel .track_container {
  overflow: hidden;
  width: 100%;
  background: transparent;
}
.carousel .track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  gap: 16px;
  will-change: transform;
  padding-bottom: 0;
}
.carousel .item {
  flex: 0 0 390px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}
.carousel .item .meta {
  font-size: 12px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-style: italic;
}
.carousel .item img {
  width: 100%;
  margin-bottom: 24px;
}
.carousel .item h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0;
  color: #25273a;
  color: var(--color-theme-1);
  text-transform: uppercase;
}
.carousel .item h3 a {
  color: #25273a;
  color: var(--color-theme-1);
}
.carousel .item h3 a:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.carousel .item p {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 20px;
  color: #25273a;
  color: var(--color-theme-1);
  font-weight: 400;
  font-style: italic;
}
.carousel .item.hidden {
  display: none;
}
.carousel.insights_carousel .item h3 {
  font-size: 24px;
  line-height: 27px;
}
.carousel.insights_carousel .item p {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  font-weight: 400;
  max-height: 48px;
  overflow: hidden;
}
.carousel.insights_carousel .item img {
  width: 100%;
  height: auto;
  max-height: 355px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.carousel_progress {
  width: 100%;
  height: 8px;
  background: #e5e0d6;
  border-radius: 4px;
  margin: 60px 0 0 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.carousel_progress_bar {
  height: 100%;
  background: #cba25b;
  background: var(--color-text-gold);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: grab;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.carousel_progress_bar:active {
  cursor: grabbing;
  background: #b08a4a;
}
.site_footer {
  background: #25273a;
  background: var(--color-theme-1);
  color: #bdbdbd;
  position: relative;
  padding-bottom: 24px;
  font-family: 'Gotham', Arial, sans-serif;
  font-family: var(--font-family-base);
  font-size: 16px;
}
.site_footer .container {
  position: relative;
  z-index: 1;
}
.footer_bg_pattern {
  width: 100%;
  height: 65px;
  background: url('../_images/footer-pattern.png') repeat-x center center;
}
.footer_main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  padding-top: 90px;
}
.footer_logo_col {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo img {
  width: 70px;
  height: auto;
  display: block;
}
.footer_links_col {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer_section {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
.footer_title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_list ul li {
  margin-bottom: 20px;
}
.footer_list ul a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.footer_list ul a:hover {
  color: #cba25b;
  color: var(--color-text-gold, #bfa05a);
}
.footer_contact {
  font-size: 12px;
  margin-bottom: 8px;
}
.footer_contact p {
  margin-bottom: 5px;
  line-height: 18px;
}
.footer_contact a {
  color: #bdbdbd;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer_contact a:hover {
  color: #cba25b;
  color: var(--color-text-gold, #bfa05a);
}
.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer_social {
  margin: 0 auto;
}
.footer_social a {
  display: inline-block;
  margin-left: 18px;
  transition: opacity 0.2s;
}
.footer_social a:first-child {
  margin-left: 0;
}
.footer_social a:hover {
  opacity: 1;
}
.footer_social a i {
  font-size: 24px;
}
.hero_carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero_carousel .hero_carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition:
    opacity 1s ease-in-out,
    visibility 0s 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_carousel .hero_carousel__item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition:
    opacity 1s ease-in-out,
    visibility 0s;
}
.hero_carousel .hero_carousel__item img {
  width: auto;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin: 0 auto;
}
.usp_block h3 {
  color: #000000;
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
}
.usp_block .usp_image {
  margin-bottom: 50px;
}
.usp_row_image_right .usp_text_col {
  order: 2;
}
.usp_row_image_right .usp_image_col {
  order: 1;
}
.two_col_text__left {
  padding-right: 35px;
}
.two_col_text__right {
  padding-left: 35px; 
}
.toggle_list__item {
  margin-bottom: 35px;
  border-bottom: #25273a 1px solid;
  border-bottom: var(--color-theme-1) 1px solid;
  padding-bottom: 35px;
  max-width: 500px;
}
.toggle_list__item .toggle_list__item__title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.toggle_list__item .toggle_list__item__title h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: #25273a;
  color: var(--color-theme-1);
}
.toggle_list__item .toggle_list__item__title h3 a {
  color: #25273a;
  color: var(--color-theme-1);
  text-decoration: none;
}
.toggle_list__item .toggle_list__item__title::after {
  content: '+';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #cba25b;
  color: var(--color-text-gold);
}
.toggle_list__item .toggle_list__item__title.active::after {
  transform: translateY(-50%) rotate(45deg);
}
.toggle_list__item .toggle_list__item__desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
  transition:
    max-height 0.3s ease-out,
    opacity 0.2s ease-out,
    padding 0.3s ease-out;
}
.toggle_list__item .toggle_list__item__desc.active {
  max-height: 500px;
  opacity: 1;
}
.toggle_list__item .toggle_list__item__desc p {
  font-size: 16px;
  line-height: 22px;
  padding: 45px 0 0;
  margin-bottom: 10px;
  color: #000000;
  color: var(--color-black);
}
.locations_list {
  padding-top: 46px;
}
.contactus_block .container {
  max-width: 1010px;
  margin: 0 auto;
  padding: 85px 40px;
  background: #25273a;
  background: var(--color-theme-1);
}
.contactus_block h2 {
  color: #ffffff;
  color: var(--color-white);
}
.contactus_block p {
  color: #ffffff;
  color: var(--color-white);
}
.tabs_block {
  background: #ffffff;
  background: var(--color-white);
  padding: 50px 20px;
}
.tabs_block .tabs {
  margin: 0;
}
.case_study_iamge {
  max-width: 550px;
  margin: 0 auto;
  background: url(../_images/pattern-bg.png) center center no-repeat;
  background-size: cover;
}
.case_study_iamge img {
  padding: 20px;
}
.country_selected .case_study_iamge {
  background-image: url(../_images/pattern-bg-theme-2.png);
}
.case_study_slider {
  position: relative;
  overflow: visible;
  width: 100%;
}
.case_study_slider .track_container {
  overflow: hidden;
  width: 100%;
}
.case_study_slider .track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.case_study_slider .case_study_slider_item {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  padding: 0 0 60px;
}
.case_study_slider .case_study_slider_item.hidden {
  display: none;
}
.case_study_slider_controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: absolute;
  width: 100%;
  bottom: -145px;
}
.case-study-arrow {
  background: none;
  border: none;
  font-size: 24px;
  color: #cba25b;
  color: var(--color-text-gold);
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s;
}
.case-study-arrow:hover:not(:disabled) {
  color: #cba25b;
  color: var(--color-text-gold);
}
.case-study-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.case-study-pagination {
  display: flex;
  gap: 10px;
}
.case-study-pagination button {
  background: none;
  border: 1px solid #cba25b;
  border: 1px solid var(--color-text-gold);
  color: #25273a;
  color: var(--color-theme-1);
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-style: italic;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.case-study-pagination button:hover {
  background: #cba25b;
  background: var(--color-text-gold);
}
.case-study-pagination button.active {
  background: #cba25b;
  background: var(--color-text-gold);
  border-color: #cba25b;
  border-color: var(--color-text-gold);
}
.our_team .tabs {
  background: #ffffff;
  background: var(--color-white);
  margin-bottom: 54px;
  margin-left: 0;
  padding: 16px 20px;
  border-radius: 4px;
  display: inline-flex;
}
.our_team .tabs button {
  padding-bottom: 0;
}
.our_team .team-grid {
  position: static;
  overflow: visible;
}
.our_team .team-grid .track_container {
  position: static;
  overflow: visible;
}
.our_team .team-grid .track_container .track {
  width: 100%;
}
.our_team .team-grid .item {
  position: static;
  width: 100%;
  opacity: 1;
  transform: none !important;
  transition: opacity 0.3s ease;
  flex: 0 0 390px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.our_team .team-grid .item .meta {
  font-size: 12px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-style: italic;
}
.our_team .team-grid .item img {
  width: 100%;
  margin-bottom: 24px;
}
.our_team .team-grid .item h3 {
  margin: 0 0 12px 0;
  font-size: 21px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #25273a;
  color: var(--color-theme-1);
  text-transform: uppercase;
}
.our_team .team-grid .item h3 a {
  color: #25273a;
  color: var(--color-theme-1);
  text-decoration: none;
}
.our_team .team-grid .item h3 a:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.our_team .team-grid .item p {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 20px;
  color: #25273a;
  color: var(--color-theme-1);
  font-weight: 400;
  font-style: italic;
}
.our_team .team-grid .item.hidden {
  display: none;
}
.our_team .team-grid .item .profile-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #232323;
  text-decoration: none;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.our_team .team-grid .item .profile-link span {
  font-size: 22px;
  margin-left: 2px;
  transition: margin 0.2s;
}
.our_team .team-grid .item .profile-link:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.our_team .team-grid .item .profile-link:hover span {
  margin-left: 8px;
}
.insights_opinions .insights-grid .track_container {
  position: static;
  overflow: visible;
}
.insights_opinions .insights-grid .track {
  width: 100%;
}
.insights_opinions .insights-grid .item {
  position: static;
  width: 100%;
  opacity: 1;
  transform: none !important;
  transition: opacity 0.3s ease;
  flex: 0 0 390px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.insights_opinions .insights-grid .item h3 {
  font-size: 24px;
  line-height: 27px;
  margin: 0 0 12px 0;
  font-weight: 500;
  letter-spacing: 0;
  color: #25273a;
  color: var(--color-theme-1);
  text-transform: uppercase;
}
.insights_opinions .insights-grid .item p {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  font-weight: 400;
  height: 40px;
  overflow: hidden;
}
.insights_opinions .insights-grid .item .meta {
  font-size: 12px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-style: italic;
}
.insights_opinions .insights-grid .item img {
  width: 100%;
  /* max-height: 355px; */
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.insights_opinions .insights-grid .item .profile-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #232323;
  text-decoration: none;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.insights_opinions .insights-grid .item .profile-link:hover {
  color: #cba25b;
  color: var(--color-text-gold);
}
.insights_opinions .insights-grid .item .profile-link:hover span {
  margin-left: 8px;
}
.insights_opinions .insights-grid .item .profile-link span {
  font-size: 22px;
  margin-left: 2px;
  transition: margin 0.2s;
}
.insights_opinions .insights-grid .item .item_image {
  overflow: hidden;
}
.insights_opinions .insights-grid .item .item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.insights_opinions .insights-grid .item .item_content {
  padding: 24px;
}
.insights_opinions .insights-grid .item:hover {
  background-color: #25273a;
  background-color: var(--color-theme-1);
}
.insights_opinions .insights-grid .item:hover img {
  transform: scale(1.15);
}
.insights_opinions .insights-grid .item:hover h3 {
  color: #cba25b;
  color: var(--color-text-gold);
}
.insights_opinions .insights-grid .item:hover h3 a {
  color: #cba25b;
  color: var(--color-text-gold);
}
.insights_opinions .insights-grid .item:hover p,
.insights_opinions .insights-grid .item:hover .meta {
  color: #b0b1b7;
}
.insights_opinions .insights-grid .item:hover a.profile-link {
  color: #ffffff;
  color: var(--color-white);
}
.insights_opinions .case_study_slider_controls {
  bottom: -25px;
}
.filter_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
.filter_block .tabs {
  gap: 5px;
  margin-bottom: 0;
}
.filter_block .tabs button {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  /*text-transform: none;*/
  padding: 16px 20px;
  border-bottom: 5px solid transparent;
  transition: all 0.2s;
}
.filter_block .tabs button.active {
  color: #cba25b;
  color: var(--color-text-gold);
  /*border-bottom: 5px solid #cba25b;
  border-bottom: 5px solid var(--color-text-gold);*/
}
.filter_meta_row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.filter_results_count {
  font-size: 15px;
  color: #888;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.results-count {
  font-size: 15px;
  color: #888;
  text-transform: uppercase;
  font-weight: 400;
}
.results-label {
  margin-right: 4px;
}
.filter_sort_search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
.search_form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}
.search_field {
  display: flex;
  align-items: center;
  position: relative;
}
.search_icon_btn {
  background: none;
  border: none;
  padding: 0 8px 0 0;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  z-index: 3;
}
.search_input {
  width: 0;
  opacity: 0;
  border: none;
  border-bottom: 2px solid #cba25b;
  font-size: 18px;
  font-style: italic;
  background: transparent;
  outline: none;
  padding: 0 0 2px 0;
  margin-left: 8px;
  transition:
    width 0.4s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.3s;
  display: inline-block;
  color: #232323;
  font-family: inherit;
}
.search_form.active .search_input {
  width: 180px;
  opacity: 1;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sort_dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sort_label {
  font-size: 16px;
  color: #888;
  font-style: italic;
  font-weight: 400;
  margin-right: 2px;
}
.sort_select {
  font-size: 16px;
  color: #888;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #cba25b;
  font-weight: 400;
  padding: 2px 24px 2px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 160px;
  transition: border-color 0.2s;
}
.sort_select:focus {
  border-color: #b08a4a;
}
.sort_dropdown::after {
  content: '\25BC';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
}
.column_left__imgae {
  max-width: 550px;
  background: url(../_images/pattern-bg.png) center center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
.column_left__imgae img {
  padding: 30px;
}
.profile_info__block {
  padding: 25px 0;
  border-bottom: 1px solid #cba25b;
  border-bottom: 1px solid var(--color-text-gold);
}
.profile_info__block:last-child {
  border-bottom: none;
}
.profile_info__block:first-child {
  padding-top: 0;
}
.profile_info__block .profile_info__position p {
  font-size: 18px;
  line-height: 22px;
  color: #cba25b;
  color: var(--color-text-gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
.profile_info__block .profile_info__contact p {
  font-weight: 500;
}
.profile_info__block .profile_info__position p,
.profile_info__block .profile_info__name p,
.profile_info__block .profile_info__locations p,
.profile_info__block .profile_info__contact p {
  margin-bottom: 0;
}
.profile_info__block .profile_info__locations p,
.profile_info__block .profile_info__contact p {
  font-size: 14px;
  line-height: 20px;
  color: #25273a;
  color: var(--color-theme-1);
}
.article-page .media_wrapper .hero__content .hero__content__text h1 {
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
.article-page .media_wrapper .hero__content .hero__content__text h1 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 10px;
}
}

.article-page .back_to_insights a {
  color: #000000;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
}
.article-page .back_to_insights a i {
  margin-right: 15px;
  font-size: 12px;
  color: #25273a;
}
.article-page .navigate_article_container {
  padding-bottom: 40px;
}
.article-page .navigate_article_container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-page .navigate_article_container .navigate_article {
  margin-bottom: 0;
}
.article-page .navigate_article_container .navigate_article a {
  color: #000000;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.article-page .navigate_article_container .navigate_article a i {
  font-size: 12px;
  color: #25273a;
}
.article-page .navigate_article_container .navigate_article.previous a i {
  margin-right: 15px;
}
.article-page .navigate_article_container .navigate_article.next a i {
  margin-left: 15px;
}
.article-page .navigate_article_container .navigate_article.hide {
  display: block;
  visibility: hidden;
}
form#generic-form {
  display: flex;
  flex-wrap: wrap;
}
.contact_form_block .column_right {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
.contact_form_block .container {
  padding: 0;
}
.contact_form_block h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #ffffff;
  color: var(--color-white);
  letter-spacing: 2px;
}
.contact_form_block .contact_form_text > .vx_text p {
  color: #ffffff;
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 28px;
}
.contact_form_block .main-form.contact_form_fields {
  margin-top: 0;
}
.contact_form_block .main-form p {
  margin-bottom: 18px;
}
.contact_form_block .main-form label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.contact_form_block .main-form input,
.contact_form_block .main-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  background: #ffffff;
  background: var(--color-white);
  color: #000000;
  color: var(--color-black);
  margin-top: 2px;
  margin-bottom: 0;
  resize: none;
}
.contact_form_block .main-form input:focus,
.contact_form_block .main-form textarea:focus {
  outline: 2px solid #cba25b;
  outline: 2px solid var(--color-text-gold);
}
.single_line_text.hidden {
  display: none;
}
.single_line_text.half_width {
  width: calc(50% - 4px);
}
.offices_map_block {
  background: #f4f4f5;
  padding: 80px 0 80px 0;
}
.offices_map_block .container {
  max-width: 1200px;
}
.offices_map_wrapper {
  position: relative;
  min-height: 420px;
  margin-bottom: 20px;
}
.office-map {
  width: 100%;
  height: 820px;
  border: none;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
}
.office-map.active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.offices_cards_col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.offices_heading h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #25273a;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.offices_cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.office_card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    border 0.2s;
  border: 2px solid transparent;
}
.office_card.active,
.office_card:hover {
  border: 2px solid #cba25b;
  border: 2px solid var(--color-text-gold);
  box-shadow: 0 4px 24px rgba(203, 162, 91, 0.1);
}
.office_card_img {
  width: 97px;
  height: 137px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 14px;
}
.office_card_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.office_card_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.office_card_title h5 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: #25273a;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.office_card_address p,
.office_card_phone p {
  font-size: 14px;
  line-height: 15px;
  font-style: italic;
  margin-bottom: 15px;
}
.office_card_phone p {
  margin-bottom: 5px;
}
.contact_form_image {
    margin-bottom: 20px;
    margin-left: -7px;
    margin-right: -7px;
}
.article_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 30px;
}
.article_block h1,
.article_block h2,
.article_block h3,
.article_block h4,
.article_block h5,
.article_block h6 {
  color: #000000;
  color: var(--color-black);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.article_block h1 {
  font-size: 48px;
  line-height: 50px;
}
.article_block h2 {
  font-size: 32px;
  line-height: 36px;
}
.article_block h3 {
  font-size: 24px;
  line-height: 28px;
}
.article_block h4 {
  font-size: 20px;
  line-height: 24px;
}
.article_block h5 {
  font-size: 16px;
  line-height: 18px;
}
.article_block h6 {
  font-size: 14px;
  line-height: 16px;
}
.article_block p {
  color: #000000;
  color: var(--color-black);
}
.article_block p a {
  color: #000000;
  color: var(--color-black);
  text-decoration: underline;
}
.article_block--by .article_block__name {
  margin-bottom: 5px;
}
.article_block--by .article_block__name p {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 500;
  color: #cba25b;
  color: var(--color-text-gold);
  margin-bottom: 0;
}
.article_block--by .article_block__contact {
  margin-bottom: 30px;
}
.article_block--by .article_block__contact p {
  font-size: 14px;
  line-height: 15px;
  font-style: italic;
  margin-bottom: 5px;
}
.article_block--by .article_block__image {
  max-width: 120px;
}
.article_block--by .article_block__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.article_column__block {
  background: #ffffff;
  background: var(--color-white);
  padding: 32px 24px 24px 24px;
  margin-bottom: 40px;
}
.article_column__block h3 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #000000;
  color: var(--color-black);
  text-transform: uppercase;
}
.article_column__block h4 {
  letter-spacing: 1px;
  color: #cba25b;
  color: var(--color-text-gold);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.article_column__block p {
  line-height: 18px;
}
.about_author {
  background: #ffffff;
  background: var(--color-white);
  padding: 32px 24px 24px 24px;
  margin-bottom: 40px;
}
.about_author h4 {
  margin-bottom: 2px;
}
.about_author__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.about_author__image {
  width: 95px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_author__image img {
  -o-object-fit: cover;
  object-fit: cover;
}
.about_author__info {
  flex: 1;
}
.about_author__role {
  font-size: 15px;
  margin-bottom: 5px;
}
.about_author__location {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 0;
}
.about_author__phone,
.about_author__email {
  font-size: 14px;
  margin-bottom: 0;
}
.about_author__share {
  margin-top: 18px;
  margin-bottom: 0;
}
.about_author__share p {
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #232323;
  font-size: 18px;
  text-transform: uppercase;
}
.about_author__share .footer_social {
  gap: 18px;
  margin-bottom: 0;
}
.about_author__share .font-icon {
  color: #25273a;
  color: var(--color-theme-1);
}
.related_articles {
  margin-bottom: 40px;
}
.related_article_item {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #cba25b;
  border-bottom: 1px solid var(--color-text-gold);
}
.related_article_item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.related_article_item h5 {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  color: var(--color-black);
}
.related_article_item p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
.overview_info p {
  margin-bottom: 20px;
  font-size: 16px;
}
.overview_info p.label {
  color: #cba25b;
  color: var(--color-text-gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.overview_info p hr {
  border: none;
  border-top: 1px solid #cba25b;
  border-top: 1px solid var(--color-text-gold);
  margin: 18px 0;
}
.overview_info p .about_author__share {
  margin-top: 0;
  margin-bottom: 0;
}
.overview_info .default_button {
  margin-top: 24px;
}
.privacy .article_block h3 {
  font-size: 24px;
  line-height: 27px;
}
.privacy .article_block h4 {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.error_page {
  text-align: center;
}
.error_page .error_page__text h1 {
  font-size: 164px;
  line-height: 164px;
  letter-spacing: 10px;
  margin-bottom: 10px;
}
.error_page .error_page__text h1 strong {
  font-weight: 700;
}
.error_page .error_page__text h4 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 10px;
}
#insightsTotalRecords {
  display: none;
}
/* 5.0 Media Queries
   ========================================================================== */
@media (min-width: 600px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .container {
    padding: 0;
  }
  h1 {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: 6px;
  }
  h2 {
    font-size: 48px;
    line-height: 50px;
    letter-spacing: 4px;
  }
  .site-header {
    min-height: 117px;
  }

  .site-header .container {
    height: 96px;
    justify-content: center;
  }
  .main_menu,
  .header-logo {
    display: none;
  }
  .dynamic_menu {
    display: flex;
  }
  .mobile-nav-toggle {
    display: none;
  }
  .header-logo {
    width: 170px;
  }

  .hero .media_wrapper,
  .video_banner_block .media_wrapper {
    height: 752px;
  }

  .hero .media_wrapper .hero__content,
  .video_banner_block .media_wrapper .hero__content {
    bottom: 70px;
  }
  .hero .media_wrapper .hero__content .hero__content__text .hero_subtitle p,
  .video_banner_block
    .media_wrapper
    .hero__content
    .hero__content__text
    .hero_subtitle
    p {
    font-size: 18px;
    line-height: 22px;
  }

  .hero .default_button p,
  .video_banner_block .default_button p {
    text-align: left;
  }

  .hero .default_button p a,
  .video_banner_block .default_button p a {
    display: inline-block;
  }
  .home_blocks {
    padding: 112px 0;
  }

  .home_blocks.two_column_image_text {
    padding: 112px 0;
  }
  .home_blocks.two_column_image_text.no_tb_padding {
    padding: 0;
  }
  .section_header {
    margin-bottom: 40px;
  }
  .image_slider {
    margin: 0 auto 66px;
    width: 100%;
    max-width: 500px;
  }
  .image_slider .image_slider__item img {
    padding: 30px;
  }
  .two_column_image_text .column_right .paragraph_text {
    padding-left: 80px;
  }
  .area_item .area_item__text h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .home_blocks.has_button .default_button {
    position: absolute;
    top: 40px;
    right: 10px;
  }
  .testimonials_carousel__item {
    padding: 50px 100px;
  }
  .testimonials_carousel__item p {
    font-size: 24px;
    line-height: 32px;
  }
  .carousel.insights_carousel .item p {
    font-size: 18px;
    line-height: 24px;
  }
  .tabs {
    justify-content: left;
  }
  .usp_row_image_right .usp_text_col {
    order: 1;
  }
  .usp_row_image_right .usp_image_col {
    order: 2;
  }
  .usp_text_col p {
    font-size: 18px;
    line-height: 24px;
  }
  .banner_block img {
    height: auto;
  }
  .footer_logo img {
    width: 120px;
  }
  .footer_links_col {
    flex: 1 1 0;
  }
  .footer_section {
    text-align: left;
  }
  .footer_social {
    margin: inherit;
  }
  .hero_carousel .hero_carousel__item {
    display: block;
  }

  .hero_carousel .hero_carousel__item img {
    width: 100%;
  }
  .hero .media_wrapper .hero__content .hero__content__text {
    padding: 0;
  }
  .usp_block .usp_text {
    padding: 0 50px;
  }
  .our_team .team-grid .track_container .track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: static;
    transform: none !important;
  }
  .our_team .team-grid .item h3 {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0;
  }
  .insights_opinions .insights-grid .track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: static;
    transform: none !important;
  }
  .insights_opinions .insights-grid .item p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    height: 48px;
    overflow: hidden;
  }
  .insights_opinions .case_study_slider_controls {
    bottom: -60px;
  }
  .case_study_iamge img {
    padding: 30px;
  }
  .case_study_slider_controls {
    bottom: -192px;
  }
  .offices_cards_col {
    padding-left: 40px;
  }
  .contact_form_block .container {
    padding: 0 32px;
  }
  .case_study_slider .case_study_slider_item {
    padding: 112px 0;
  }
}
@media (min-width: 1200px) {
}
/* 5.0 VX Styles
   ========================================================================== */
.x-border-box img {
  width: auto;
}
.x-border-box .main_menu,
.x-border-box .header-logo {
  display: block !important;
}
.x-border-box .main_menu {
  position: relative;
  overflow: visible;
  top: 0;
  left: 0;
  height: auto;
}
.x-border-box .main_menu ul {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  flex-direction: unset;
}
.x-border-box .main_menu ul li ul {
  display: none;
}
.x-border-box .video-box img {
  width: auto;
}
.x-border-box .hero__overlay {
  display: none;
}
.x-border-box .image_slider {
  display: block;
  max-height: none;
}
.x-border-box .image_slider .image_slider__item {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.x-border-box .hero .media_wrapper {
  height: auto;
}
.x-border-box .hero_carousel {
  display: block;
  max-height: none;
}
.x-border-box .hero_carousel .hero_carousel__item {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.x-border-box .testimonials_carousel {
  display: block;
  max-height: none;
  height: auto;
}
.x-border-box .testimonials_carousel .testimonials_carousel__item {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.x-border-box .toggle_list__item .toggle_list__item__desc {
  opacity: 1;
  max-height: none;
}
#tinymce h1,
#tinymce h2,
#tinymce h3,
#tinymce h4,
#tinymce h5,
#tinymce h6,
#tinymce p,
#tinymce a {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  font-weight: 600;
  color: #000000;
  color: var(--color-black);
}
#tinymce p,
#tinymce a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
#_blocks .testimonials_carousel__item {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}
.search_button button {
  background: none;
  border: none;
  padding: 0 8px;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 24px;
  font-size: 18px;
  color: #030711;
  font-weight: 400;
}
.sort_label {
  display: inline;
  white-space: nowrap;
}
.sort_label {
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
  color: #ffffff;
  color: var(--color-text);
  margin-right: 1rem;
}
.loading {
  text-align: center;
  padding: 4rem 2rem;
  color: #ffffff;
  color: var(--color-text);
  font-size: 1.6rem;
}
.loading::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border: 2px solid var(--color-text);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.no-results,
.error {
  text-align: center;
  padding: 4rem 2rem;
  color: #ffffff;
  color: var(--color-text);
  font-size: 1.6rem;
}
.error {
  color: #ff4d4d;
  color: var(--color-accent);
}

/* 6.0 Custom Styles
   ========================================================================== */
.profile_info__locations H1 {
color: rgb(37, 39, 58) !important;
display: inline !important;
font-family: Gotham, Arial, sans-serif !important;
font-size: 14px !important;
font-style: italic !important;
line-height: 20px !important;
letter-spacing: 1px !important;
text-transform: none !important;
}
