/* .client .container {
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  margin: 0 auto;
} */

.wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-collapse: collapse;
}

.wrap-row {
  display: flex;
}

.wrap-item {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.wrap a {
  border: 1px solid #dddee0;
  opacity: 1;
}

.wrap a img {
  animation: box 1.2s ease-in-out;
}

.animate img {
  animation: box 1.2s ease-in-out;
}

@keyframes box {
  0% {
    opacity: 0;
    transform: scale3d(0.95, 0.95, 0.95);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.client {
  width: 100%;
  background-color: #DCE1E6;
  padding: 100px 0;
}

.client .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-left {
  max-width: 470px;
}

.client-left h1 {
  color: #292C33;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.4px;
  line-height: 40px;
  text-align: start;
}

.client-left p {
  color: #575B66;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 26px;
  margin-top: 20px;
}

.client-right {
  display: flex;
  align-items: center;
  display: none;
}

.client-right .swiper-prev,
.client-right .swiper-next {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.client .swiper {
  width: 100%;
  /* height: 300px; */
  margin-top: 40px;
}

.client .swiper-wrapper .swiper-slide {
  background-color: pink;
  /* height: 320px; */
  width: 569px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.client .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.client .swiper-wrapper .swiper-slide-clientData {
  position: absolute;
  bottom: 0;
  padding: 20px;
  left: 0;
  display: flex;
  align-items: center;
  column-gap: 12px;
  height: 155px;
  right: 0;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(20, 22, 26, 0) 0%, #14161A 100%);
  border-radius: 0 0 7px 7px;
}

.client .swiper-wrapper .swiper-slide-clientData p {
  margin-bottom: 0;
}

.client .swiper-wrapper .swiper-slide-clientData-quote {
  height: 40px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.client .swiper-wrapper .swiper-slide-clientData-wrap h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 22px;
}

.client .swiper-wrapper .swiper-slide-clientData-wrap p {
  margin-top: 3px;
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
}

.v-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 22, 26, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  display: none;

}

.v-modal-content {
  width: 100%;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 20px 0 rgba(15, 20, 26, 0.1);
  padding: 20px;
  position: relative;
  max-height: calc(100vh - 50px);
  animation: open 0.3s ease-in;
}

.v-modal-content-video {
  max-height: 636px;
  height: calc(100vh - 100px);
  width: 100%;
  background-color: #F0F0F0;
}

.v-modal-content .close-video {
  height: 46px;
  width: 46px;
  background-color: #DDDEE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -23px;
  right: -23px;
  border: none;
  cursor: pointer;
}

.play {
  position: absolute;
  top: calc(50% - 23px);
  left: calc(50% - 23px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #FFFFFF;
  cursor: pointer;
  border: none;
  padding: 0;
}

.v-modal.show {
  display: flex;
}

.ytp-large-play-button {
  background-color: #FFFFFF !important;
}

#play-button {
  width: 100px;
  height: 50px;
  background-color: #007bff;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}

.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid orangered;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes open {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@media (max-width: 655px) { 
  .client {
    position: relative;
  }

  .client .client-right {
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}