@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --blue-100: #395eef;
  --white-100: white;
  --white-200: #e4e6e7;
  --white-300: #c9cccf;
  --white-400: #a1a6aa;
  --white-500: #798086;
  --black-100: #0a0d0f;
  --black-200: #080a0c;
  --black-300: #060809;
  --black-400: #040506;
  --black-500: #020303;
  --brown-100: #d0c8c9;
  --brown-200: #b8adae;
  --brown-300: #a09293;
  --brown-400: #887778;
  --brown-500: #6d5f60;
  --text-xs: clamp(0.82rem, calc(0.8rem + 0.14vw), 0.9rem);
  --text-sm: clamp(0.91rem, calc(0.88rem + 0.14vw), 1rem);
  --text-md: clamp(1rem, calc(0.97rem + 0.14vw), 1.08rem);
  --text-lg: clamp(1.09rem, calc(1.06rem + 0.14vw), 1.18rem);
  --text-xl: clamp(1.19rem, calc(1.16rem + 0.14vw), 1.27rem);
  --text-xxl: clamp(1.28rem, calc(1.25rem + 0.14vw), 1.38rem);
  --display-xs: clamp(1.56rem, calc(1.44rem + 0.55vw), 1.94rem);
  --display-sm: clamp(1.95rem, calc(1.75rem + 0.92vw), 2.57rem);
  --display-md: clamp(2.44rem, calc(2.11rem + 1.45vw), 3.42rem);
  --display-lg: clamp(3.05rem, calc(2.55rem + 2.22vw), 4.55rem);
  --display-xl: clamp(3.82rem, calc(3.07rem + 3.32vw), 6.05rem);
  --display-xxl: clamp(4.77rem, calc(3.67rem + 4.86vw), 8.05rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Inter", system-ui, ui-sans-serif, sans-serif;
  font-size: var(--text-md);
  font-weight: normal;
  line-height: 1.5;
  color: var(--black-500);
  background-color: var(--white-100);
  position: relative;
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  /* padding: 0 1.25rem; */
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: inherit;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: inherit;
}

.text-md {
  font-size: var(--text-md);
  line-height: inherit;
}

.text-lg {
  font-size: var(--text-lg);
  line-height: inherit;
}

.text-xl {
  font-size: var(--text-xl);
  line-height: inherit;
}

.text-xxl {
  font-size: var(--text-xxl);
  line-height: inherit;
}

.heading-xs {
  font-size: var(--display-xs);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-sm {
  font-size: var(--display-sm);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-md {
  font-size: var(--display-md);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-lg {
  font-size: var(--display-lg);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-xl {
  font-size: var(--display-xl);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-xxl {
  font-size: var(--display-xxl);
  line-height: 1.15;
  letter-spacing: -1px;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-bolder {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.badge {
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: normal;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 1rem;
  text-transform: unset;
}

.badge-primary {
  padding: 0.2rem 0.65rem;
  color: var(--white-100);
  background-color: var(--brown-500);
}

.badge-darken {
  padding: 0.2rem 0.65rem;
  color: var(--white-100);
  background-color: var(--black-500);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: normal;
  line-height: inherit;
  text-align: center;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.btn-primary {
  padding: 0.65rem 1.75rem;
  color: var(--white-100);
  background-color: var(--brown-500);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  padding: 0.65rem 1.75rem;
  color: var(--white-100);
  background-color: var(--black-500);
  box-shadow: var(--shadow-medium);
}

.btn-neutral {
  padding: 0.65rem 1.75rem;
  color: var(--black-300);
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* background-color: var(--white-100); */
  /* box-shadow: var(--shadow-medium); */
  padding: 0 16px;
  transition: background-color 0.3s ease-in-out;
}

.header-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}

.header-active {
  background: linear-gradient(
    270deg,
    rgba(57, 94, 239, 0.6) 0%,
    rgba(96, 206, 147, 0.6) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-500);
  text-transform: uppercase;
}

.carousel-indicators .active {
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
}

.carousel-indicators [data-bs-target] {
  width: 62px;
  height: 4px;
  border-radius: 10px;
  border-top: none;
  border-bottom: none;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1000001;
  /* background-color: var(--white-100); */
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.menu.is-active {
  left: 0;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  margin-top: 8rem;
}

.menu-link {
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--black-500); */
  color: white;
  /* text-transform: uppercase; */
  transition: all 0.3s ease;
}

.menu-link-in-box {
  position: fixed;
  display: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media only screen and (max-width: 768px) {
  .menu-link-in-box {
    /* visibility: hidden; */
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .menu-link-in-box-mobile {
    /* visibility: hidden; */
    display: none !important;
  }
}

.menu-link-icon {
  margin-right: 24.89px;
}

@media only screen and (min-width: 768px) {
  .menu-link-icon:hover .menu-link-in-box {
    display: block;
  }
}

.menu-link-in {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.99) 100%
  );
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0px 30px 15px 30px;
  top: 52px;
}

.menu-link-in-mobile {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 10px;
  top: 52px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-out;
}

@supports (-webkit-backdrop-filter: blur(10px)) {
  .menu-link-in {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 100%
    );
  }
}

.menu-link-in {
  visibility: hidden;
}

.bxs-chevron-down {
  color: white;
  padding: 4px;
}

.bxs-chevron-up {
  color: white;
  padding: 4px;
}

.icon-active {
  color: #96e8bc;
}

@media only screen and (max-width: 767px) {
  .icon-active {
    color: black;
  }
  .bxs-chevron-down {
    color: black;
  }
}

@media only screen and (max-width: 767px) {
  .menu {
    width: 65%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  .menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    text-align: center;
    color: #020202;
  }
  .menu-inner {
    align-items: inherit;
    margin-left: 30px;
  }
  .menu-link-in {
    /* visibility: hidden; */
    top: 250px;
  }
  .menu-block {
    display: block !important;
    opacity: 0;
  }
}

@media only screen and (min-width: 768px) {
  .menu-link-icon:hover .menu-link-in {
    visibility: visible;
  }

  .menu-link-in:hover {
    visibility: visible;
  }

  .menu-link-in-i:hover {
    color: #163cce;
  }
}

.menu-link-in-i {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #020202;
  margin-top: 1.3rem;
}

@media only screen and (min-width: 768px) {
  .menu-item:hover .menu-link,
  .menu-item:hover .bx {
    color: #96e8bc !important;
  }
}

.menu-active {
  color: #96e8bc !important;
}

@media only screen and (max-width: 767px) {
  .menu-item:hover .menu-link,
  .menu-item:hover .bx {
    color: black !important;
  }

  .menu-active {
    color: black !important;
  }
}

.menu-block {
  font-size: 1.5rem;
  text-align: center;
  /* color: var(--black-500); */
  color: white;
  display: none;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    left: 0;
    width: auto;
    height: auto;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.75rem;
    margin: 0 auto;
  }
}

.burger {
  z-index: 1000002;
  position: relative;
  display: block;
  order: -1;
  cursor: pointer;
  user-select: none;
  rotate: 0deg;
  border: none;
  outline: none;
  visibility: visible;
  background: none;
  transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  rotate: 0deg;
  border: none;
  outline: none;
  border-radius: 1rem;
  /* background-color: var(--black-100); */
  background-color: white;
  /* transition: 0.25s ease-in-out; */
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  /* width: 70%; */
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger > .logo {
  left: -220px;
  width: 99px;
  position: absolute;
  margin-left: 16px;
  top: 13px;
  transition: 0.35s ease;
  transition: all 0.4s ease-in-out;
}

.burger > .burget-menu {
  width: 1.65rem;
  height: 1.15rem;
  z-index: 1000002;
  position: relative;
  display: block;
  order: -1;
  cursor: pointer;
  user-select: none;
  rotate: 0deg;
  border: none;
  outline: none;
  visibility: visible;
  background: none;
  top: 0px;
  left: 0px;
}

.burger.is-active > .logo {
  left: 0;
}

@keyframes move {
  0% {
    transform: translateX(-50vw);
  }
  100% {
    transform: translateX(45vw);
  }
}

.burger.is-active > .burget-menu {
  top: 30px;
  animation: move 0.4s ease-out forwards;
}

.burger.is-active > .burget-menu > .burger-line {
  background-color: var(--black-100);
}

.burger.is-active > .burget-menu > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active > .burget-menu > .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active > .burget-menu > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

.wrapper-column {
  display: grid;
  row-gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}
/* slick carousel */

.slider-us {
  width: 100%;
  padding-top: 20px;
  text-align: center;
  overflow: hidden;
}

.slider-us button {
  display: none !important;
}

.slick-carousel {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  /* width: 1650px; */
  margin: 0px auto;
  display: flex;
  width: calc(1650px * 2);
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  border: none !important;
}

.whyus-slick .slick-item {
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 48px;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.04);
  /* backdrop-filter: blur(10px); */
  border-radius: 50px;
}

.slick-item img {
  padding: 5px;
}

@media only screen and (min-width: 48rem) {
  .wrapper-column {
    grid-template-columns: repeat(2, minmax(0, 26rem));
    align-content: center;
    justify-content: center;
    column-gap: 4rem;
    margin-top: 2rem;
  }
}

.wrapper-figure {
  position: relative;
  align-items: center;
  justify-self: center;
}

.wrapper-figure::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 100%;
  border-radius: 50%;
  padding-bottom: 100%;
  translate: -50% -50%;
  background-color: var(--brown-300);
}

.wrapper-image {
  display: block;
  max-width: 17rem;
  height: auto;
  scale: 1.25;
  rotate: 30deg;
  translate: 1rem;
  filter: drop-shadow(0px 8px 8px rgba(15, 15, 15, 0.4));
}

@media only screen and (min-width: 48rem) {
  .wrapper-image {
    max-width: 20rem;
  }
}

@media only screen and (min-width: 64rem) {
  .wrapper-image {
    max-width: 24rem;
  }
}

.wrapper-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1.5rem;
  margin-block: 4rem 2rem;
}

.wrapper-inform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.75rem;
}

.wrapper-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper-action {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-top: 1rem;
}

.wrapper-action .btn-neutral {
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding: 0.5rem 1rem;
}

.sizes,
.price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
}

.sizes-list {
  display: flex;
  column-gap: 0.25rem;
  padding-right: 1.5rem;
}

.sizes-item {
  font-family: inherit;
  font-size: 1rem;
  line-height: 2rem;
  cursor: pointer;
  user-select: none;
  width: 2rem;
  height: 2rem;
  text-align: center;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.sizes-item.is-select {
  font-weight: 500;
  color: var(--white-100);
  background-color: var(--brown-500);
}

#demo {
  max-height: 100vh;
}

.carousel-inner {
  width: 100%;
  height: 100%;
}
/* our services */

.section {
  padding: 0;
}

.content-services {
  width: 100%;
  height: 100%;
  background-image: url("../images/home/services-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.content-services h2 {
  text-align: center;
}

.ladi-section {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}

/* @media only screen and (max-width: 600px) {
      .ladi-section {
margin-top: 240px
    }
    } */

.pd-services {
  padding: 2rem 2rem;
}

@media only screen and (max-width: 600px) {
  .pd-services {
    padding: 2.5rem 0rem;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .pd-services {
    padding: 1.5rem 3rem;
  }
}

.pd-services h2 {
  margin-bottom: 3rem;
  color: var(--blue-100);
  font-size: 48px;
  font-weight: 700;
}
/* go 1 dirextion, gutter */
/* flexbox */

.flexbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px 50px 10px;
}

.pd-services img {
  margin: 0 auto;
}
/* GRID */

.grid {
  margin: 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: dense;
  grid-gap: 2.5rem;
  /* grid-gap: 10px; */
  /* the magic is here! you can easily set up your gutter */
}

.item {
  /* border-radius: 5px;
    border: 2px solid black; */
  /* padding: 20px; */
  padding: 2rem;
}

.pd-services .item {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .pd-services .item {
    display: flex;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
  }
  .pd-services .item a {
    align-items: center;
    display: flex;
    margin: auto;
    width: 100%;
    max-width: 140px;
  }
}

.pd-services p {
  margin-top: 20px;
  margin-bottom: 0;
  color: #000000;
}

@media only screen and (max-width: 800px) {
  .pd-services p {
    margin-top: 0px !important;
    margin-left: 5px;
    width: 100%;
  }
}
/* css why us */

.ladi-bg-whyus {
  padding-bottom: 186px !important;
  width: 100%;
  height: 100%;
  background: linear-gradient(263.66deg, #395eef 0%, #60ce93 100%);
  padding-bottom: 14rem;
  position: relative;
}

.bd-logo {
  position: absolute;
}

#digital-logo {
  margin: auto;
  margin-top: 30px;
}

.wrapper {
  display: grid;
  grid-template-columns: 66.667% 33.334%;
  padding: 3rem 0rem;
}

.box-content {
  padding: 0 2rem 0 0;
}

.box-content h2 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
}

.box-content p {
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  padding: 10px 10px 10px 0;
  margin: 0 auto;
}

.box-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  /* background-image: url("../images/home/whyus-1.png");
    background-repeat: no-repeat;
    background-size: cover; */
}

.box-content h3 {
  font-size: 32px;
  color: #ffffff;
  font-weight: 700;
}

.content-partners .wrapper {
  padding: 0rem 0rem;
  display: grid;
}

.slider-partners {
  padding: 30px 0rem;
  /* height: 83px; */
  align-items: center;
}

.partners-slick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  width: 2400px;
}

@media only screen and (max-width: 1200px) {
  .partners-slick {
    animation: scrollPartners 20s linear infinite;
  }
  .slider-partners::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }

  .slider-partners::before {
    left: 0;
    top: 0;
  }
}

.partners-slick .slick-item img {
  padding: 0;
}

.ladi-bg-client {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  /* padding-bottom: 16rem; */
  position: relative;
  /* margin-top: 200px */
}

/* @media only screen and (max-width: 600px) {
      .ladi-bg-client {
        margin-top: 0px
      }
    }

    @media only screen and (max-width: 800px) {
      .ladi-bg-client {
        margin-top: 250px
      }
    } */

.content-client {
  height: 500px;
}

.content-client-carousel {
  width: 100%;
  /* height: 100%; */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.64) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid #ffffff;
  border-radius: 26px;
  padding: 40px;
  max-width: 1200px;
  top: -11rem;
  position: absolute;
}

.content-client-carousel-item {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
  /* opacity: 0.5;
        animation-name: examplehover;
        animation-duration: 1s;
        */
}

.content-client-carousel-text {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 26px 0px 0px 26px;
  padding: 40px;
  transition: 0.5s;
}

.content-client-carousel-text h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: #395eef;
}

.content-client-carousel-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}

.content-client-img {
  border-radius: 0px 26px 26px 0px;
}

.content-client-img img {
  border-radius: 0px 26px 26px 0px;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .content-client-img img {
    height: 266px;
  }
}

.content-client-slider {
  top: 17rem;
  position: absolute;
  width: 100%;
  max-width: 1200px;
}

.content-client-slider-title {
  line-height: 72px;
  /* identical to box height, or 150% */
  text-align: center;
  color: #395eef;
}

.content-client-slider-title h2 {
  font-weight: 700;
  font-size: 48px;
}

.client-slick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  /* transition: transform 1s linear; */
}
.client-slick.mb {
  display: none;
}
.client-slick.pc {
  display: flex;
  animation: scrollClient 45s linear infinite;
}

@media only screen and (max-width: 800px) {
  .client-slick {
    transition: transform 0.5s ease;
  }
  .content-client {
    height: 590px;
  }
  .client-slick.mb {
    display: grid;
    animation: scroll 15s linear infinite;
  }
  .client-slick.pc {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .client-slick:hover {
    animation-play-state: paused;
  }
}

.whyus-slick {
  /* transition: transform 1s linear; */
  animation: scrollWhyus 40s linear infinite;
}

@media only screen and (max-width: 800px) {
  .whyus-slick {
    transition: transform 0.5s ease;
  }
}

@media only screen and (min-width: 768px) {
  .whyus-slick:hover {
    animation-play-state: paused;
  }
}

@keyframes scrollWhyus {
  0% {
    /* transform: translateX(300px); */
    transform: translateX(0);
  }
  100% {
    /* transform: translateX(calc(-160px * 15 + 70px)); */
    transform: translateX(-1650px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* transform: translateX(calc(-160px * 15)); */
    transform: translateX(-1280px);
  }
}

@keyframes scrollClient {
  0% {
    transform: translateX(0);
  }
  100% {
    /* transform: translateX(calc(-160px * 15)); */
    transform: translateX(-3380px);
  }
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    /* transform: translateX(calc(-160px * 15)); */
    transform: translateX(-1200px);
  }
}

.tranform-active {
  transition: transform 28s linear;
}

.tranform-active-1s {
  transition: transform 1s linear;
}

@media only screen and (min-width: 768px) {
  .tranform-active:hover {
    animation-play-state: paused;
  }
}

.slider-client {
  overflow: hidden;
  margin-top: 25px;
}

.client-slick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.carousel-slider-client {
  /* width: 1745px; */
  /* width: 3610px; */
  /* width: 3380px; */
  /* width: calc(160px * 30); */
  width: calc(3380px * 2);
}

.client-carousel-item-touch-mb {
  display: none;
}

.client-carousel-item-touch-pc {
  display: block;
  position: absolute;
  width: 100%;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.client-carousel-item-touch-pc {
  opacity: 0;
  transition: 0.3s;
}

@media only screen and (min-width: 768px) {
  .content-client-carousel:hover .client-carousel-item-touch-pc {
    opacity: 1;
  }
}

.btn-pc-client {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(263.66deg, #395EEF 0%, #60CE93 100%); */
  /* background: #FFFFFF; */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  border: 1px solid #ffffff;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  padding: 9px;
  position: absolute;
}

#btn-pc-client-1 {
  left: -30px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #btn-pc-client-1 {
    left: -70px !important;
    top: -10px;
  }
  #btn-pc-client-2 {
    right: -70px !important;
    top: -10px;
  }
}

#btn-pc-client-1-hover {
  left: -30px;
  z-index: 2;
  background: linear-gradient(263.66deg, #395eef 0%, #60ce93 100%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#btn-pc-client-1-hover span {
  background-image: url(../images/icon/arrow.svg);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

#btn-pc-client-2 {
  right: -30px;
  z-index: 1;
}

#btn-pc-client-2-hover {
  right: -30px;
  z-index: 2;
  background: linear-gradient(263.66deg, #395eef 0%, #60ce93 100%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#btn-pc-client-2-hover span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  background-image: url(../images/icon/arrow4.svg);
}

@media only screen and (min-width: 768px) {
  #btn-pc-client-1-hover:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }

  #btn-pc-client-1-hover:hover span {
    background-image: url(../images/icon/arrow-white.svg);
  }

  #btn-pc-client-2-hover:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }

  #btn-pc-client-2-hover:hover span {
    background-image: url(../images/icon/arrow3.svg);
  }
}

#btn-pc-client-1 span {
  background-image: url(../images/icon/arrow.svg);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

#btn-pc-client-2 span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  background-image: url(../images/icon/arrow4.svg);
}

.slider-us {
  /* overflow: scroll; */
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.slider-us {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.slider-us::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.slider-partners {
  /* overflow: scroll; */
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.slider-partners {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.slider-partners::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.slider-client {
  /* overflow: scroll; */
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.slider-client {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.slider-client::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media only screen and (max-width: 800px) {
  .grid {
    margin: 0 15px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: dense;
    grid-gap: 1rem;
    grid-auto-rows: 1fr;
  }
  .pd-services {
    padding: 2rem 0;
  }
  .pd-services h2 {
    margin-bottom: 3rem;
    color: var(--blue-100);
    font-size: 2rem;
    font-weight: 700;
  }
  .item {
    padding: 1rem;
  }
  .wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 16px;
  }
  .box-content p {
    font-size: 14px;
    text-align: justify;
  }
  .box-content {
    padding: 0;
  }
  .box-content {
    max-width: calc(100vw - 2rem);
  }
  .slider-us {
    padding-top: 0px;
    margin: 10px 0 20px;
  }
  .content-partners .wrapper {
    padding: 0rem 16px;
  }
  .content-partners {
    overflow: hidden;
  }
  .slider-partners {
    padding: 0rem 16px;
  }
  .content-client-carousel-item {
    grid-template-columns: 100%;
    position: relative;
  }
  .content-client-carousel {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    padding: 15px 15px 70px 15px;
    top: -15rem;
  }
  .content-client-carousel-text {
    padding: 30px;
    border-radius: 26px 26px 0px 0px;
    height: 250px;
  }
  .content-client-img {
    height: 200px;
  }
  .content-client-carousel-text h3 {
    font-size: 18px;
    line-height: 30px;
    /* identical to box height, or 150% */
    text-align: center;
  }
  .content-client-carousel-text p {
    font-size: 14px;
    text-align: justify;
  }
  .content-client-img img {
    border-radius: 0px 0px 26px 26px;
  }
  .content-client-slider {
    top: 20rem;
  }
  .content-client-slider-title h2 {
    font-size: 32px;
  }
  .slider-client {
    margin: 0 15px;
  }
  .carousel-slider-client {
    /* width: 1345px; */
    width: 1410px;
    /* width: 2820px; */
  }
  .client-slick {
    transform: translateX(0px);
    display: grid;
    grid-template-columns: repeat(16, 1fr);
  }
  .client-carousel-item-touch-mb {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
  .btn-mb-client {
    width: 20px;
    height: 4px;
    /* background: linear-gradient(90deg, #60CE93 0%, #395EEF 100%); */
    border-radius: 10px;
    background: rgba(205, 210, 213, 0.5);
  }
  .client-active {
    background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
  }
  .client-carousel-item-touch-pc {
    display: none;
  }
}

a {
  text-decoration: none;
  /* Bỏ gạch dưới cho tất cả các liên kết */
}

.carousel-indicators {
  margin-bottom: 0.9rem !important;
  z-index: unset;
}

.bs-box-carousel-item-content {
  width: 100%;
  max-width: 1200px;
  position: absolute;
  height: 196px;
  bottom: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.carousel-item-content {
  position: absolute;
  width: 500px;
  height: 196px;
  /* bottom: 200px; */
  left: 0;
}

.carousel-item-content h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #ffffff;
}

.carousel-item-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.icon-btn {
  /* display: inline-block; */
  width: 20px;
  height: 20px;
  background-image: url("../images/icon/headset.svg");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  padding: 10px;
  margin-right: 15px;
}

.carousel-control-prev-icon {
  background-image: url(../images/icon/arrow-white.svg);
}

.carousel-control-next-icon {
  background-image: url(../images/icon/arrow3.svg);
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  /* bottom: 100px; */
  top: unset;
  width: auto;
  z-index: unset;
}

.bs-box-btn {
  height: 32px;
  position: absolute;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 100px;
}

.btn-carousel {
  position: absolute;
  padding: 10px;
  width: 207px;
  border: none;
  /* background: linear-gradient(90deg, #60CE93 0%, #395EEF 100%); */
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
}

.bs-hover-btn {
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
  /* transition: 2s; */
}

.bs-hover-btn-hover {
  background: linear-gradient(90deg, #37ac6d 0%, #163cce 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .bs-hover-btn-hover:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }
}
/* .bs-hover-btn:hover {
    background: linear-gradient(90deg, #37AC6D 0%, #163CCE 100%);

} */
/* footer */

.bg-footer {
  background: linear-gradient(262.68deg, #cbd5ff 0%, #cdf0e4 100%);
}

.footer-container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 66.667% 33.334%;
}

.footer-form {
  width: 100%;
  padding: 30px 16px;
  background: linear-gradient(180deg, #37ac6d 0%, #163cce 100%);
}

input {
  display: block;
  margin: 20px auto;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: aliceblue;
}

.caption {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height, or 150% */
  color: #ffffff;
}

.footer-inf {
  padding: 50px 0px;
}

.footer-inf-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.footer-inf-content-adr {
  padding-right: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

@media only screen and (min-width: 768px) {
  .footer-item a:hover {
    color: blue !important;
  }
}

.footer-item img {
  height: 100%;
  margin-right: 10px;
}

.footer-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f1f1f;
  margin: 0;
}

.footer-item a {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 24px;
  margin-right: 30px;
}

.footer-item-logo {
  margin-top: 20px;
}

.footer-item-logo h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
}

.footer-item-img-logo {
  display: flex;
  margin-top: 12px;
}

.footer-item-img-logo img {
  margin-right: 10px;
}

@media only screen and (max-width: 800px) {
  .footer-container {
    grid-template-columns: 100%;
  }
  .footer-form {
    order: 1;
  }
  .footer-inf {
    order: 2;
    padding: 20px 16px;
  }
  .footer-inf-content {
    grid-template-columns: 100%;
  }
  .footer-item {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .bs-box-carousel-item-content {
    width: 100%;
    /* max-width: 1200px; */
    position: relative;
    height: 196px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
  }
  .carousel-item-content {
    position: relative;
    background: linear-gradient(180deg, #60ce93 0%, #163cce 100%);
    width: 100%;
    height: 100%;
    bottom: unset;
    left: unset;
    height: 268px;
    padding: 66px 16px 40px 16px;
  }
  .carousel-item-content h3 {
    font-size: 30px;
    line-height: unset;
  }
  .carousel-item-content p {
    font-size: 14px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    /* bottom: 207px; */
    width: auto;
  }
  .carousel-indicators {
    justify-content: unset;
    margin-left: 68px;
  }
  .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 4px;
    background: #ffffff;
  }
  .bs-box-btn {
    bottom: 207px;
  }
  .carousel-control-next {
    left: 216px;
    right: unset;
  }
  .carousel-control-prev {
    /* left: 10px; */
    margin-left: 16px;
  }
  .btn-carousel {
    bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .bs-box-carousel-item-content {
    width: 100%;
    /* max-width: 1200px; */
    position: relative;
    height: 196px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
  }
  .carousel-item-content {
    position: relative;
    background: linear-gradient(180deg, #60ce93 0%, #163cce 100%);
    width: 100%;
    height: 100%;
    bottom: unset;
    left: unset;
    height: 200px;
    padding: 26px 16px 40px 16px;
  }
  .carousel-item-content h3 {
    font-size: 30px;
    line-height: unset;
  }
  .carousel-item-content p {
    font-size: 14px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    /* bottom: 207px; */
    width: auto;
  }
  .carousel-indicators {
    justify-content: unset;
    margin-left: 68px;
  }
  .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 4px;
    background: #ffffff;
  }
  .bs-box-btn {
    bottom: 207px;
  }
  .carousel-control-next {
    left: 216px;
    right: unset;
  }
  .carousel-control-prev {
    /* left: 10px; */
    margin-left: 16px;
  }
  .btn-carousel {
    bottom: 15px;
  }
}

.icon-img {
  width: 40px;
  height: 40px;
  /* display: block; */
  /* opacity: 1; */
  /* transition: opacity 0.5s ease; */
}

@media only screen and (max-width: 800px) {
  .icon-img {
    width: 25px;
    height: 25px;
  }
}

.icon-img-white {
  width: 40px;
  height: 40px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.footer-bt {
  padding: 10px;
  width: 100%;
  border: none;
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  /* transition: 0.5s; */
  /* opacity: 0.8; */
}

.gray-img {
  filter: grayscale(100%);
  /* đổi màu sang màu xám */
  transition: filter 0.5s ease-in-out;
  /* hiệu ứng chuyển đổi màu */
  width: 160px;
}

@media only screen and (min-width: 768px) {
  .gray-img:hover {
    filter: grayscale(0%);
    /* đổi màu trở lại bình thường */
  }

  .dark:hover .icon-img {
    display: none;
    opacity: 0;
  }

  .dark:hover .icon-img-white {
    display: block;
    opacity: 1;
  }

  .dark:hover p {
    color: white;
  }
}

.dark {
  background: linear-gradient(
    124.45deg,
    rgba(255, 255, 255, 0.5) 16.82%,
    rgba(255, 255, 255, 0.095) 86.25%
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0px 4px 20px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 26px;
  /* transition: background 0.3s ease-in-out; */
  /* transition: opacity 1s ease-in-out;
    opacity: 0.8; */
}

@keyframes example {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .dark:hover {
    background: linear-gradient(90deg, #395eef 0%, #60ce93 100%);
    /* background: linear-gradient(90deg, #37AC6D 0%, #163CCE 100%); */
    color: white;
    /* opacity: 2; */
    animation-name: example;
    animation-duration: 1s;
  }

  .footer-bt:hover {
    background: linear-gradient(90deg, #37ac6d 0%, #163cce 100%);
    /* opacity: 1; */
    animation-name: examplehover;
    animation-duration: 1s;
  }
}

.footer-item-img-logo img {
  filter: grayscale(100%);
  /* đổi màu sang màu xám */
  transition: filter 0.5s ease-in-out;
  /* hiệu ứng chuyển đổi màu */
}

@media only screen and (min-width: 768px) {
  .footer-item-img-logo img:hover {
    filter: grayscale(0%);
    /* đổi màu trở lại bình thường */
  }
}

@media only screen and (max-width: 800px) {
  .gray-img {
    /* width: 90px; */
    filter: grayscale(0%);
  }
  .footer-item-img-logo img {
    filter: grayscale(0%);
  }
  .ladi-bg-whyus {
    padding-bottom: 16rem !important;
  }
}

.client-carousel-text-transition {
  transition: opacity 1s ease-in-out;
}

@media only screen and (min-width: 800px) and (max-width: 1200px) {
  /* Áp dụng CSS cho màn hình có độ rộng lớn hơn 800 và bé hơn 1200 */
  .header {
    padding: 0 30px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    margin: 0 30px;
  }
  .wrapper {
    padding: 3rem 30px;
  }
  .content-partners {
    padding: 0 30px;
  }
  .content-client-carousel {
    width: auto;
    margin: 0 30px;
  }
  .content-client-slider {
    padding: 0 30px;
  }
  .bg-footer {
    padding: 0 30px;
  }
}

ul {
  margin: 0;
  padding: 0;
}

.support-now {
  color: white;
}

@media only screen and (min-width: 768px) {
  .support-now:hover {
    color: white;
  }
}

@media only screen and (max-width: 800px) {
  .top-services img {
    height: 40px;
  }
}
