.gsi-country-suggestion-strip{
  display: flex;
  justify-content: center;
  column-gap: 24px;
  position: relative;
  padding: 14px;
  max-width: 3450px;
  margin: auto;
}
.gsi-country-suggestion-strip .gsi-csp-close{
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.gsi-country-suggestion-strip .gsi-csp-strip-text{
  font-family: 'DM Sans';
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-right: 48px;
}
.gsi-country-suggestion-strip .gsi-csp-button{
  background-color: #F7003B;
  color: #ffffff;
  font-weight: 600;
  padding: 6px;
  width: 74px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  margin-right: 24px;
}
.gsi-country-suggestion-strip .gsi-csp-button:hover{
  background-color: #FA557C;
}
.gsi-country-suggestion-strip .gsi-csp-stay-here{
  font-weight: 600;
  color: #2017CE;
  cursor: pointer;
}
.gsi-country-suggestion-strip.gsi-static-loading {
    opacity: 0.7;
}

.gsi-country-suggestion-strip {
    transition: all 0.3s ease;
}
  .gsi-brand-intro-header-true{
    position: relative;
  }
  .gsi-brand-intro-popup-close{
    position: absolute;
    top: 26px;
    right: 26px;
    cursor: pointer;
  }
  .gsi-brand-intro-popup-overlay{
    position: fixed;
    width: 120vw;
    height: 400vw;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 9;
  }
  .gsi-brand-intro-popup{
     position: fixed;
     width: 90%;
     max-width: 644px;
     background-color: var(--navy);
     background-repeat: no-repeat;
     background-position: bottom center;
     background-size: contain;
     z-index: 99;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     border-radius: 12px;
     padding: 48px 0;
  }
  .gsi-brand-intro-popup-inner{
    text-align: center;
  }
  .gsi-intro-popup-logo{
    width: 110px;
    height: 110px;
  }
  .gsi-brand-intro-popup-inner h5{
    color: #ffffff;
    margin-bottom: 24px;
  }
  .gsi-brand-intro-logo-sec{
    background-color: #F8F9FA;
    padding: 27px;
    margin-bottom: 32px;
  
  }
  .gsi-brand-intro-logo-sec-inner{
    display: flex;
    align-items: center;
    width: 80%;
    margin: auto;
    column-gap: 16px;
  }
  .gsi-bil-segment{
    color: #010A1C;
    font-size: 49.98px;
  }
  .gsi-bil-segment.gbs-logo-1{
    text-align: right;
  }
  .gsi-bil-segment.gbs-logo-2{
    text-align: left;
  }
  .gsi-bil-segment span{
    font-family: var(--heading-font);
    font-size: 49.98px;
    line-height: 0px;
  }
  .gsi-brand-intro-popup-inner h4{
    color: #ffffff;
    padding: 0 20px;
    font-size: 28px;
    padding-bottom: 23%;
    line-height: 36px;
  }
.gcssi-placeholder {
  filter: blur(5px);
  pointer-events: none;
  position: relative;
  overflow: hidden;
  animation: shimmerPulse 1.5s ease-in-out infinite;
}
.gcssi-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}
  @keyframes shimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  @keyframes shimmerPulse {
    0%, 100% {
      opacity: 0.7;
    }
    50% {
      opacity: 1;
    }
  }


  @media (max-width: 768px){
    .gsi-brand-intro-popup-inner h4{
        font-size: 24px;
        line-height: 32px;
    }
    .gsi-intro-popup-logo{
        width: 70px;
        height: 70px;
    }
    .gsi-bil-segment span{
        font-size: 40px;
        line-height: 32px
    }
    .gsi-country-suggestion-strip .gsi-csp-strip-text{
      display: block;
      margin-bottom: 16px;
    }
    .gsi-country-suggestion-strip{
      justify-content: flex-start;
    }
  }