* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --theme: #00A9AA;
  --theme-dark: #009191;
  --theme-light: #eafffb;
  --primary-color: #0b2132;
  --teal-color: #00a2a4;
  --teal-hover: #008486;
  --teal-light: #e6f6f7;
  --orange-color: #f77017;
  --orange-hover: #e05c06;
  --text-dark: #4b5866;
  --text-light: #7b8896;
  --border-color: #e5eaee;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 6px 20px rgba(0, 162, 164, 0.2);
  --gutter: 15px;
  --color-primary-soft: rgba(0, 177, 79, 0.1);
  --color-primary-softer: rgba(0, 177, 79, 0.05);
  --color-surface-container: #1E1E1E;
  --color-surface-container-low: #121212;
  --color-on-surface: #F2F2F2;
  --color-on-surface-variant: #A0A0A0;
  --color-outline-variant: #2C2C2C;
  --color-background: #0F1110;
  --color-on-primary: #FFFFFF;
  --color-primary: #00B14F;
  --color-blue: #60A5FA;
  --color-blue-soft: rgba(59, 130, 246, 0.1);
  --color-blue-softer: rgba(96, 165, 250, 0.05);
  --color-blue-border: rgba(96, 165, 250, 0.2);
  --color-orange: #FB923C;
  --color-orange-soft: rgba(249, 115, 22, 0.1);
  --color-orange-softer: rgba(251, 146, 60, 0.05);
  --color-orange-border: rgba(251, 146, 60, 0.2);
  --color-purple: #C084FC;
  --color-purple-soft: rgba(168, 85, 247, 0.1);
  --color-purple-softer: rgba(192, 132, 252, 0.05);
  --color-purple-border: rgba(192, 132, 252, 0.2);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
}

@keyframes pulse-me1 {
  0% {
    transform: scale(.9);
    opacity: .2;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9)
  }

  50% {
    opacity: .5
  }

  70% {
    opacity: .09
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
    -webkit-transform: scale(2.1);
    -moz-transform: scale(2.1);
    -ms-transform: scale(2.1);
    -o-transform: scale(2.1)
  }
}

body {
  font-family: var(--common-font);
}

img {
  max-width: 100%;
}

p {
  font-size: 16px;
  color: #000;
  line-height: 23px;
  margin-bottom: 10px;
  text-align: justify;
  font-family: var(--common-font);
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
}

picture {
  display: block;
}

.play-anim-ico {
  background-image: url(../images/service-provider-2026/play-video.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  position: absolute;
  height: 60px;
  right: 20px;
  bottom: 20px;
  z-index: 111;
}

.play-anim-ico:after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 13px #fff;
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me1 1s linear infinite;
  -webkit-animation: pulse-me1 1s linear infinite;
}

.heading-area {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.heading-area>p {
  text-align: center;
}

.heading-area.left {
  text-align: left;
}

.heading-area.left>p {
  text-align: justify;
}

.section-heading strong {
  text-transform: uppercase;
  font-size: 25px;
  color: #000000;
  font-weight: 600;
  display: block;
}

.heading-area.left .section-heading strong::after {
  margin: 10px 0 5px 0;
}

.heading-area>p {
  margin: 5px 0 0 0;
}

.section-heading {
  font-size: 35px;
  font-weight: 800;
  margin: -4px 0 0 0;
  color: #000;
  text-transform: uppercase;
  line-height: 1em;
  font-family: var(--common-font);
}

.section-heading small {
  display: block;
  margin-top: 5px;
  color: #333;
  font-weight: bold;
  font-size: 18px;
}

.section-heading~small {
  font-weight: 800;
  font-size: 17px;
  color: #000;
  display: block;
  text-transform: uppercase;
  margin: 5px 0 0 0;
}

.section-heading span {
  color: var(--theme);
}

li {
  display: block;
}

.heading-area.white>* {
  color: #fff;
}

.img-fluid{
  max-width: 100%;
  height: auto;
}

main {
  margin: 80px auto 0 auto;
  max-width: 1920px;
}

/* _______________________________________ HERO SECTION _______________________________ */
/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: #f7fffe;
  overflow: hidden;
  padding: 40px 15px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 38%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #00a9aa1a, #00a9aa00 70%)
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-grid h1 + strong {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}
.hero-copy{
  width: 48%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #16A34A;
  background: #E9F9EE;
  border: 1px solid #C9F0D7;
  border-radius: 999px;
  padding: 5px 11px;
  margin: 0 0 5px;
}

h1 {
    font-size: 39px;
    line-height: 1em;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 10px;
}

h1 .accent {
  color: var(--theme);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn i{
  font-size: 18px;
}
.btn-primary {
  background: var(--theme);
  color: #fff;
}
.btn-primary:hover{
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--theme);
  border-color: var(--theme);
}

.btn-outline-green {
  background: #fff;
  color: #16A34A;
  border-color: #16A34A;
}
.btn-outline-green:hover {
  background:#16A34A;
  color: #fff;
}
.btn-outline-purple {
  background: #fff;
  color: #7C3AED;
  border-color: #7C3AED;
}
.btn-outline-purple:hover {
  background: #7C3AED;
  color: #fff;
}
.btn-outline-blue {
  background: #fff;
  color: #1D4ED8;
  border-color: #1D4ED8;
}
.btn-outline-blue:hover {
  background: #1D4ED8;
  color: #fff;
}
.btn svg {
  flex-shrink: 0;
}


.feature-row {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature-row li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-row .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-row .icon.orange {
  background: #FDE9DC;
}

.feature-row .icon.green {
  background: #E9F9EE;
}

.feature-row .icon.purple {
  background: #EFEAFE;
}
.feature-row .icon.blue {
  background: #eaf4fe;
}

.feature-row .label-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.feature-row .label-sub {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #333;
  font-weight: 600;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  position: relative;
  width: 48%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.demo-bubble {
  position: absolute;
  top: 0;
  left: 380px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.12);
  padding: 10px 16px 10px 10px;
  z-index: 6;
}

.bubble-arrow {
  position: absolute;
  top: -34px;
  left: 330px;
  z-index: 6;
}

.demo-bubble .play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2E6BE0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-bubble .t1 {
  font-size: 12px;
  font-weight: 800;
}

.demo-bubble .t2 {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.4;
}

.sp-phone-2 {
    width: 300px;
    position: relative;
    z-index: 1;
}
.dash-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -18%;
}
.dash-panel img {
    max-width: 53vw;
    border-left: 5px solid #1b0b54;
    border-radius: 25px 0 0 25px;
    filter: drop-shadow(0px 0 4px rgba(0, 0, 0, 0.1));
    -webkit-filter:drop-shadow(0px 0 4px rgba(0, 0, 0, 0.1));
}
/* _______________________________________ HERO SECTION _______________________________ */
/******************/
.flow-column {
  width: 33.33%;
  padding: 0 15px;
}

.flow-column:nth-child(2) {
  border-width: 0 1px;
  border-color: #ddd;
  border-style: solid;
}

.front-end {
  padding: 35px 0px 40px;
  background-color: #F9F9F9;
}

.front-end .heading-area {
  text-align: left;
}

.front-end-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.front-end-left {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.front-end-right {
  width: 49%;
}

.front-end-right a {
  display: inline-block;
  padding: 11px 20px 13px 20px;
  background-color: var(--theme);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.front-end-right a:hover {
  background-color: var(--theme-dark);
}

.front-end-right>strong {
  margin: 0 0 10px 0;
  padding: 0px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  text-transform: none;
  line-height: 26px;
  display: block;
}

/**********/
.bg-blue {
  background: #EFF6FF;
  color: #2563EB;
}
.blue-line {
    background: linear-gradient(
        180deg,
        transparent 0%,
        #7CC4FF 15%,
        #2F80FF 50%,
        #7CC4FF 85%,
        transparent 100%
    );
    filter: blur(0.2px);
    box-shadow:
        0 0 4px rgba(47,128,255,.45),
        0 0 8px rgba(47,128,255,.25);
}

.bg-orange {
  background: #FFF7ED;
  color: #F97316;
}
.orange-line {
  background: linear-gradient(to bottom, transparent, #F97316, transparent);
  box-shadow: 0 0 8px rgba(249, 115, 22, .35);
}

.bg-indigo {
  background: #EEF2FF;
  color: #4F46E5;
}
.indigo-line {
  background: linear-gradient(to bottom, transparent, #4F46E5, transparent);
  box-shadow: 0 0 8px rgba(79, 70, 229, .35);
}

.bg-cyan {
  background: #ECFEFF;
  color: #0891B2;
}
.cyan-line {
  background: linear-gradient(to bottom, transparent, #0891B2, transparent);
  box-shadow: 0 0 8px rgba(8, 145, 178, .35);
}

.bg-pink {
  background: #FDF2F8;
  color: #EC4899;
}
.pink-line {
  background: linear-gradient(to bottom, transparent, #EC4899, transparent);
  box-shadow: 0 0 8px rgba(236, 72, 153, .35);
}

.bg-red {
  background: #FEF2F2;
  color: #EF4444;
}
.red-line {
  background: linear-gradient(to bottom, transparent, #EF4444, transparent);
  box-shadow: 0 0 8px rgba(239, 68, 68, .35);
}

.bg-amber {
  background: #FFFBEB;
  color: #D97706;
}
.amber-line {
  background: linear-gradient(to bottom, transparent, #D97706, transparent);
  box-shadow: 0 0 8px rgba(217, 119, 6, .35);
}

.bg-violet {
  background: #F5F3FF;
  color: #7C3AED;
}
.violet-line {
  background: linear-gradient(to bottom, transparent, #7C3AED, transparent);
  box-shadow: 0 0 8px rgba(124, 58, 237, .35);
}

.bg-emerald {
  background: #ECFDF5;
  color: #059669;
}
.emerald-line {
  background: linear-gradient(to bottom, transparent, #059669, transparent);
  box-shadow: 0 0 8px rgba(5, 150, 105, .35);
}

.bg-rose {
  background: #FFF1F2;
  color: #F43F5E;
}
.rose-line {
  background: linear-gradient(to bottom, transparent, #F43F5E, transparent);
  box-shadow: 0 0 8px rgba(244, 63, 94, .35);
}

.bg-gray {
  background: #F9FAFB;
  color: #4B5563;
}
.gray-line {
  background: linear-gradient(to bottom, transparent, #4B5563, transparent);
  box-shadow: 0 0 8px rgba(75, 85, 99, .35);
}

.bg-yellow {
  background: #FEFCE8;
  color: #CA8A04;
}
.yellow-line {
  background: linear-gradient(to bottom, transparent, #CA8A04, transparent);
  box-shadow: 0 0 8px rgba(202, 138, 4, .35);
}


.bg-teal {
  background: #F0FDFA;
  color: #0D9488;
}
.teal-line {
  background: linear-gradient(to bottom, transparent, #0D9488, transparent);
  box-shadow: 0 0 8px rgba(13, 148, 136, .35);
}

.bg-lime {
  background: #F7FEE7;
  color: #65A30D;
}
.lime-line {
  background: linear-gradient(to bottom, transparent, #65A30D, transparent);
  box-shadow: 0 0 8px rgba(101, 163, 13, .35);
}

.bg-sky {
  background: #F0F9FF;
  color: #0284C7;
}
.sky-line {
  background: linear-gradient(to bottom, transparent, #0284C7, transparent);
  box-shadow: 0 0 8px rgba(2, 132, 199, .35);
}

.bg-fuchsia {
  background: #FDF4FF;
  color: #C026D3;
}
.fuchsia-line {
  background: linear-gradient(to bottom, transparent, #C026D3, transparent);
  box-shadow: 0 0 8px rgba(192, 38, 211, .35);
}

.bg-purple {
  background: #FAF5FF;
  color: #9333EA;
}
.purple-line {
  background: linear-gradient(to bottom, transparent, #9333EA, transparent);
  box-shadow: 0 0 8px rgba(147, 51, 234, .35);
}

.bg-green {
  background: #F0FDF4;
  color: #16A34A;
}
.green-line {
  background: linear-gradient(to bottom, transparent, #16A34A, transparent);
  box-shadow: 0 0 8px rgba(22, 163, 74, .35);
}

.bg-slate {
  background: #F8FAFC;
  color: #475569;
}
.slate-line {
  background: linear-gradient(to bottom, transparent, #475569, transparent);
  box-shadow: 0 0 8px rgba(71, 85, 105, .35);
}

.bg-orange-deep {
  background: #FFF7ED;
  color: #EA580C;
}
.orange-deep-line {
  background: linear-gradient(to bottom, transparent, #EA580C, transparent);
  box-shadow: 0 0 8px rgba(234, 88, 12, .35);
}

.bg-blue-deep {
  background: #EFF6FF;
  color: #1D4ED8;
}
.blue-deep-line {
  background: linear-gradient(to bottom, transparent, #1D4ED8, transparent);
  box-shadow: 0 0 8px rgba(29, 78, 216, .35);
}

.bg-stone {
  background: #FAFAF9;
  color: #78716C;
}
.stone-line {
  background: linear-gradient(to bottom, transparent, #78716C, transparent);
  box-shadow: 0 0 8px rgba(120, 113, 108, .35);
}

.line {
    width: 3px;
    height: 70px;
    border-radius: 100px;
}

.service-provider-icon {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.service-provider-icon .heading-area {
  width: 100%;
  display: table;
}

.service-provider-icon-inner {
  margin: 0 auto;
  max-width: 1310px;
  box-sizing: border-box;
  padding: 0 15px;
  border-radius: 25px;
}

.overlay__img {
  display: flex;
  flex-direction: column;
}

.overlay__img img {
  vertical-align: top;
}

.services-area {
  display: grid;
  grid-template-columns: 1fr 290px;
  align-items: flex-start;
  gap: 20px;
}

.services-middle-area {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #EEEEEE;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.service-provider-icon .TABROW {
  display: flex;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid #EEEEEE;
  justify-content: flex-start;
  width: auto;
}

.service-provider-icon .TABROW .TAB {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: var(--subtext);
  text-align: left;
  transition: all .15s ease;
  letter-spacing: 0;
  -webkit-transition: all .15s ease;
  -moz-transition: all .15s ease;
  -ms-transition: all .15s ease;
  -o-transition: all .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.service-provider-icon .TABROW .TAB i {
  font-size: 27px;
}

.service-provider-icon .TABROW .TAB.active {
  background: var(--theme-light);
  color: var(--theme);
  font-weight: bold;
  border: 1px solid var(--theme);
}

.unlimited-services-left {
  max-height: 604px;
  overflow-y: auto;
  padding: 0 20px 0 20px;
  scroll-behavior: smooth;
  border-bottom: 20px solid transparent;
}

/* Width of the scrollbar */
.unlimited-services-left::-webkit-scrollbar {
  width: 6px;
}

/* Track (the background) */
.unlimited-services-left::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* Thumb (the draggable part) */
.unlimited-services-left::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

/* Thumb on hover */
.unlimited-services-left::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.35);
}

.service-provider-icon-row.active {
  display: block;
}

.service-provider-icon-row {
  display: none;
}

.service-provider-icon-row ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.service-provider-icon-row ul.grid-template-5 {
  grid-template-columns: repeat(5, 1fr);
}


.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-6 .single-service-inner,
.grid-span-3 .single-service-inner,
.grid-span-4 .single-service-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  background-color: var(--theme-light);
  border: 1px solid var(--theme);
  padding: 15px;
  height: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  align-items: center;
}

.grid-span-6 .single-service-inner b,
.grid-span-3 .single-service-inner b,
.grid-span-4 .single-service-inner b {
  background-color: var(--theme);
  color: #fff;
}

.grid-span-6 .single-service-inner strong,
.grid-span-3 .single-service-inner strong,
.grid-span-4 .single-service-inner strong {
  margin: 0;
  text-align: left;
}

.single-service-inner {
  text-align: center;
}

.single-service-inner b {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform .2s ease;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  font-size: 24px;
  margin: auto;
}

.single-service-inner strong {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
  color: #000;
}

.single-service-inner.flex strong {
  margin: 0;
}

.single-service-inner b img {
  width: 34px;
  height: 34px;
  vertical-align: top;
}

.single-service-inner b svg {
  width: 24px;
  height: 24px;
}

.components-text {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 15px;
}

.components-text p.text {
  margin-bottom: 0;
}

.components-text .heading {
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin-top: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.components-text .heading .video-btn {
  background-color: var(--theme);
  color: #fff;
  font-size: 14px;
  padding: 6px 13px;
  border-radius: 5px;
  vertical-align: middle;
  display: inline-block;
}

[class*="icon-part"] {
  margin: 0px;
  padding: 0px;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.for-mob {
  text-align: center;
}

.for-mob img {
  max-width: 100%;
}

/******************/
.demo-video-laptop {
  margin: 0;
  padding: 35px 0px 40px 0px;
  position: relative;
  background: linear-gradient(to bottom, #f8f8f8 0%,#ffffff 100%);
  z-index: 0;
}

.demo-video-laptop .play-anim-ico {
  position: absolute;
  left: 46%;
  top: 56%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.demo-video-laptop-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
  text-align: center;
}

.overview-video-inner {
  margin: 0px;
  padding: 0px;
  position: relative;
}

.uberclone-vidoe-img {
  display: inline-block;
  max-width: 100%;
  width: 800px;
}

.uberclone-vidoe-img img {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
}

.uberclone-vidoe-img iframe {
  margin: auto;
  padding: 0px;
  width: 800px;
  max-width: 100%;
  outline: 1px solid #ddd;
  height: 450px;
}

.uberclone-vidoe-img img:hover {
  cursor: pointer;
}

.demo-video-laptop p {
  margin: 0 0 15px;
  text-align: center;
}

.demo-video-laptop p strong {
  margin: 0px;
  padding: 0px;
  color: #ff6e00;
  font-weight: 600;
}

.uberclone-vidoe-img .video-Image-video1 {
  margin: 0 auto;
  padding: 0px;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 100px;
  height: auto;
}

/**********/
.chat-img {
  display: none;
}


/**** bottom-banner *******/
@keyframes buttonanim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/************************************/
.banner {
  position: relative;
  z-index: 1;
}

.banner>img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.banner img.new-tag {
  position: relative;
  top: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: -12px;
  width: 40px;
  height: 40px;
}

.banner-button-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner a {
  font-size: 18px;
  background-color: var(--theme);
  font-weight: 700;
  color: #ffffff;
  padding: 14px 20px 14px 20px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 3px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-transform: capitalize;
  cursor: pointer;
}

.banner a:hover {
  background-color: var(--theme-dark);
}

.banner a.view-demo {
  background: var(--theme);
  color: #fff;
  padding: 6px 15px 6px 15px;
  display: inline-flex;
  flex-wrap: wrap;
  border-radius: 3px;
  position: relative;
  z-index: 0;
  gap: 8px;
  overflow: hidden;
  align-items: center;
}

.banner a.view-demo:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--theme-dark);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  animation: buttonanim 1.5s infinite;
  -webkit-animation: buttonanim 1.5s infinite;
}

.banner a.view-demo i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}

.banner a.view-demo img {
  width: 30px;
  vertical-align: top;
}

.banner a.new_video span small {
  display: block;
  line-height: normal;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.banner a.new_video span {
  font-size: 15px;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  margin: -5px 0 0 0;
  text-align: left;
  font-weight: 700;
}

.banner-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-clone-holder {
  display: inline-block;
  position: relative;
  z-index: 0;
  max-width: 376px;
}

.app-clone-holder:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 168%;
}

.app-clone-holder img {
  position: absolute;
  left: 0;
  top: 0;
}

.banner h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1em;
  font-family: var(--common-font);
}

.banner p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.banner h1~strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  font-family: var(--common-font);
  font-weight: 800;
}

.banner h1 span {
  color: var(--theme);
}

.gen-button {
  font-size: 18px;
  background-color: var(--theme);
  font-weight: bold;
  color: #ffffff;
  padding: 14px 20px 14px 20px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.gen-button:hover {
  background-color: var(--theme-dark);
  color: #fff;
}

/****************************************/

.features {
  padding: 40px 0;
}

.features-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 1310px;
  padding: 0 15px;
}

.features ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.features .fet_top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  margin: 0 0 10px;
  align-items: center;
}

.features ul li i {
  width: 65px;
  height: 65px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  position: relative;
}

.features ul li strong {
  display: block;
  line-height: 1.2em;
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.fet-caption {
  padding: 20px;
  min-height: 100%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.bg-color1 {
  background: #E7F4F7 !important;
  outline-color: #E7F4F7 !important;
}

.bg-color2 {
  background: #F9F5ED !important;
  outline-color: #F9F5ED !important;
}

.bg-color3 {
  background: #FAF1F1 !important;
  outline-color: #FAF1F1 !important;
}

.bg-color4 {
  background: #f1e9ff !important;
  outline-color: #f1e9ff !important;
}

.bg-color5 {
  background: #F9F5ED !important;
  outline-color: #F9F5ED !important;
}

.bg-color6 {
  background: #f5e9ef !important;
  outline-color: #f5e9ef !important;
}

.bg-color7 {
  background: #dcf2eb !important;
  outline-color: #dcf2eb !important;
}

.bg-color8 {
  background: #E7F4F7 !important;
  outline-color: #E7F4F7 !important;
}

.bg-color9 {
  background: #E5FFEC !important;
  outline-color: #E5FFEC !important;
}

.bg-color10 {
  background: #E7F4F7 !important;
  outline-color: #E7F4F7 !important;
}

/*****************************************/
.service-app {
  padding: 40px 0;
  background-color: #fff;
}

.service-app-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.service-app .service-app-right {
  padding: 0;
  width: 60%;
}

.service-app .service-app-left {
  width: 38%;
}

.service-app.invert .service-app-right b {
  margin-bottom: 5px;
  display: block;
  font-size: 22px;
}


/* ----------------------------------------------------- */
.screens {
  padding: 40px 0px 40px 0;
  overflow: hidden;
  background-color: var(--theme-light);
}
.screens-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.TABROW {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 auto 15px auto;
  gap: 15px;
  width: 480px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px 5px;
}

.TABROW .TAB {
  position: relative;
  width: 100%;
}

.TABROW .TAB span {
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  gap: 10px;
  min-height: 45px;
  white-space: nowrap;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.TABROW .TAB span:hover {
  background: var(--theme);
  color: #fff;
}

.TABROW .TAB.active span {
  background: var(--theme);
  color: #fff;
}

.screens ul {
  display: none;
  flex-wrap: wrap;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screens ul.active {
  display: block;
}

.tab__area {
    display: grid;
    grid-template-columns: auto 575px;
    gap: 20px;
}

.tab_img {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.tab__content.full__width {
  width: 100%;
}

.tab_img span {
  width: 280px;
}

.tc_title {
  font-size: 28px;
  color: #000;
  text-transform: uppercase;
  display: block;
  margin: 0 0 5px;
  font-weight: 700;
}

.tab__content ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tab__content.full__width ol {
  grid-template-columns: 1fr 1fr 1fr;
}

.tab__area ol li i {
    width: 95px;
    height: 95px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.tab__area ol li p {
    text-align: left;
    margin: 0;
    font-weight: bold;
}
.tab__area ol li {
  font-size: 16px;
  color: #000;
  display: grid;
  grid-template-columns: 95px auto 3px;
  position: relative;
  text-align: justify;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  padding: 20px;
  border-radius: 12px;
  gap: 15px;
  align-items: center;
}

.tab__area ol li div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  flex-direction: column;
}

.tab__area ol li strong {
  font-size: 18px;
  color: #000;
  line-height: 1em;
  display: block;
  font-weight: 800;
}

.screens .view-app-flow {
  font-size: 22px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 14px 40px 17px 40px;
  min-width: 264px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 30px;
  margin-top: 35px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.screens .view-app-flow:hover {
  background-color: var(--theme-dark);
}

.flow-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
}

.flow-button-btn {
  background-color: var(--theme);
  font-size: 28px;
  color: #fff;
  padding: 15px 25px 17px 25px;
  min-width: 31.2%;
  text-align: center;
  font-weight: 600;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.flow-button-btn:hover {
  background-color: var(--theme-dark);
  color: #fff;
}

.screens .image {
  width: 60%;
  margin: 0 auto;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
.admin__panel {
  overflow: hidden;
  padding: 40px 0;
}

.admin__panel__inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.admin__panel__inner:not(:last-child) {
  padding-bottom: 40px;
}

.AP__left {
  width: calc(100% - 420px);
  width: -webkit-calc(100% - 420px);
  width: -moz-calc(100% - 420px);
  width: -ms-calc(100% - 420px);
  width: -o-calc(100% - 420px);
}

.AP__right {
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.AP__right.flex_end {
  align-items: flex-end;
}

.AP__right img {
  max-width: 37vw;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.AP__FET {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.AP__FET article {
  box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  border-right: 6px solid #FFD615;
}

.AP__FET .title-and-icon {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.AP__FET .title-and-icon i {
  width: 62px;
  font-size: 45px;
}

.AP__FET .title-and-icon strong {
  font-size: 20px;
  color: #000;
  font-weight: 800;
  display: block;
  line-height: 1em;
  text-transform: capitalize;
}

.web__panel {
  overflow: hidden;
  padding: 40px 0;
  background-color: #f8f8f8;
}

/* ----------------------------------------------------- */
/**************************************/
.demolinks {
  padding: 40px 0;
  position: relative;
  background-color: var(--color-surface-container-low);
}

.demolinks .heading-area strong {
  color: #fff;
}

.demolinks-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.demolinks .heading-area h3 {
  color: #fff;
}

.web-heading {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  background-color: #e2a213;
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  padding: 0 15px 5px 15px;
}

.demolinks ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  max-width: 912px;
  gap: 10px;
  margin: 10px auto 0 auto;
}

.demolinks ul li a {
  display: block;
  position: relative;
}

.demolinks ul li a img {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
}

.demolinks ul li a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 32.76%;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-card {
  background: var(--color-surface-container);
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--color-outline-variant);
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-weight: bold;
  line-height: 1em;
  min-height: 35px;
}

.badge-primary {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-color: rgba(0, 177, 79, 0.2);
}

.badge-blue {
  background: var(--color-blue-soft);
  color: var(--color-blue);
  border-color: var(--color-blue-border);
}

.badge-orange {
  background: var(--color-orange-soft);
  color: var(--color-orange);
  border-color: var(--color-orange-border);
}

.badge-orange span::before {
  color: var(--color-orange);
}


.badge-purple {
  background: var(--color-purple-soft);
  color: var(--color-purple);
  border-color: var(--color-purple-border);
}

.badge-purple span::before {
  color: var(--color-purple);
}

.badge-label {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.icon-box-primary {
  background: var(--color-primary-softer);
  border-color: rgba(0, 177, 79, 0.1);
}

.icon-box-primary .material-symbols-outlined {
  color: var(--color-primary);
}

.icon-box-blue {
  background: var(--color-blue-softer);
  border-color: var(--color-blue-border);
}

.icon-box-blue .material-symbols-outlined {
  color: var(--color-blue);
}

.card-title {
  font-size: 20px;
  line-height: 1em;
  font-weight: 800;
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-family: var(--common-font);
}

.card-text {
  color: #f8f8f8;
  margin-top: 5px;
  margin-bottom: 0;
}

.store-buttons {
  margin-top: auto;
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.store-link {
  display: block;
  border-radius: var(--radius-lg);
  transition: opacity .2s, transform .2s;
}

.store-link:hover {
  opacity: 0.85;
}

.store-link img {
  width: 100%;
  height: auto;
  display: block;
}
.app-qr {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    gap: 10px;
    position: relative;
    width: 80%;
    margin: auto;
    margin-top: 22px;
}
.app-qr::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: translateX(-50%) rotate(
227deg);
}
.demo-column {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

.mini-card {
  background: var(--color-surface-container);
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--color-outline-variant);
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

.mini-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.arrow-icon {
  color: var(--color-primary);
  transition: transform .2s;
}

.mini-card:hover .arrow-icon {
  transform: translateX(4px);
}

.grab-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dark-glass {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
}

.card-hover {
  transition: transform .3s cubic-bezier(.2, 0, 0, 1), box-shadow .3s cubic-bezier(.2, 0, 0, 1), border-color .3s cubic-bezier(.2, 0, 0, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  border-color: var(--theme);
}

/**************************************/
/**************************************/
.pricing {
  padding: 40px 0px;
  position: relative;
  z-index: 1;
}

.pricing img {
  max-width: 100%;
  vertical-align: top;
}

.pricing-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pricing .get-quote {
  font-size: 22px;
  background-color: var(--theme);
  font-weight: 700;
  color: #ffffff;
  padding: 17px 40px 17px 40px;
  min-width: 264px;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.pricing .get-quote:hover {
  background-color: var(--theme-dark);
}



.torn-pricing {
  position: relative;
}


/**************************************/
/**************************************/
.ic_bg_blue {
  background-color: #00AADE;
}

.ic_bg_green {
  background-color: #00AA13;
}

.ic_bg_orange {
  background-color: #FF8300;
}

.ic_bg_red {
  background-color: #EE2737;
}

.ic_bg_purple {
  background-color: #93328E;
}

/**************************************/
/********************************clients stylesheet start***********************************/
.testimonial-section {
  padding: 40px 0 !important;
}
.testimonial-section .testimonial-section-row-flow ul li .testimonial-single-item .testimonial-thumb:after {
  color: var(--theme) !important;
}
.testimonial-section .testimonial-single-item.more-testimonials {
  background-color: var(--theme) !important;
}
.testimonial-section .testimonial-single-item.more-testimonials:hover {
  background-color: var(--theme-dark) !important;
}
.testimonial-section .review-card {
    background: #fff !important;
    position: relative;
}
.testimonial-section .review-location,
.testimonial-section .review-name{
    color: #000 !important;
}
.testimonial-section .testimonial-thumb {
    border-radius: 10px 10px 0 0 !important;
    -webkit-border-radius: 10px 10px 0 0 !important;
    -moz-border-radius: 10px 10px 0 0 !important;
    -ms-border-radius: 10px 10px 0 0 !important;
    -o-border-radius: 10px 10px 0 0 !important;
}
/**************************************/
/**************************************/
.delivery-types {
  padding: 40px 0px;
  background-image: url(../images/service-provider-2026/productsbg.jpg);
  background-size: cover;
  background-position: center;
}

.delivery-types-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.delivery-types ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.delivery-types ul li {
  width: -webkit-calc(20% - 16px);
  width: -moz-calc(20% - 16px);
  width: calc(20% - 16px);
}

.delivery-types-box {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 15px;
  text-align: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
  min-height: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.delivery-types ul li a {
  display: block;
}

.delivery-types ul li strong {
  display: block;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0px 0;
  line-height: 1em;
}

.delivery-types ul li:hover .delivery-types-box {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.delivery-types ul li:hover strong {
  color: var(--theme-dark);
}

/**************************************/
/**************************************/
.provide {
  padding: 25px 15px 0 0;
  position: relative;
}

.provide-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.provide-left {
  width: 56%;
}

.provide-right {
  width: 40%;
}

.provide-right img {
  max-width: 100%;
}

.provide-left .heading-area {
  text-align: left;
}

.provide-left .heading-area .header-sep {
  margin-left: 0;
}

.provide ul li {
  font-size: 16px;
  color: #333;
  list-style: none;
  padding-left: 21px;
  position: relative;
  margin-bottom: 7px;
  font-weight: 400;
}

.provide ul {
  margin-left: 0;
  margin-bottom: 20px;
}

.provide ul li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--theme);
  border-radius: 50%;
  left: 0;
  top: 7px;
}

/**************************************/
.fancybox-opened {
  z-index: 80303 !important;
}

/**************************************/
.service-app.invert.one-app-all-services .service-app-left::after {
  display: none;
}

.service-app.invert.one-app-all-services .service-app-inner {
  align-items: center;
  justify-content: space-between;
}

/*****************************/
.latest-features {
  display: block;
  padding: 40px 0;
  width: 100%;
  position: relative;
  background-color: #f8f8f8;
}

.latest-features-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.latest-features ul li {
  background: #fff;
  border: 1px solid rgba(203, 196, 210, 0.3);
  border-radius: 24px;
  transition: background-color 0.2s ease;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
}

.latest-features ul li i {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.latest-features ul li i img {
  width: 50px;
  height: 50px;
}

.latest-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}

.latest-features ul li strong {
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.center-button-block {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.center-button-block .gen-button {
  display: inline-block;
}

.front-end-left img {
  max-width: 100%;
}

.card-span-2 {
  grid-column: span 2;
}

.card-row-2 {
  grid-row: span 2;
}

/************************************************/
.reviews-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.reviews {
  padding: 50px 0 50px 0;
  position: relative;
}

.reviews .reviews-inner>a:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--theme);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.reviews .client-left-shape {
  position: absolute;
  top: -158px;
  left: -10px;
  pointer-events: none;
}

.reviews .client-right-shape {
  position: absolute;
  bottom: -183px;
  right: -10px;
  pointer-events: none;
}

ul.reviews-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

ul.reviews-list li {
  width: 25%;
  margin-bottom: 20px;
  padding: 0 10px;
}

ul.reviews-list li a {
  display: block;
  background-color: #fff;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  overflow: hidden;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

ul.reviews-list li a img {
  max-width: 100%;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}

ul.reviews-list li:not(:last-child) a:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 71%;
}

ul.reviews-list li a::after {
  content: '';
  background-image: url(../images/service-provider-2026/play-video.svg);
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
  background-color: #00a9b7;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
}

ul.reviews-list li.morereview a {
  min-height: 100%;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--theme);
  color: #fff;
  padding: 15px;
}

ul.reviews-list li.morereview a:hover {
  background-color: var(--theme-dark);
}

ul.reviews-list li.morereview a:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #fff;
  border-radius: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  -moz-border-radius: 20px 0 0 0;
  -ms-border-radius: 20px 0 0 0;
  -o-border-radius: 20px 0 0 0;
}

ul.reviews-list li.morereview a:after {
  content: '';
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #fff;
  background-image: none;
  background-color: transparent !important;
  box-shadow: none;
  border-radius: 0 0 20px 0;
  -webkit-border-radius: 0 0 20px 0;
  -moz-border-radius: 0 0 20px 0;
  -ms-border-radius: 0 0 20px 0;
  -o-border-radius: 0 0 20px 0;
}

/************************************************/
.latest-features-flow.nagativemargin {
  margin-top: -40px;
}

/************************************************/
/*******************************************/
.inq_form {
  display: block;
  background-color: #f8f8f8;
  position: relative;
  padding: 30px 0 40px;
  z-index: 0;
}

.inq_form form input[type=submit] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 11px 30px 13px 30px;
  background-color: var(--theme);
  width: auto;
  text-transform: uppercase;
  min-height: 45px;
  outline: none;
  border: none;
  line-height: 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.inq_form form input:hover[type=submit] {
  background-color: var(--theme-dark);
}

.inq_form .head-style {
  font-size: 35px;
  font-weight: bold;
  margin: 0 0 6px 0;
  color: #191919
}

/*.inq_form .head-style:after {
  content: '';
  position: absolute;
  width: 31px;
  height: 3px;
  background-color: #f76a00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}*/
.inq_form .heading-area {
  margin-bottom: 15px;
  text-align: left;
  align-items: flex-start;
}

.inq_form-inner {
  max-width: 1340px;
  padding: 0 15px;
  margin: 0 auto;
}

.inq_form .box-shadow {
  margin-top: 15px;
  width: 100%;
}

.inq_form .box-shadow ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.inq_form .box-shadow ul li {
  width: calc(50% - 15px);
  width: -o-calc(50% - 15px);
  width: -ms-calc(50% - 15px);
  width: -moz-calc(50% - 15px);
  width: -webkit-calc(50% - 15px);
}

.inq_form .box-shadow ul li:last-child {
  padding: 20px 30px 30px 30px;
  box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background-color: #fff;
}

.enquire_form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inq_form-left,
.inq_form-right {
  width: calc(100% - 0px);
  width: -o-calc(100% - 0px);
  width: -ms-calc(100% - 0px);
  width: -moz-calc(100% - 0px);
  width: -webkit-calc(100% - 0px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inq_form .input-row-flow {
  margin-bottom: 16px;
  width: calc(50% - 8px);
  width: -o-calc(50% - 8px);
  width: -ms-calc(50% - 8px);
  width: -moz-calc(50% - 8px);
  width: -webkit-calc(50% - 8px);
}

.inq_form .input-row-flow:last-child {
  width: 100%;
}

.inq_form .input-row-flow .g-recaptcha {
  margin-top: 20px;
}

.inq_form .input-row-flow .custom-input-box {
  margin: 0px;
  border: 1px solid #ddd;
  background: #FFF;
  font-size: 16px;
  color: #292929;
  padding: 9px 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  width: 100%;
}

.inq_form .text-center {
  text-align: center;
}

.custom-input-button {
  background-color: #003a57;
  position: relative;
  margin: 0 auto;
  padding: 8px 20px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  border: none;
}

.custom-input-button:hover {
  background-color: #ff6e00;
}

.inq_form .video-block {
  max-width: 100%;
  position: relative;
  width: 100%;
  box-shadow: none;
  min-height: 100%;
  text-align: center;
}

.inq_form .button-btn {
  margin-top: 0;
  justify-content: flex-start;
}

/************************************************/
.review {
  padding: 40px 0;
}

.review-inner {
  max-width: 1310px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 325px 1fr 325px;
  gap: 14px;
  align-items: center;
  padding: 0 15px;
}

.review-right {
  text-align: center;
}

.review a {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}

/************************************************/
/******************************************/
.faq {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.faq__inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.faq_list {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.faq_list li {
  border: 1px solid #ddd;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 0 0 10px 0;
  background: #fff;
}

.faq_list li strong {
  font-size: 18px;
  line-height: normal;
  display: block;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px 10px 20px;
  border-radius: 12px 12px 0 0;
  background: #eff2ff;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
  font-weight: 700;
  color: #000;
}

.faq_list li p {
  padding: 0 20px;
  color: #000;
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
}

.faq_list li p:last-child {
  margin-bottom: 0;
}

.__list {
  padding-left: 30px;
}

.__list span {
  display: block;
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: normal;
  position: relative;
  margin: 0 0 6px 0;
}

.__list span::before {
  content: '';
  width: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
}

.deskop-none {
  display: none;
}


@media screen and (max-width: 1600px) {
  .top-banner-element-botton-left {
    width: 300px;
  }
}

@media screen and (max-width: 1366px) {

  .service-app-left img,
  .service-app-right-last img {
    max-width: 100%;
  }

  .service-app h1 strong {
    font-size: 77px;
  }

  .service-app h1 {
    font-size: 40px;
  }

}

@media screen and (max-width: 1279px) {
  .mt-215 {
    margin-top: -290px;
  }

  .mt-190 {
    margin-top: -270px;
  }
}

@media screen and (max-width: 1115px) {
  .mt-215 {
    margin-top: -190px;
  }

  .mt-190 {
    margin-top: -160px;
  }
  .tab_img span:last-child {
    display: none;
  }
  .tab__area {
    grid-template-columns: auto 280px;
  }
}

@media screen and (max-width: 1024px) {
  .overlay__img {
    display: none;
  }

  .service-app {
    padding-right: 0;
  }

  .banner>img {
    display: none;
  }

  /*********************************************/
  .delivery-types ul li {
    width: -webkit-calc(33.33% - 16px);
    width: -moz-calc(33.33% - 16px);
    width: calc(33.33% - 16px);
  }

  /*********************************************/
  .features-service-left-two {
    width: 300px;
  }

  .features-service-left-one {
    width: calc(100% - 300px);
    width: -o-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
  }

  .features-service-right-one {
    width: 300px;
  }

  .features-service-right-two {
    width: calc(100% - 300px);
    width: -o-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
  }

  .mt-215 {
    margin-top: -190px;
  }

  .mt-190 {
    margin-top: -160px;
  }

  .uberclone-vidoe-img img {
    height: auto;
  }

  .banner {
    background-image: none;
    padding: 40px 0;
  }

  .banner-left {
    width: 100%;
  }

  .review-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .review-left {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: -ms-calc(50% - 10px);
    width: -o-calc(50% - 10px);
    text-align: center;
    display: inline-block;
  }

  .review-right {
    order: 3;
  }

  .review-left~.review-right~.review-right {
    order: 2;
  }

  ul.reviews-list li.morereview a {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }

  .banner h1 {
    font-size: 40px;
  }

  .services-area {
    grid-template-columns: 100%;
  }

  .unlimited-services-left {
    max-height: initial;
  }

  .services-area .provide {
    display: none;
  }

  .deskop-none {
    display: block;
  }

  .provide {
    padding: 40px 0;
    margin: 0;
  }
}

@media screen and (max-width: 991px) {

  /*****************************************************/
  .flow-column {
    width: 100%;
    margin: 0 0 20px 0;
  }

  /*****************************************************/
  .banner {
    padding: 40px 0 40px 0;
  }

  .overlay__img {
    display: none;
  }
  .hero-grid {
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .banner-right {
    margin-top: 30px;
  }

  .top-banner-element-botton-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 235px;
    z-index: 1;
  }

  .banner-right .app-clone-holder img {
    width: 80vw;
  }

  .banner-right {
    align-items: center;
    justify-content: center;
  }
  
  /*****************************************************/
  .tab__area {
      display: flex;
      flex-direction: column-reverse;
  }
  .tab_img span:last-child {
      display: block;
  }
  .tab_img {
      justify-content: center;
  }
  /*****************************************************/
  .features ul {
    grid-template-columns: 1fr 1fr;
  }

  .features ul li .sep {
    display: none;
  }

  .heading-area h3,
  .section-heading {
    font-size: 30px;
  }
  h1 {
    font-size: 35px;
  }
  .heading-area strong {
    font-size: 18px;
  }

  /**************************************/
  .service-app h1 {
    font-size: 30px;
  }

  .service-app h1 strong {
    font-size: 46px;
    margin-bottom: 15px;
  }

  .service-app h3 {
    font-size: 40px;
  }

  .service-app-right-last {
    width: 100%;
    text-align: center;
    display: block;
    padding: 0;
  }

  .service-app-inner {
    gap: 20px;
  }

  .service-app .service-app-left {
    display: block;
    text-align: center;
    width: 100%;
  }

  .service-app .service-app-right {
    width: 100%;
  }

  .service-app.invert .service-app-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .service-app .service-app-right img {
    margin: 0 auto;
    display: block;
  }

  .service-app .heading-area.left {
    text-align: center;
  }

  .service-app.invert .service-app-left {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
  }

  .service-app.invert.reverse .service-app-left {
    width: 100%;
  }

  .service-app.invert .service-app-left:after {
    width: 100%;
  }

  .service-app.invert .service-app-left:after,
  .service-app.invert.reverse .service-app-left:after {
    left: -15px;
    right: -15px;
    width: auto;
    bottom: -40px;
  }

  .service-app.invert h2 strong {
    font-size: 45px;
  }

  .service-app.invert h2 {
    font-size: 20px;
  }

  .service-app.invert.reverse .service-app-inner {
    flex-direction: column-reverse;
  }

  .service-app.invert.reverse {
    margin-top: 0;
  }

  .service-app.invert.reverse .service-app-right {
    padding: 0;
  }

  .service-app a.service-app-block-img {
    margin: 0;
    width: 400px;
    max-width: 100%;
  }

  .service-app.invert.reverse .service-app-right {
    width: 100%;
    margin: 0;
  }

  .service-app.invert.reverse .heading-area.left {
    text-align: center;
  }

  .service-app.invert.reverse .heading-area.left strong:after {
    margin: 10px auto 5px auto;
  }

  /**************************************/
  .screens {
    padding: 35px 0 40px 0;
  }

  ul.weblinks li {
    margin: 0 10px 20px 10px;
  }

  ul.weblinks li a,
  .pricing .get-quote {
    min-width: initial;
    height: auto;
    line-height: normal;
    box-sizing: border-box;
    padding: 14px 30px 17px 30px;
    font-size: 18px;
  }

  /**************************************/
  .front-end-inner {
    flex-direction: column-reverse;
  }

  /**************************************/
  .happy-clients-section-inner .flex-row {
    flex-direction: column-reverse;
    align-items: center;
  }

  .happy-clients-section-left {
    width: auto;
    max-width: 100%;
    padding-right: 0;
  }

  .happy-clients-section-right {
    width: auto;
    padding: 0;
    width: 100%;
  }

  .happy-clients-section-left {
    margin-top: 35px;
  }

  .delivery-types ul li.last {
    width: 100%;
  }

  .provide {
    margin-bottom: 0;
  }

  .provide .heading-area.left {
    text-align: center;
  }

  .provide .heading-area.left strong:after {
    margin: 10px auto 5px auto;
  }

  .provide ul {
    margin-left: 0;
  }

  .provide p {
    max-width: 100%;
  }

  .provide-left {
    width: 100%;
  }

  .provide-left img {
    margin: 0 auto;
    display: block;
  }

  .provide-right {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .provide-left .heading-area {
    text-align: center;
  }

  .provide-left .heading-area .header-sep {
    margin-left: auto;
  }

  .provide:after {
    display: none;
  }

  .provide-inner {
    position: relative;
  }

  .provide {
    padding: 40px 0;
  }

  /**************************************/
  .features-img {
    width: 250px;
  }

  .features-service-right-two .features-caption,
  .features-service-left-one .features-caption {
    width: calc(100% - 250px);
    width: -o-calc(100% - 250px);
    width: -ms-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
  }

  .features-service-right-one,
  .features-service-left-two {
    width: 0px;
  }

  .features-service-right-two,
  .features-service-left-one {
    width: calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
    align-items: center;
  }

  .mt-215 {
    margin-top: 0;
  }

  .mt-190 {
    margin-top: 0;
  }

  /*******************************************/
  ul.reviews-list li {
    width: 33.33%;
  }

  .provide-right img {
    height: auto;
  }

  .services-area {
    grid-template-columns: 1fr;
  }

  .service-provider-icon .TABROW .TAB {
    border: 1px solid #ddd;
  }
}

@media screen and (max-width: 767px) {
  .banner-ser-icons-mument {
    display: none;
  }

  .pricing-section h3,
  .pricing-section h3 strong {
    font-size: 35px;
    width: 100%;
    white-space: initial;
    display: block;
  }

  .top-banner-element-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
  }

  .top-banner-element-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
  }

  .top-banner-element-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
  }

  .top-banner-element-4 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
  }

  .banner h1 span {
    margin-top: 0px;
    font-size: 22px;
    line-height: 20px;
  }

  .banner h1 {
    font-size: 30px;
  }

  .service-app.invert h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-app.invert h2 strong {
    font-size: 24px;
  }

  .features-service-left-one {
    align-items: flex-end;
  }

  .features-service-right-two,
  .features-service-left-one {
    width: calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
    align-items: flex-end;
  }

  .features-img {
    width: 175px;
    bottom: 0px;
  }

  .features-service-right-two .features-caption,
  .features-service-left-one .features-caption {
    width: calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
  }

  .top-element-right {
    display: none;
  }

  .latest-features-flow {
    margin-top: 25px;
  }

  .latest-features-flow ul {
    margin-top: 0;
  }

  .banner-left {
    padding-bottom: 0;
  }

  .front-end-right {
    width: 100%;
  }

  .screens .screens-inner a {
    font-size: 18px;
    padding: 12px 15px;
    margin: 0 auto;
  }

  .front-end .heading-area {
    text-align: center;
  }

  .front-end-inner {
    text-align: center;
  }

  .demo-video-laptop .play-anim-ico {
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    -o-transform: translate(-50%, -50%) scale(0.6);
  }

  .uberclone-vidoe-img iframe {
    height: 54.1vw;
  }

  .front-end-right>strong {
    font-size: 16px;
    line-height: 20px;
  }

  ul.weblinks li a,
  .pricing .get-quote {
    padding: 12px 15px;
    font-size: 18px;
  }

  .unlimited-services-left {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin: 0;
    padding: 5px;
  }

  #video-consultation ul li.threewidth.last {
    width: 100%;
  }

  .single-service-inner strong {
    font-size: 14px;
  }
  .service-provider-icon-row ul,
  .service-provider-icon-row ul.grid-template-5 {
      grid-template-columns: repeat(4, 1fr);
  }
  .grid-span-3 {
      grid-column: span 4;
  }
}

@media screen and (max-width: 630px) {
  .top-banner-element-botton-left {
    width: 120px;
  }

  .features ul {
    grid-template-columns: 100%;
  }

  .features ul li:nth-last-child(-n+2) {
    width: 100%;
  }

  .latest-features ul {
    grid-template-columns: 100%;
  }

  .latest-features ul li i img {
    width: 50px;
    height: 50px;
  }

  .latest-features ul li i {
    width: 50px;
    height: 50px;
  }

  .heading-area h3,
  .section-heading {
    font-size: 25px;
  }
  h1 {
    font-size: 28px;
  }
  .heading-area strong {
    font-size: 16px;
  }

  /**************************************/
  .advanced .TABROW .TAB {
    width: auto;
    padding: 15px;
  }

  .advanced .TABROW .TAB {
    font-size: 14px;
    min-width: initial;
  }

  /*****************************************/
  .delivery-types {
    padding: 40px 0;
  }

  .delivery-types ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .delivery-types ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .delivery-types ul li strong {
    font-size: 18px;
  }
  .service-provider-icon .TABROW {
    flex-direction: column;
  }
  .service-provider-icon .TABROW .TAB {
    width: 100%;
  }
  /*************************************/
  .features-img {
    display: none;
  }

  .features-service-right-two .features-caption,
  .features-service-left-one .features-caption {
    padding: 10px 15px;
    margin: 0 0 30px 0;
    border-radius: 10px;
  }

  .latest-features-flow {
    margin-top: 0;
    padding: 0;
  }

  .latest-features .heading-area {
    margin-bottom: 20px;
  }

  .latest-features-flow.nagativemargin {
    margin-top: 0;
  }

  .latest-features ul li {
    padding: 15px;
  }

  .latest-features ul li strong {
    font-size: 18px;
  }

  ul.reviews-list li {
    width: 50%;
  }

  ul.reviews-list li.morereview a {
    font-size: 20px;
    line-height: 22px;
  }

  ul.reviews-list li a::after {
    width: 32px;
    height: 32px;
    background-size: 30px;
  }

  ul.reviews-list li a {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }

  .screens ul {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .front-end-right a {
    padding: 9px 15px 10px 15px;
    font-size: 16px;
  }

  .happy-clients-section {
    padding: 40px 0;
  }

  ul.reviews-list {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  ul.reviews-list li {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .review .play-anim-ico {
    right: 0;
    bottom: 0;
    transform: scale(0.5);
  }

  ul.reviews-list li.morereview a:before {
    width: 40px;
    height: 40px;
    border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -ms-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0;
  }

  ul.reviews-list li.morereview a:after {
    width: 40px;
    height: 40px;
    border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -ms-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
  }

  .TABROW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .TABROW .TAB {
    width: auto;
  }
  .components-text .heading {
    font-size: 17px;
    justify-content: center;
  }

  .service-provider-icon .TABROW .TAB {
    font-size: 16px;
  }

  .review-left {
    width: calc(50% - 13px);
    width: -webkit-calc(50% - 13px);
    width: -moz-calc(50% - 13px);
    width: -ms-calc(50% - 13px);
    width: -o-calc(50% - 13px);
    margin: 5px;
  }
}

@media screen and (max-width: 480px) {

  /***********************************/
  .top-banner-element-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
  }

  .top-banner-element-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
  }

  .top-banner-element-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
  }

  .top-banner-element-4 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
  }
  .service-provider-icon-row ul {
      grid-template-columns: repeat(3, 1fr);
  }
  .service-provider-icon-row ul.grid-template-5 {
      grid-template-columns: repeat(2, 1fr);
  }
  .grid-span-4 {
      grid-column: span 3;
  }
  .latest-features ul li {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .latest-features ul li p {
      text-align: center;
  }
}

@media screen and (max-width:991px) {
  .inq_form .box-shadow ul li {
    width: 100%;
  }

  .inq_form .heading-area {
    margin-bottom: 15px;
    text-align: left;
    align-items: center;
  }

  .latest-features-flow ul {
    margin-top: 30px;
  }

  .front-end-left,
  .front-end-right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .front-end .heading-area {
    text-align: center;
  }

  .front-end-left img {
    max-width: 100%;
  }

  .latest-features-flow ul li {
    width: 100%;
  }

  .components-text .heading .video-btn {
    margin-top: 8px;
  }

  .delivery-types ul li strong {
    font-size: 18px;
  }

  .faq_list {
    grid-template-columns: 1fr;
  }
  /*********************************/
  .AP__right {
      width: 100%;
      align-items: center;
  }
  .AP__right img {
      max-width: 100%;
  }
  .AP__right.flex_end {
      align-items: center;
  }
  .AP__left {
      width: auto;
      margin-top: 20px;
  }
  .web__panel .AP__left {
      order: 2;
  }
  .web__panel .center-button-block {
    order: 3;
  }
  .bento-grid {
      grid-template-columns: 1fr 1fr;
  }
  .demo-column {
      grid-column: span 2;
  }
}

@media screen and (max-width:630px) {

  .inq_form-left,
  .inq_form-right {
    flex-direction: column;
  }

  .inq_form .input-row-flow {
    width: 100%;
  }

  .inq_form .box-shadow ul li:last-child {
    padding: 20px 20px 20px 20px;
  }

  .single-service-inner strong {
    font-size: 16px;
  }

  .single-service-inner b img {
    height: 50px;
    width: 50px;
  }

  .demolinks ul {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .screens ul {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-provider-icon-row#bid-services ul {
      grid-template-columns: repeat(3, 1fr);
  }
  .service-provider-icon-row ul.grid-template-5 {
      grid-template-columns: repeat(3, 1fr);
  }
  .grid-span-3,
  .grid-span-6 {
      grid-column: span 3;
  }
  .tab__content ol,
  .AP__FET {
    grid-template-columns: 100%;
  }
  .bento-grid {
      grid-template-columns: 100%;
  }
  .demo-column {
      grid-column: span 1;
  }
  .app-card {
      align-items: center;
  }
}
@media screen and (max-width:480px) {
  ul.reviews-list li.morereview a {
    font-size: 4.5vw;
    line-height: 5.5vw;
  }

  .screens ul {
    grid-template-columns: 100%;
  }
  .service-provider-icon-row ul.grid-template-5 {
      grid-template-columns: repeat(2, 1fr);
  }
  .grid-span-3 {
    grid-column: span 2;
  }
  .tab__area ol li .line {
    display: none;
  }
  .tab__area ol li {
    grid-template-columns: 95px auto;
  }
  .tab__area ol li i {
    width: 60px;
    height: 60px;
    font-size: 35px;
  }
  .tab__area ol li {
    grid-template-columns: 60px auto;
  }
}
@media screen and (max-width:360px) {
    .service-provider-icon-row ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-span-4,
    .grid-span-6 {
        grid-column: span 2;
    }
    .service-provider-icon-row#bid-services ul {
        grid-template-columns: repeat(2, 1fr);
    }
}