@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.private-client-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .private-client-banner {
    height: calc(100vh - 64px);
  }
}
.private-client-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 24.51%), linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 71.64%);
}
@media only screen and (max-width: 540px) {
  .private-client-banner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 24.51%), linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 71.64%);
  }
}
.private-client-banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.private-client-banner .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 20%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .private-client-banner .bg-wrapper {
    bottom: 20%;
  }
}
@media only screen and (max-width: 540px) {
  .private-client-banner .bg-wrapper {
    margin-left: 0;
  }
}
.private-client-banner .bg-wrapper h1 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 60px;
  text-align: center;
  text-transform: capitalize;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .private-client-banner .bg-wrapper h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 540px) {
  .private-client-banner .bg-wrapper h1 {
    max-width: 90%;
    text-align: center;
    margin: auto;
    line-height: 1.3;
    font-size: 34px;
  }
}
.private-client-banner .bg-wrapper p {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 540px) {
  .private-client-banner .bg-wrapper p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
.private-client-banner .bg-wrapper p span:first-child {
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  line-height: 100%;
  margin-right: 15px;
}
@media only screen and (max-width: 540px) {
  .private-client-banner .bg-wrapper p span:first-child {
    margin-right: 0;
  }
}
.private-client-banner .bg-wrapper p span:last-child {
  font-family: "Goldman";
  font-weight: 400;
  font-size: 20px;
}

.private-client-secA {
  padding: 50px 0;
  background: #F5F5F5;
  overflow: hidden;
}
.private-client-secA .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .private-client-secA .flex-box {
    gap: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .private-client-secA .flex-box {
    flex-direction: column;
    gap: 40px;
  }
}
.private-client-secA .flex-box .col:first-child {
  width: 100%;
  max-width: 40%;
}
@media only screen and (max-width: 768px) {
  .private-client-secA .flex-box .col:first-child {
    max-width: 80%;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .private-client-secA .flex-box .col:first-child {
    max-width: 100%;
  }
}
.private-client-secA .flex-box .col:first-child h2 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1;
}
@media only screen and (max-width: 540px) {
  .private-client-secA .flex-box .col:first-child h2 {
    font-size: 24px;
  }
}
.private-client-secA .flex-box .col:first-child p {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  padding-bottom: 40px;
}
.private-client-secA .flex-box .col:first-child a {
  border: 1px solid black;
  color: white;
  padding: 7px 25px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  transition: 0.5s ease;
  overflow: hidden;
  background: black;
  display: inline-block;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--black);
}
.private-client-secA .flex-box .col:first-child a::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: 0.5s ease;
}
.private-client-secA .flex-box .col:first-child a:hover {
  color: var(--black);
}
.private-client-secA .flex-box .col:first-child a:hover::before {
  bottom: 0;
  z-index: -1;
}
.private-client-secA .flex-box .col:last-child {
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .private-client-secA .flex-box .col:last-child {
    max-width: 100%;
  }
}
.private-client-secA .flex-box .col:last-child figure {
  height: auto;
  width: 458px;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  .private-client-secA .flex-box .col:last-child figure {
    width: 100%;
    height: 100%;
  }
}
.private-client-secA .flex-box .col:last-child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.private-client-secB {
  background: black;
  padding: 50px 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.368627451);
  position: relative;
}
.private-client-secB::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--primary);
  top: 230px;
  left: 0;
}
@media only screen and (max-width: 540px) {
  .private-client-secB::before {
    top: 42.3%;
  }
}
.private-client-secB .heading {
  text-align: center;
  position: relative;
}
.private-client-secB .heading h2 {
  color: white;
  text-transform: capitalize;
  font-family: "Goldman";
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .private-client-secB .heading h2 {
    margin-bottom: 0px;
  }
}
.private-client-secB .heading h3 {
  color: white;
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .private-client-secB .heading h3 {
    font-size: 24px;
  }
}
.private-client-secB .heading p {
  color: #c4c4c4 !important;
}
.private-client-secB .heading .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .private-client-secB .heading .swiper-nav {
    display: none;
  }
}
.private-client-secB .heading .swiper-nav button svg path {
  stroke: white;
}
.private-client-secB .more-product-slider {
  position: relative;
}
.private-client-secB .swiper {
  padding: 66px 0 40px 0;
}
@media only screen and (max-width: 540px) {
  .private-client-secB .swiper {
    padding: 60px 0 0px 0;
  }
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media only screen and (max-width: 540px) {
  .private-client-secB .swiper .swiper-wrapper .swiper-slide::before {
    top: -27px;
  }
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide h3 {
  font-weight: 500;
  text-align: center;
  font-family: "Sweet Sans Pro";
  font-size: 16px;
  color: var(--white);
  margin: 20px 0 20px 0;
}
@media only screen and (max-width: 540px) {
  .private-client-secB .swiper .swiper-wrapper .swiper-slide h3 {
    margin: 0px 0 20px 0;
  }
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide figure {
  height: 70px;
  margin: 0 auto 20px;
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide figure img, .private-client-secB .swiper .swiper-wrapper .swiper-slide figure svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.private-client-secB .swiper .swiper-wrapper .swiper-slide p {
  font-weight: 500;
  font-size: 14px;
  color: #c4c4c4;
  max-width: 242px;
  margin: auto;
  text-align: center;
}

.private-client-secC {
  padding: 50px 0;
}
.private-client-secC .heading {
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .private-client-secC .heading {
    justify-content: center;
  }
}
.private-client-secC .heading h2 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .private-client-secC .heading h2 {
    font-size: 24px;
  }
}
.private-client-secC .heading p {
  max-width: 618px;
}
.private-client-secC .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 0 20px 0;
}
@media only screen and (max-width: 1024px) {
  .private-client-secC .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .private-client-secC .grid-box {
    padding: 30px 0 0 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
.private-client-secC .grid-box a:hover figure img {
  scale: 1.1;
}
.private-client-secC .grid-box a figure {
  width: 100%;
  height: 350px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .private-client-secC .grid-box a figure {
    height: 270px;
  }
}
.private-client-secC .grid-box a figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.private-client-secC .grid-box a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.private-client-secC .grid-box a figure figcaption {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 0px 40px 45px 33px;
  z-index: 2;
}
.private-client-secC .grid-box a figure figcaption h4 {
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}/*# sourceMappingURL=private-client.css.map */