.clientInfoDiv {
  width: 100%;
}
.clientImgs {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  aspect-ratio: 4/1;
}
.clientImgs figure {
  width: 150px;
  height: 150px;
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  object-fit: scale-down;
  box-sizing: border-box;
  border-radius: 100%;
  bottom: -75px;
}
.clientInfoContainer {
  width: var(--web-container);
  margin: 5% auto 0;
}
.clientLargeImage {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: cover;
}

.clientPhoto {
  position: relative;
  aspect-ratio: 1/1;
  object-fit: contain;
  box-sizing: border-box;
  width: 100%;
}
.totalProducts {
  text-align: left;
  margin-top: 0;
}
.clientInfoContainer
.clientName {
  margin: 0;
  width: -webkit-fit-content;
  height: 40px;
  line-height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: var(--aux-font-weight);
  font-size: var(--h1-font-size);
  position: relative;
  overflow: hidden;
}
.clientGeneralInfo .clientIg svg path {
  fill: var(--base);
}
.changePolicyIcon,
.paymentIcon {
  stroke: var(--base);
}
.clientDesc {
  width: auto;
  flex-basis: 90%;
}

.clientGeneralInfo {
  width: auto;
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  justify-content: end;
  flex-basis: 40%;
}
.clientInfo {
  display: grid;
  grid-auto-flow: column;
}
.clientDescription {
  max-width: 650px;
  margin-bottom: 25px;
}
.clientGeneralInfo > * {
  opacity: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.clientGeneralInfo .observer.onViewport:nth-child(2) {
  animation-delay: 0.25s;
}
.clientGeneralInfo .observer.onViewport:nth-child(3) {
  animation-delay: 0.4s;
}
.clientGeneralInfo .observer.onViewport:nth-child(4) {
  animation-delay: 0.5s;
}


.popupCustomContainer {
    position: fixed;
    display: flex;
    z-index: 10;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    inset: 0px;
    transition: all var(--transitionTime);
    background: rgba(33, 31, 29, 0.2);
}

.popupCustomContainer.show{
  opacity: 1;
visibility: visible;}
.popupData {
    background: var(--web-background);
    padding: 20px 20px 30px;
}
.clientPopupInfo {
    background: var(--web-background);
    max-width: 630px;
}

.topPopupData {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    padding-top: 5px;
}
.clientInfoTitle {
    font-weight: var(--secondary-font-weight);
    text-transform: uppercase;
    font-size: calc(var(--base-font-size) + 2px);
}
.popupData
hr {
    border-top: 1px solid var(--lines-border-color);
}
.bottomPopupData, .topPopupData, .popupData hr{
  width: 100%;
}
.closePopup{
  cursor:pointer;
}

@media (hover: hover) and (pointer: fine) {
  .clientGeneralInfo .clientIg:hover svg path {
    fill: var(--lines-border-color);
  }
  .changePolicyIcon:hover,
  .paymentIcon:hover {
    stroke: var(--lines-border-color);
  }
}
@media screen and (max-width: 768px) {
  .clientImgs, .clientLargeImage{
    aspect-ratio:3/2;
  }
  .clientExtraInfo{
    margin: 0;
  }
  .clientInfo {
    grid-template-columns: 1fr;
    grid-auto-flow: unset;
    gap: 20px;
  }
  .clientGeneralInfo{
    justify-content: start;
    align-items: center;
  }
  .clientImgs figure{
    width:76px;
    height: 76px;
    bottom:-38px;
  }
  .clientInfoContainer {
    margin-top: 38px;
}
}
