body{
  font-size: 16px;
  overflow-x: hidden;
}
section *{
    box-sizing: border-box;
}
.partners-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0E40B4;
  height: 56px;
  border-bottom: 1px solid #5267B2;
}
.partners-nav-hamburger {
  display: none;
}
.partners-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partners-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.partners-nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.partners-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.partners-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  font-family: 'Zoho_Puvi_Regular', sans-serif;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.partners-affiliate {
  color: #00DAFF;
}
.partners-nav-link:hover {
  text-decoration: none;
}
.partners-nav-link::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../images/partners-arrow.png') no-repeat center / contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.partners-nav-link:hover::after {
  animation: partners-arrow-bob 0.7s ease-in-out infinite;
}
@keyframes partners-arrow-bob {
  0% { transform: translate(0, 0); }
  50% { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}
#header-mainsec .headerinner.fixed{
    position:static;
}
.pl-banner-section {
  background: linear-gradient(to bottom, #0F42B9, #051F65);
  padding: 80px 0;
  text-align: center;
}
.pl-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pl-banner-section .pl-banner-subtitle {
  display: block;
  color: #d4a843;
  font-family: 'Zoho_Puvi_Regular';
  letter-spacing: 1.2px;
    font-size: 1em;
}
.pl-banner-section h1 {
    color: #fff;
    font-family: 'Zoho_Puvi_Bold';
    font-size: 2.9em;
    line-height: 1.15;
    margin: 10px 0 20px;
    letter-spacing: 0;
}
.pl-banner-section p {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Zoho_Puvi_Regular';
  line-height: 1.7;
  margin: 0;
}
.pl-container {
  max-width: 1400px;
  margin: 0 auto;
}
.pl-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.pl-banner-section .pl-row {
  justify-content: center;
}
.pl-content-section {
  padding: 80px 0;
  min-height: 1000px;
}
.pl-sidebar {
  width: 280px;
  min-width: 280px;
  background: #fff;
  border-radius: 7px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.10),
    0 24px 48px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

.pl-sidebar-skeleton {
  display: none;
  height: 600px;
  padding: 16px 14px;
}

.pl-sidebar-skeleton-heading,
.pl-sidebar-skeleton-item {
  background: linear-gradient(90deg, #e8eef8 25%, #d0dcf4 50%, #e8eef8 75%);
  background-size: 600px 100%;
  animation: plShimmer 1.4s infinite linear;
  border-radius: 4px;
}

.pl-sidebar-skeleton-heading {
  width: 90px;
  height: 18px;
}

.pl-sidebar-skeleton-heading-country {
  margin-top: 24px;
}

.pl-sidebar-skeleton-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pl-sidebar-skeleton-item {
  width: 100%;
  height: 16px;
}

.pl-sidebar-skeleton-item.w90 { width: 90%; }
.pl-sidebar-skeleton-item.w85 { width: 85%; }
.pl-sidebar-skeleton-item.w80 { width: 80%; }
.pl-sidebar-skeleton-item.w75 { width: 75%; }
.pl-sidebar-skeleton-item.w70 { width: 70%; }
.pl-sidebar-skeleton-item.w65 { width: 65%; }
.pl-filter-group {
  padding: 0;
}
.pl-filter-group + .pl-filter-group::before {
  content: '';
  display: block;
  width: 90%;
  height: 0.6px;
  background: #3d3d3d;
  margin: 0 auto;
}
.pl-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 100%; */
  /* padding: 16px 20px; */
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  font: inherit;
  text-align: left;
    border-radius: 7px;
  margin: 10px 14px;
  width: calc(100% - 28px);
  padding: 6px 16px;
}
.pl-filter-header span {
  font-family: 'Zoho_Puvi_SemiBold';
  color: #0045D3;
}
.pl-filter-header .pl-chevron {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
  color: #0045D3;
}
.pl-filter-group.open .pl-filter-header .pl-chevron {
  transform: rotate(180deg);
}
.pl-filter-group.open .pl-filter-header {
  background: #0045D3;
}
.pl-filter-group.open .pl-filter-header span {
  color: #fff;
}
.pl-filter-group.open .pl-filter-header .pl-chevron {
  color: #fff;
}
.pl-filter-group.open .pl-filter-header:hover {
  background: #003bb5;
}
.pl-filter-body {
  display: none;
  overflow: hidden;
}
.pl-filter-list {
  width: 90%;
margin: 15px auto;
  list-style: none;
}
.pl-filter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
  color: #1a1a2e;
  margin: 0 0 5px;
}
.pl-filter-item:hover,
.pl-filter-item.selected {
  background: linear-gradient(to left, #BBD6FF 0%, #FFFFFF 77%);
}
.pl-filter-item input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #bcc5d3;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  transition: all 0.15s ease;
}
.pl-filter-item input[type="checkbox"]:checked {
  background: #0045D3;
  border-color: #0045D3;
}
.pl-filter-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.pl-filter-item label {
  cursor: pointer;
  flex: 1;
  font-family: 'Zoho_Puvi_Regular';
}
.pl-main {
  flex: 1;
  min-width: 0;
}
.pl-header {
  flex: 1;
  min-width: 0;
}
.pl-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.pl-header-skeleton {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.pl-skeleton-header-left {
  min-width: 0;
}
.pl-skeleton-header-title {
  width: 340px;
  max-width: 100%;
  height: 42px;
  border-radius: 5px;
}
.pl-skeleton-header-count {
  width: 300px;
  max-width: 100%;
  height: 24px;
  border-radius: 4px;
  margin-top: 8px;
}
.pl-skeleton-search {
  width: 30%;
  min-width: 260px;
  height: 50px;
  margin-left: auto;
  border-radius: 5px;
}
.pl-skeleton-cta {
  width: 250px;
  height: 40px;
  border-radius: 999px;
}
.pl-btn-partner {
  align-self: center;
}
.pl-header-title {
  font-family: 'Zoho_Puvi_Bold';
  color: #1a1a2e;
  margin: 0;
}
.pl-count {
  font-family: 'Zoho_Puvi_Regular';
  color: #555;
  margin: 6px 0 0;
}
.pl-btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #d0162d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 5px 8px 5px 15px;
  font-family: 'Zoho_Puvi_Bold';
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.pl-btn-partner:hover {
  background-color: #b01327;
  text-decoration:none;
}
.pl-btn-partner .btn-text {
  letter-spacing: 0.5px;
  font-family: "Zoho_Puvi_SemiBold";
}
.pl-btn-partner .btn-icon {
  background-color: #fffbe8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}
.pl-btn-partner .btn-icon svg {
  width: 100%;
  height: 100%;
  stroke: #000;
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pl-btn-partner:hover .btn-icon {
  transform: translateX(4px);
}
.pl-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  min-height: 36px;
  width: 100%;
}
.pl-pills-skeleton {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-height: 36px;
  width: 100%;
}
.pl-active-filters-label {
  font-family: 'Zoho_Puvi_Regular';
  color: #146EF4;
}
.pl-reset-filters,.pl-active-filters-label{
  font-size: 0.9em;
}
.pl-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c2daff;
  border-radius: 50px;
  padding: 2px 25px 2px 7px;
  font-family: 'Zoho_Puvi_Regular';
  color: #0152F6;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
  font-size: 0.8em;
}
.pl-filter-pill::before,
.pl-filter-pill::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 50%;
    width: 12px;
    height: 1.3px;
    background: #d0152d;
    transition: background 0.15s;
}
.pl-filter-pill::before {
  transform: translateY(-50%) rotate(45deg);
}
.pl-filter-pill::after {
  transform: translateY(-50%) rotate(-45deg);
}
.pl-reset-filters {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  color:#d0152d;
font-family: 'Zoho_Puvi_Regular';
}
.pl-reset-filters:hover {
  text-decoration: none;
}
.pl-search {
    position: relative;
    margin: 0 0 0 auto;
    width: 30%;
    min-width: 0;
}
#plResults {
  width: 100%;
  padding: 0 1px;
}
.pl-search input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  font-family: 'Zoho_Puvi_Regular';
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pl-search input:focus {
  border-color: #0045D3;
  box-shadow: 0 0 0 3px rgba(0, 69, 211, 0.1);
}
.pl-search input::placeholder {
  color: #999;
}
.pl-search > svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.pl-country-section {
  margin-bottom: 40px;
}
.pl-country-title {
  font-size: 1.5em;
  color: #0152F6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Zoho_Puvi_SemiBold";
  flex-wrap: wrap;
}
.pl-country-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: #d9d9d9;
}
.pl-region-section {
  margin-bottom: 56px;
}
.pl-region-header {
  font-family: 'Zoho_Puvi_Medium';
  color: #7F7F7F;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.pl-country-section {
  margin-bottom: 40px;
}
.pl-country-title {
  font-size: 1.5em;
  color: #0152F6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Zoho_Puvi_SemiBold";
  flex-wrap: wrap;
  min-width: 0;
}
.pl-country-name {
  flex-shrink: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.pl-country-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: #d9d9d9;
  order: 2;
}
.pl-country-count {
  flex-shrink: 0;
  font-family: 'Zoho_Puvi_Regular';
  font-size: 0.6em;
  color: #94A3B8;
  letter-spacing: 0;
  text-transform: none;
  order: 3;
}
.pl-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pl-card {
  background: linear-gradient(to bottom, #E5EFFF 0%, #FFFFFF 100%);
  border: 1.5px solid #146EF4;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 calc(33% - 14px);
  max-width: calc(33% - 14px);
  min-width: 240px;
  padding: 10px 10px 0;
  transition: box-shadow 0.2s ease;
}
.pl-card:hover {
  box-shadow: 5px 4px 7px rgba(98, 98, 98, 0.3);
}
.pl-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 24px 20px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  flex: 0 0 auto;
}
.pl-card-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  padding: 1.5px;
  background: linear-gradient(to bottom, #FFFFFF, #BFD2FF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pl-card-logo img {
  height: 50px;
  object-fit: contain;
  max-width: 100%;
}
.pl-card-logo .pl-logo-placeholder {
  font-family: 'Zoho_Puvi_Bold';
  color: #1558d6;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.pl-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 6px 16px;
  gap:14px;
}
.pl-card-tier {
  display: inline-block;
  font-family: 'Zoho_Puvi_SemiBold';
  font-size: 0.7em;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 5px 20px 5px 13px;
  margin: 12px 0 0;
  align-self: flex-start;
  color: #fff;
  background: #888;
  line-height: 1;
}

.pl-tier-gold,.pl-tier-gold-partner{ background: linear-gradient(to right, #09CB8D 0%, #09CB8D 17%, #09CB8D 57%, #F0F6FF 100%); color: #fff; }
.pl-tier-silver-partner{ background: linear-gradient(to right, #0045D3 0%, #146EF4 17%, #014DFF 57%, #F0F6FF 100%); color: #fff; }
.pl-tier-platinum,.pl-tier-platinum-partner{ background: linear-gradient(to right, #FFC300 0%, #FFC300 17%, #FFC300 57%, #F0F6FF 100%); color: #000; }
.pl-tier-bronze-partner{ background: linear-gradient(to right, #cb4000 0%, #c23d00 17%, #be3c00 57%, #F0F6FF 100%); color: #fff;}
.pl-card-company {
  font-family: 'Zoho_Puvi_SemiBold';
  font-size: 1.1em;
  color: #000;
  line-height: 1.35;
  margin: 0;
}
.pl-card-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Zoho_Puvi_Regular';
  color: #4D4D4D;
  line-height: 1.45;
  font-size: 0.92em;
}
.pl-card-detail::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("../images/partners-icons-new.svg");
  background-repeat: no-repeat;
  background-size: 106px 40px;
}
.pl-detail-address::before {     background-position: 3px -5px;  background-size: 77px 27px;}
.pl-detail-email::before   {     background-size: 72px 35px; background-position: -16px -8px; }
.pl-detail-phone::before   {     background-size: 99px 16px; background-position: -71px 0px; }
.pl-detail-fax::before     {    background-size: 108px 19px; background-position: -56px -1px; }

.pl-card-detail > span,
.pl-card-detail .pl-detail-primary {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  flex: 1;
}
.pl-card-detail a {
  color: #4D4D4D;
  text-decoration: none;
}
.pl-card-detail a:hover { text-decoration: underline; }
.pl-detail-primary {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pl-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 3px;
  border: none;
  background: #e3ecff;
  color: #0952fb;
  font-family: 'Zoho_Puvi_Regular';
  font-size: 0.78em;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.pl-expand-btn svg {
  transition: transform 0.2s ease;
}
.pl-expand-btn.open svg {
  transform: rotate(180deg);
}
.pl-card-detail.pl-has-more {
  position: relative;
  align-items: center;
}
.pl-expand-list {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  box-shadow: -5px 1px 11px 2px rgba(0,0,0,0.12);
  padding: 8px 12px;
  min-width: 200px;
}
.pl-expand-list[hidden] { display: none; }
.pl-expand-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zoho_Puvi_Regular';
  font-size: 0.9em;
  color: #000;
}
.pl-expand-list-item::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  background-image: url("../images/partners-icons-new.svg");
  background-repeat: no-repeat;
}
.pl-expand-item-email::before {     background-size: 72px 35px;background-position: -16px -8px; }
.pl-expand-item-phone::before {     background-size: 99px 16px; background-position: -71px 0px;}
.pl-expand-item-fax::before {       background-size: 108px 19px; background-position: -56px -1px; }
.pl-expand-list a {
  color: #000;
  text-decoration: none;
}
.pl-expand-list a:hover { text-decoration: underline; }
.pl-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #C6DAF5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pl-card-website {
  font-family: 'Zoho_Puvi_Regular';
  font-size: 0.9em;
  color: #0952FB;
  text-decoration: none;
  word-break: break-all;
}
.pl-card-website:hover { text-decoration: underline; }
@keyframes plShimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.pl-skeleton-card,
.pl-skeleton-logo,
.pl-skeleton-line,
.pl-skeleton-header-title,
.pl-skeleton-header-count,
.pl-skeleton-search,
.pl-skeleton-cta,
.pl-skeleton-region-label,
.pl-skeleton-country-label,
.pl-skeleton-filter-label,
.pl-skeleton-filter-chip,
.pl-skeleton-filter-reset {
  background: linear-gradient(90deg, #e8eef8 25%, #d0dcf4 50%, #e8eef8 75%);
  background-size: 600px 100%;
  animation: plShimmer 1.4s infinite linear;
  border-radius: 4px;
}
.pl-content-section.pl-is-loading .pl-header-skeleton {
  display: flex;
}
.pl-content-section.pl-is-loading .pl-header-left,
.pl-content-section.pl-is-loading .pl-search,
.pl-content-section.pl-is-loading .pl-header .pl-btn-partner,
.pl-content-section.pl-is-loading #plPills {
  display: none;
}
.pl-content-section.pl-is-loading .pl-pills-skeleton {
  display: flex;
}

.pl-content-section.pl-is-loading .pl-sidebar-skeleton {
  display: block;
}

.pl-content-section.pl-is-loading .pl-sidebar .pl-filter-group {
  display: none;
}

.pl-skeleton-region-label {
  height: 18px;
  width: 220px;
  margin:50px 0 20px;
}
.pl-skeleton-country-label {
  height: 30px;
  width: 220px;
  margin-bottom: 20px;
}
.pl-skeleton-filter-label {
  height: 20px;
  width: 110px;
}
.pl-skeleton-filter-chip {
  height: 30px;
  width: 150px;
  border-radius: 50px;
}
.pl-skeleton-filter-reset {
  margin-left: auto;
  height: 22px;
  width: 140px;
}
.pl-skeleton .pl-cards-grid {
  margin-top: 20px;
}
.pl-skeleton-card {
  flex: 0 0 calc(33% - 14px);
  max-width: calc(33% - 14px);
  min-width: 240px;
  min-height: 400px;
  border-radius: 5px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #e8eef8;
}
.pl-skeleton-logo {
  height: 90px;
  width: 100%;
  border-radius: 3px;
}
.pl-skeleton-line {
  height: 13px;
  width: 100%;
  border-radius: 3px;
}
.pl-skeleton-line.w90 { width: 90%; }
.pl-skeleton-line.w75 { width: 75%; }
.pl-skeleton-line.w60 { width: 60%; }
.pl-skeleton-line.w50 { width: 50%; }

.zsiq_floatmain{
  display: none !important;
}

@media (max-width: 1215px) {
  .pl-skeleton-card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
  .pl-skeleton-card { flex: 0 0 100%; max-width: 100%; }
}
.pl-no-results,
.pl-loading {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.pl-loading .pl-spinner {
  width: 48px;
  height: 48px;
  animation: plSpin 1s infinite linear;
  display: block;
  margin: 0 auto 12px;
}
.pl-loading p {
  font-size: 14px;
  color: #888;
  margin: 0;
}
@keyframes plSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pl-no-results svg {
  width: 64px;
  height: 64px;
  color: #ccc;
  margin-bottom: 16px;
}
@media (max-width: 1500px) {
.pl-container {
    padding: 0 30px;
  }
}

@media (max-width: 1215px) {
  .pl-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 1200px) {
 #commonHeader {
        display: none;
    }
  .pl-skeleton-search {
    width: 47%;
  }
  .pl-search {
    width: 47%;
  }
  .pl-btn-partner {
    margin-left: auto;
  }
  #plResults{
    width: 100%;
  }
}

@media only screen and (max-width: 1025px) {
  @keyframes partnersNavDropdownIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes partnersNavDropdownOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  .partners-nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }
  .partners-nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  .partners-nav--open .partners-nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .partners-nav--open .partners-nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .partners-nav--open .partners-nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .partners-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 24px;
    width: 50%;
    background: #ffffff;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid #5267B2;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .partners-nav--open .partners-nav-links {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: partnersNavDropdownIn 0.35s ease;
  }
  .partners-nav--closing .partners-nav-links {
    display: flex;
    opacity: 0;
    visibility: visible;
    transform: translateY(-8px);
    animation: partnersNavDropdownOut 0.35s ease;
  }
  .partners-nav-link {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: #000;
    width: 85%;
  }
  .partners-nav-link:last-child {
    border-bottom: none;
  }
}

.pl-mobile-filter-btn {
  display: none;
}
.pl-btn-partner-mobile {
  display: none;
}
@media (max-width: 1025px) {
      .pl-container {
  width: 95%;
  margin: 0 auto;
}
  .pl-row {
    flex-direction: column;
    padding: 0;
    position: relative;
  }
  .pl-container {
    padding: 0 20px;
  }
  .pl-sidebar {
    width: 100%;
    min-width: 0;
    position: absolute;
    display: none;
    border-radius: 12px;
    top: 64px;
    z-index: 9;
  }
  .pl-sidebar.pl-sidebar-open {
    display: block;
  }
  .pl-main {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .pl-search {
    width: 100%;
    justify-content: flex-start;
  }
  .pl-content-section.pl-is-loading .pl-header-skeleton {
    flex-direction: column;
    align-items: stretch;
  }
  .pl-content-section.pl-is-loading .pl-skeleton-search {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
  .pl-content-section.pl-is-loading .pl-skeleton-cta {
    width: 260px;
    margin: 12px auto 0;
  }
  .pl-search input {
    width: 100%;
  }
  .pl-btn-partner {
    order: 999;
    align-self: center;
    justify-content: center;
    margin: 24px auto 0;
  }
  .pl-header .pl-btn-partner {
    display: none;
  }
  .pl-btn-partner-mobile {
    display: inline-flex;
    justify-content: center;
    margin: 24px auto 0;
  }
  .pl-mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: #0045D3;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Zoho_Puvi_SemiBold';
    cursor: pointer;
    font-size: 1.1em;
  }
  .pl-mobile-filter-btn .pl-mob-chevron {
    width: 22px;
    height: 22px;
    transition: transform 0.25s ease;
  }
  .pl-mobile-filter-btn.open .pl-mob-chevron {
    transform: rotate(180deg);
  }
  .pl-header-left{
    justify-content: center;
    text-align: center;
  }
  .pl-header{
    justify-content: center;
     text-align: center;
     gap:20px;
  }
}

@media (max-width: 600px) {
  .pl-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pl-search {
    width: 100%;
  }
  .pl-header {
    flex-direction: column;
  }
  .pl-content-section.pl-is-loading .pl-pills-skeleton {
    justify-content: center;
    gap: 10px;
  }
  .pl-content-section.pl-is-loading .pl-skeleton-filter-reset {
    margin-left: 0;
    width: 120px;
  }
  .pl-content-section.pl-is-loading .pl-skeleton-header-title {
    width: 230px;
  }
  .pl-content-section.pl-is-loading .pl-skeleton-header-count {
    width: 220px;
  }
  .pl-reset-filters {
    margin-left: 0;
  }
  .pl-banner-section p br {
    display: none;
  }
  .partners-nav-links{
    width: calc(100% - 48px);
  }
}