html {
  scroll-behavior: smooth;
}

.html-black-background .page-header {
  display: none;
}

.type-anim {
  display: inline-block;
  white-space: pre-wrap;
  position: relative;
}

.type-anim__cursor {
  margin-left: 0.25rem;
  display: inline-block; /* fix typo inline-inline */
  animation: blink 0.7s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Gradient text */
.type-anim.gradient .type-anim__content,
h2.heading-gradient span {
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-move var(--gradient-duration, 6s) ease-in-out infinite alternate;
}

h2.heading-gradient span {
  background-image: linear-gradient(to right, rgb(62, 147, 247), rgb(230, 10, 120), rgb(62, 147, 247), rgb(230, 10, 120), rgb(62, 147, 247));
  --gradient-duration: 6s;
}

@keyframes gradient-move {
  0% { background-position: 0% 50% }
  100% { background-position: 100% 50% }
}

.hero-1 { font-size: clamp(28px, 5vw, 68px); font-weight: 800; line-height: 1.2; }
.hero-2 { font-size: clamp(26px, 5vw, 68px); font-weight: 800; line-height: 1.2; }

.hero-text .type-anim:not(.gradient) .type-anim__content {
  color: #E5E5E5;
}
  
.gradient-text {
  animation-delay: 2s, 2s;
}

#main.site-cwa {
  background-color: #000000;
}

.cwa-box *,
.case-studies-section * {
  font-family: 'Inter', sans-serif !important;
}

.cwa-box {
  max-width: 1170px;
  margin: 0 auto;
}

.cwa-section-1 {
  padding: 100px 0 45px;
}

.hero-heading {
  text-align: center;
}

.hero-heading .type-anim__content {
  font-size: 56px;
  line-height: 70px;
  color: #E5E5E5;
  font-weight: 700;
}

.hero-heading .type-anim__cursor {
  display: none;
}

.hero-text {
  max-width: 770px !important;
  margin: 15px auto 0;
}

.hero-text p,
.hero-text span {
  font-size: 17px;
  line-height: 24px;
  color: #E5E5E5;
  margin-bottom: 0;
}

.herosection-box h1 {
  line-height: 70px;
  display: flex;
  justify-content: center;
}

.hero-heading {
  min-height: 140px;
}

.hero-text p {
  text-align: center;
}

.hero-text span {
  font-weight: 600;
}

.hero-button {
  text-align: center;
  margin-top: 30px;
}

.hero-button .hero-btn {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  background: #E60078;
  border-radius: 25px;
  padding: 15px 30px;
  cursor: pointer;
  margin-bottom: 0;
}

.hero-image-container {
  margin: 40px auto 0;
  max-width: 970px;
}

.hero-image-box::before,
.hero-image-box::after {
  width: 300px;
  height: 550px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.hero-image-box::before {
  right: calc(100% - 30px);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="550" viewBox="0 0 300 550"><defs><radialGradient id="radial-gradient" cx="1" cy="0.534" r="0.812" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%230075ff" stop-opacity="0.361"/><stop offset="1" stop-opacity="0"/></radialGradient></defs><rect id="green" width="300" height="550" fill="url(%23radial-gradient)"/></svg>');
}

.hero-image-box::after {
  left: calc(100% - 30px);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="550" viewBox="0 0 300 550"><defs><radialGradient id="radial-gradient" cx="-0.013" cy="0.528" r="0.797" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%23e50a78" stop-opacity="0.302"/><stop offset="1" stop-opacity="0"/></radialGradient></defs><rect id="orange" width="300" height="550" fill="url(%23radial-gradient)"/></svg>');
}

/* new */

.image-hover-shadow {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  --mx: 50%;
  --my: 50%;
  --r: 21px;
  overflow: visible;
  will-change: filter, transform;
}

.image-hover-shadow img {
  display: block;
  border-radius: var(--r);
  background: #000;
  z-index: 2;
  position: relative;
  /*  transition: filter .35s ease, transform .35s ease, box-shadow .35s ease;
  box-shadow: -35px 0px 70px rgba(62,147,247,0.3),
              35px 0px 70px rgba(230,10,120,0.3); */
}

.image-hover-shadow:hover img {
  /* filter: saturate(1.06) contrast(1.05);
  box-shadow: -20px 0px 40px rgba(62,147,247,0.45),
              20px 0px 40px rgba(230,10,120,0.45); */
}

.image-hover-shadow::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -40px;
  border-radius: calc(var(--r) + 26px);
  pointer-events: none;
  opacity: 0;
  transform: translateZ(0) scale(.98);
  transition: opacity .35s ease, transform .35s ease;
  background-image:
  radial-gradient(140px 140px at var(--mx) var(--my),
    rgba(229, 10, 120, 0.7) 0%,
    rgba(62,147,247,.55) 28%,
    rgba(62,147,247,.18) 56%,
    rgba(0,0,0,0) 70%),
  radial-gradient(45% 60% at 65% 18%,
    rgba(0,255,170,.45) 0%,
    rgba(0,0,0,0) 100%),
  radial-gradient(110% 110% at 50% 50%,
    rgba(62,147,247,.28) 1%, 
    rgba(0,0,0,0) 76%),
  conic-gradient(from 124deg at 50% 50%,
    #E50A78 0%,
    #3E93F7 40%,
    #3E93F7 60%,
    #E50A78 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-blend-mode: screen;
  filter: blur(100px) saturate(1.25);
  top: 30%;
  width: calc(100% - 40px);
  left: 20px;
}

/* glare layer */
.image-hover-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: var(--r);
  pointer-events: none;
  opacity: 0;
  background-color: transparent;
  transition: opacity .35s ease;
  background: radial-gradient(
    closest-side circle at var(--mx) var(--my),
    rgba(255,255,255,.35) 0%,
    rgba(255,255,255,.10) 28%,
    rgba(255,255,255,0) 56%
  );
  mix-blend-mode: lighten;
}

.image-hover-shadow:hover::before,
.image-hover-shadow:hover::after,
.hero-image-container.scroll .image-hover-shadow::before,
.hero-image-container.scroll .image-hover-shadow::after {
  opacity: 1;
}
.image-hover-shadow:hover::before { transform: scale(1); }

.image-hover-shadow::after {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-hover-shadow:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .image-hover-shadow *,
  .image-hover-shadow::before,
  .image-hover-shadow::after {
    transition: none !important;
    animation: none !important;
  }
}

.pvs-heading h2 {
  margin-bottom: 0;
}

.pvs-heading h2:last-child {
  margin-bottom: 0;
}

.pvs-heading {
  margin-bottom: 30px;
}

.pvs-heading span {
  color: #E5E5E5;
  font-size: 48px !important;
  line-height: 56px !important;
  font-weight: 600;
  display: block;
}

.problem-solution-section {
  background: #111112;
  padding: 60px 0;
}

.pvs-heading .type-anim__cursor {
  display: none;
}

.pvssection-box {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 90px;
}

.pvs-box.box-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pvs-subheading h3 {
  margin-bottom: 15px;
  font-size: 17px !important;
  line-height: 24px !important;
  color: #E5E5E5;
  font-weight: 600;
  font-style: italic;
}

.pvs-content {
  font-size: 17px;
  line-height: 24px;
  color: #86868B;
  margin-bottom: 12px;
}

.pvs-contact {
  padding-top: 20px;
  position: relative;
}

.pvs-contact-step input {
  min-width: 100%;
  background: transparent !important;
  padding: 0 10px 10px !important;
  border-bottom: solid 1px #86868B !important;
  border-radius: 0 !important;
  color: #fff;
  font-size: 17px !important;
  line-height: 24px !important;
}

.pvs-contact-step::before {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  background-color: #fff;
  position: absolute;
  left: 10px;
  animation: blink 1s infinite;
}

.pvs-contact.hideCursor .pvs-contact-step::before {
  display: none;
}

.pvs-contact-step input::placeholder {
  color: rgba(51, 51, 54, 0.9);
  font-family: 'Inter', sans-serif !important;
  font-size: 17px;
  line-height: 24px;
  font-style: italic;
  padding-left: 8px;
}

.pvs-contact-btn {
  padding: 0;
  background: transparent;
  width: 100%;
  text-align: right;
}

.pvs-contact-btn:hover {
  background: transparent;
}

.pvs-contact-btn span {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  display: inline-block;
  background: #E60078;
  border-radius: 25px;
  padding: 15px 30px;
  text-transform: none;
  font-weight: 400;
  min-width: 135px;
  text-align: center;
}

.pvs-contact-step.step1 .step1,
.pvs-contact-step.step2 .step2 {
  display: block;
}

.pvs-contact-step.step1 .step2,
.pvs-contact-step.step2 .step1 {
  display: none;
}

.pvs-success-noti {
  display: grid;
  grid-template-columns: 24px 1fr;
  padding: 18px 28px 18px 30px;
  gap: 20px;
  align-items: center;
  background: rgba(55, 190, 107, 0.1);
  border-radius: 8px;
  position: absolute;
  top: 0;
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}

.pvs-contact.success .pvs-success-noti {
  opacity: 1;
  top: 20px;
  z-index: 1;
}

.pvs-contact.success .pvs-contact-step,
.pvs-contact.success .pvs-contact-btn {
  opacity: 0;
}

.pvs-success-noti p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-style: italic;
  color: #37be6b;
}

.pvs-success-noti .left {
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pvs-error {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #f00;
  position: absolute;
  top: 100%;
  margin-bottom: 0;
  margin-top: 3px;
  display: none;
}

.pvs-error.show {
  display: block;
}

.pvs-contact-step {
  position: relative;
}

.pvs-contact-form {
  display: none;
  position: relative;
}

.pvs-info-column-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 0;
  padding: 15px 10px;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 10px;
}

.pvs-info-column-row::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="28" viewBox="0 0 28 28"><defs><linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%23e06767"/><stop offset="1" stop-color="%23a82929"/></linearGradient></defs><path id="problem-icon" d="M7577,18558a14,14,0,1,1,9.9-4.1A13.907,13.907,0,0,1,7577,18558Zm-.1-11.941v0l2.882,2.875a1.4,1.4,0,0,0,1.979-1.979l-2.883-2.883,3.06-3.055a1.4,1.4,0,0,0-.992-2.391,1.381,1.381,0,0,0-.988.41l-3.06,3.055-3.06-3.055a1.4,1.4,0,0,0-1.979,0,1.407,1.407,0,0,0,0,1.98l3.06,3.055-2.883,2.883a1.4,1.4,0,1,0,1.979,1.979l2.882-2.875Z" transform="translate(-7563.001 -18530)" fill="url(%23linear-gradient)"/></svg>') center center;
  background-size: cover;
}

.pvs-info-column-row-right .pvs-info-column-row::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="circle-check_solid" width="28" height="28" viewBox="0 0 28 28"><defs><linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%2337be6b"/><stop offset="1" stop-color="%23129846"/></linearGradient></defs><path id="Path_111745" data-name="Path 111745" d="M28,14A14,14,0,1,1,14,0,14,14,0,0,1,28,14ZM11.554,16.369,9.842,14.658a1.05,1.05,0,0,0-1.485,1.485l2.8,2.8a1.05,1.05,0,0,0,1.717-.353,16.454,16.454,0,0,1,4.267-6.425,8.975,8.975,0,0,1,1.564-1.117c.188-.1.333-.171.424-.21l.1-.039.014-.005a1.05,1.05,0,0,0-.671-1.99h-.006l-.007,0-.019.007-.057.021c-.045.017-.106.042-.181.074-.15.065-.354.161-.6.3a11.072,11.072,0,0,0-1.936,1.377A17.59,17.59,0,0,0,11.554,16.369Z" fill-rule="evenodd" fill="url(%23linear-gradient)"/></svg>');
}

.pvs-info-column-row span {
  font-size: 17px;
  line-height: 24px;
  color: #E5E5E5;
}

.pvs-info-column-row-left,
.pvs-info-column-row-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 25px 10px 0;
  z-index: 3;
  position: relative;
}

.pvs-info-column {
  border: solid 1px #313138;
  border-radius: 24px;
  padding-top: 50px;
  background: #111112;
  min-height: 430px;
  position: relative;
  transition: 0.5s;
}

.pvs-info-column h3 {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 600;
  margin-bottom: 0;
  color: #E5E5E5;
  text-align: center;
}

.pvs-info-column.row1 .row1,
.pvs-info-column.row2 .row2,
.pvs-info-column.row3 .row3,
.pvs-info-column.row4 .row4,
.pvs-info-column.row5 .row5 {
  background-color: rgba(255, 255, 255, 0.1);
}

.pvs-box.box-right .pvs-info-column:last-child {
  position: relative;
  z-index: 1;
}

.pvs-box .pvs-info-column::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* độ dày border */
  border-radius: inherit;
  background: linear-gradient(270deg, #3E93F7, #E60A78, #3E93F7, #E60A78);
  background-size: 300% 300%;
  animation: borderMove 4s ease infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
    mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: -3px;
  top: -3px;
  transition: 0.5s;
}

.pvs-box .pvs-info-column:hover::before,
.pvs-box .pvs-info-column.active::before {
  opacity: 1;
  transition: 0.5s;
  z-index: 2;
}

.pvs-button-container {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  margin-top: 25px;
}

.pvs-button-left {
  display: grid;
  grid-template-columns: 28px 35px 28px 35px 28px;
  align-items: center;
}

.step-circle p {
  width: 28px;
  height: 28px;
  margin: 0;
  border: solid 1px #313138;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #313138;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.6s;
}

.step-circle-line {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #313138;
}

.step-circle {
  display: flex;
  align-items: center;
}

.step-circle:last-child {
  display: block;
}

.step-circle:last-child::after {
  display: none;
}

.pvs-button-left.step1 .step-circle-1 p,
.pvs-button-left.step2 .step-circle-2 p,
.pvs-button-left.success .step-circle-3 p {
  background: linear-gradient(180deg, #37BE6B, #129846);
  color: #FFFFFF;
  border: none;
}


@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pvs-info-column:hover {
  box-shadow: -15px 0px 40px rgba(62, 147, 247, 0.3), 15px 0px 40px rgba(230, 10, 120, 0.3);
}

.cwa-section-3 {
  padding: 50px 0;
}

.wwd-heading {
  text-align: center;
  margin-bottom: 10px;
}

.wwd-heading h2 {
  margin-bottom: 0;
}

.wwd-heading span {
  color: #E5E5E5;
  font-size: 48px;
  line-height: 56px;
  display: block;
}

.wwd-heading span.type-anim__cursor {
  display: none;
}

.wwd-content p {
  font-size: 15px;
  line-height: 20px;
  color: #E5E5E5;
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.wwd-content {
  margin-bottom: 30px;
}

.wwd-image {
  margin-bottom: 15px;
}

.wwd-image img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.wwd-button-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.wwd-button-container h3 {
  font-size: 17px !important;
  line-height: 24px !important;
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
  font-style: italic;
}

.wwd-button-container .btn-right {
  text-align: right;
}

.wwd-button-container .wwd-btn {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  background: #E60078;
  border-radius: 25px;
  padding: 15px 30px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
}

.wwd-service-container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 31px;
}

.wwd-service-box {
  border-radius: 14px;
  border: solid 1px #212124;
  padding: 30px;
  background: linear-gradient(180deg, #000000, #111112);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 30px;
}

.wwd-service-box h4 {
  font-size: 17px !important;
  line-height: 24px !important;
  color: #E5E5E5;
  font-weight: 600;
  margin-bottom: 10px;
}

.wwd-service-box p {
  margin-bottom: 0;
  color: #86868B;
  font-size: 15px;
  line-height: 20px;
}


.cwa-section-4 {
  padding: 50px 0;
  background: #111112;
}

.agt-heading {
  text-align: center;
  min-height: 68px;
  margin-bottom: 40px;
}

.agt-heading .type-anim__cursor {
  display: none;
}

.agt-heading span {
  color: #E5E5E5;
  font-size: 48px;
  line-height: 56px;
}

.agt-heading h2 {
  text-align: left;
  display: inline-block;
  margin-bottom: 0;
  font-size: 48px !important;
  line-height: 56px !important;
  color: #E5E5E5;
}
.agt-content-box h3 {
  font-size: 20px !important;
  line-height: 24px !important;
  color: #E5E5E5;
  margin-bottom: 5px;
  font-weight: 600;
}

.agt-content-box p,
.agt-content-box p span {
  font-size: 15px;
  line-height: 19px;
  color: #E5E5E5;
  margin-bottom: 0;
}

.agt-content-box {
  background-color: #1E1E21;
  border-radius: 14px;
  padding: 20px 30px;
}

.agt-content-box:last-child p {
  min-height: 59px;
}

.agt-box-container .box-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.agt-box-container .box-left img {
  border-radius: 14px;
}

.agt-box-container {
  display: grid;
  grid-template-columns: 740px 1fr;
  gap: 30px;
  align-items: center;
}

.agt-button-container {
  grid-column: 1 / span 2;
  text-align: right;
  margin-top: 15px;
}

.agt-button-container .agt-btn {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  border-radius: 25px;
  background-color: #E60078;
  padding: 15px 30px;
  display: inline-block;
}

.cwa-section-5 {
  padding: 50px 0;
}

.cs-slider .logo::after {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #111112, #7E7E7E, #111112);
  opacity: 0.5;
  display: block;
  bottom: 0;
  position: absolute;
  left: 0;
}

.cs-heading {
  text-align: center;
  margin-bottom: 10px;
}

.cs-heading h2 {
  text-align: left;
  display: inline-block;
  margin-bottom: 0;
  font-size: 48px !important;
  line-height: 56px !important;
  color: #E5E5E5;
}

.cs-heading span {
  color: #E5E5E5;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

.cs-des {
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.cs-des p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #E5E5E5;
}

.cs-slider-container {
  background-color: #1E1E21;
  border: solid 2px #373739;
  border-radius: 24px;
  padding: 15px;
  margin: 0 15px;
  width: 1000px;
  transition: 0.3s;
}

.cs-slider-container.slick-cloned {
  opacity: 0 !important;
}

.cs-slider-container:not(.slick-center) {
  cursor: pointer;
}

.cs-slider-box {
  background-color: #111112;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
}

.slider-right {
  padding: 40px 50px;
}

.slide-subHeading h4{
  font-size: 17px !important;
  line-height: 20px !important;
  font-weight: 600;
  margin-bottom: 5px;
}

.slide-challenge h4 {
  color: #F04545;
}

.slide-result h4 {
  color: #37BE6B;
}

.slide-technology h4 {
  color: #fff;
}

.slide-subHeading p {
  font-size: 15px;
  line-height: 20px;
  color: #E5E5E5;
  margin-bottom: 0;
}

.slide-subHeading {
  margin-bottom: 20px;
}

.slide-btn {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  padding: 13px 30px;
  color: #fff;
  background-color: #E60078;
  border-radius: 25px;
}

.slick-slide .slide-btn {
  background-color: #1E1E21;
}

.slide-btn-container {
  margin-top: 30px;
}

.slick-slide.slick-center .slide-btn {
  background-color: #E60078;
}

.slide-btn:hover {
  color: #fff;
}

.slider-left img {
  border-radius: 10px 0 0 10px;
}

.slide-heading {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.slide-heading h3 {
  font-size: 20px !important;
  line-height: 24px !important;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.slide-heading p {
  font-size: 15px;
  line-height: 19px;
  color: #E5E5E5;
  margin-bottom: 0;
}

.slide-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #111112, #7E7E7E, #111112);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
}

.cs-slider-container {
  opacity: 0.5;
}

.cs-slider-container.slick-center,
.cs-slider-container img {
  opacity: 1 !important;
}

.cs-slider .slick-dots {
  display: flex;
  justify-content: center;
  padding: 0 56px;
  width: fit-content;
  margin: 30px auto 0;
  border: solid 1px #212124;
  background: #1E1E21;
  border-radius: 25px;
  position: relative;
}

.cs-slider .slick-dots button {
  background: transparent;
  color: transparent;
  padding: 0;
  width: 28px;
}

.cs-slider .slick-dots button::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CDCDD0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.cs-slider .slick-dots li {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.cs-slider .slick-dots .slick-active button::before,
.cs-slider li:hover button::before {
  background: #E60078;
}

.slick-custom {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  cursor: pointer;
  background-size: cover !important;
  color: transparent;
}

.slick-custom.slick-prev-custom {
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" id="back-icon" width="50" height="50" viewBox="0 0 50 50"><circle id="Ellipse_1126" data-name="Ellipse 1126" cx="25" cy="25" r="25" fill="none"/><path id="Path_111699" data-name="Path 111699" d="M14.25,16.5l-6-6,6-6" transform="translate(13.25 15)" fill="none" stroke="%23cdcdd0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>') center center;
}

.slick-custom.slick-next-custom {
  right: 0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" id="next-icon" width="50" height="50" viewBox="0 0 50 50"><circle id="Ellipse_1126" data-name="Ellipse 1126" cx="25" cy="25" r="25" fill="none"/><path id="Path_111699" data-name="Path 111699" d="M8.25,16.5l6-6-6-6" transform="translate(14.25 15)" fill="none" stroke="%23cdcdd0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>') center center ;
}

.cwa-section-6 {
  padding: 50px 0;
  background: #111112;
}

.ts-heading {
  text-align: center;
  margin-bottom: 40px;
}

.ts-heading .type-anim__cursor {
  display: none;
}

.ts-heading h2 {
  display: inline-block;
  text-align: left;
  margin-bottom: 0;
  font-size: 48px !important;
  line-height: 56px !important;
  color: #E5E5E5;
}

.ts-heading span {
  color: #E5E5E5;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

.ts-box {
  padding: 30px 20px;
  border: solid 1px #212124;
  border-radius: 14px;
  padding: 20px;
  position: relative;
}

.ts-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* độ dày border */
  border-radius: inherit;
  background-size: 300% 300% !important;
  animation: borderMove 4s ease infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
    mask-composite: exclude;
  z-index: 0;
  opacity: 0;
  transition: 0.6s;
  background: linear-gradient(270deg, #3E93F7, #E60A78, #3E93F7, #E60A78);
}

.ts-box:hover {
  border-color: transparent;
}

.ts-box:hover::before,
.ts-box.pc-active::before,
.ts-box.mobile-active::before {
  background: linear-gradient(270deg, #3E93F7, #E60A78, #3E93F7, #E60A78);
  z-index: 1;
  opacity: 1;
  transition: 0.6s;
}

.ts-box.pc-active::after,
.ts-box::after,
.ts-box.mobile-active::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/web-app-development/custom-web-app/ts-pc-active.svg);
  z-index: 0;
}

.ts-box::after {
  opacity: 0;
  transition: 0.6s;
}

.ts-box:hover::after {
  opacity: 1;
}

.ts-box.pc-active::after,
.ts-box.mobile-active::after {
  opacity: 1;
}

.ts-box.ts-large-box {
  min-height: 285px;
  padding: 30px 20px 20px;
}

.ts-box.mobile-active::after,
.ts-box.mobile-active::before {
  opacity: 0;
}


.ts-box.mobile-active:hover::after,
.ts-box.mobile-active:hover::before {
  opacity: 1;
}

.ts-box-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  transition: 1s;
  max-height: 1700px;
  overflow: hidden;
}

.ts-box-container.isShowMore {
  max-height: 800px;
}

.ts-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ts-box h3 {
  font-size: 15px !important;
  line-height: 20px !important;
  color: #7D7D8D;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.6s;
  z-index: 1;
  position: relative;
}

.ts-box.ts-large-box h3 {
  font-size: 17px !important;
  line-height: 24px !important;
}

.ts-box:hover h3 {
  color: #fff;
}

.ts-box.pc-active h3 {
  color: #fff;
  z-index: 1;
  position: relative;
}

.ts-image-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  align-items: center;
  z-index: 1;
  position: relative;
}

.ts-image-box.large-image-box {
  grid-template-columns: 1fr 1fr 1fr;
}

.ts-image-box.large-image-box .ts-image {
  min-height: 85px;
}

.ts-image {
  text-align: center;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-box.last-right {
  min-height: 263px;
}

.ts-button {
  text-align: center;
  margin-top: 20px;
}

.ts-button p {
  display: inline-flex;
  color: #fff;
  margin-bottom: 0;
  padding: 14px 20px;
  border: solid 1px #212124;
  border-radius: 25px;
  background: #1E1E21;
  min-width: 144px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.ts-button span {
  font-size: 15px;
  line-height: 20px;
  color: #E5E5E5;
}


.ts-button p::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" id="circle-plus_solid" width="16" height="16" viewBox="0 0 16 16"><path id="Path_111804" data-name="Path 111804" d="M8,16A8,8,0,1,0,0,8,8,8,0,0,0,8,16Zm-.56-4.6a.6.6,0,1,0,1.2,0V8.64H11.4a.6.6,0,0,0,0-1.2H8.64V4.6a.6.6,0,1,0-1.2,0V7.44H4.6a.6.6,0,0,0,0,1.2H7.44Z" fill="%23e5e5e5" fill-rule="evenodd"/></svg>');

}

.ts-button.seeLess p::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" id="circle-minus_solid" width="16" height="16" viewBox="0 0 16 16"><path id="Path_111926" data-name="Path 111926" d="M8,16A8,8,0,1,0,0,8,8,8,0,0,0,8,16ZM4.6,7.44a.6.6,0,0,0,0,1.2h6.8a.6.6,0,0,0,0-1.2Z" fill="%23e5e5e5" fill-rule="evenodd"/></svg>');
}

.magic-bento {
  position: relative;
  --mx: -50%;
  --my: -50%;
  --gint: 0;
  --spot: 200px;   /* bán kính ánh sáng */
  --c: 76,142,247; /* #4C8EF7 */
}

/* NỀN spotlight toàn bộ */
.magic-bento::before {
    content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle var(--spot) at var(--mx) var(--my),
    rgba(var(--c), calc(var(--gint) * 0.2)) 0%,  
    rgba(var(--c), calc(var(--gint) * 0.15)) 50%, 
    rgba(var(--c), 0) 100% 
  );
  z-index: 0;
  transition: opacity 0.25s ease;
}

.cwa-section-7 {
  padding: 60px 0;
}

.wmudsection-box {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 70px;
  align-items: center;
}

.wmud-left img {
  border-radius: 14px;
  object-fit: cover;
  min-height: 480px;
}

.wmud-sub_heading h3 {
  font-size: 15px !important;
  line-height: 20px !important;
  color: #E5E5E5;
  font-weight: 600;
  margin-bottom: 10px;
}

.wmud-heading span {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #E5E5E5;
  display: block;
}

.wmud-heading {
  margin-bottom: 25px;
}

.wmud-heading h2 {
  margin-bottom: 0;
}

.wmud-box .left {
  height: 36px;
  display: flex;
  align-items: center;
}

.wmud-box {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 19px 20px;
  border: solid 1px #212124;
  border-radius: 14px;
  background: linear-gradient(180deg, #000000, #111112);
  align-items: center;
  margin-bottom: 15px;
}

.wmud-box:last-child {
  margin-bottom: 0;
}

.wmud-box h4 {
  margin-bottom: 0;
  font-size: 17px !important;
  line-height: 24px !important;
  color: #E5E5E5;
  font-weight: 500;
}

.cwa-section-8 {
  position: relative;
}

.lbwa-background-top,
.lbwa-background-bottom-left,
.lbwa-background-bottom-right {
  display: block;
  content: "";
  height: 50%;
  position: absolute;
  z-index: -1;
}

.lbwa-background-bottom-left,
.lbwa-background-bottom-right {
  width: 50%;
  bottom: 0;
  height: 100%;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: bottom !important;
}


.lbwa-background-top {
  background: url(../img/web-app-development/custom-web-app/lbtwa-background-top.png);
  width: 100%;
  top: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.lbwa-background-bottom-left {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="945" height="480" viewBox="0 0 945 480"><defs><radialGradient id="radial-gradient" cx="0" cy="1" r="0.999" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%233053b9"/><stop offset="1" stop-opacity="0"/></radialGradient></defs><rect id="Light-left" width="945" height="480" fill="url(%23radial-gradient)"/></svg>');
  left: 0;
  background-position: bottom left !important;
}

.lbwa-background-bottom-right {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="945" height="480" viewBox="0 0 945 480"><defs><radialGradient id="radial-gradient" cx="1" cy="1" r="0.67" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%232f2692"/><stop offset="1" stop-opacity="0"/></radialGradient></defs><rect id="Light-right" width="945" height="480" fill="url(%23radial-gradient)"/></svg>');
  right: 0;
  background-position: bottom right !important;
}

.lbwa-heading span {
  color: #E5E5E5;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  display: inline-block;
}

.lbwa-heading {
  margin-bottom: 30px;
}

.lbwa-heading h2 {
  display: inline-block;
  margin-bottom: 0;
  font-size: 48px !important;
  line-height: 56px !important;
  color: #E5E5E5;
  font-weight: 600;
}

.lbwasection-box .box-right img {
  min-width: 611px;
  margin-left: -12px;
}

.lbwasection-box {
  display: grid;
  grid-template-columns: 570px 1fr;
  align-items: center;
}

.cwa-section-8::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #11111200, #4B8FF7, #11111200);
}

.lbwa-heading .type-anim__cursor {
  display: none;
}

.lbwa-btn {
  display: inline-block;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 20px;
  padding: 15px 30px;
  background-color: #E60078;
  border-radius: 25px;
  cursor: pointer;
}

.lbwa-btn:hover {
  color: #fff;
}

.cwa-section-8 .box-right {
  padding-top: 32px;
}

@media (max-width: 767px) {
  .hero-heading .type-anim__content {
    font-size: 36px;
    line-height: 44px;
  }

  .cwa-section-1 {
    padding: 40px 20px 48px;
  }

  .hero-text span {
    font-weight: 600;
  }

  .hero-text p, .hero-text span {
    font-size: 17px;
    line-height: 24px;
  }

  .hero-text p {
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
  }

  .hero-heading {
    min-height: 132px;
  }

  .hero-heading .type-anim__cursor {
    display: none;
  }

  .hero-2 .type-anim__content {
    white-space: normal;
    max-width: 260px;
  }

  .hero-2 .type-anim {
    max-width: 260px !important;
    min-width: 260px !important;
  }

  .hero-button {
    margin-top: 20px;
  }

  .hero-button .hero-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 11px 20px;
    margin-bottom: 0;
  }

  .hero-image-container {
    margin-top: 30px;
    padding: 0 25px;
  }

  .image-hover-shadow img {
    border-radius: 0;
    background: transparent;
  }

  .hero-image-box::before,
  .hero-image-box::after,
  .image-hover-shadow::after {
    display: none;
  }

  .problem-solution-section {
    padding: 60px 10px;
  }

  .pvs-heading span {
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700;
  }

  .pvs-subheading h3 {
    font-size: 17px !important;
    line-height: 24px !important;
    margin-bottom: 10px;
  }

  .pvs-content {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .pvssection-box {
    display: block;
  }

  .pvs-box.box-left {
    padding: 0 10px;
  }

  .pvs-box.box-right {
    gap: 10px;
    margin-top: 40px;
  }

  .pvs-heading h2 {
    margin-bottom: 0;
  }

  .pvs-heading {
    margin-bottom: 10px;
    min-height: 88px;
  }

  .pvs-contact {
    padding-top: 15px;
  }

  .pvs-contact-btn span {
    font-size: 15px;
    line-height: 20px;
    padding: 11px 30px;
    min-width: 130px;
  }

  .pvs-contact-step input {
    border-color: #E5E5E5;
    padding-bottom: 5px;
  }

  .pvs-contact-btn {
    height: 42px;
  }

  .pvs-button-container {
    grid-template-columns: 125px 1fr;
    margin-top: 20px;
  }

  .pvs-button-left {
    grid-template-columns: 24px 20px 24px 20px 24px;
  }

  .step-circle p {
    width: 24px;
    height: 24px;
  }

  .pvs-info-column {
    padding: 25px 5px 0;
    min-height: fit-content;
    min-height: 306px;
  }

  .pvs-success-noti {
    padding: 15px 20px;
    gap: 15px;
    grid-template-columns: 20px 1fr;
  }

  .pvs-success-noti p {
    font-size: 17px;
    line-height: 24px;
  }

  .pvs-success-noti .left {
    height: 20px;
    width: 20px;
  }

  .pvs-info-column-row-left, .pvs-info-column-row-right {
    padding-top: 20px;
  }

  .pvs-info-column-row {
    padding: 10px;
    grid-template-columns: 17px 1fr;
    gap: 7px;
  }

  .pvs-info-column-row::before {
    width: 18px;
    height: 18px;
    background-size: contain;
  }

  .pvs-info-column-row-left, .pvs-info-column-row-right {
    padding: 20px 0;
  }

  .pvs-info-column h3 {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .pvs-info-column-row span {
    font-size: 15px;
    line-height: 20px;
  }

  .pvs-box .pvs-info-column::before {
    padding: 2px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: -1px;
    top: -1px;
  }

  .cwa-section-3 {
    padding: 60px 20px;
  }

  .wwdsection-box {
    display: flex;
    flex-direction: column;
  }

  .wwd-heading {
    text-align: left;
  }
  
  .wwd-heading span {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  .wwd-heading h2:last-child .type-anim {
    max-width: 190px !important;
    min-width: 190px !important;
  }

  .wwd-content p {
    font-size: 17px;
    line-height: 24px;
    text-align: left;
  }
  
  .wwd-image img {
    height: 228px;
    border-radius: 5px;
  }

  .wwd-content {
    margin-bottom: 30px;
  }

  .wwd-service-container {
    display: block;
    margin-top: 20px;
    transition: 1s;
    overflow: hidden;
    max-height: 2000px;
  }

  .wwd-image {
    margin-bottom: 0;
  }

  .wwd-service-box {
    margin-bottom: 10px;
    display: block;
  }

  .wwd-mobile-subTitle h3 {
    font-size: 17px !important;
    line-height: 24px !important;
    font-weight: 500;
    font-style: italic;
    color: #86868B;
    margin-bottom: 20px;
  }

  .wwd-service-box .box-image {
    margin-bottom: 20px;
  }

  .wwd-service-box h4 {
    font-size: 17px !important;
    line-height: 20px !important;
  }

  .wwd-service-box p {
    font-size: 15px;
    line-height: 20px;
  }

  .wwd-button-container .wwd-see {
    font-size: 15px;
    line-height: 20px;
    color: #3381F2;
    margin-bottom: 0;
    text-decoration: underline;
    padding-left: 10px;
  }

  .wwd-button-container {
    grid-template-columns: 1fr 200px;
    gap: 10px;
    order: 5;
    margin-top: 10px;
  }

  .wwd-button-container .wwd-btn {
    padding: 11px 30px;
    font-size: 15px;
    line-height: 20px;
    margin-top: 0;
  }

  .wwd-service-container.seeMore {
    max-height: 515px;
  }

  .agt-heading span {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    display: block;
  }

  .cwa-section-4 {
    padding: 60px 0;
  }

  .agt-box-container {
    padding: 0 20px;
  }

  .agt-heading h2 {
    display: block;
    text-align: center;
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700;
  }

  .agt-heading {
    margin-bottom: 20px;
  }

  .agt-box-container {
    display: block;
  }

  .agt-box-container {
    display: block;
  }

  .agt-box-container .box-left img {
    border-radius: 8px;
  }
  
  .agt-box-container .box-left {
    margin-bottom: 10px;
  }

  .agt-content-box h3 {
    font-size: 24px !important;
    line-height: 29px !important;
  }

  .agt-button-container {
    text-align: center;
    margin-top: 20px;
  }

  .agt-button-container .agt-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 11px 30px;
  }

  .cwa-section-5 {
    padding: 60px 0 39px;
  }

  .cs-heading span {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  .cs-heading {
    margin-bottom: 7px;
  }

  .cs-heading h2 {
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700;
  }

  .cs-des {
    margin-bottom: 30px;
  }

  .cs-des p {
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
  }

  .cs-slider-container {
    margin: 0 5px;
    width: calc(100vw - 60px);
    padding: 10px;
    border-radius: 14px;
  }

  .cs-slider-wrapper .slick-list {
    width: calc(100vw + 40px);
    transform: translateX(-40px);
  }

  .cs-slider-box {
    display: block;
  }

  .cs-slider-container.slick-cloned {
    opacity: 0.5 !important;
  }

  .slider-right {
    padding: 10px 30px 40px;
  }

  .cs-slider .logo {
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
  
  .cs-slider .logo img {
    height: 24px;
  }

  .slide-heading {
    padding-bottom: 10px;
  }

  .slide-heading h3 {
    text-align: center;
  }

  .slide-subHeading h4 {
    text-align: center;
    font-size: 17px !important;
    line-height: 24px !important;
    margin-bottom: 5px;
  }

  .slide-subHeading p,
  .slide-heading p {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }

  .slide-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 8px 20px;
  }

  .slide-subHeading {
    margin-bottom: 20px;
  }

  .slide-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .slider-left img {
    border-radius: 7px 7px 0 0;
    height: 180px;
    object-fit: cover;
    width: 100%;
  }

  .slick-slide .slide-btn {
    background-color: #E60078;
  }

  .cs-slider .slick-dots button {
    width: 18px;
  }

  .cs-slider .slick-dots {
    margin-top: 0;
    background: transparent;
    border: none;
  }

  .cs-slider .slick-custom {
    display: none;
  }

  .cwa-section-6 {
    padding: 60px 0;
  }

  .ts-box-container {
    padding: 0 20px;
  }

  .ts-heading span{
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  .ts-box-container {
    display: block;
  }

  .ts-box.ts-large-box h3 {
    font-size: 17px !important;
    line-height: 24px !important;
    margin-bottom: 10px;
  }

  .ts-image-box.large-image-box {
    grid-template-columns: 1fr 1fr;
  }

  .ts-box-container {
    display: block;
  }

  .ts-box.ts-large-box {
    min-height: fit-content;
    padding: 20px;
  }

  .ts-box.mobile-active::after,
  .ts-box.mobile-active::before {
    opacity: 1;
  }

  .ts-box.mobile-active h3 {
    color: #fff;
    z-index: 1;
    position: relative;
  }

  .ts-box::after,
  .ts-box.mobile-active::after {
    background-position: top center;
    background-repeat: no-repeat;
  }

  .ts-image-box.large-image-box .ts-image {
    min-height: 73px;
  }

  .ts-box-container {
    max-height: 3500px;
  }

  .ts-image.python img {
    height: 26px;
  }

  .ts-image.dotNet img {
    height: 48px;
  }

  .ts-image.nodejs img {
    height: 52px;
  }

  .ts-image.react img {
    height: 47.77px;
  }

  .ts-image.openAI img {
    height: 29px;
  }

  .ts-image.claude img {
    height: 22px;
  }

  .ts-image.gemini img {
    height: 31px;
  }

  .ts-image.deepSeek img {
    height: 24px;
  }

  .ts-image.aiGrok img {
    height: 31px;
  }

  .ts-image.lang-seek img {
    height: 21px;
  }

  .ts-image.tensorFlow img {
    height: 43px;
  }

  .ts-image.n8n img {
    height: 28px;
  }

  .ts-image.azureAI img {
    height: 32px;
  }

  .ts-image.power img {
    height: 24px;
  }

  .ts-image.difyColor img {
    height: 31px;
  }

  .ts-image.android img {
    height: 22px;
  }

  .ts-image.flutter img {
    height: 20px;
  }

  .ts-image.ios img {
    height: 17px;
  }

  .ts-image.pwa img {
    height: 16px;
  }

  .ts-image.react img,
  .ts-image.xamanrin img {
    height: 28px;
  }

  .ts-image.aws img {
    height: 20px;
  }

  .ts-image.azure img {
    height: 18px;
  }

  .ts-image.digitalocean img {
    height: 28px;
  }

  .ts-image.rackspace img {
    height: 13px;
  }

  .ts-image.google img {
    height: 15px;
  }

  .ts-heading {
    margin-bottom: 29px;
  }

  .ts-heading h2 {
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700;
  }

  .ts-image-box {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .ts-image {
    min-height: 36px;
  }

  .ts-box-container.isShowMore {
    max-height: 625px;
  }

  .ts-button span {
    font-size: 15px;
    line-height: 20px;
  }

  .ts-button p {
    padding: 10px 20px;
  }

  .ts-button p::after {
    width: 14px;
    height: 14px;
    background-size: cover;
  }

  .cwa-section-7 {
    padding: 60px 20px 50px;
  }

  .wmudsection-box {
    display: block;
    position: relative;
  }

  .wmud-heading span {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  .wmud-heading h2 {
    text-align: center;
  }

  .wmud-heading {
    margin-bottom: 280px;
  }

  .wmud-box {
    grid-template-columns: 48px 1fr;
    margin-bottom: 10px;
    padding: 19px 20px;
  }

  .wmud-box .left {
    height: 48px;
  }

  .wmud-box h4 {
    font-weight: 500;
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .wmud-sub_heading h3 {
    text-align: center;
    font-size: 17px !important;
    line-height: 24px !important;
    margin-bottom: 6px;
    font-weight: 400;
  }

  .wmud-left {
    position: absolute;
    top: 182px;
    height: auto;
    width: 100%;
  }

  .wmud-left img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 250px;
  }

  .lbwasection-box {
    display: block;
    z-index: 2;
    position: relative;
  }

  .lbwa-heading span {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  .lbwa-heading {
    text-align: center;
    display: inline-block;
    margin-bottom: 25px;
  }

  .lbwa-heading .middle-mobile {
    text-align: center;
    white-space: nowrap;
  }

  .cwa-section-8 {
    padding: 60px 15px 0;
  }

  .lbwa-btn {
    font-size: 15px;
    line-height: 20px;
  }

  .lbwa-button {
    text-align: center;
  }

  .lbwa-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 11px 20px;
  }

  .lbwasection-box .box-right {
    margin-top: 40px;
    padding-top: 0;
  }

  .lbwasection-box .box-right img {
    min-width: 100%;
    margin: 0;
  }

  .lbwa-background-bottom-left {
    display: none;
  }

  .lbwa-background-top {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="390" height="565" viewBox="0 0 390 565"><defs><radialGradient id="radial-gradient" cx="0.5" cy="0" r="0.616" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%234c8ef7" stop-opacity="0.506"/><stop offset="1" stop-color="%23111112" stop-opacity="0"/></radialGradient></defs><rect id="Rectangle_8945" data-name="Rectangle 8945" width="390" height="565" fill="url(%23radial-gradient)"/></svg>');
    left: 0;
    height: 100%;
    z-index: 0;
    background-size: contain;
  }

  .lbwa-background-bottom-right {
    width: 100%;
    left: 0;
    height: 50%;
    bottom: 0;
    z-index: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="390" height="278" viewBox="0 0 390 278"><defs><radialGradient id="radial-gradient" cx="0.967" cy="0.981" r="0.758" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%232f2692"/><stop offset="1" stop-opacity="0"/></radialGradient></defs><rect id="Light-right" width="390" height="278" fill="url(%23radial-gradient)"/></svg>');
  }

  .image-hover-shadow::before {
    background-size: 100% 50%;
    top: 25%;
  }

  .lbwa-heading h2 {
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700;
  }

}

/* contact form */


.modal-compare {
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fefefe;
  padding: 35px;
  padding-top: 5px;
  border: 1px solid #888;
  width: 570px;
}

.modal-content__note {
  text-align: right;
  height: 20px;
}

.modal-content__header {
  font-size: 20px;
  line-height: 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
}

.modal-content__tablePosition {
  background-color: #FAFAFA;
  border-radius: 4px;
  padding: 20px;
  padding-top: 5px;
}

.modal-content__detail {
  font-size: 16px;
  line-height: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.wpcf7-form-control-wrap {
  margin-top: 0;
}

.dp-fl>p {
  width: 48%;
  margin-bottom: 0;
}

.dp-fl label,
.wpcf7-not-valid-tip,
.positionForm label {
  font-size: 15px;
  line-height: 20px;
}

.dp-fl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.positionForm input {
  height: 46px !important;
  border: 1px solid #E8E8E8 !important;
  background-color: #ffffff !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-family: 'Inter', sans-serif !important;
}

.positionForm textarea {
  border: 1px solid #E8E8E8 !important;
  background-color: #ffffff !important;
  font-size: 16px;
  line-height: 22px;
  font-family: 'Inter', sans-serif;
}

.positionForm input[type="submit"] {
  background-color: #e60078 !important;
  width: 100%;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  font-family: 'Inter', sans-serif;
}

.positionForm .wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  margin-top: 20px !important;
}

.input-roles-hidden {
  display: none;
}

.positionForm div.wpcf7 .ajax-loader {
  margin: auto;
  margin-top: 5px;
}

@media (min-width: 800px) {
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 800px) {
  .wpcf7-form-control-wrap {
    margin-top: 5px;
  }

  .modal-content {
    margin: 12% auto;
  }

  .modal-content {
    width: 95% !important;
    margin-top: 125px !important;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .dp-fl {
    flex-direction: column;
    margin-bottom: 0;
  }

  .dp-fl>p {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .roles__exp-row.button__box>div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .buttonAdd-specific {
    margin-left: 0px !important;
    margin-top: 15px;
  }

  .iconNumber-position {
    display: none;
  }
}