@font-face {
  font-family: "SF Pro";
  src: url("fonts/SF-Pro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
}

h1 {
  font-family: "SF Pro", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
}
@media (max-width: 749px) {
  .container {
    padding: 0 16px;
  }
}
/* main strating page */
#splash-screen {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
}

#splash-text {
  font-size: 23px;
  font-weight: 100;
}

.word {
  opacity: 0;
  display: inline-block;
  font-size: 23px;
  font-weight: 100;
}
@media (max-width:768px){
  .word {
    font-size: 19px;
  }
}
#splash-screen.hide {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* end strating page */

 
.cursor {
  width: 20px;
  height: 20px;
  background-color: blue;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transition: transform 0.1s linear, width 0.2s ease, height 0.2s ease;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}
.section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 990px) {
  .section {
    height: fit-content;
  }
}

/* Parallax Background */
.parallax-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  mix-blend-mode: multiply;
  filter: brightness(0.3);
  transition: filter 2s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

/* Smooth Transition Overlay */
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  pointer-events: none;
  z-index: 3;
}

/* Content on Section 1 */
.section-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 150px;
}

h1.fw-bolder {
  max-width: 800px;
  margin: 0 auto;
}

.section-content h1,
.section-content p,
.button {
  opacity: 0;
  transform: translateY(20px); /* Move down slightly */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.visible h1,
.visible p,
.visible .button {
  opacity: 1;
  transform: translateY(0);
}

.images {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.images-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-content h1 {
  font-size: 65px;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: bolder;
}

.section-content p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
  color: #ffffff;
}

/* IMAGE GRID */
.images {
  /* gap: 2px; */
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  margin-top: 89px;
}

.image-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  border: none;
  padding: -2;
  margin: 0;
}

.image-box img {
  width: 86%;
  height: 100%;
  object-fit: cover;
  border: none;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.image-box:hover img {
  transform: scale(1.05);
}

.button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

button.btn.portfolio-signup-btn {
  border-radius: 5px;
  border: none;
  color: #ffffff;
  background-color: #2b77f5;
  padding: 8px 18px;
  margin-top: 21px;
}

/* button.btn.portfolio-signup-btn:hover {
    background: rgba(132, 130, 130, 0.758);
    color: black;
} */

video.mobile-video_cust {
  display: none;
}

video.desktop-video_cust {
  z-index: 0;
}

#fallback-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  video.desktop-video_cust {
    display: none;
  }

  video.mobile-video_cust {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  h1.fw-bolder {
    max-width: 401px;
    margin: 0 auto;
  }

  .fw-bolder br {
    display: none;
  }

  .section-content {
    padding-top: 100px;
  }

  .section-content h1 {
    font-size: 45px;
    letter-spacing: -1px;
    word-spacing: -2px;
    line-height: -1;
    margin-bottom: 5px;
  }

  .section-content p {
    font-size: 20px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    width: 100%;
    margin-top: 15px;
    /* font-weight: none !important; */
  }

  .button {
    gap: 10px;
    padding-top: 20px;
  }

  button.btn.portfolio-signup-btn {
    border-radius: 5px;
    border: none;
    color: #ffffff;
    background-color: #2b77f5;
    padding: 8px 18px;
    margin-top: 10px;
  }

  .images {
    gap: 0px;
  }

  .image-box {
    padding-top: 40px;
  }

  .image-box img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .images {
    grid-template-columns: repeat(1, 1fr);
  }

  .images {
    gap: 7px;
    margin-top: 49px;
  }
}

/* NAVBAR */
.navbar {
  background: transparent !important;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: black !important;
}

.navbar img {
  width: 57px;
  margin-top: 20px;
}
/* services */
.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(
    10,
    10,
    10,
    0.85
  ) !important; /* Dark grey-black with opacity */
  backdrop-filter: blur(10px) !important;
  color: #ffffff;
  padding: 10px 15px;
  z-index: 100;
  border-radius: 20px;
  min-width: 210px;
}
.dropdown {
  position: relative;
}
.dropdown:hover .custom-dropdown {
  display: block;
}
.custom-dropdown p {
  margin: 0;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
.custom-dropdown p:hover {
  color: #2b77f5;
  font-weight: bolder;
}
/* case study */
.custom-dropss {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(
    10,
    10,
    10,
    0.85
  ) !important; /* Dark grey-black with opacity */
  backdrop-filter: blur(10px) !important;

  color: #fff;
  padding: 10px 15px;
  z-index: 100;
  border-radius: 20px;
  min-width: 230px;
}
.drops {
  position: relative;
}
.drops:hover .custom-dropss {
  display: block;
}
.custom-dropss p {
  margin: 0;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
.custom-dropss p:hover {
  color: #2b77f5;
  font-weight: bolder;
}
/* applu now */
.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(
    10,
    10,
    10,
    0.85
  ) !important; /* Dark grey-black with opacity */
  backdrop-filter: blur(10px) !important;

  color: #fff;
  padding: 10px 15px;
  z-index: 100;
  border-radius: 20px;
  min-width: 290px;
}
.dropdown {
  position: relative;
}
.dropdown:hover .custom-dropdown {
  display: block;
}
.custom-dropdown p {
  margin: 0;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #ffff;
}
.custom-dropdown a{
  text-decoration: none;

}
.custom-dropdown p:hover {
  color: #2b77f5;
  font-weight: bolder;
}
/* case study */
.custom-dropps {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 10px 15px;
  z-index: 100;
  border-radius: 20px;
  min-width: 260px;
}
.droops {
  position: relative;
}
.droops:hover .custom-dropps {
  display: block;
}
.custom-dropps p {
  margin: 0;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
.custom-dropps p:hover {
  color: #2b77f5;
  font-weight: bolder;
}
@media (max-width: 992px) {
  .section-content {
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .navbar img {
    margin-top: 5px;
  }

  .fixed-top {
    padding: 10px 0;
  }

  .navbar {
    background: rgba(0, 0, 0, 0.936) !important;
  }

  .navbar-nav {
    margin-top: 20px;
  }
  .custom-dropdown {
    background: #000;
  }

  .custom-dropss {
    background-color: #000;
  }
  .custom-dropps {
    background-color: #000;
  }
}

.nav-item {
  font-size: 15px;
}

.navbar-nav .nav-link {
  color: #b3b3b3;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
}

/* SECTION 2 */
.section2 {
  height: 100%;
  background-color: black;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.section2 p {
  text-align: center;
  font-size: 25px;
  max-width: 600px;
  margin: 0 auto;
  color: #9c9c9c;
  font-weight: 100 !important;
}

/* Background Image */
.container-fluid {
  background: url("../image/Gradient.png") no-repeat center center/cover;
  padding: 40px 0;
}

/* MARQUEE EFFECT */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
  padding-top: 59px;
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: marquee 15s linear infinite;
  width: max-content;
}

/* Infinite seamless loop */
.marquee-content::after {
  content: attr(data-clone);
  display: flex;
  gap: 60px;
}

.marquee-content img {
  width: 150px;
  height: 70px;
  border-radius: 15px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .section2.mobile-container-custom .container {
    max-width: 100%;
    padding: 0;
  }
}

/* SECTION 3 */
.section3 {
  background-color: black;
  color: white;
  padding-top: 125px;
  padding-bottom: 60px;
}
.section3 h1 {
  text-align: center;
  font-size: 65px;
  letter-spacing: -1px;
  word-spacing: -2px;
  line-height: -1;
  margin-bottom: 5px;
  font-weight: bolder;
}
.section3 p {
  text-align: center;
  font-size: 23px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
  color: #9c9c9c;
  padding-top: 10px;
}
.buttons {
  justify-content: center;
  align-items: center;
  display: flex;
}
.buttons .Explore {
  border-radius: 5px;
  border: none;
  color: #ffffff;
  background-color: #2b77f5;
  padding: 8px 18px;
  margin-top: 35px;
}
.cards-cutsom-blockss .card-container {
  gap: 25px;
  padding: 20px;
  color: black;
  display: flex;
  flex-wrap: wrap;
}

.cards-cutsom-blockss .card {
  max-width: 31%;
  width: 100%;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 40px;
  padding: 30px;
  text-align: center;
  background-color: #ffffff;
  height: 425px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateY(50px);
}

.cards-cutsom-blockss .card.show {
  opacity: 1;
  transform: translateY(0);
}

.cards-cutsom-blockss .card.hide {
  opacity: 0;
  transform: translateY(50px);
}

.cards-cutsom-blockss .card:hover {
  transform: scale(1.05); 
}

.card img {
  width: 100%;
  height: 151px;
  object-fit: contain;
}
.card h3 {
  font-size: 25px;
  margin-top: 25px;
  font-family: "SF Pro", sans-serif;
}
.card p {
  font-size: 18px;
}

.card-container h1 {
  font-size: 65px;
  letter-spacing: 1;
  word-spacing: -2px;
  line-height: -1;
  margin-bottom: 5px;
  font-weight: bolder;
  color: #ffffff;
  text-transform: capitalize;
  margin-top: 30px;
}
.section3 p {
  text-align: center;
  font-size: 23px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
  color: #9c9c9c;
  padding-top: 20px;
}

.card-container h1 span {
  color: #9c9c9c;
}
.card-cutsom {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.card.card-bg-cutsom {
  max-width: 50%;
  width: 100%;
  background: transparent;
  text-align: left;
}
.card.card-bg-cutsom h1 {
  text-align: left;
}
.buttons.button-explore-custom {
  margin-top: 20px;
  justify-content: flex-start;
}
.buttons.button-explore-custom button.Explore {
  margin-top: 0;
}
.cards-cutsom-blockss.mobile-view-block {
  display: none;
}
.card a {
  padding-top: 39px;
  display: inline-block;
  text-decoration: none;
  font-size: 17px;
  padding-bottom: 2px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

 .card p{
  font-size: 16px;
 }
.card.card-bg-cutsom:hover {
  transform: none;
}
 @media (max-width: 1100px) {
  .card-container h1 {
    font-size: 55px;
    line-height: normal;
  }
}
 
@media (max-width:990px){
  .card-bg-cutsom{
    display: none;
  }
  .card-container2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .cards-cutsom-blockss .card {
    max-width: 31%;
    width: 100%;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
    height: 100% !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .cards-cutsom-blockss .card.show,
  .cards-cutsom-blockss .card.hide {
    opacity: 1 !important;
    transform: none !important;
  }

  .card img {
    padding-top: 20px;
    width: 100%;
    object-fit: contain;
    height: fit-content;
  }

  .card-cutsom {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
  }
  .card h3 {
    font-size: 21px;
}
.card p{
  font-size: 14px;
}
.card-2 h3{
  font-size: 20px !important;
}
.card-5 h3{
  font-size: 19px   !important;
}
.card-5 p{
  font-size: 12px   !important;
}
.card-bg-cutsom {
  display: none !important;
}
}
@media (max-width:768px){
  .card a {
    padding-bottom: 20px;
      }
      
  .cards-cutsom-blockss .card {
    height: 100% !important;
  }

}
/* section4 */
.section4 {
  background: rgb(255, 254, 254);
  padding-top: 55px;
  color: rgb(0, 0, 0);
  transition: background-color 3s ease-in-out, color 3s ease-in-out;
}
.white-bg {
  background: white;
  color: #000;
  transition: background-color 3s ease-in-out, color 3s ease-in-out;
}
.case-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.item {
  padding: 20px;
  text-align: center;
}
.item h1 {
  font-size: 90px;
  font-weight: bold;
}
.item p {
  font-size: 23px;
  font-family: "SF Pro", sans-serif !important;
  font-weight: 100 bold;
}
.readd h1 {
  font-size: 65px;
  text-align: center;
  padding-top: 50px;
  font-weight: bolder;
}
.slider-item {
  border-radius: 60px;
  height: 100%;
  margin-top: 20px;
  display: flex;
  gap: 50px;
  width: 100%;
  align-items: center;
  padding: 50px;
  position: relative;
}
.slider-item {
  padding-top: 0;
  padding-bottom: 0;
}
.slick-initialized .slick-slide {
  display: block;
  padding-top: 0;
  padding-bottom: 59px;
}
.slick-video-slider.slick-initialized.slick-slider.slick-dotted {
  background: #ffffff;
  border-radius: 40px;
}
.video-read {
  max-width: 32%;
  width: 100%;
  height: 590px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.iframe-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  overflow: hidden;
  transform: scale(1.22);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
  border-radius: 16px;
  transform: none; /* Remove any zoom effect */
}



.text-read {
  max-width: 68%;
  width: 100%;
}
.text-read {
  color: #000000;
}
.text-read h1 {
  font-size: 65px;
  font-weight: bolder;
}
.text-read p {
  font-size: 26px;
  word-spacing: 1;
  font-weight: 100;
}
.text-readd h2 {
  font-size: 25px;
  font-family: "SF Pro", sans-serif;
  font-weight: bolder;
}
.text-readd p {
  font-weight: 100 !important;
  font-size: 20px !important;
}
.cases-container {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  justify-content: flex-start;
  gap: 90px;
}

.items h1,
.items p {
  margin: 0;
  padding: 0;
}
.items {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.items h2 {
  font-size: 45px;
  font-weight: bolder;
}
.items p {
  font-size: 16px;
  color: #9c9c9c;
  font-weight: 100;
}
.read-container a {
  padding-top: 39px;
  display: inline-block;
  text-decoration: none;
  font-size: 22px;
  border-bottom: 1px solid #2b77f5;
  padding-bottom: 2px;
  width: fit-content;
  transition: transform 0.3s ease;
}
.read-container a:hover {
  transform: scale(1.05);
}

.slick-video-slider .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #ffffff !important;
}
.slick-video-slider .slick-dots {
  position: absolute;
  bottom: -50px !important;
  text-align: center;
}
.slick-dots li button:before {
  font-size: 15px !important;
  color: #ffffff !important;
}
.section4 {
  padding-bottom: 100px;
  background-color: #000000;
  color: #fffcfc;
}

button.slick-arrow {
  width: 50px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  height: 50px;
  z-index: 9999;
}
.slick-video-slider .slick-prev {
  left: -5%;
}
.slick-video-slider .slick-next {
  right: -5%;
}
span.custom-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
span.custom-next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-video-slider.slick-initialized.slick-slider.slick-dotted {
  margin-top: 100px;
}
.slick-prev,
.slick-next {
  background: transparent;
  border: none;
  font-size: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.slick-prev span svg,
.slick-next span svg {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
}
.slick-next:before,
.slick-prev:before {
  content: "" !important;
}

@media (max-width: 990px) {
  .case-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }
  .section4 {
    padding-top: 0px;
  }

  .item h1 {
    font-size: 55px;
    font-weight: bolder;
  }
  .item p {
    font-size: 20px;
  }

  .readd h1 {
    font-size: 28px;
    text-align: center;
    padding-top: 71px;
    font-weight: bolder;
  }
  .slider-item {
    flex-direction: column;
    gap: 30px;
    text-align: left;
    padding: 30px;
    align-items: flex-start;
    width: 100% !important;
    min-height: 670px !important;
  }
  .section4 > div {
    width: 100%;
  }

  .text-read p {
    font-size: 11px;
    text-align: left !important;
  }
  .text-read h1 {
    font-size: 55px;
  }
  .text-readd p {
    font-size: 14px !important;
    text-align: start !important;
    font-weight: 100;
  }
  .text-readd h2 {
    font-size: 17px !important;
    text-align: start;
    font-weight: bolder;
  }
  button.slick-prev.slick-arrow:after {
    display: none;
  }
  button.slick-next.slick-arrow:after {
    display: none;
  }
  .items h2 {
    font-size: 25px;
  }
  .items p {
    font-size: 11px;
  }
  .read-container a {
    padding-top: 39px;
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #2b77f5;
    padding-bottom: 2px;
    width: fit-content;
    transition: transform 0.3s ease;
  }

  .slider-item p,
  .slider-item h1,
  .slider-item h3 {
    text-align: center;
  }
  .video-read video {
    display: none;
  }
  button.slick-arrow {
    display: none;
  }
  .text-readd h2 {
    font-size: 22px !important;
    text-align: start;
    margin-top: 10px;
  }
  .text-readd p {
    font-size: 18px !important;
    text-align: start !important;
  }
  .text-read p {
    font-size: 16px;
    text-align: left !important;
    line-height: normal;
    color: #fff;
  }

  .text-read {
    max-width: 100%;
    width: 100%;
  }
  .slider-item {
    width: 100% !important;
    min-height: 100% !important;
    margin-top: 0;
  }
  .slider-item p,
  .slider-item h1,
  .slider-item h3 {
    text-align: left;
  }
  .slick-video-slider button.slick-arrow {
    display: none !important;
  }
}

@media (max-width: 749px) {
  .section4 .container {
    max-width: 100%;
    padding: 0;
  }
  .text-read h1 {
    font-weight: bolder;
    font-size: 40px !important;
  }
  .text-read p {
    font-size: 16px !important;
    margin-top: 10px;
    font-weight: 100;
  }
  .cases-container .items p {
    margin: 0;
  }
  .item h1 {
    font-size: 80px;
    font-weight: bolder;
  }
  .items h2 {
    font-size: 34px;
  }
  .readd h1 {
    font-size: 45px;
    text-align: center;
    padding-top: 30px;
    font-weight: bolder;
  }
  .slick-slide {
    margin: 0 !important;
  }
  .section4.white-bg .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .slider-item {
    background: transparent;
    border: none;
  }

  .video-read {
    display: none;
  }

  .cases-container {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .slick-video-slider button.slick-arrow {
    display: none;
  }
  .slick-initialized .slick-slide {
    padding-bottom: 0px !important;
  }
  .slick-list {
    margin: 0;
    padding: 0;
    padding-top: 0px !important;
  }
  .slick-initialized .slick-slide {
    padding-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .text-read h1 {
    font-size: 30px;
  }
  .text-read p {
    font-size: 13px;
    color: black;
  }
  .text-readd h2.mt-5 {
    margin-top: 30px !important;
  }
  .cases-container .items p {
    font-size: 14px;
    margin-top: 0px;
  }
  .items h2 {
    font-size: 24px;
  }
}
.slick-video-slider .slick-next:focus,
.slick-video-slider .slick-next:hover,
.slick-video-slider .slick-prev:focus,
.slick-video-slider .slick-prev:hover {
  color: #000;
  outline: 0;
  background: #000;
}

/* start parallax */
.parallax-container {
  padding-top: 69%;
  position: relative;
  width: 100%;
  height: 230vh;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
  background-color: #000;
}

.parallax-image {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.2s ease-out;
}

.parallax-image img {
  width: 70px;
  display: block;
  margin: 1px;
  border-radius: 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.parallax-image img:hover {
  opacity: 1;
}

/* Section After Parallax */
.parallax-container {
  padding-top: 69%;
  position: relative;
  width: 100%;
  height: 210vh;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
  background-color: #000;
}

.parallax-image {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.2s ease-out;
}
.parallax-image img {
  width: 70px;
  display: block;
  margin: 1px;
  border-radius: 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.parallax-image img:hover {
  opacity: 1;
}
/* Section After Parallax */
.after-content {
  padding: 50px;
  font-size: 18px;
  text-align: center;
  background-color: #222;
}
.content-section {
  height: 200vh;
}
@media (max-width: 749px) {
  .parallax-image img {
    width: 30px;
  }
  .parallax-container {
    padding-top: 100%;
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: #000;
  }
}
/* end parallax */

/* single-image */
.single-image img {
  width: 100%;
  object-fit: cover;
}
/*  */

/* section6 */
.section-6 {
  padding: 20px 0;
  background-color: #fff;
}
.custom-text h1 {
  font-size: 65px;
  font-weight: bolder;
  text-align: center;
}
.coustom-textt {
  text-align: center;
}
.coustom-textt a {
  text-decoration: none;
  color: #000;
  font-size: 23px;
  text-align: center;
}
.coustom-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  margin: 0 auto;
}
.mobile-slide-image {
  display: none;
}
.mobile-slide-image.slick-initialized.slick-slider {
  display: none;
}
@media (max-width: 749px) {
  .coustom-textt a {
    font-size: 16px;
  }
  .custom-text h1 {
    font-size: 45px;
  }
  .dekstop-slide-image {
    display: none;
  }

  .mobile-slide-image.slick-initialized.slick-slider {
    display: flex;
    justify-content: center;
  }
  .mobile-slide-image .slick-list.draggable {
    mask-image: none;
    padding-top: 59px;
  }
  .mobile-slide-image {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
  }
  .mobile-slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
/* sec6 */
/* teams */
.teams {
  color: black;
  background-color: #fff;
  padding-top: 100px;
}
.team-text h1 {
  font-size: 65px;
  font-weight: bolder;
  text-align: center;
}
.team-text p {
  text-align: center;
  font-size: 23px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}

.teams .sliders-cardss img {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.08);
  margin-top: 50px;
}

.teams .team-image img {
  width: 100%;
}
.teams .team-card-text h3 {
  font-family: "SF Pro", sans-serif;
  font-weight: bold;
  padding-top: 12px;
}
.teams .team-card-text p {
  margin-top: -8px;
  color: #9c9c9c;
}
.sliders-cardss {
  margin-left: 30px;
}
@media (max-width: 749px) {
  .teams {
    padding-top: 50px;
  }
  .sliders-cardss {
    margin-left: 15px !important;
  }
  .team-text h1 {
    font-size: 45px;
  }
  .team-text p {
    font-size: 17px;
  }
  .teams .sliders-cardss img {
    height: 100%;
  }
  .team-card-text {
    text-align: left;
    margin-left: 20px;
  }
}
@media (max-width: 500px) {
  .sliders-cardss {
    margin-left: 0 !important;
  }
}
/* end */

/* clients-review */
.clients-review {
  color: #000;
  background-color: #fff;
  padding-top: 50px;
}

.clients-text h1 {
  font-size: 65px;
  font-weight: bolder;
  text-align: center;
  line-height: 1;
}

.clients-text p {
  font-size: 23px;
  text-align: center;
  line-height: 1.2;
}

.client-reviews-image {
  margin-left: 30px;
  margin-top: 40px;
}

.client-poster {
  padding: 15px;
  border-radius: 19px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
}

.client-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}
.clients-review .slick-track {
  display: flex !important;
}
.clients-review .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: auto !important;
}

@media (max-width: 749px) {
  .clients-review {
    padding-top: 20px;
  }
  .clients-text h1 {
    font-size: 45px;
  }
  .clients-text p {
    font-size: 13px;
  }
  .client-reviews-image {
    /* margin-left: 30px; */
    padding-top: 40px !important;
  }
  .client-poster.slick-slide {
    padding: 0;
  }
  .client-reviews-image.slick-initialized.slick-slider {
    margin: 0;
  }
  .client-reviews-image .slick-list.draggable {
    mask-image: none;
    padding-top: 0px;
  }
}

/* sec7 */
.section7 {
  padding-top: 90px;
}

.customs-text h1 {
  color: inherit;
  font-size: 65px;
  font-weight: bolder;
  text-align: center;
  line-height: 1;
  color: #000000;
}
.slider-block-customs {
  background-color: transparent;
  margin-top: 50px;
}
.bg-black .customs-text h1 {
  color: #fff;
}

.slider-cardss iframe {
  width: 100%;
  height: 510px;
  border-radius: 20px;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.08);
}

.slider-cardss:hover iframe {
  filter: grayscale(1);
}
.slider-cardss {
  margin-left: 30px;
}

.slider-header-cust {
  max-width: 465px;
}
.slick-list.draggable {
  mask-image: linear-gradient(
    to right,
    transparent,
    white 5%,
    white 100%,
    transparent
  );
  padding-top: 59px;
}

.slick-prev span svg,
.slick-next span svg {
  width: 30px;
  height: 30px;
  stroke: inherit;
  margin-top: 50px;
}
.bg-black .slick-prev span svg,
.bg-black .slick-next span svg {
  stroke: #fff;
  fill: #fff;
}
.section7 .slick-prev {
  right: 100px;
  top: -16%;
  left: auto;
}

.section7 .slick-next {
  right: 50px;
  top: -16%;
}
.section7 button.slick-arrow {
  background: transparent;
}

.clients-review,
.section7 {
  transition: background-color 1s ease-in-out;
}
@media (max-width: 749px) {
  .section7 .slick-slide img {
    display: block;
    width: 100% !important;
  }
  .slider-cardss {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    height: 590px !important;  
  }

  .slider-cardss iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 20px;
    object-fit: contain;
  }

  .customs-text h1 {
    font-size: 45px;
  }
  span.custom-next {
    display: none;
  }
  span.custom-prev {
    display: none;
  }
}
@media (max-width: 500px) {
  .slider-cardss {
    margin-left: 0px !important;
  }
  .slick-list.draggable {
    mask-image: none;
  }
}
/* section9 */
.section9 .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 100px;
}

.blog-section,
.faqs {
  width: 48%;
}

.blog-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.blog-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  border: 0.25px solid gray;
  border-radius: 0.5rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 80px;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem 0.7rem;
  text-decoration: none;
  transition: color 0.35s, background-color 0.35s;
  display: grid;
}

.blog-item:hover {
  background: #2b77f5;
  color: black;
}

.blog-item:hover .blog-meta,
.blog-item:hover p {
  color: rgb(255, 255, 255);
}

.blog-image {
  width: 95px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.blog-item .image-blogs img {
  object-fit: cover;
  width: 100%;
  display: block;
  transform-origin: center center;
  transition: transform 0.2s;
}
.blog-item:hover .image-blogs img {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.blog-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.see-all {
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin: 0;
  flex: 1;
}

.blog-meta {
  font-size: 12px;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
}

.blog-content h3 {
  font-size: 16px;
  color: #ffffff;
}

.blog-content p {
  font-size: 14px;
  margin: 0;
  color: #9c9c9c;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* faqs */
.faqs .faq-item {
  justify-content: space-between;
  border: 1px solid #333;
  color: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
}
.faq-item .icon {
  margin-left: 10px;
  font-size: 21px;
  color: #2b77f5;
  transition: color 0.3s ease;
}

.faq-item.active .icon {
  color: white;
}
.faq-item:hover .icon {
  color: white;
}

.faq-item.active {
  background-color: #2b77f5;
  color: #fff;
}
.answer {
  display: none;
  margin-top: 5px;
  color: #fff;
  text-align: left;
  animation: fadeIn 0.3s ease;
}
.faq-item.active .answer {
  display: block;
}
.faqs .faq-item:hover {
  background: rgb(43, 119, 245);
  color: black;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blog-inner-item-mobile {
  display: none;
}
.blog-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}
.blog-header .blog-text {
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 990px) {
  .section9 .container {
    flex-direction: column;
  }

  .blog-section,
  .faqs {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-inner-item-desktop {
    display: none;
  }
  .blog-meta {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: baseline;
  }
  .blog-inner-item-mobile {
    display: block;
  }

  .blog-item {
    grid-template-columns: auto 1fr;
  }

  .blog-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 10px;
  }

  .blog-item .image-blogs img {
    object-fit: cover;
    width: 100%;
    display: block;
    transform-origin: center center;
    transition: transform 0.2s;
  }
}
/* end section9 */
.faq-ques-block {
  display: flex;
  justify-content: space-between;
}

/* section10 */
.section10 {
  color: white;
  background-color: #0a0a0a; /* Dark base color */
  background-image: radial-gradient(circle at 30% 40%, #000000, transparent 40%),
    radial-gradient(circle at 60% 60%, #0b03a5, transparent 50%),
    radial-gradient(circle at 50% 80%, #0aebcd, transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: screen;
}
.contact-text {
  padding-top: 60px;
}
.contact-text p {
  font-weight: 100;
}
.contact-text h3 {
  margin-top: -10px;
  font-weight: 500;
  font-size: 45px;
  line-height: 1;
}
.contact-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  margin-top: 70px;
}

.contact-textt p {
  font-weight: 100;
}

.contact-textt h3 {
  font-weight: 200;
  margin-top: -10px;
}

.contact-works {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-works h3 {
  font-weight: 200;
  cursor: pointer;
  font-size: 25px;
  margin-top: 40px;
  color: #fff;
}
.contact-works a {
  text-decoration: none;
}

.contact-image img {
  width: 100%;
  object-fit: cover;
}
.contact-fotter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}
.contact-profiles {
  display: flex;
  gap: 30px;
}
.contact-profiles a {
  text-decoration: none;
  color: white;
}

@media (max-width: 749px) {
  .section10 {
    color: white;
    background-color: #0a0a0a;
    background-image: radial-gradient(
        circle at 30% 40%,
        #000000,
        transparent 40%
      ),
      radial-gradient(circle at 60% 60%, #0b03a5, transparent 50%),
      radial-gradient(circle at 50% 80%, #0aebcd, transparent 60%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll; /* Important for mobile */
    background-blend-mode: screen;
  }
  .contact-text h3 {
    margin-top: -10px;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
  }
  .contact-us {
    flex-direction: column;
    margin-top: 50px;
  }
  .contact-works {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .contact-fotter {
    flex-direction: column;
  }

  .contact-profiles {
    gap: 15px;
  }

  .contact-us {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-works h3 {
    margin-top: 0;
    font-size: 19px;
  }

  .contact-works {
    margin-top: 30px;
    gap: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 500px) {
  .contact-text h3 {
    font-size: 19px;
    font-weight: bolder;
  }
}

/* x */
/* start page digital marketing */
.section-1 {
  margin-top: 122px;
  color: white;
}
.digital-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.digital-texts p {
  font-weight: bold;
  color: #9c9c9c;
}
.digital-texts h1 {
  font-size: 65px;
  line-height: 1;
  font-weight: bolder;
}
.digital-texts p {
  margin-top: 20px;

  font-weight: 100;
  font-size: 20px;
  white-space: 2;
  padding-top: 5px;
}
.digital-image img {
  width: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .section-1 {
    margin-top: 140px;
  }
  .digital-text {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 5px;
  }
  .digital-texts h1 {
    font-size: 38px;
  }
    digital-texts p {
      font-size: 17px;
      margin-top: 25px;
  }
  .digital-image img {
    width: 100%;
    object-fit: cover;
  }
}
/* section-2 */
.section-2 {
  margin-top: 100px;
}
.progress-heading h1 {
  text-align: center;
  font-size: 65px;
  color: #fff;
  line-height: 1;
  font-weight: bolder;
}
.progress-heading p {
  text-align: center;
  color: #9c9c9c;
  font-size: 21px;
  padding-top: 15px;
}
.progress {
  margin-top: 70px;
  border: 1px solid #000;
  height: 650px;
  border-radius: 20px;
  background-color: #4d4d4d33;
  gap: 40px;
}
.progress-image img {
  width: 700px;
  padding-top: 80px;
  object-fit: cover;
}
.progress-text h1 {
  padding-top: 115px;
  color: #fff;
  font-size: 40px;
  font-weight: bolder;
}

.progress-text li {
  color: #9c9c9c;
  font-size: 20px;
  text-align: left;
  /* text-indent: -24px; */
}
.progress-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 26px;
}
@media (max-width: 768px) {
  .progress-heading h1 {
    font-size: 34px;
}
.progress-heading p {
  font-size: 24px;
  padding-top: 16px;
}
  .progress {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .progress {
    margin-top: 70px;
    border: 1px solid #000;
    height: fit-content;
    border-radius: 20px;
    background-color: #4d4d4d33;
    gap: 20px;
  }
  .progress-image img {
    width: 100%;
  }
  .progress-text h1 {
    padding-top: 10px;
    font-size: 29px;
  }
  .progress-text li {
    font-size: 21px;
    text-align: left;
}
}
/* section3 */
.ads {
  margin-top: 100px;
}
.ad-text p {
  color: #9c9c9c;
  font-weight: 100;
  font-size: 20px;
}
.text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.ad-text {
  flex: 1;
}

.ad-text h1 {
  font-size: 50px;
  color: #fff;
  line-height: 1;
  font-weight: bolder;
}
.ad-text ul {
  margin-top: 20px;
  color: #9c9c9c;
  padding: 0 10px;
}
.ad-text li {
  padding-top: 20px;
  word-spacing: 3;
  font-size: 20px;
}
.section-3 {
  position: relative;
  z-index: 3;
  overflow-x: hidden;
}
.ad-image {
  max-width: 46%;
  width: 100%;
}
.ad-text {
  max-width: 55%;
  width: 100%;
}
.ad-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 760px){
  .ad-text li {
    padding-top: 20px;
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 990px) {
  .text {
    display: flex;
    flex-direction: column-reverse;
  }
  .ad-text {
    max-width: 100%;
    width: 100%;
  }
  .ad-text h1 {
    font-size: 33px;
    color: #fff;
    line-height: 1;
}
  .ad-text li {
    font-size: 17px;
    margin-top: 20px;
  }
  .ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ad-image {
    max-width: 100%;
    width: 100%;
  }
}
/* section-4 */
.advertising {
  margin-top: 150px;
}
.advertising-image {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: hidden;
}
.advertising-image img {
  width: 610px;
}
.advertising-text p {
  color: #9c9c9c;
  font-size: 20px;
  font-weight: 100;
}
.advertising-textt h1 {
  color: #ffffff;
  font-size: 45px;
  line-height: 1;
  font-weight: bolder;
}
.advertising-textt ul {
  margin-top: 29px;
  padding: 0px 2px;
}
.advertising-textt li {
  color: #9c9c9c;
  font-size: 20px;
  word-spacing: 1;
}
.advertising-textt a {
  text-decoration: none;
}
.advertising-textt a p {
  color: #2b77f5;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 760px) {
  .advertising-image {
    flex-direction: column;
  }
  .advertising-image img {
    width: 100%;
  }
  .advertising-textt h1 {
    color: #ffffff;
    font-size: 29px;
    line-height: 1;
    font-weight: bold;
}
  .advertising-textt ul {
    margin-top: 29px;
    padding: 0px 2px;
  }
  .advertising-textt li {
    font-size: 20px;
  }
}
/* section-5 */
.digital-Growth h1 {
  text-align: center;
  font-size: 65px;
  font-weight: bolder;
  color: #ffff;
  margin-top: 100px;
}
.digital-Growth p {
  text-align: center;
  font-size: 21px;
  color: #9c9c9c;
}
.digital-Growths {
  border: 1px solid #000;
  background-color: #4848485e;
  width: 650px;
  height: 760px;
  border-radius: 20px;
  margin-top: 50px;
}
.digitals {
  display: flex;
  align-items: center;
  gap: 30px;
}
.Growth-text h1 {
  color: #fff;
  margin-top: 90px;
  padding: 0px 20px;
}
.Growth-text p {
  color: #9c9c9c;
  padding: 0px 20px;
  font-size: 20px;
  margin-top: 20px;
}
.Growth-image img {
  margin: 0 auto;
  padding-top: 30px;
  width: 550px;
  display: block;
}
.digitals-1 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.digital-Growths-1 {
  border: 1px solid #000;
  border-radius: 20px;
  background-color: #4848485e;
  width: 430px;
  height: 570px;
}
.Growths-text h1 {
  margin-top: 40px;
  padding: 0px 20px;
  font-size: 32px;
  font-weight: bold;
  color: #ffff;
}
.Growths-text p {
  padding: 0px 20px;
  color: #9c9c9c;
  padding-top: 20px;
  font-size: 20px;
}
.Growths-image img {
  width: 340px;
  display: block;
  margin: 0px auto;
  padding-top: 10px;
}
@media (max-width: 760px) {
  .digital-Growth h1 {
    font-size: 41px;
    font-weight: bold;
}
.digital-Growth p {
  font-size: 20px;
  margin-top: 20px;
}
  .digitals {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .digital-Growths {
    width: 100%;
    height: 685px;
  }
  .Growth-image img {
    width: 330px;
  }
  .digitals-1 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .digital-Growths-1 {
    width: 100%;
    height: 630px;
}
  .Growths-image img {
width: 330px;
padding-top: 40px;
  }
  .Growth-text h1 {
  font-size: 35px;
}
.Growth-text p {
text-align: left;
font-size: 21px;
}
.Growths-text h1 {
font-size: 35px;
}
.Growths-text p {
font-size: 20px;
}
}
/*  */
.client-reviews {
  color: #ffff;
  background-color: #000;
  padding-top: 50px;
}

.clients-text h1 {
  font-size: 65px;
  font-weight: bolder;
  text-align: center;
  line-height: 1;
}

.clients-text p {
  font-size: 23px;
  text-align: center;
  line-height: 1.2;
}

.client-reviews-image {
  margin-left: 30px;
  margin-top: 40px;
}

.client-poster {
  padding: 15px;
  border-radius: 19px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
}

.client-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.clients-review .slick-track {
  display: flex !important;
}
.clients-review .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: auto !important;
}

@media (max-width: 749px) {
  .clients-review {
    padding-top: 20px;
  }
  .clients-text h1 {
    font-size: 45px;
  }
  .clients-text p {
    font-size: 13px;
  }
  .client-reviews-image {
    /* margin-left: 30px; */
    padding-top: 40px !important;
  }
  .client-poster.slick-slide {
    padding: 0;
  }
  .client-reviews-image.slick-initialized.slick-slider {
    margin: 0;
  }
  .client-reviews-image .slick-list.draggable {
    mask-image: none;
    padding-top: 0px;
  }
}
