/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* WP Style Overrides */

:root {
  --dark-blue: #0b2340;
  --light-green: #c1d82f;
  --black: #000;
  --gray: #464646;
  --light-gray: #a6a6a6;
  --white: #fff;
}

ul {
  margin-left: 0;
  list-style-position: inside;
}
ul {
  list-style-position: outside; /* Ensures the marker is outside the text boundary */
  padding-left: 20px; /* Adds some padding for clarity */
}

li {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
}
@media (max-width: 768px) {
  li {
    font-size: 16px;
  }
  .sub-menu-space .custom-menu-class li {
    margin-bottom: 0px !important;
  }
}

.wp-block-separator {
  border-top: 1px solid !important;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-cl {
  cursor: pointer;
}

blockquote {
  border: none;
  position: relative;
  padding-top: 40px;
  margin-top: 45px;
}

body.apply-container #page {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1360px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 80px;
}

.apply-container h1.entry-title{
  position:relative;
  display: inline-block;
  font-family: Barlow, sans-serif;
  font-size: 82px;
  line-height: auto;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  color: #464646;
}

.apply-container h1.entry-title:before {
      position: absolute;
  content: "";
  background: url("/wp-content/uploads/2024/12/green-line2.gif");
  left: 0;
  bottom: -55px;
  width: 100%;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}

.apply-container header.entry-header {
  margin-top: 120px;
  margin-bottom: 80px;
}

[data-custom-class="body"] {
  padding: 0px;
}

body.apply-container #page [data-testid="policy-loading-spinner"] {
  display: none;
}

blockquote::before {
  content: "";
  position: absolute;
  top: -10px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="92" viewBox="0 0 89 92" fill="none"><path opacity="0.8" d="M36.0606 92H0V67.6746C0 41.1661 7.42423 18.6079 22.2727 0H38.1818C27.1338 15.1774 20.726 31.7062 18.9583 49.5864H36.0606V92ZM86.0416 92H49.7158V67.6746C49.7158 41.478 57.0959 18.9198 71.856 0H88.1628C77.1148 15.5932 70.6186 32.122 68.6742 49.5864H86.0416V92Z" fill="%23C1D82F" class="quote-icon"></path></svg>');
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: 999;
  background-size: 65px;
  left: 0;
}

blockquote p {
  font-size: 18px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  font-style: normal;
  color: var(--gray) !important;
  margin-left: 63px !important;
  padding-top: 5px;
}

@media (max-width: 768px) {
  blockquote::before {
    top: 14px;
    width: 100px;
    background-size: 35px;
    height: 86px;
  }

  blockquote p {
    font-size: 18px;
    margin-left: 35px !important;
  }
  @media (max-width: 767px) {
    body.apply-container #page {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
}

.hide-author #author-section,
.hide-author .author-block {
  display: none !important;
}

.dynamic-entry-content #PageCaseStudy {
  display: none !important;
}


/* hide the button  */
.cityscape-btn {
  display: none;
}
/* Code end  */

/**
Button Global Style
*/

.vg-btn {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: transparent;
  padding: 12.5px 35px;
  border-radius: 10px;
  border: 1.5px solid var(--black);
  margin: 10px 0;
  text-transform: uppercase;
}

.vg-btn:hover {
  background: var(--dark-blue);
}
.vg-btn:hover > span.gb-button-text {
  color: var(--white);
}

.vg-btn > span.gb-button-text {
  margin-right: 15px;
  display: inline-block;
  color: var(--black);
  font-weight: 600;
}

.vg-btn:focus {
  /* Style for when the button is focused */
  outline: none; /* Remove the default outline */
  box-shadow: none; /* Add custom focus ring */
}

.vg-btn:focus-visible {
  /* Specific style for when focus is visible (i.e., keyboard navigation) */
  outline: none; /* Add an accessible outline for keyboard users */
  outline-offset: 0;
}

.vg-btn svg path {
  fill: var(--black);
}
.vg-btn:hover svg path {
  fill: var(--white);
}

/*Green Varient*/
.vg-btn.vg-btn-green {
  border-color: var(--light-green);
}

.vg-btn.vg-btn-green:hover {
  background: var(--light-green);
}

.vg-btn.vg-btn-green > span.gb-button-text {
  color: var(--light-green);
}

.vg-btn.vg-btn-green svg path {
  fill: var(--light-green);
}

.vg-btn:hover > span.gb-button-text {
  color: var(--white);
}

.vg-btn.vg-btn-green:hover svg path {
  fill: var(--white);
}

/* Blue varient*/
.vg-btn.vg-btn-blue {
  border-color: var(--dark-blue);
}

.vg-btn.vg-btn-blue:hover {
  background: var(--dark-blue);
}

.vg-btn.vg-btn-blue:focus {
  background: var(--dark-blue);
  color: var(--white);
}

.vg-btn.vg-btn-blue > span.gb-button-text {
  color: var(--dark-blue);
}

.vg-btn.vg-btn-blue svg path {
  fill: var(--dark-blue);
}
.vg-btn:focus > span.gb-button-text,
.vg-btn:hover > span.gb-button-text {
  color: var(--white);
}

.vg-btn.vg-btn-blue:hover svg path,
.vg-btn.vg-btn-blue:focus svg path {
  fill: var(--white);
}

.btn-blue-loader {
  border: 3px solid var(--white);
  border-top: 3px solid var(--dark-blue);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

/* CSS for NavBar */

#site-header {
  background: transparent;
  transition: all 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}

.single-acquired-knowledge #site-header,
.single-case-studies #site-header,
.single-press-release #site-header {
  position: static;
}

.header-search-img-wrapper {
  cursor: pointer;
}

.search-All-tab-btn.gb-block-is-current {
  display: none !important;
}

/* Header Model Styles */

div#modal-search {
  background: transparent;
  display: grid;
  place-items: center;
  place-content: center;
  border: none !important;
  position: initial !important;
}

div#modal-search button.fancybox-button.fancybox-close-small {
  background: #fff !important;
  border-radius: 23px;
  color: var(--dark-blue);
  position: absolute;
  top: 20px;
  right: 20px;
}

.search.search-results .header-search-img-wrapper {
  display: none !important;
}

.admin-bar #site-header {
  top: 32px;
}

span#heading-main {
  position: relative;
}

span#heading-main::after {
  position: absolute;
  content: "";
  background: url("/wp-content/uploads/2024/12/green-line2.gif");
  left: 0;
  bottom: -55px;
  width: 100%;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}

#site-header.show {
  background-color: #faf9f6;
  position: sticky;
  top: 0;
  z-index: 99991;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

div#site-header + p {
  display: none !important;
}

/* Styles for the custom desktop menu */
.vg-desktop-menu {
  padding: 10px;
  color: var(--light-gray);
}

.vg-desktop-menu span.wpml-ls-native {
  width: 21px;
  display: block;
  overflow: hidden;
  letter-spacing: 1px;
}

.vg-desktop-menu .wpml-ls-item {
  width: 60px;
}

.vg-desktop-menu li#menu-item-wpml-ls-19-en {
  border: 1px solid inherit;
  height: fit-content;
}

.vg-desktop-menu .wpml-ls-item {
  padding: 4px 10px !important;
}

.vg-desktop-menu .wpml-ls-item .submenu-toggle {
  display: none;
}

/* Drop down takes full width as content */
ul#desktop-menu .sub-menu {
  width: max-content;
  padding: 10px 20px;
  padding-top: 10px !important;
}

.vg-desktop-menu .wpml-ls-item .sub-menu li a {
  padding: 0px 10px !important;
  min-width: auto;
}

#desktop-menu .menu-lng {
  border: 1px solid;
  border-radius: 10px;
}

#desktop-menu .menu-lng .sub-menu {
  margin-top: 10px;
}

ul#desktop-menu {
  display: flex;
  gap: 10px;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

#menu-toggle svg rect {
  fill: var(--contrast-2);
}

@media (max-width: 1200px) {
  ul#desktop-menu {
    gap: 5px;
  }
}

.vg-desktop-menu ul.menu li {
  display: inline-block;
  margin-right: 0;
  margin-bottom: 0;
  position: relative;
}

/* Red */
.vg-desktop-menu ul.menu li a {
  color: var(--light-gray);
  font-size: 1rem;
  font-family: Barlow;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  align-items: center;
}

.vg-desktop-menu ul.menu li a svg {
  height: 12px;
}

.vg-desktop-menu ul.menu li ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  background-color: #faf9f6;
  padding: 20 !important;
  z-index: 999;
  border: 1px solid var(--light-gray) !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 6px 10px 0px #00000040;
}

.vg-desktop-menu .sub-menu li a {
  font-size: 14px;
  padding: 10px 5px !important;
}

ul#desktop-menu > li a.menu-active,
ul#desktop-menu > li:hover > a {
  color: var(--dark-blue) !important;
}

ul#desktop-menu > li a.menu-active svg path,
ul#desktop-menu > li:hover > a svg path {
  fill: var(--dark-blue);
}

#desktop-menu ul.sub-menu li a span {
  color: var(--light-gray) !important;
}

#desktop-menu .sub-menu li:hover a span {
  color: var(--dark-blue) !important;
}

.vg-desktop-menu .sub-menu li:hover > * {
  color: var(--light-gray) !important;
}

.vg-desktop-menu .sub-menu li:hover {
  background: var(--orange-hover);
}

.vg-desktop-menu ul.menu li ul li {
  display: block;
  padding: 0px;
}

.vg-desktop-menu ul.menu li ul li a {
  color: var(--white);
  text-decoration: none;
  padding: 5px 10px;
  font-size: var(--fs-base, 1rem);
}

.vg-desktop-menu ul.menu li:hover ul {
  display: block;
}

.vg-desktop-menu li.menu-item > a {
  color: var(--white);
  display: flex;
  gap: 2px;
  align-items: baseline;
}

@media (max-width: 1290px) {
  #desktop-menu {
    display: none !important;
  }

  #mbile-menu {
    display: flex !important;
  }

  #mobile-ln {
    display: flex !important;
  }

  #desktop-ln {
    display: none !important;
  }
}

@media (max-width: 1306px) and (min-width: 1291px) {
  ul#desktop-menu {
    display: flex;
    gap: 17px;
  }
}

@media (max-width: 1360px) {
  .vg-desktop-menu ul.menu li a {
    font-size: 14px;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

.gb-container-66c886ae {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  column-gap: 15px;
  position: relative;
}

/***** Mobile menu */

#mobile-menu {
  display: none;
  margin: 0;
  list-style: none;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf9f6;
  color: var(--light-gray);
  z-index: 999999;
  overflow-y: auto;
}

#mobile-menu .sub-menu {
  display: none;
}

#mobile-menu .has-children > a {
  position: relative;
}

#mobile-menu .sub-menu.show {
  display: block;
  margin: 0;
  list-style: none;
  padding: 10px 20px 0px;
}

.custom-mobile-menu #mobile-menu {
  display: none;
  list-style: none;
  padding: 40px;
}

.custom-mobile-menu #menu-toggle {
  display: block;

  background: #faf9f6;

  color: var(--light-gray);
  padding: 10px;
  border: none;
  cursor: pointer;
  left: 20%;
  position: relative;
}

.custom-mobile-menu #menu-toggle.active + #mobile-menu {
  display: block;
}

button#menu-close {
  color: #ffff;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
  background: var(--light-gray);
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}

button#menu-close:hover {
  border-color: var(--light-gray);
}

.custom-mobile-menu #mobile-menu li.menu-item > a.menu-active,
.custom-mobile-menu #mobile-menu li.menu-item > a:hover {
  color: var(--dark-blue) !important;
}

#mobile-menu li.menu-item {
  font-size: 20px;
  color: var(--light-gray) !important;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#mobile-menu li.menu-item a {
  text-decoration: none;
}

button#menu-toggle {
  background: transparent !important;
  padding: 0px 0px 5px 10px;
}

button#menu-toggle:hover,
button#menu-toggle:focus {
  background: transparent !important;
}

#mobile-menu li.menu-item > a {
  color: var(--light-gray);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

ul.sub-menu.show li {
  margin-bottom: 10px;
}

#mobile-menu li.menu-item > a span svg {
  width: 16px;
}

#mobile-menu li.menu-item > a span svg path {
  fill: var(--light-gray);
}

#mobile-menu li.menu-item > a.menu-atcive,
#mobile-menu li.menu-item > a:hover {
  color: var(--light-green) !important;
}

#mobile-menu a.active svg {
  transform: rotate(180deg);
}

span.submenu-toggle {
  height: 16px;
  display: flex;
  align-items: center;
  position: relative;
  top: 0px;
}
/* Hover effect for menu items */
#desktop-menu li a:hover span:not(.submenu-toggle)::after {
  content: "";
  display: block;
  opacity: 1;
  width: 100%;
  position: absolute;
  height: 2px;
  background-image: url("/wp-content/uploads/2024/11/Volaris-MainNav-hover.jpg");
  background-size: contain;
  background-position: center;
  margin-top: 5px;
  transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

/* Default state for menu items */
#desktop-menu li a span:not(.submenu-toggle)::after {
  content: "";
  display: block;
  opacity: 0;
  width: 100%;
  position: absolute;
  height: 2px;
  background-image: url("/wp-content/uploads/2024/11/Volaris-MainNav-hover.jpg");
  background-size: contain;
  background-position: center;
  margin-top: 5px;
  transition: opacity 0.3s ease-in-out; /* Smooth transition */
}
#desktop-menu li a span:not(.submenu-toggle) {
  position: relative; /* Makes span the positioning context for ::after */
}

/* Active state for current menu item */
#desktop-menu li.current-menu-item a span:not(.submenu-toggle)::after,
#desktop-menu li.current_page_item a span:not(.submenu-toggle)::after {
  content: "";
  display: block;
  opacity: 1; /* Ensure visibility */
  width: 100%;
  position: absolute;
  height: 2px;
  background-image: url("/wp-content/uploads/2024/11/Volaris-MainNav-active.jpg");
  background-size: contain;
  background-position: center;
  margin-top: 5px;
}

submenu-toggle body.menu-active {
  overflow: hidden;
}

@media (max-width: 1290px) {
  #mobile-menu li.menu-item > a {
    align-items: center !important;
  }
}

@media (max-width: 1087px) {
  .custom-mobile-menu #menu-toggle {
    display: block;
  }
}

/**** Hero Section ***/
@media (max-width: 1100px) and (min-width: 769px) {
  #home-hero {
    background-position: 100% 67px;
    background-size: 105% 54%;
  }
}
@media (max-width: 768px) {
  #home-hero {
    background-position: 79% 64px !important;
    background-size: 218% 71% !important;
  }
}

@media (max-width: 767px) {
  #home-hero {
    background-position: 79% -26px !important;
    background-size: 218% 71% !important;
  }
}

@media (max-width: 767px) and (min-width: 460px) {
  .vg-grid-bnt {
    flex-direction: row !important;
    padding: 30px 15px !important;
  }
}

/****Hero Section End ***/

/* Home Page Styles Start */

/* Container styling */
#acquisitions-container {
  padding: 100px 0px;
}
#acquisitions-container .header-counter h2 {
  color: var(--dark-blue);
}
#acquired-section .border p.vg-tab-title {
  font-size: 40px;
  font-weight: 500;
  text-transform: capitalize;
  color: #464646;
}

#acquired-section .border .vg-tab:hover .vg-tab-title {
  color: #fff;
}

@media (max-width: 768px) {
  #acquired-section .border p.vg-tab-title {
    font-size: 30px;
  }
}

.vl-Acquisition-Criteria-viewbtn
  a.vg-button.gb-button.gb-button-0a4a0f94.btn.custome-btn {
  justify-content: end;
  padding: 12.5px 35px;
  width: fit-content;
  border-radius: 10px;
}

.vl-Acquisition-Criteria-viewbtn {
  display: contents;
}

.vg-grid-bnt:hover .vl-Acquisition-Criteria-viewbtn .custome-btn {
  background-color: var(--dark-blue);
  color: #fff;
  transition: background-color 0.5s, color 0.3s; /* Smooth transition */
}

.vg-grid-bnt:hover .vl-Acquisition-Criteria-viewbtn .custome-btn span {
  color: #fff;
  fill: #fff;
}
.vg-grid-bnt:hover .vl-Acquisition-Criteria-viewbtn .gb-icon path {
  fill: #fff; /* Change icon color to white on hover */
}
.vl-Ultimate-Guide-downloadbtn
  a.vg-button.gb-button.gb-button-0a4a0f94.btn.custome-btn {
  justify-content: end;
  padding: 12.5px 35px;
  width: fit-content;
  border-radius: 10px;
}

.vl-Ultimate-Guide-downloadbtn {
  display: contents;
}

.vg-grid-bnt:hover .vl-Ultimate-Guide-downloadbtn .custome-btn {
  background-color: var(--dark-blue);
  color: #fff;
  transition: background-color 0.5s, color 0.3s; /* Smooth transition */
}

.vg-grid-bnt:hover .vl-Ultimate-Guide-downloadbtn .custome-btn span {
  color: #fff;
  fill: #fff;
}
.vg-grid-bnt:hover .vl-Ultimate-Guide-downloadbtn .gb-icon path {
  fill: #fff; /* Change icon color to white on hover */
}
/* Flexbox grid styling for numbers */
#acquisitions-container .grid-counter {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Wrapper for each number and its description */
#acquisitions-container .item-counter {
  flex: 1;
  position: relative;
}

/* Styling for number sections */
#acquisitions-container .content-counter {
  text-align: center;
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#acquisitions-container .mid-number-content {
  border-left: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
}

/* Number styling */
#acquisitions-container .number {
  font-family: Barlow, sans-serif;
  font-size: 100px;
  font-weight: 500;
  text-align: center;
  color: var(--base-3);
  position: relative;
  line-height: normal;
}

/* Plus sign styling */
#acquisitions-container .number::after {
  content: "+";
  font-size: 90px;
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Description styling */
#acquisitions-container .desc-counter {
  font-size: 22px;
  color: var(--light-green);
  padding-left: 45px;
  font-weight: 700;
}

#acquisitions-container .stat-divider {
  height: auto;
  width: 1px;
  background-color: var(--white);
}

.vidyard-player-container-wrapper {
  margin-bottom: 30px;
}

/* Responsive design */
@media (max-width: 1024px) {
  #acquisitions-container .grid-counter {
    flex-direction: row;
    gap: 0px;
  }

  #acquisitions-container .desc-counter {
    font-size: 16px;
  }

  #acquisitions-container {
    padding: 60px 0;
  }
  #acquisitions-container .number {
    text-align: center;
  }

  /* .mid-number-content {
        border: none;
    } */
}

@media (max-width: 768px) {
  #acquisitions-container .grid-counter {
    flex-direction: column;
    gap: 30px;
  }
  #acquisitions-container .number {
    font-size: 72px;
    line-height: 76px;
    text-align: center;
  }

  #acquisitions-container .stat-divider {
    height: 1px;
    width: 100%;
    background-color: #d2d2d2;
  }

  #acquisitions-container .number::after {
    content: "+";
    font-size: 36px;
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  #acquisitions-container .desc-counter {
    font-size: 18px;
    color: var(--light-green);
    padding-left: 0px;
  }

  #acquisitions-container .content-counter {
    text-align: center;
    padding: 10px;
    gap: 10px !important;
  }

  .vidyard-player-container-wrapper {
    margin-bottom: 30px;
  }
  .vl-Ultimate-Guide-downloadbtn
    a.vg-button.gb-button.gb-button-0a4a0f94.btn.custome-btn {
    padding: 12.5px 15px;
  }
}

/* Home Page Styles Ends */

/**** Footer Section ***/

.page-id-205 .footer-form-section,
.page-id-205 .footer-divider,
.page-id-22527 .footer-form-section,
.page-id-22527 .footer-divider,
.page-id-22528 .footer-form-section,
.page-id-22528 .footer-divider,
.page-id-22530 .footer-form-section,
.page-id-22530 .footer-divider,
.page-id-22529 .footer-form-section,
.page-id-22529 .footer-divider,
.page-id-22531 .footer-form-section,
.page-id-22531 .footer-divider {
  display: none;
}

h5.gb-headline.sub-to-news-letter {
  color: #fff !important;
  cursor: pointer;
}

h5.sub-to-news-letter:hover {
  color: var(--light-green) !important;
}

.vg-tellme-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5em;
  height: 50px;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 25px 50px;
  border-radius: 10px;
  border: 1px solid var(--light-green);
  background-color: rgba(255, 255, 255, 0);
  color: var(--light-green);
  text-decoration: none;
  text-transform: uppercase;
}

/* .gb-icon {
  margin-top: 5px;
} */

.vg-tellme-btn:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.vg-tellme-btn:hover svg path {
  fill: var(--white);
}

a.gb-button.gb-button-0a4a0f94.btn.vg-tellme-btn span.gb-icon {
  margin-top: 5px;
}

.lets-paragraph {
  margin-bottom: 40px;
  font-size: 25px !important;
  text-align: center;
}

@media (max-width: 600px) {
  .lets-paragraph {
    font-size: 20px !important;
    text-align: center;
  }
}

/* Style for the newsletter container */
.newsletter-form {
  position: relative;
  display: flex;
  column-gap: 10px;
  padding-bottom: 14px;
}

/* Style for the email input field */
.wpcf7 input[type="email"] {
  width: 100%;
  padding: 10px 40px;
  border-radius: 11px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-right: 10px;
}

/* Style for the submit button */
.wpcf7 input[type="submit"] {
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 11px;
  border: 1px solid var(--light-green);
  background-color: rgba(255, 255, 255, 0);
  color: var(--light-green);
  max-width: 155px;
  width: 100%;
  padding: 8px 53px 8px 27px;
  text-decoration: none;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.signup-arrow {
  position: absolute;
  right: 35px;
  top: 32%;
  transform: translateY(-50%);
  width: 18px;
  height: 12px;
  transition: all 0.3s ease;
}

.click-btn:hover svg path {
  fill: var(--white);
}

.wpcf7 input[type="submit"]:hover svg.signup-arrow path {
  fill: var(--white);
}

/* Style for the checkbox and label */
.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

span.wpcf7-list-item.first.last label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  width: 100%;
  margin-top: 25px;
}

input[type="checkbox"] {
  margin-top: 6px;
}

.wpcf7-list-item-label {
  text-transform: capitalize !important;
  font-weight: 400 !important;
  text-align: justify !important;
}

.newsletter-form .wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  position: relative;
}

.spacer-footer {
  height: 18px !important;
  width: 0;
  border-right: 1px solid var(--light-gray);
}

/* Ensures the form is responsive */
/*@media (max-width: 600px) {
  .wpcf7 input[type="email"] {
      width: 100%;
      margin-bottom: 10px;
  }
  .wpcf7 input[type="submit"] {
      width: 100%;
  }
}


/***Subscribe End **/

ul.custom-menu-class {
  display: flex;
  flex-direction: row;
  gap: 121px;
  list-style: none;
  margin: 0 !important;
  text-align: center;
}

ul.custom-menu-class li {
  display: inline-block;
  margin: 0px;
  padding: 0px 5px;
  vertical-align: top;
  /* padding-right: 40px !important; */
}

ul.custom-menu-class li a {
  color: var(--white) !important;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 16px !important;
  cursor: pointer;
}

.custom-menu-class li a:hover {
  color: var(--light-green) !important;
}

.sub-menu li {
  display: list-item !important;
  list-style: none;
  margin: 0 !important;
}

ul.sub-menu li a {
  color: #dfdfdf !important;
  font-family: "Barlow";
  font-style: normal;
  font-size: 16px !important;
  font-family: Barlow;
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: normal !important;
}

@media (max-width: 1290px) {
  ul.sub-menu li a {
    line-height: 2.5 !important;
    color: #a8a8b0 !important;
  }
}

ul.sub-menu {
  margin: 0;
  padding-top: 10px !important;
}

@media (max-width: 500px) {
  ul.custom-menu-class {
    text-align: left !important;
  }

  .signup-arrow {
    right: 38px !important;
  }
}

.navigation-item .wp-block-navigation-item__content {
  border-bottom: 1px solid var(--dark-blue);
  font-weight: normal;
}
.navigation-item .wp-block-navigation-item__content:hover {
  border-bottom: 1px solid var(--light-green);
}
.navigation-item span.wp-block-navigation-item__label {
  color: var(--light-gray);
}

/***End Footer ***/

/** Hero Section**/
.hero-subtitle {
  font-size: 25px !important;
  color: var(--text, var(--gray)) !important;
  font-style: normal;
  font-weight: 400 !important;
  padding-top: 9px !important;
}

@media (max-width: 512px) {
  .hero-subtitle {
    font-size: 20px !important;
    padding-right: 13px !important;
  }

  .is-style-default {
    width: 91% !important;
  }

  .all_acquisitions_tab h2 {
    font-size: 20px;
    color: var(--dark-blue);
  }
}

@media (max-width: 512px) and (min-width: 383px) {
  h2.gb-headline-047fef2b {
    font-size: 45px !important;
  }

  .is-style-default {
    width: 80% !important;
  }
}
@media (max-width: 382px) {
  h2.gb-headline-047fef2b {
    font-size: 36px !important;
  }
}

@media (max-width: 327px) {
  .is-style-default {
    width: 100% !important;
  }
}

.custome-btn span {
  text-decoration: none !important;
  color: var(--dark-blue);
  /* font-weight: 600; */
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.custome-btn span.gb-icon path {
  fill: var(--dark-blue);
}

.custome-btn span.gb-icon {
  padding-left: 5px;
}

a.gb-button.gb-button-0a4a0f94.btn.custome-btn {
  text-decoration: none;
}

/*** End Hero Section **/

/*** Footer Responsive css**/
@media (max-width: 700px) {
  ul.custom-menu-class {
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
.site-footer ul {
  padding-left: 0px;
}
.btn-acquition {
  font-size: 23px;
  color: var(--gray);
  font-weight: 700;
  font-family: "Barlow";
  margin: 0 !important;
}

/**** Social Media Button ***/
.gb-container.gb-container-0d8ddf94.social-in:hover svg path {
  fill: #0a66c2;
}

.gb-container.gb-container-393c54fd.social-youtube:hover svg path {
  fill: #ff0000;
}

.gb-container.gb-container-e1ebea48.social-x:hover svg path {
  fill: var(--black);
}

/*** Social Css End ***/

/** Responsive Css ***/

@media (max-width: 700px) {
  .click-btn {
    padding-bottom: 11px;
    margin-top: 20px;
  }
}

@media (max-width: 700px) and (min-width: 625px) {
  .signup-arrow {
    left: 18%;
    top: 63%;
  }
}

@media (max-width: 624px) and (min-width: 590px) {
  .signup-arrow {
    left: 19%;
    top: 63%;
  }
}

@media (max-width: 589px) and (min-width: 550px) {
  .signup-arrow {
    left: 21%;
    top: 63%;
  }
}

@media (max-width: 549px) and (min-width: 470px) {
  .signup-arrow {
    left: 25%;
    top: 63%;
  }
}

@media (max-width: 469px) and (min-width: 412px) {
  .signup-arrow {
    left: 30%;
    top: 63%;
  }
}

@media (max-width: 411px) and (min-width: 390px) {
  .signup-arrow {
    left: 31%;
    top: 63%;
  }
}

@media (max-width: 389px) and (min-width: 359px) {
  .signup-arrow {
    left: 35%;
    top: 63%;
  }
}

@media (max-width: 358px) and (min-width: 330px) {
  .signup-arrow {
    left: 40%;
    top: 63%;
  }
}

@media (max-width: 329px) and (min-width: 300px) {
  .signup-arrow {
    left: 42%;
    top: 63%;
  }
}

@media (max-width: 1023px) {
  .custome-btn span {
    font-size: 14px !important;
  }
  .btn-acquition {
    font-size: 18px !important;
  }
}
@media (min-width: 767px) {
  .vg-grid-bnt {
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  .is-style-default {
    width: 43%;
  }
}
@media (max-width: 767px) and (min-width: 375px) {
  .vg-grid-bnt {
    height: 100% !important;
  }
}
@media (max-width: 1339px) and (min-width: 1196px) {
  .vg-footer-menu-subscribe {
    column-gap: 80px !important;
  }

  ul.custom-menu-class {
    gap: 49px !important;
  }
}

@media (max-width: 1195px) {
  .vg-footer-menu-subscribe {
    column-gap: 30px !important;
  }

  ul.custom-menu-class {
    gap: 45px !important;
  }
}

@media (max-width: 1176px) and (min-width: 1010px) {
  .vg-footer-menu-subscribe {
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between !important;
    row-gap: 30px !important;
  }

  #vg-news-subscribe {
    width: 360px;
  }

  ul.custom-menu-class {
    gap: 120px !important;
  }

  .signup-arrow {
    right: 30px;
  }

  #footer-middle-content {
    padding-top: 40px;
    margin-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1084px) and (min-width: 1010px) {
  ul.custom-menu-class {
    gap: 45px !important;
  }
}

@media (max-width: 949px) {
  /* .gb-container.gb-container-d96081c4.vg-footer-menu-subscribe {
      flex-direction: column;
  } */

  #vg-news-subscribe {
    max-width: 260px;
  }

  h5.gb-headline-5503e567 {
    font-size: 16px !important;
  }
}
/* @media (max-width: 991px) {
  #acquired-section-hr {
    display: none;
  }
} */
@media (max-width: 900px) and (min-width: 862px) {
  #vg-news-subscribe {
    max-width: 260px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 22px;
  }

  .wpcf7 input[type="submit"] {
    max-width: 400px;
    width: 100%;
  }

  .signup-arrow {
    position: absolute;
    right: 113px;
    top: 69%;
  }
}

@media (max-width: 861px) and (min-width: 807px) {
  .signup-arrow {
    right: 87px !important;
    top: 69%;
  }
}

@media (max-width: 861px) {
  #vg-news-subscribe {
    max-width: 196px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 22px;
  }

  .wpcf7 input[type="submit"] {
    max-width: 450px;
    width: 100%;
  }

  .signup-arrow {
    position: absolute;
    right: 113px;
    top: 69%;
  }
}

@media (max-width: 806px) and (min-width: 300px) {
  .vg-footer-menu-subscribe {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px;
  }

  .vg-quick-menu {
    position: relative;
    margin: auto;
  }

  ul.custom-menu-class {
    display: flex;
    flex-direction: column;
    gap: 46px !important;
  }

  ul.custom-menu-class li {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
  }

  ul.sub-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #vg-news-subscribe {
    position: relative;
    margin: auto;
    max-width: 450px;
    justify-content: center !important;
  }

  .signup-arrow {
    right: 0;
    left: 247px;
    top: 68%;
  }

  .wpcf7 input[type="email"]::placeholder {
    text-align: center;
  }
}

@media (max-width: 530px) {
  .signup-arrow {
    /* right: 10px; */
    left: 58% !important;
    top: 68%;
  }
}

@media (max-width: 590px) {
  .is-layout-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .spacer-footer {
    display: none;
  }

  #lng-switcher {
    bottom: 0;
    top: 8px;
  }
}

/*** Customize Fancybox Modal ***/
a.gb-button.gb-button-0a4a0f94.btn.vg-tellme-btn span.gb-icon svg {
  /* margin-top: 7px; */
  width: 13px;
  height: 13px;
}

.vg-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.vg-button .gb-icon {
  margin-top: 5px;
}

.fancybox-is-open .fancybox-bg {
  background: var(--dark-blue) !important;
}

.model-popup-wrapper button.fancybox-button.fancybox-close-small {
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background: var(--dark-blue);
}

.model-popup-wrapper button.fancybox-button.fancybox-close-small svg path {
  fill: var(--white);
}

.modal-inner-section.custom_model_style {
  min-height: 500px;
  width: 100%;
  border-radius: 5px;
  padding: 20px;
}

.fancybox-content {
  border: 2px solid var(--dark-blue);
  border-radius: 18px;
}

.modal-inner-section.custom_model_style {
  color: var(--dark-blue);
}

.modal-inner-section.custom_model_style h4 {
  text-align: center;
}

@media (max-width: 885px) {
  .fancybox-content {
    padding: 25px;
  }
}

@media (min-width: 768px) {
  div#modal-popup,
  div#fancy-modal-popup {
    min-width: 660px;
    width: 50%;
  }
}

@media (min-width: 1030px) {
  div#fancy-modal-popup {
    min-width: 565px;
  }
}

@media (max-width: 1029px) {
  div#fancy-modal-popup {
    min-width: 415px !important;
  }
}

@media (max-width: 767.9px) {
  .fancybox-content {
    width: 100%;
    padding: 15px;
  }

  div#fancy-modal-popup .fancybox-content {
    width: 365px !important;
  }
}

@media (max-width: 346px) {
  div#fancy-modal-popup {
    min-width: 295px !important;
  }
}

/*** Custome fancybox css End ****/

/**** Custome Counter Css ***/
.acquisitions-header.header-counter {
  display: none;
}

/****Counter css end ***/

/**** Tab Section Css ***/

.gb-block-is-current {
  color: var(--vg-blue);
  border-color: var(--vg-blue);
}

@media (max-width: 1060px) {
  #acquired-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  #vg-acquired-subtitle {
    width: 100% !important;
  }
}

#vg-acquired-title {
  text-transform: capitalize;
  font-family: "Barlow";
  font-weight: 500;
  color: var(--gray);
}

#vg-acquired-subtitle {
  text-transform: capitalize;
  font-family: "Barlow";
  font-weight: 400;
  /* font-size: 20px; */
  font-style: normal;
  font-weight: 500;
  color: var(--gray);
  width: 70%;
}

/*** Tab Section End ***/
#lang {
  right: 3%;
  top: 7px;
}

#lng-switcher {
  /* border: 1px solid;
  border-radius: 8px; */
  color: var(--light-gray);
  position: relative;
  left: 15px;
  bottom: 2px;
}

#lng-switcher span.wp-block-navigation-item__label.hasTextTransform {
  padding: 10px 0;
  margin-left: 0;
  margin-right: 0px;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  color: var(--light-gray) !important;
  font-weight: 500;
}

span.current-language-item {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}
[data-wpml="language-item"]:first-of-type {
  margin-top: 0px !important;
}

.wpml-language-switcher-block
  ul.wp-block-navigation__submenu-container
  .wp-block-navigation-item {
  border-radius: 0 !important;
  padding: 0px 5px;
}

ul.wp-block-navigation__submenu-container.isHorizontal {
  border: 1px solid !important;
  /* border-radius: 10px; */
  background: var(--white) !important;
}

ul.wp-block-navigation__submenu-container.isVertical {
  border: 1px solid !important;
  border-radius: 7.5px !important;
  margin-top: 0;
  background: #faf9f6 !important;
  width: 100% !important;
  border: 1px solid var(--light-gray) !important;
  box-shadow: 0px 6px 10px 0px #00000040;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  align-items: normal;
  background-color: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  transition: opacity 0.1s linear;
  visibility: hidden;
  width: 0;
  z-index: 2;
  overflow: hidden !important;
}

.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle {
  padding-bottom: 5px;
}

.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle:hover {
  background: transparent !important;
}
/* #lng-switcher span.current-language-item:hover,
.wpml-language-switcher-block
  ul.wp-block-navigation__submenu-container
  .wp-block-navigation-item:hover {
  background: var(--dark-blue);
  border-radius: 7px;
} */

#lng-switcher
  .wpml-ls-dropdown.open-on-click.hide-arrow:hover
  span.wp-block-navigation-item__label.hasTextTransform {
  color: var(--white);
}

/* #lng-switcher .wpml-ls-dropdown.open-on-hover-click.hide-arrow:hover {
  background: var(--dark-blue);
  border-radius: 7px;
} */

#lng-switcher
  .wpml-ls-dropdown.open-on-hover-click.hide-arrow:hover
  span.wp-block-navigation-item__label.hasTextTransform {
  color: var(--white);
}

#lng-switcher .current-language-item {
  display: flex;
  align-items: center;
  min-height: 30px;
  justify-content: center !important;
  min-width: 130px !important;
}

#lng-switcher ul.wp-block-navigation__submenu-container.isVertical {
  padding: 10px 20px !important;
  min-width: 100% !important;
  width: 160px !important;
  position: absolute;
  left: -30px;
}

@media (max-width: 400px) {
  #lng-switcher .current-language-item {
    min-width: 110px !important;
  }
}

/***End Tab Section**/

/* Landing page new css */
.economist-image-hover {
  display: none;
  transition: opacity 0.3s ease;
}

.economist-container:hover .economist-image-original {
  display: none;
  transition: opacity 0.3s ease;
}

.economist-container:hover .economist-image-hover {
  display: block;
  transition: opacity 0.3s ease;
}

.maclean-image-hover {
  display: none;
  transition: opacity 0.3s ease;
}
.maclean-container:hover .maclean-image-origin {
  display: none;
  transition: opacity 0.3s ease;
}

.maclean-container:hover .maclean-image-hover {
  display: block;
  transition: opacity 0.3s ease;
}

.newsweek-image-hover {
  display: none;
  transition: opacity 0.3s ease;
}
.newsweek-container:hover .newsweek-image-origin {
  display: none;
  transition: opacity 0.3s ease;
}

.newsweek-container:hover .newsweek-image-hover {
  display: block;
  transition: opacity 0.3s ease;
}

.vg-yellow-underline {
  position: relative;
  top: -167px;
  width: 100%;
  max-width: 45%;
}

/****News List Css ***/
.news-img {
  max-width: 400px;
}

/**** News List End ***/

@media (min-width: 1025px) {
  .vg-news-list::after {
    content: "";
    position: absolute;
    top: 0;
    right: -31px;
    height: 100%;
    width: 1px;
    background: rgb(166, 166, 166);
  }
}

@media (max-width: 1024px) {
  .vg-news-list::after {
    content: "";
    position: absolute;
    top: 114%;
    right: 0;
    height: 1px;
    width: 100%;
    background: rgb(166, 166, 166);
  }
}

@media (max-width: 675px) {
  .vg-news-list::after {
    top: 123%;
  }
}

@media (max-width: 340px) {
  .vg-news-list::after {
    top: 110%;
  }
}

@media (max-width: 768px) {
  #hero-section {
    background-position: 100% -136px !important;
    background-size: 171% 101% !important;
  }

  .download-form {
    display: grid !important;
  }

  .testinomial-para {
    font-size: 16px !important;
  }
  .vg-quote-icon svg {
    width: 20px;
  }

  .slick-dots {
    width: auto !important;
  }
}
@media (max-width: 675px) {
  .news-img {
    max-width: 160px !important;
  }
}

/***Footer Section ***/

.vg-btns {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5em;
  height: 50px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 25px 50px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.vg-btns-color {
  --color: var(--light-green);
  border: 1px solid var(--color);
  color: var(--color) !important;
}

.vg-btn-hover:hover {
  background-color: var(--light-green);
  color: var(--white) !important;
}

.vg-btn-hover:hover svg path {
  fill: var(--white);
}

.btn-width-250 {
  max-width: 250px !important;
}

/***Footer Section End **/

/*** Download Form Section **/

.download-form p label {
  display: block;
  margin-bottom: 10px;
}

.download-form p label input[type="text"],
.download-form p label input[type="email"] {
  width: 100%;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-size: 16px;
  margin: 10px 0;
}

.download-form p label input[type="email"]::placeholder {
  text-align: left;
}

.download-form p .arrow-button {
  width: 100%;
  max-width: 250px;
  padding: 12px 20px;
  background-color: #14213d;
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "Barlow";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  height: 50px;
}

.arrow {
  top: 3px;
  position: relative;
}

.download-form.wpcf7-list-item.first.last label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  width: 100%;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .download-form p .arrow-button {
    max-width: 100% !important;
  }
}

@media (max-width: 1024px) {
  #news-section .first-grid {
    margin-top: 0;
    border: none;
  }
}

/**** End Landing Page Css


/***
Post Grid Styles Start
*/

.d-none {
  display: none !important;
}

.vg-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 0px 30px;
  text-decoration: none;
}

.vg-grid-item-outer {
  position: relative;
}

/* .vg-grid-item {
  box-sizing: border-box;
  height: 500px;
  width: 100%;
  background-size: cover !important;
  position: relative;
  text-decoration: none;
  display: block;
  background-size: 100% !important;
  transition: background-size 1s ease-in-out;
}

.vg-grid-item:hover {
  background-size: 180% !important;
} */

.vg-grid-item {
  position: relative;
  height: 500px;
  width: 100%;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.vg-grid-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vg-grid-item:hover .vg-grid-item-bg {
  transform: scale(1.1);
}

.vg-grid-container .h-line {
  grid-column: span 3;
  margin: 15px 0px;
}

.h-line hr {
  background-color: #1a1a1a !important;
}

.vg-item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  height: 100%;
}

.vg-grid-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

.vg-item-type {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 5px;
  margin: 20px;
  font-family: inherit;
  cursor: pointer;
  border-color: var(--dark-blue);
  background-color: var(--dark-blue);
  color: var(--white);
  width: fit-content;
  cursor: pointer;
  text-transform: uppercase;
}

.vg-grid-item.vg-main-next .vg-item-type {
  border: 1px solid var(--white) !important;
}

.vg-item-content-inner {
  padding: 25px 35px 25px 35px;
  color: var(--white);
}

.vg-item-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  text-transform: capitalize;
  line-height: 24px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .vg-item-title {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .vg-item-title {
    line-height: 30px;
    font-size: 24px;
  }
}

.vg-main-next {
  grid-column: span 1;
  grid-row: span 2;
}

.vg-main-news img {
  height: 400px;
}

/* Insights with a different color background */
.vg-insights {
  background-color: #1a2b3c;
  color: var(--white);
  grid-column: span 1;
  /* Ensure it spans one column */
  grid-row: span 1;
  /* Spanning only one row */
}

/* Force the next image to be stacked vertically with INSIGHTS */
.vg-stack-next {
  grid-column: span 1;
  grid-row: span 1;
}

/* Icon placeholder for items without images */
.vg-icon-placeholder {
  background-color: #ddd;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
}

.load-more-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.vg-tab-btn {
  padding: 20px;
  width: 150px;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  position: relative;
  border: 0px solid transparent;
}

.vg-tab-btn:hover {
  background: transparent;
  color: var(--vg-blue);
}

.vg-tab-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0px;
  left: 0;
  top: 0px;
  border-top: 1px solid var(--light-gray);
}

.vg-tab-btn.gb-block-is-current::before,
.vg-tab-btn:hover::before {
  border-color: var(--vg-blue);
}

.vg-tab-btn.clear-filter {
  display: none;
}

.vg-tab-btn.clear-filter.active {
  display: block;
}

@media (max-width: 885px) {
  .vg-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .vg-grid-item-outer :not(:nth-last-child(-n + 2))::after {
    right: -26px;
  }

  .vg-item-content-inner {
    padding: 15px 20px 15px 20px;
    color: var(--white);
  }

  .vg-item-type {
    margin: 10px;
  }

  .vg-main-next {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 885px) and (min-width: 601px) {
  .vg-grid-item-outer:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .vg-grid-item-outer:nth-last-child(-n + 2)::after {
    right: 0 !important;
  }
}

@media (max-width: 1140px) {
  .vg-grid-container {
    gap: 40px;
  }
}

@media (max-width: 550px) {
  .vg-grid-main-container {
    margin: 10px 0;
  }

  .vg-grid-container.first-grid {
    padding-top: 10px;
  }

  .vg-grid-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px 0;
    margin-top: 0;
    border-top: none !important;
  }
}

@media (max-width: 500px) {
  .vg-grid-item {
    height: 375px;
  }
}

@media (max-width: 992px) {
  .vg-grid-container .h-line {
    display: none !important;
  }
}

@media (min-width: 675px) and (max-width: 991.9px) {
  .vg-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 40px;
    padding-top: 10px;
    /* margin-top: 46px; */
    text-decoration: none;
  }

  .vg-grid-item-outer.vg-main-news,
  .vg-grid-item-outer,
  .vg-grid-item-outer.vg-grid-side-bar {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 674.9px) {
  .vg-grid-item-outer:not(:nth-last-child(-n + 2))::after {
    right: 0;
  }

  .vg-grid-item-outer::after {
    content: "";
    position: absolute;
    top: calc(100% + 30px);
    height: 1px;
    width: 100%;
    background: #1a1a1a;
  }

  .last-grid.vg-grid-item-outer:last-child::after {
    content: "";
    position: absolute;
    top: 110%;
    height: 1px;
    width: 100%;
    background: #faf9f6;
  }
  #acquired-section-hr {
    display: none;
  }
}

@media (min-width: 675px) and (max-width: 992px) {
  .vg-grid-item-outer:not(:nth-last-child(-n + 2))::after {
    right: 0;
  }

  .vg-grid-item-outer:not(:nth-last-child(-n + 2))::after {
    content: "";
    position: absolute;
    top: calc(100% + 20px);
    height: 1px;
    width: 100%;
    background: #1a1a1a;
  }

  .last-grid.vg-grid-item-outer:last-child::after {
    content: "";
    position: absolute;
    top: 110%;
    height: 1px;
    width: 100%;
    background: #1a1a1a;
  }
}

@media (min-width: 992px) {
  .vg-grid-item-outer:not(.vg-grid-side-bar)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
    width: 1px;
    background: #1a1a1a;
  }

  .vg-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px !important;
  }

  /* Main news item that spans 2 columns and 2 rows */
  .vg-main-news {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 1280px) {
  .vg-grid-item-outer:not(.vg-grid-side-bar)::after {
    right: -40px;
  }

  .vg-grid-container {
    gap: 0 80px !important;
  }
}

/* Loader spinner inside the button */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn-text {
  display: inline-block;
}

/**
/* Single Post Page Style Start
*/

/* Reset old styles start */
.dynamic-entry-content h2 {
  font-family: "Barlow";
  font-weight: 500;
  font-size: 44px;
}

.dynamic-entry-content h3,
.dynamic-entry-content h4 {
  font-family: "Barlow";
  font-weight: 500;
  font-size: 38px;
}

.dynamic-entry-content ol,
.dynamic-entry-content ul {
  margin-top: 25px;
  margin-bottom: 45px;
  margin-left: 45px;
}

.dynamic-entry-content ul {
  margin-left: 30px;
}

.dynamic-entry-content ul li::marker {
  color: #000 !important;
}

.dynamic-entry-content ul li {
  position: relative;
}

/* .dynamic-entry-content ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -27px;
  width: 12px;
  height: 12px;
  background: black;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
} */

.dynamic-entry-content ul li::before{
  display: none;
}


@media (max-width: 768px) {
  .dynamic-entry-content ul li::before {
    top: 7px;
    left: -27px;
    width: 8px;
    height: 8px;
  }
}

.dynamic-entry-content h5 {
  font-family: "Barlow";
  font-weight: 500;
  font-size: 32px;
}

.dynamic-entry-content img {
  margin-top: 40px;
  margin-bottom: 10px;
}

.dynamic-entry-content img + em {
  margin-bottom: 40px !important;
  display: block;
}

.dynamic-entry-content p {
  margin-bottom: 25px;
}
/* Reset old styles ends */

h1#ak-post-heading {
  font-size: 64px;
}

@media (max-width: 768px) {
  h1#ak-post-heading {
    font-size: 36px;
  }

  .dynamic-entry-content ol {
    margin-left: 10px;
  }
}

@media (min-width: 1080px) {
  h1#ak-post-heading {
    font-size: clamp(
      2.5rem,
      2vw + 2rem,
      100px
    ); /* Adjusted for screens <= 1080px */
  }
}

.comments-area {
  display: none;
}

/* .single
  .vg-boxed-content
  #dynamic-content-block
  .dynamic-entry-content
  > p:first-child:not(blockquote p)::first-letter {
  font-size: 3em; 
  font-weight: 500;
  line-height: 1;
} */

.first-tag:not(blockquote p)::first-letter {
  font-size: 110px;
  font-weight: 500;
  line-height: 84px;
  padding-right: 2mm;
}

@media (max-width: 1024px) {
  .first-tag:not(blockquote p):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6)::first-letter {
    line-height: 45px;
    font-size: 58px;
    padding-right: 1mm;
  }
}
@media (max-width: 803px) {
  .first-tag:not(blockquote p):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6)::first-letter {
    line-height: 35px;
    font-size: 46px;
    padding-right: 0.5mm;
  }
}

.first-tag:not(blockquote p):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6)::first-letter {
  float: left;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5 {
  margin-top: 25px;
}

@media (min-width: 1080px) {
  .single h1,
  .single h2,
  .single h3,
  .single h4,
  .single h5 {
    margin-top: 35px;
  }
}

.vo-acknowledge-post {
  padding-top: 100px;
  padding-bottom: 120px;
  padding-left: 0px;
  padding-right: 0px;
}

@media (max-width: 768px) {
  .vo-acknowledge-post {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .dynamic-entry-content h2 {
    font-size: 32px;
  }

  .dynamic-entry-content h3,
  .dynamic-entry-content h4 {
    font-size: 28px;
  }
}

/* v2022 Acquisition Update Template */

.acquisition-item li::before {
  display: none !important;
}

.acquisition-post-v2022 {
  max-width: 1200px;
  margin: 0 auto;
}
.acquisition-post-v2022 .acquisition-table {
  margin: 40px 0 !important;
}
.acquisition-post-v2022 .acquisition-table .row {
  min-height: 150px;
  z-index: 2;
  border-radius: 0 !important;
  margin: 15px 0 !important;
  background: linear-gradient(90deg, #faf9f7 0%, white 26%);
}
.acquisition-post-v2022 .acquisition-table .shadow {
  box-shadow: none;
  position: relative;
}
.acquisition-post-v2022 .acquisition-table .shadow:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  bottom: 0;
  left: 5%;
  right: 5%;
  z-index: -1;
  border-radius: 40%;
  box-shadow: none !important;
}
.acquisition-post-v2022 .acquisition-table .shadow-top {
  position: relative;
}
.acquisition-post-v2022 .acquisition-table .shadow-top:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  top: 0;
  left: 5%;
  right: 5%;
  z-index: -1;
  border-radius: 40%;
  box-shadow: none !important;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item {
  min-height: 150px;
  display: flex;
  align-items: center;
  z-index: 2;
  border-radius: 10px;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: inherit !important;
  font-size: 26px !important;
  color: #5d5d5d !important;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item a:hover {
  text-decoration: underline;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul {
  flex-basis: 70%;
  margin: 0;
  padding: 10px 0 0 20px;
  list-style: none;
  font-weight: 400;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li {
  position: relative;
  margin: 5px;
  padding: 10px;
  display: inline-block;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li:hover {
  transform: scale(1.1);
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li img {
  max-width: 190px;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li span {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  padding: 0 0 20px 0;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li a {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  text-decoration: none;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item ul li a:hover {
  text-decoration: underline;
}
.acquisition-post-v2022 .acquisition-table .acquisition-item p {
  flex-basis: 30%;
  margin: 0;
  padding: 30px 20px;
  border-right: 3px solid #f0eee9;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: inherit !important;
  font-size: 26px !important;
  color: #5d5d5d !important;
}

@media screen and (max-width: 860px) {
  .acquisition-post-v2022 .acquisition-table .row {
    background: var(--white);
  }
  .acquisition-post-v2022 .acquisition-table .acquisition-item {
    flex-wrap: wrap;
  }
  .acquisition-post-v2022 .acquisition-table .acquisition-item p {
    flex-basis: 100%;
    text-align: center;
    border-right: none;
    border-bottom: 3px solid #faf9f7;
    font-size: 22px !important;
    padding: 25px 20px 20px !important;
    display: block;
  }
  .acquisition-post-v2022 .acquisition-table .acquisition-item ul {
    flex-basis: 100%;
    padding: 10px 0 0 0;
    text-align: center;
  }
}

@media (max-width: 639px) {
  #uf-tile-container li.uf-link-cta-tile-487901 {
    flex-basis: 100% !important;
  }
}

div[data-id="681190119"] {
  display: none;
}

.stream-section-header.stream-section-link {
  color: var(--black);
  font-size: 40px !important;
  font-family: inherit !important;
  padding: 40px 0 0 0 !important;
}

.stream-section-header.stream-section-link > hr {
  height: 4px;
  background-color: var(--black);
  margin: 20px 0 40px 0;
}

img.wpml-ls-flag {
  background: var(--white) !important;
}

/**
/* Single Post Page Style Ends
*/

/**
Case Study Single Page Styles
*/

.single-case-studies div#date-author {
  display: none; /*To hide data only in case study*/
}

.single-case-studies div#PageCaseStudy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  margin: 0px 0 40px 0px;
}

div#PageCaseStudy .list-tag strong {
  font-weight: normal;
}

.case-study-logo img {
  margin: 0;
  padding: 20px;
  width: 80%;
}

.list-tag ul {
  margin: 0 10px 0 60px;
  list-style: disc;
}

.single-case-studies div#PageCaseStudy .case-study-logo {
  flex: 1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.single-case-studies div#PageCaseStudy .list-tag {
  flex: 1;
  background: rgb(236 236 234);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}
.home .vg-grid-main-container {
  background-color: transparent !important;
}

.vg-grid-main-container {
  /* background-color: var(--white); */
}

@media (max-width: 768px) {
  .single-case-studies div#PageCaseStudy {
    grid-template-columns: 1fr;
  }
}

/*** Subtitle colors **/
.vg-subtitle {
  opacity: 0.8;
}
/*** end **/

@media (max-width: 1440px) and (min-width: 1025px) {
  .vg-horizontal-line {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
  }

  #graph-section {
    padding-bottom: 50px !important;
  }

  #acquired-section {
    padding-top: 65px !important;
    padding-bottom: 90px !important;
  }
  #acquired-heading {
    padding-bottom: 40px !important;
  }
  #news-section {
    padding-bottom: 2px !important;
  }
}

/* Border Animation Start*/

.border-animation {
  box-shadow: inset 0 0 0 4px transparent;
}

.border-animation::before,
.border-animation::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.border-animation {
  transition: color 0.1s;
}
.border-animation::before,
.border-animation::after {
  border: 4px solid transparent;
  width: 0;
  height: 0;
}
.border-animation::before {
  top: 0;
  left: 0;
}
.border-animation::after {
  bottom: 0;
  right: 0;
}

.border-animation:hover::before,
.border-animation:hover::after {
  width: 100%;
  height: 100%;
}
.border-animation:hover::before {
  border-top-color: var(--light-green);
  border-right-color: var(--light-green);
  transition: width 0.1s ease-out, height 0.1s ease-out 0.1s;
}
.border-animation:hover::after {
  border-bottom-color: var(--light-green);
  border-left-color: var(--light-green);
  transition: border-color 0s ease-out 0.1s, width 0.1s ease-out 0.1s,
    height 0.15s ease-out 0.25s;
}

/* Border Animation Ends*/

/* Acquistion page - start */

.new-grid-item-outer {
  position: relative;
}

.new-grid-item-outer::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background: #1a1a1a;
}

.gb-grid-column:nth-child(3) .new-grid-item-outer::after,
.gb-grid-column:nth-child(7) .new-grid-item-outer::after {
  display: none; /* Hide the pseudo-element */
}

@media (max-width: 1024px) {
  .gb-grid-column:nth-child(2) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(5) .new-grid-item-outer::after {
    display: none; /* Hide the pseudo-element */
  }

  .gb-grid-column:nth-child(3) .new-grid-item-outer::after {
    display: block; /* Ensure the pseudo-element is displayed */
  }

  .gb-grid-column:nth-child(3) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(7) .new-grid-item-outer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    height: 100%;
    width: 1px;
    background: #1a1a1a;
  }

  .gb-grid-column:nth-child(5) .new-grid-item-outer::after {
    display: none; /* Hide the pseudo-element */
  }
}

@media (max-width: 768px) {
  .gb-grid-column:nth-child(1) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(2) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(3) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(5) .new-grid-item-outer::after,
  .gb-grid-column:nth-child(6) .new-grid-item-outer::after {
    display: none; /* Hide the pseudo-element */
  }
}

.gb-button.acq-strip-banner-button:hover svg path {
  fill: var(--white) !important;
}
/* Acquistion page - end */

/* Menus color in mobile */
.custom-mobile-menu #mobile-menu li.menu-item > a.menu-active,
.custom-mobile-menu #mobile-menu li.menu-item > a:hover {
  color: red;
}
/*  */

.vg-press-release-section a.vg-press-release-wrapper {
  background: #ececea;
  display: block;
  padding: 40px 45px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 40px;
}

.vg-press-release-section a.vg-press-release-wrapper:hover {
  background: #d3d3d3;
}

.vg-press-release-section .vg-press-release-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
}

.vg-press-release-section h2.vg-press-release-title {
  font-weight: 500;
  color: hsla(0, 0%, 27%, 1);
  margin-bottom: 0px;
}

.vg-press-release-section .vg-press-release-date p {
  color: hsla(0, 0%, 27%, 1);
  margin-bottom: 0px;
}

.vg-press-release-section
  a.vg-press-release-wrapper:hover
  h2.vg-press-release-title,
.vg-press-release-section
  a.vg-press-release-wrapper:hover
  .vg-press-release-date
  p {
  color: hsla(213, 71%, 15%, 1);
}

.vg-press-release-section .load-more-btn-wrapper {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .vg-press-release-section a.vg-press-release-wrapper {
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .vg-press-release-section .vg-press-release-content-inner {
    gap: 20px;
  }

  .vg-press-release-section h2.vg-press-release-title {
    font-size: 22px;
    line-height: normal;
  }
}
/**
vg Press Release Section Start
*/
.vg-press-release-section a.vg-press-release-wrapper {
  background: #ececea;
  display: block;
  padding: 40px 45px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 40px;
}

.vg-press-release-section a.vg-press-release-wrapper:hover {
  background: #d3d3d3;
}

.vg-press-release-section .vg-press-release-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
}

.vg-press-release-section h2.vg-press-release-title {
  font-weight: 500;
  color: hsla(0, 0%, 27%, 1);
  margin-bottom: 0px;
}

.vg-press-release-section .vg-press-release-date p {
  color: hsla(0, 0%, 27%, 1);
  margin-bottom: 0px;
}

.vg-press-release-section
  a.vg-press-release-wrapper:hover
  h2.vg-press-release-title,
.vg-press-release-section
  a.vg-press-release-wrapper:hover
  .vg-press-release-date
  p {
  color: hsla(213, 71%, 15%, 1);
}

@media (max-width: 768px) {
  .vg-press-release-section a.vg-press-release-wrapper {
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .vg-press-release-section .vg-press-release-content-inner {
    gap: 20px;
  }

  .vg-press-release-section h2.vg-press-release-title {
    font-size: 22px;
    line-height: normal;
  }
}

/**
vg Press Release Section Ends
*/

/* Skeleton Loader  Style Start */
/* Skeleton Styles */
.skeleton-loader {
  animation: loading 5s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

.skeleton-post {
  margin-bottom: 20px;
  height: 500px;
  position: relative;
}
@media (max-width: 500px) {
  .skeleton-post {
    height: 375px;
  }
}

.skeleton-post.vg-main-news {
  height: 400px;
}

.skeleton-image {
  width: 100%;
  height: 60%;
  background-color: #f0f0f0;
}

.skeleton-title {
  margin-top: 15px;
  height: 24px;
  width: 80%;
  background-color: #f0f0f0;
}

.skeleton-category {
  margin-top: 10px;
  height: 18px;
  width: 40%;
  background-color: #f0f0f0;
}

.skeleton-date {
  margin-top: 10px;
  height: 16px;
  width: 30%;
  background-color: #f0f0f0;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Hide skeleton when content is loaded */
.content-loaded .skeleton-wrapper {
  display: none;
}

/* Skeleton Loader Styles */
.skeleton-press-release .skeleton-loader {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: rgba(11, 35, 64, 0.1);
  }

  100% {
    background-color: rgba(11, 35, 64, 0.2);
  }
}

.skeleton-press-release {
  width: 100%;
  border: 1px solid #eee;
  background: #ececea;
  display: block;
  padding: 40px 45px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 40px;
}

.skeleton-press-release .skeleton-title {
  height: 24px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-press-release .skeleton-date {
  height: 16px;
  width: 30%;
  border-radius: 4px;
}

/* Skeleton Loader  Style Ends*/

/* Footer bottom - start */
/* Privacy policy section */
.footer-bottom .custom-menu-class li a {
  color: var(--light-gray) !important;
  font-weight: normal;
}

.footer-bottom .custom-menu-class li a:hover {
  color: var(--light-green) !important;
}

.footer-bottom .custom-menu-class li:not(:last-child) a::after {
  content: "|";
  color: var(--light-gray);
  margin-left: 10px;
  display: inline-block !important;
}
.number-item.item-counter
  .number-content.content-counter
  span.description.desc-counter {
  text-transform: uppercase;
}
.vl-acquisition-accordion-wrapper ul li {
  font-size: 22px;
}
/* Resource & learn more section */
.footer-bottom .custom-menu-class {
  display: flex;
  gap: 0px !important;
}

.sub-menu-space .custom-menu-class > li > a {
  text-transform: uppercase;
}

/* Keep other links in normal case */
.sub-menu-space .custom-menu-class li a {
  text-transform: none;
  text-decoration: none !important;
}

.sub-menu-space .custom-menu-class li {
  margin-bottom: 20px !important;
}

.sub-to-news-letter a {
  text-decoration: none !important;
}

.sub-menu-space .custom-menu-class {
  text-transform: uppercase;
  display: flex;
  text-align: start;
}

.sub-menu-space .custom-menu-class > li.menu-item-has-children > a {
  display: inline-block;
  margin-bottom: 20px !important;
}

.footer-bottom .custom-menu-class li a {
  text-decoration: none;
}

/* Copy right section */
.copy-right a {
  text-decoration: none;
  color: var(--light-gray);
}

.copy-right a:hover {
  color: var(--light-green);
}

/* Footer bottom - end */

/* Recent acquisitions */
.recent-acquisitions-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin: 50px 0px;
  justify-content: space-between;
}
/* .recent-acquisitions-posts-grid .recent-acquisitions-post-card:nth-child(2) {
  border-left: 1px solid #000; 
  border-right: 1px solid #000; 
} */

.recent-acquisitions-posts-grid .recent-acquisitions-post-card {
  border: 1px solid #00000033;
  /* padding-bottom: 40px; */
  min-height: 300px;
}

@media (max-width: 992px) {
  .recent-acquisitions-posts-grid {
    grid-template-columns: 1fr;
    row-gap: 40px !important;
  }
  /* .recent-acquisitions-posts-grid .recent-acquisitions-post-card:nth-child(2) {
    border-left: 0px solid #000; 
    border-right: 0px solid #000; 
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  } */
  .recent-acquisitions-posts-grid .recent-acquisitions-post-card {
    border: 1px solid #00000033;
  }
}

@media (max-width: 662px) {
  .recent-acquisitions-posts-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

.recent-acquisitions-post-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recent-acquisitions-post-image {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 69px;
  max-width: 65%;
}
.recent-acquisitions-posts-grid
  .recent-acquisitions-post-card:hover
  .recent-acquisitions-post-image {
  padding: 0px 50px 0px 50px;
}

.recent-acquisitions-post-image img {
  /* filter: invert(50%) grayscale(50%); */
  filter: grayscale(1);
}
.recent-acquisitions-post-card:hover img {
  filter: grayscale(0);
}

.recent-acquisitions-post-card:hover {
  /* filter: none; */
}

/* Button Animation Styles */
.recent-acquisitions-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.recent-acquisitions-post-card:hover .recent-acquisitions-btn {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  /* height: fit-content !important;
  padding: 12.5px 35px 12.5px 35px !important;
  margin: 10px 0 10px 0 !important; */
}

.recent-acquisitions-post-card:hover .recent-acquisitions-post-image {
  padding-top: 0;
}

@media (min-width: 993px) and (max-width: 1100px) {
  .recent-acquisitions-posts-grid {
    gap: 10px !important;
  }
}

@media (max-width: 992px) {
  .recent-acquisitions-post-image {
    padding-top: 0;
  }
}

@media (min-width: 992.1px) {
  .recent-acquisitions-post-card:hover .recent-acquisitions-btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
    /* height: fit-content !important;
    padding: 12.5px 35px 12.5px 35px !important;
    margin: 10px 0 10px 0 !important; */
  }
}

@media (max-width: 992px) {
  /* Button Animation Styles */
  .recent-acquisitions-btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
    /* height: fit-content !important;
    padding: 12.5px 35px 12.5px 35px !important;
    margin: 10px 0 10px 0 !important; */
  }
}

.recent-acquisitions-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-cl:hover {
  color: white !important;
}

.btn-cl:hover svg path {
  fill: var(--white) !important;
}

.hero-section::before {
  top: -50px !important;
}

@media (max-width: 1440px) {
  .hero-section::before {
    background-size: 110% !important;
  }
}

@media (max-width: 1080px) {
  .hero-section::before {
    top: +30px !important;
  }
}

.vg-btn.portfolio-btn > span.gb-button-text {
  margin-right: 0px !important;
}

.portfolio-custom-modal-style {
  background-color: hsla(45, 29%, 97%, 1);
  border-radius: 4px;
  width: 100%;
  max-width: 75vw;
  max-height: 90vh;
  padding: 60px;
}

@media (max-width: 768px) {
  .portfolio-custom-modal-style {
    max-width: 95vw;
    padding: 20px;
  }
  .vl-acquisition-accordion-wrapper ul li {
    font-size: 16px;
  }
}
.portfolio-custom-modal-style
  button.fancybox-button.fancybox-close-small:hover {
  background: transparent;
}
.portfolio-custom-modal-style button.fancybox-button.fancybox-close-small svg {
  width: 50px;
  height: 50px;
  top: 0;
  left: -25px;
  background: transparent;
  color: hsla(213, 71%, 15%, 1);
}

/* FAQ style start */
/* Change background color and remove bottom margin/padding when accordion is active */
.vl-acquisition-accordion-wrapper
  .gb-accordion__toggle[aria-expanded="true"]
  + .gb-accordion__content {
  background-color: #f0f0f0;
}

/* Remove bottom margin, padding, and border-bottom of the active accordion button */
.vl-acquisition-accordion-wrapper .gb-accordion__toggle[aria-expanded="true"] {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Remove border-bottom of the accordion item when it's active (open) */
.vl-acquisition-accordion-wrapper .gb-accordion__item.gb-accordion__item-open {
  border-bottom: none;
  border-radius: 30px;
}
/* Change background color and remove bottom margin/padding when accordion is active */
.vl-acquisition-accordion-wrapper
  .gb-accordion__toggle[aria-expanded="true"]
  + .gb-accordion__content {
  background-color: #dfdfdf80;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Remove bottom margin, padding, and border-bottom of the active accordion button */
.vl-acquisition-accordion-wrapper .gb-accordion__toggle[aria-expanded="true"] {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* Remove border-bottom of the accordion item when it's active (open) */
.vl-acquisition-accordion-wrapper .gb-accordion__item.gb-accordion__item-open {
  border-bottom: none;
}

/* Remove border-bottom of the last accordion item */
.vl-acquisition-accordion-wrapper .gb-accordion .gb-accordion__item:last-child {
  border-bottom: none;
}

/* FAQ style end */
