@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
section:has(.process-sec) {
  position: relative;
}
section:has(.process-sec)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0%;
  width: 350px;
  height: 538px;
  background: url("../../../assets/images/Vectors/vector.png") no-repeat;
  z-index: -1;
  transform: scaleY(-1) scaleX(-1);
}
@media only screen and (max-width: 540px) {
  section:has(.process-sec)::after {
    width: 250px;
    height: 350px;
    background-size: contain;
  }
}
section:has(.process-sec)::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 667px;
  height: 667px;
  transform: translate(-50%);
  background: #ffffff;
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  section:has(.process-sec)::before {
    content: none;
  }
}

section:has(.process-detail-secA) {
  position: relative;
}
section:has(.process-detail-secA)::after {
  content: "";
  position: absolute;
  bottom: 35%;
  right: 0%;
  width: 350px;
  height: 538px;
  background: url("../../../assets/images/Vectors/vector.png") no-repeat;
  z-index: -1;
  transform: scaleY(-1) scaleX(-1);
}
@media only screen and (max-width: 540px) {
  section:has(.process-detail-secA)::after {
    width: 250px;
    height: 350px;
    background-size: contain;
  }
}

section:has(.process-detail-secB) {
  position: relative;
}
section:has(.process-detail-secB)::before {
  content: "";
  position: absolute;
  top: -49%;
  left: -1%;
  width: 350px;
  height: 540px;
  background: url("../../../assets/images/Vectors/vector.png") no-repeat;
  z-index: -1;
  transform: scaleY(-1);
}
@media only screen and (max-width: 540px) {
  section:has(.process-detail-secB)::before {
    width: 250px;
    height: 350px;
    background-size: contain;
  }
}

.stikcy-breadcrumb {
  position: sticky;
  top: var(--headerheight);
  z-index: 3;
}

.breadcrumb {
  background: #F4F4F4;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 15px;
}
@media only screen and (max-width: 540px) {
  .breadcrumb ul {
    gap: 5px;
  }
}
.breadcrumb ul li a {
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.breadcrumb ul li a.active {
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .breadcrumb ul li a {
    font-size: 11px;
  }
}
@media only screen and (max-width: 540px) {
  .breadcrumb ul span {
    height: 8px;
    line-height: 0;
  }
}

.process-banner {
  height: 343px;
  background: linear-gradient(270deg, #05B4C4 0%, #03565E 100%);
  margin-top: var(--headerheight);
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-banner .triangle-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
@keyframes triangleMove {
  0% {
    transform: translateX(-550px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(550px);
    opacity: 0;
  }
}
.process-banner .triangle-wrap span {
  position: relative;
  width: 183px;
  height: 290px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  animation: triangleMove 1.2s linear infinite;
  opacity: 0;
}
.process-banner .triangle-wrap span:nth-child(2) {
  background: rgba(255, 255, 255, 0.1019607843);
  animation-delay: 1s;
}
.process-banner .triangle-wrap span:nth-child(3) {
  background: rgba(255, 255, 255, 0.0509803922);
  animation-delay: 2s;
}
.process-banner .heading {
  position: relative;
  z-index: 1;
}
.process-banner .heading h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  max-width: 676px;
  margin: auto;
}
@media only screen and (max-width: 540px) {
  .process-banner .heading h1 {
    font-size: 28px;
    line-height: 1.1;
    max-width: 95%;
    margin: auto;
  }
}

.process-sec {
  position: relative;
}
.process-sec::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 667px;
  height: 667px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-sec::before {
    content: none;
  }
}
.process-sec::before {
  top: 10%;
}
.process-sec {
  position: relative;
}
.process-sec::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 20%;
  width: 667px;
  height: 667px;
  transform: translate(-50%);
  background: rgba(5, 180, 196, 0.1019607843);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-sec::after {
    content: none;
  }
}
.process-sec::after {
  top: 30%;
  left: 50%;
}
.process-sec .container {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .process-sec .container {
    padding: 0 0 80px 0;
  }
}
.process-sec .container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  background: rgba(153, 153, 153, 0.4);
  width: 1px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .process-sec .container::before {
    content: none;
  }
}
.process-sec .container {
  position: relative;
}
.process-sec .container::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 20%;
  width: 667px;
  height: 667px;
  transform: translate(-50%);
  background: rgba(5, 180, 196, 0.1019607843);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-sec .container::after {
    content: none;
  }
}
.process-sec .container::after {
  left: initial;
  right: 0;
  transform: translateY(50%);
  bottom: 0%;
}
.process-sec .flex-box {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  gap: 150px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box {
    justify-content: space-between;
  }
}
.process-sec .flex-box:nth-child(even) {
  flex-direction: row-reverse;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(even) {
    flex-direction: column;
    gap: 0px;
    padding: 50px 20px 0px 20px;
  }
}
@media only screen and (max-width: 540px) {
  .process-sec .flex-box:nth-child(even) {
    padding: 30px 20px;
  }
}
.process-sec .flex-box:nth-child(even)::before {
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}
.process-sec .flex-box:nth-child(even) .flex-box-item:last-child {
  position: relative;
  z-index: 1;
}
.process-sec .flex-box:nth-child(even) .flex-box-item:last-child .number {
  font-weight: 600;
  font-size: 150px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5019607843);
  position: absolute;
  z-index: -1;
  left: -38%;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box:nth-child(even) .flex-box-item:last-child .number {
    left: -8%;
  }
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(even) .flex-box-item:last-child .number {
    color: rgba(243, 240, 240, 0.45);
  }
}
.process-sec .flex-box:nth-child(even) .flex-box-item:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18.7%;
  transform: translate(50%, -50%);
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box:nth-child(even) .flex-box-item:last-child::before {
    right: -16.1%;
  }
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(even) .flex-box-item:last-child::before {
    content: none;
  }
}
.process-sec .flex-box:nth-child(odd) {
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(odd) {
    flex-direction: column;
    gap: 0px;
    padding: 50px 20px 0px 20px;
  }
}
@media only screen and (max-width: 540px) {
  .process-sec .flex-box:nth-child(odd) {
    padding: 30px 20px;
  }
}
.process-sec .flex-box:nth-child(odd) .flex-box-item:last-child {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child {
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child {
    margin-left: initial;
  }
}
.process-sec .flex-box:nth-child(odd) .flex-box-item:last-child .number {
  font-weight: 600;
  font-size: 150px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5019607843);
  position: absolute;
  z-index: -1;
  right: -21%;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child .number {
    right: -6%;
  }
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child .number {
    color: rgba(243, 240, 240, 0.45);
  }
}
.process-sec .flex-box:nth-child(odd) .flex-box-item:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24%;
  transform: translate(50%, -50%);
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child::before {
    left: -21.5%;
  }
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box:nth-child(odd) .flex-box-item:last-child::before {
    content: none;
  }
}
.process-sec .flex-box .flex-box-item:first-child {
  position: relative;
}
.process-sec .flex-box .flex-box-item:first-child figure {
  width: 401px;
  height: 175px;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box .flex-box-item:first-child figure {
    width: auto;
    height: auto;
  }
}
.process-sec .flex-box .flex-box-item:first-child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  position: relative;
}
.process-sec .flex-box .flex-box-item:last-child {
  position: relative;
  max-width: 401px;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box .flex-box-item:last-child {
    width: 60%;
  }
}
@media only screen and (max-width: 991px) {
  .process-sec .flex-box .flex-box-item:last-child {
    width: 100%;
    text-align: center;
  }
}
.process-sec .flex-box .flex-box-item:last-child h3 {
  margin-bottom: 10px;
  max-width: 366px;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  line-height: 1.1;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box .flex-box-item:last-child h3 {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .process-sec .flex-box .flex-box-item:last-child h3 {
    font-size: 25px;
    line-height: 1.1;
  }
}
.process-sec .flex-box .flex-box-item:last-child p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 401px;
}
@media only screen and (max-width: 1024px) {
  .process-sec .flex-box .flex-box-item:last-child p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .process-sec .flex-box .flex-box-item:last-child p {
    font-size: 14px;
  }
}
.process-sec .flex-box .flex-box-item:last-child a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .process-sec .flex-box .flex-box-item:last-child a {
    justify-content: center;
  }
}
.process-sec .flex-box .flex-box-item:last-child a:hover {
  gap: 20px;
}

.process-detail-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: calc(100vh - var(--breadcrumbheight) - var(--headerheight));
  z-index: 1;
  margin-top: calc(var(--headerheight));
}
@media only screen and (max-width: 1024px) {
  .process-detail-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .process-detail-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .process-detail-banner {
    height: 50vh;
  }
}
.process-detail-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.08%, rgba(0, 0, 0, 0.629) 100%);
}
@media only screen and (max-width: 768px) {
  .process-detail-banner::before {
    background: linear-gradient(200deg, rgba(0, 0, 0, 0) 23.08%, rgba(0, 0, 0, 0.629) 100%);
  }
}
.process-detail-banner .common-background video, .process-detail-banner .common-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-detail-banner .common-background .container {
    padding: 0;
  }
}
.process-detail-banner .common-background .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 90%;
  left: 50%;
  bottom: 28%;
  transform: translate(-50%);
}
@media only screen and (max-width: 991px) {
  .process-detail-banner .common-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .process-detail-banner .common-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.process-detail-banner .common-background .container .bg-wrapper h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  padding-left: 20px;
  border-left: 8px solid var(--primary);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .process-detail-banner .common-background .container .bg-wrapper h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .process-detail-banner .common-background .container .bg-wrapper h1 {
    margin: 0 auto 10px;
    text-align: center;
    border-left: none;
  }
}
@media only screen and (max-width: 540px) {
  .process-detail-banner .common-background .container .bg-wrapper h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    border-left: 0;
  }
}
.process-detail-banner .common-background .container .bg-wrapper p {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  max-width: 609px;
}
@media only screen and (max-width: 768px) {
  .process-detail-banner .common-background .container .bg-wrapper p {
    text-align: center;
    max-width: 80%;
    margin: auto;
    font-size: 15px;
    line-height: 1.4;
  }
}

.process-detail-secA {
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .process-detail-secA {
    padding: 60px 0 0 0;
  }
}
.process-detail-secA {
  position: relative;
}
.process-detail-secA::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 667px;
  height: 667px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-detail-secA::before {
    content: none;
  }
}
.process-detail-secA::before {
  top: 40%;
  left: 70%;
}
@media only screen and (max-width: 1024px) {
  .process-detail-secA::before {
    left: 50%;
  }
}
.process-detail-secA {
  position: relative;
}
.process-detail-secA::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 20%;
  width: 667px;
  height: 667px;
  transform: translate(-50%);
  background: rgba(5, 180, 196, 0.1019607843);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-detail-secA::after {
    content: none;
  }
}
.process-detail-secA .flex-box {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .process-detail-secA .flex-box {
    flex-direction: column;
    gap: 30px;
  }
}
.process-detail-secA .flex-box figure {
  width: 483px;
  height: 330px;
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .process-detail-secA .flex-box figure {
    margin: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}
@media only screen and (max-width: 540px) {
  .process-detail-secA .flex-box figure {
    width: auto;
    height: auto;
  }
}
.process-detail-secA .flex-box figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.process-detail-secA .flex-box p {
  max-width: 619px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .process-detail-secA .flex-box p {
    max-width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
}

.process-detail-secB {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .process-detail-secB {
    padding: 60px 0 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .process-detail-secB {
    padding: 40px 0 0 0;
  }
}
.process-detail-secB {
  position: relative;
}
.process-detail-secB::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 20%;
  width: 667px;
  height: 667px;
  transform: translate(-50%);
  background: rgba(5, 180, 196, 0.1019607843);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-detail-secB::after {
    content: none;
  }
}
.process-detail-secB .more-product-slider {
  position: relative;
}
.process-detail-secB .swiper {
  padding: 40px 0;
  max-width: 1230px;
}
@media only screen and (max-width: 540px) {
  .process-detail-secB .swiper {
    padding: 20px 0 40px 0;
  }
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide:hover img {
  scale: 1.2;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide figure {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.process-detail-secB .swiper .swiper-wrapper .swiper-slide figcaption h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  text-align: center;
  padding: 15px 20px;
}

.process-detail-secC {
  padding: 50px 0;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC {
    padding: 10px 0 50px 0;
  }
}
.process-detail-secC::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--primary);
  top: 32.3%;
  left: 0;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC::before {
    top: 18.3%;
  }
}
.process-detail-secC::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 667px;
  height: 667px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC::after {
    content: none;
  }
}
.process-detail-secC .heading {
  position: relative;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC .heading h2 {
    margin-bottom: 0;
  }
}
.process-detail-secC .heading .swiper-nav {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(50%);
}
@media only screen and (max-width: 540px) {
  .process-detail-secC .heading .swiper-nav {
    display: none;
  }
}
.process-detail-secC .more-product-slider {
  position: relative;
}
.process-detail-secC .swiper {
  padding: 80px 0 40px 0;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC .swiper {
    padding: 60px 0 0px 0;
  }
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC .swiper .swiper-wrapper .swiper-slide::before {
    top: -15.9%;
  }
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide h3 {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  margin: 20px 0 20px 0;
}
@media only screen and (max-width: 540px) {
  .process-detail-secC .swiper .swiper-wrapper .swiper-slide h3 {
    margin: 0px 0 20px 0;
  }
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide figure {
  height: 110px;
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  max-width: 242px;
  margin: auto;
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide .read {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
  margin-top: 20px;
}
.process-detail-secC .swiper .swiper-wrapper .swiper-slide .read:hover {
  gap: 20px;
}/*# sourceMappingURL=process.css.map */