.work-section {
  position: relative;
  transition: all 500ms;
}
@media screen and (max-width: 1024px) {
  .work-section {
    bottom: 0;
  }
}
.work-section .pagebox {
  position: relative;
  z-index: 1;
  height: 200px;
}
@media screen and (max-width: 1024px) {
  .work-section .pagebox {
    height: 80px;
  }
}
.work-section .pagebox .page-title {
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: top 0.3s ease-in-out; */
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 2px;
  animation: page-tilte 3s cubic-bezier(0, 0, 0, 1);
  animation: shift 1s ease-in-out infinite alternate;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .work-section .pagebox .page-title {
    font-size: 40px;
  }
}
.work-section .pagebox .page-title:before,
.work-section .pagebox .page-title:after {
  display: block;
  content: attr(data-page-title);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.work-section .pagebox .page-title:before {
  animation: page-title 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #8b00ff;
  z-index: -1;
}
.work-section .pagebox .page-title:after {
  animation: page-title 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #00e1e5;
  z-index: -2;
}
@keyframes page-title {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  to {
    transform: translate(0);
  }
}
@keyframes shift {
  0%,
  40%,
  44%,
  58%,
  61%,
  65%,
  69%,
  73%,
  100% {
    transform: translate(-50%, -50%) rotateX(0deg) skewX(0deg);
  }
  41% {
    transform: translate(-50%, -50%) rotateX(10deg) skewX(10deg);
  }
  42% {
    transform: translate(-50%, -50%) rotateX(-10deg) skewX(-10deg);
  }
  59% {
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(10deg) skewX(20deg) skewY(10deg);
  }
  60% {
    transform: translate(-50%, -50%) rotateX(-20deg) rotateY(-10deg) skewX(-20deg) skewY(-10deg);
  }
  63% {
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-5deg) skewX(-10deg) skewY(-5deg);
  }
  70% {
    transform: translate(-50%, -50%) rotateX(-20deg) rotateY(-20deg) skewX(-20deg) skewY(-20deg);
  }
  71% {
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-10deg) skewX(10deg) skewY(-10deg);
  }
}
.work-section .black {
  margin: 0 auto;
  max-width: 1400px;
}
.work-section .black .service-describe {
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .work-section .black .service-describe {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.work-section .black .content-bg {
  position: relative;
  background-image: linear-gradient(45deg, #18f9ea, #9e29ff);
  transform-origin: 50% 10%;
  border-radius: 10px;
  margin-top: 40px;
}
.work-section .black .content-bg .section-content {
  position: relative;
  transform-origin: 50% 3%;
}
.work-section .black .content-bg .section-content .srv-main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.work-section .black .content-bg .section-content .srv-main .srv-bg {
  width: 100%;
  background-color: #000;
  /* &:after{
                            content: '';
                            position: absolute;
                            top: -4px;
                            left: -1%;
                            width: 102%;
                            height: 100%;
                            background-image: linear-gradient(45deg, #18f9ea,#9e29ff);
                            z-index: -1;
                            overflow: hidden;
                        } */
}
.work-section .black .content-bg .section-content .srv-main .srv-type {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  padding-top: 60px;
  text-align: center;
  transition: all 1s ease;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-type {
    height: 200px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-type .srv-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-type .srv-name {
    width: 80%;
    padding: 10px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-type .srv-name .title {
  font-size: 64px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-type .srv-name .title {
    font-size: 32px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-type .srv-name .desc {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-type .srv-name .desc {
    font-size: 14px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec {
  width: 100%;
  padding-left: 5%;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
  max-width: 1024px;
  margin: 0 auto;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec {
  flex: 1;
  text-align: center;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav {
  position: sticky;
  top: 20%;
  margin: 50% 0;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-title {
    font-size: 16px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-content {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-content {
    font-size: 16px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-content li {
  margin-top: 20px;
  cursor: pointer;
  height: 40px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .srv-nav-content li {
    height: 30px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .selected {
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  /* background: #FFF -webkit-linear-gradient(45deg, #ff8e8e, #cb13ff) no-repeat; */
  background: #FFF -webkit-linear-gradient(45deg, var(--linear-color)) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-size: 0% 100%;
  animation: selected 1.5s;
  animation-fill-mode: forwards;
  transition: 0.15s ease-in;
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .selected {
    font-size: 20px;
  }
}
@keyframes selected {
  0% {
    -webkit-background-size: 0 100%;
  }
  100% {
    -webkit-background-size: 100% 100%;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact .button {
  position: relative;
  width: 52px;
  height: 52px;
  background-image: -webkit-linear-gradient(45deg, var(--linear-color));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-top: 30px;
  transition: all 0.2s ease-in-out;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact .button:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact .button {
    margin-top: 20px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact .button:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  -webkit-filter: blur(15px);
  background-image: linear-gradient(45deg, var(--linear-color));
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .nav-sec .srv-nav .contact .button i {
  font-size: 32px;
  color: #FFF;
  margin-top: 2px;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv {
  margin-top: 100px;
  flex: 1;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv {
    flex: 2;
    margin-top: 30px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item {
  border-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30% 15%;
  background-color: transparent;
  position: relative;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0.3, 0.47, 0.78);
  border-radius: 20px;
  margin-bottom: 120px;
  /* &:after {
                                    position: absolute;
                                    content: "";
                                    top: 30px;
                                    left: 0;
                                    right: 0;
                                    z-index: -1;
                                    height: 100%;
                                    width: 100%;
                                    transform: scale(0.8);
                                    -webkit-filter: blur(25px);
                                    background-image: linear-gradient(45deg,var(--linear-color));

                                } */
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background-image: linear-gradient(45deg, var(--linear-color));
  border-radius: 22px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:before {
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
  }
}
@media screen and (min-width: 768px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(1),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(5),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(9) {
    transition-delay: 0s;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(2),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(6),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(10) {
    transition-delay: 0.2s;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(3),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(7),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(11) {
    transition-delay: 0.4s;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(4),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(8),
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:nth-child(12) {
    transition-delay: 0.6s;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item.showin {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item {
    width: 100%;
    margin-bottom: 60px;
    padding: 6% 10% 6% 12%;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .bg {
  /*background-image: url("/static/img/kv.webp");*/
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: all 0.2s ease;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .bg:before,
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .bg:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .bg:before {
  transition: 1s ease;
  background-color: rgba(0, 0, 0, 0.35);
  top: 0;
}
@media screen and (max-width: 1400px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .bg:before {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content {
  position: relative;
  z-index: 1;
  transition-duration: 0.4s;
  transition: all 0.5s ease-in-out;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline {
  color: #fff;
  text-align: center;
  display: block;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .name {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .name {
    font-size: 32px;
    color: #FFF;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon {
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon {
    width: 120px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon .text {
  opacity: 0;
  transition: 0.3s ease;
  font-size: 18px;
  color: #fff;
  margin-left: -12px;
  line-height: 28px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon .text {
    opacity: 1;
    font-size: 16px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon .iconfont {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon .iconfont {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline .icon .iconfont {
    right: 5px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .outline:hover .name {
    color: #fff;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list {
    gap: 4px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .s1 {
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .s1 {
    font-size: 13px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con {
  display: flex;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con .con-like {
  --red: #ff3264;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con .con-like {
    width: 12px;
    height: 12px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come {
  position: relative;
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come {
    width: 16px;
    height: 16px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FFF;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag {
    border: 1px solid #FFF;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(2) {
  top: 0;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(2) {
    left: 12px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(3) {
  top: 0;
  left: 40px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(3) {
    left: 24px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(4) {
  top: 0;
  left: 60px;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(4) {
    left: 36px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(5) {
  top: 0;
  left: 80px;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(5) {
    left: 48px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(6) {
  top: 0;
  left: 100px;
  z-index: 6;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(6) {
    left: 60px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(7) {
  top: 0;
  left: 120px;
  z-index: 7;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag:nth-child(7) {
    left: 72px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .come .flag img {
  width: 100%;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-like .like {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 20;
  cursor: pointer;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-like .checkmark {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-like .filled {
  fill: var(--red);
  position: absolute;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-like .outline {
  fill: #ffffff;
  position: absolute;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-like .filled {
  animation: kfr-filled 0.5s;
  display: none;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-fill .checkmark .filled {
  display: block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .list .con-fill .checkmark .filled {
    width: 10px;
    height: 10px;
  }
}
@keyframes kfr-filled {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .text {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1400px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .content .text {
    font-size: 13px;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion {
  position: absolute;
  top: calc(100% - 140px);
  left: 0;
  width: calc(100% - 20px);
  margin: auto;
  opacity: 0;
  background-color: #0000008a;
  border-radius: 16px;
  transform: translate(10px, 10px);
  transition: 0.3s ease;
  transition-property: opacity, transform;
  z-index: 2;
  box-shadow: 10px 10px 20px rgba(133, 87, 74, 0.2);
  color: #000;
  pointer-events: none;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion {
    position: relative;
    margin-top: 20px;
    z-index: 1;
    opacity: 1;
    background-color: transparent;
    top: unset;
    left: unset;
    width: 100%;
    transform: unset;
    pointer-events: auto;
    box-shadow: none;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger {
  display: none;
}
@media screen and (max-width: 768px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 36px;
    padding-top: 10px;
    font-weight: 500;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger .icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.25s ease;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger .icon:after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger .icon:before {
    content: "";
    width: 14px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .trigger.show .icon {
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .expand {
    height: auto!important;
  }
}
@media screen and (max-width: 768px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .expand {
    height: 0;
    overflow: hidden;
    transition: 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    transition-property: height, opacity, padding;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 300;
  box-sizing: border-box;
  display: inline-block;
  /* display: grid;
                                        grid-template-columns: repeat(2, 1fr);
                                        grid-template-rows: repeat(4, auto);
                                        gap: 10px; */
}
@media screen and (max-width: 1024px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list {
    padding: 0;
    height: auto;
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list a {
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #ffffff;
  text-decoration: none;
  display: inline-block;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li:first-child {
  border-top: none;
}
@media screen and (max-width: 1400px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 5px 0;
  box-sizing: border-box;
  text-decoration: none;
  border-bottom: none;
  opacity: 1;
  transition: color 0.12s ease-in;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1400px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a {
    color: rgba(255, 255, 255, 0.8);
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a .s1 {
  display: inline-block;
  font-weight: 300;
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  transition: all 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition-property: transform, color;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  transform: translateX(0);
}
@media screen and (max-width: 1400px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a i {
    color: rgba(255, 255, 255, 0.8);
  }
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a:hover .s1 {
  opacity: 0.85;
}
.work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item .accordion .list li a:hover i {
  transform: translateX(6px);
}
@media screen and (min-width: 1025px) {
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover {
    transform: translateY(-10px);
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .bg:before {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .accordion {
    opacity: 1 !important;
    transform: translate(10px, 0);
    pointer-events: auto;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .outline .icon {
    width: 120px;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .outline .icon .text {
    opacity: 1;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .outline .icon .iconfont {
    right: 5px;
    transform: translateY(-50%);
    color: #ffffff;
  }
  .work-section .black .content-bg .section-content .srv-main .srv-item-sec .all-srv .srv-item:hover .content {
    transform: translateY(-10%);
  }
}
/*# sourceMappingURL=team.css.map */