/* ============================================
   ROOT VARIABLES
   ============================================ */

:root {
  --pc: #8729D7;
  --sc: #0E002B;
  --gradient-hero: linear-gradient(180deg, #F0F0F0 0%, #EEEEEE 21.88%, #FFFFFF 100%);
  --gradient-bg: radial-gradient(67.01% 91.81% at 55.88% -4.2%, #F3F3F3 0%, #FFFFFF 48.68%);
  --black: #000;
  --white: #fff;
  --txt-color: #323232;
  --light-white: #b4c8c3;
  --gradient-col: #242627;
  --border-color: #cdcdcd;
  --fw-2: 500;
  --fw-3: 600;
  --fw-4: 700;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-15: 15px;
  --fs-30: 30px;
  --transition: 0.3s all;
}

/* ============================================
   PRESET STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
  scroll-behavior: smooth;
  color: var(--black);
}

a {
  transition: var(--transition);
  text-decoration: none;
  color: var(--pc);
}

p {
  color: var(--txt-color);
  line-height: 1.6;
}

p:not(.footer p) {
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.5;
  color: var(--black);
  font-weight: var(--fw-4);
  margin: 0 0 20px 0;
}

h1,
.h1 {
  font-size: clamp(1.625rem, 1rem + 1.6667vw, 2.5rem);
  line-height: 1.4;
}

.all-page h2,
.h2 {
  font-size: 32px;
}

.all-page h3,
.h3 {
  font-size: clamp(1.5rem, 1.2321rem + 0.7143vw, 1.875rem);
}

.all-page h4,
.h4 {
  font-size: clamp(1.25rem, 0.9821rem + 0.7143vw, 1.625rem);
}

.all-page h5,
.h5 {
  font-size: clamp(1.25rem, 1.1607rem + 0.2381vw, 1.375rem);
}

.all-page h6,
.h6 {
  font-size: 18px !important;
}

/* ============================================
   COMMON CLASSES
   ============================================ */

/* Background Classes */
.section-bg {
  background: var(--gradient-bg);
}

.section-bg-sc {
  background: var(--sc);
}

.section-bg-img, .gray-bg {
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/purple-bg.svg) no-repeat !important;
  background-size: cover !important;
}

.sec-bg-img {
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/sec-bg-img.webp) no-repeat;
  background-size: cover !important;
}

.gray-bg-color {
  background:var(--gradient-bg);
}

.bg-white {
  background: #fff !important;
}

.bg-dark {
  background-color: var(--sc);
}

.bg-dark .heading-sec {
  --black: var(--white);
  --txt-color: var(--light-white);
}

.bg-transparent {
  background: transparent !important;
}

.cream-bg {
  background-color: #fff6f1;
}

.bg-cream {
  background-color: #fff6f1;
}

.bg-sky-blue {
  background-color: #f3f8ff;
}

.bg-light-red {
  background-color: #f9f3fd;
}

/* Text Classes */
[class^="heading"] {
  color: var(--black);
}

.heading-mid {
  font-size: clamp(1.5rem, 1.1429rem + 0.9524vw, 2rem);
  line-height: 1.3;
  font-weight: var(--fw-4);
  text-transform: capitalize;
}

.heading-large {
  font-size: clamp(1.875rem, 1.4286rem + 1.1905vw, 2.5rem);
  line-height: 1.3;
  text-transform: capitalize;
  font-weight: var(--fw-4);
}

.heading-sec {
  font-size: 18px;
}

.text-white {
  color: var(--white);
}

.test-heading {
  color: #000 !important;
  font-weight: 800 !important;
}

/* Utility Classes */
.center-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px !important;
  padding: 15px;
  text-align: center;
}

.row-gap-20 {
  row-gap: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mx-auto {
  margin-inline: auto;
}

.mt-auto {
  margin-top: auto;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.gap-0 {
  gap: 0 !important;
}

.py-3 {
  padding-block: 30px;
}

.h-250{
	height:250px !important;
}

.grid {
  display: grid;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-50 {
  align-items: center;
  grid-template-columns: 50% 50%;
}

/* Flex Utilities */
.flex-stats-col {
  gap: 10px;
  flex-direction: column;
}

.flex-direction-row{
	gap:10px;
	flex-direction: row;
}

.flex-card-icon {
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.flex-list-box {
  padding: 10px;
  gap: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.flex-list-box span {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flex-tab {
  margin-bottom: 40px;
  background: #eeeeee6e;
  width: fit-content;
  margin-inline: auto;
}

.flex-tab button {
  background: transparent;
  padding: 15px 25px;
}

.flex-tab button.active {
  color: #fff;
  background: var(--pc);
}

/* List Background Colors */
.list-bg-a {
  background: #fff2f2;
}

.list-bg-b {
  background: #E7E9FF;
}

.list-bg-c {
  background: #f2fff8;
}

.list-bg-d {
  background: #ffdff4;
}

.list-bg-icn-a {
  background: #ffdede;
}

.list-bg-icn-b {
  background: #0445a733;
}

.list-bg-icn-c {
  background: #d1ffe6;
}

.list-bg-icn-d {
  background: #ffc0e9;
}

/* Other Utilities */
.truncate {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.readmore-btn {
  display: inline-block;
  padding-top: 10px;
  font-weight: 400;
  user-select: none;
  color: var(--pc);
}

.sticky-col {
  position: sticky;
  top: 90px;
}

.curve-bg {
  border-radius: 30px 30px 0 0;
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */

/* Header & Navigation */
.top-header {
  background: var(--gradient);
  color: var(--white);
  font-size: var(--fs-15);
}

.tag-line {
  font-weight: 400;
  color: var(--white);
}

.tag-line span {
  font-weight: 500;
  color: var(--white);
}

.main-header {
  border-bottom: 1px solid #d5d5d5;
}

.header {
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
}

.header.scrolled .site-logo img {
  transform: scale(0.9);
  transition: all 0.5s ease-in-out;
}

.header nav ul li a {
  color: var(--black);
  line-height: 1.6;
}

.header nav ul li a:hover {
  color: var(--sc);
}

.header ul .dropdown ul {
  background-color: var(--white);
  box-shadow: 0 0 30px rgb(127 137 161 / 0.25);
  transition: all 0.3s;
}

.header nav .active {
  color: var(--pc);
  font-weight: var(--fw-3);
}

.show-ul {
  overflow-y: auto;
  transform: translate(0) !important;
}

.site-logo img {
  transition: width 0.3s ease-in-out;
}

.doc-overlay {
  background: var(--black);
}

.social-media-link li:nth-child(-n + 2)::before {
  background: var(--white);
}

.social-media-link li a span {
  color: var(--white);
}

.search-btn svg,
.search-input svg {
  stroke: var(--black);
  transition: var(--transition);
}

.header .search-input {
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.header .search-input form {
  background-color: var(--white);
  border-bottom: 1px solid hsl(0 0% 76% / 0.4);
}

.header .search-input form input {
  font-size: clamp(1rem, 0.5536rem + 1.1905vw, 1.625rem);
}

.search-input button {
  background-color: #fff0;
}

.header .search-show {
  transform: translateY(29px);
  box-shadow: 0 0 4px rgb(0 0 0 / 0.25);
}

.cancel-btn {
  display: none;
  position: fixed;
  right: 7%;
  top: 14px;
  z-index: 100;
}

 [class^="btn"] {
  border-radius: 30px;
}

[class^="btn"]:hover {
  animation: pulse512 1.5s infinite;
  background-position: 100%;
  background-size: 200% auto;
}

/* Animations */
@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #fa6431
    }

    70% {
        box-shadow: 0 0 0 10px rgba(218, 103, 68, 0)
    }

    to {
        box-shadow: 0 0 0 0 rgba(218, 103, 68, 0)
    }
}

.btn-fill{
	background: linear-gradient(90deg, #f2276e, #fa6431);
	color:var(--white);
}

.btn-outline{
	border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #f2276e, #fa6431);
    color: #f2276e;
}

/* Buttons */

/*
.btn-fill {
  color: var(--white);
  background-size: 300% 100%;
  border: 2px solid transparent;
  background: var(--pc);
  transition: 0.2s ease;
}

.btn-fill:hover {
  background: transparent;
  transition: 0.2s ease;
  color: var(--black);
  border: 2px solid var(--sc);
}

.btn-fill:hover svg path {
  fill: #000;
}

.footer .btn-fill:hover {
  background: var(--white);
  border: 2px solid transparent;
}

.btn-outline {
  color: var(--sc) !important;
  border: 2px solid var(--sc);
  text-decoration: none !important;
}

.btn-outline:hover,
.btn-light:hover {
  color: var(--white) !important;
  background: var(--pc);
  text-decoration: none !important;
}

.btn-outline:hover {
  border: 2px solid transparent;
}

.btn-outline:hover svg path,
.btn-light:hover svg path {
  fill: var(--white);
}

.btn-light {
  background: var(--white) ;
  color: var(--black) !important;
  padding-inline: 20px;
  text-decoration: none !important;
}

button.read_more_btn {
  background: #dddddd52;
  font-weight: 500;
  color: var(--black);
  padding: 7px 15px;
  margin-top: 20px;
  border-radius: 90px;
  border: 1px solid #ccc;
  display: block;
}

.read_more_btn_sm {
  color: var(--black);
  display: block;
  background: none !important;
  font-weight: 500;
  padding: 0 !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  margin-inline: 0 !important;
} */

/* Hero Section */
.hero-header {
  background: var(--gradient-hero);
  background-size: cover !important;
  position: relative;
}

.hero-img::before {
  background-size: contain;
  animation: floatAnimation 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-img::after {
  background-size: contain;
  animation: floatAnimation 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-title {
  font-size: clamp(1.875rem, 0.9821rem + 2.381vw, 3.125rem);
  color: var(--black);
  font-weight: var(--fw-4);
  line-height: 1.2;
  text-transform: capitalize;
}

.hero-title span {
  color: var(--pc);
}

.hero-header .title-desc {
  font-size: 20px;
  line-height: 1.6;
}

.hero-texture:after {
  content: '';
  position: absolute;
  height: 320px;
  width: 280px;
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/texture-1.svg) no-repeat;
  bottom: -20px;
  left: 20px;
  background-size: contain;
  z-index: -1;
  transform: rotate(-90deg);
}

.hero-stats .stats-wrapper .col-lg-9 .col-lg-3:not(:last-child) .flex-stats-col {
  border-right: 1px solid #ddd;
  margin-right: 20px;
}

.hero-stats .justify-center {
  justify-content: start !important;
}

/* Available App Section */
.available-app-sec p {
  font-weight: var(--fw-3);
  font-size: var(--fs-15);
}

.avail-app-box p {
  --fw-3: var(--fw-2);
}

.avail-app-box img {
  width: 90px;
  height: 90px;
}

.available-app {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
}

/* Section Styles */
.section2::after,
.section2::before {
  animation: floatAnimation 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.section2::before {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/parental-icon.webp) no-repeat;
  background-size: contain;
}

/* .section2::after {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/wave-icon.webp) no-repeat;
  background-size: contain;
}

.tab-sec::before {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/abstract-bg2.webp) no-repeat;
  z-index: -1;
}

.bg-icons::before {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/wave-icon.webp) no-repeat;
  background-size: contain;
}

.bg-icons::after {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/protected-icon.webp) no-repeat;
  background-size: contain;
} */

.bg-texture {
  position: relative;
  z-index: 0;
}

.shape-1:after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/texture-2.svg) no-repeat center left / contain;
  height: 520px;
  width: 380px;
  z-index: -1;
}

.shape-2:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0px;
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/texture-3.svg) no-repeat center right / contain;
  height: 450px;
  width: 220px;
  z-index: -1;
}

.stats-texture:after {
  content: '';
  position: absolute;
  height: 160px;
  width: 100%;
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/stats-bg.webp) no-repeat;
  top: -50px;
  left: -30px;
  background-size: cover;
  z-index: -1;
  opacity: .6;
}

/* .sec-inner-gap {
  padding-block: 30px;
} */

/* Statistics */
.statis-no {
  font-size: clamp(2rem, 1.1964rem + 2.1429vw, 3.125rem);
  color: var(--black);
  font-weight: var(--fw-4);
}

.statis-box {
  border: 1px solid gray;
}

.statis-sec .statis-box:nth-child(-n + 2) {
  border-right: 0;
}

.statis-sec {
  flex-direction: column;
}

.stats-wrapper {
  padding: 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: var(--white);
}

/* Sub Title & Scroller */
.sub-title {
  font-weight: var(--fw-3);
  border: 1px solid gray;
  border-radius: 40px;
  background: #fffcea;
}

.scroller-fill {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background-color: #fffcea;
}

.scroller-two {
  border-bottom: 1px solid var(--border-color);
}

.scroller[data-animated="true"] .scroller__inner {
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

/* Accordion */
:is(.accordion, .accordions) details {
  border: 1px solid var(--light-white);
  background-color: var(--white);
  border-radius: 4px;
}

:is(.accordion, .accordions) summary {
  font-size: var(--fs-18);
  font-weight: var(--fw-3);
  color: var(--black);
}

:is(.accordion, .accordions) summary:after {
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M17.787 9.688a.626.626 0 0 1 .54.7l-.454 3.507a.626.626 0 0 1-1.24-.16l.26-2.011-5.734 4.42a.624.624 0 1 1-.763-.99l5.733-4.42-2.01-.26a.626.626 0 0 1 .16-1.24l3.506.453z' fill='%23000'/%3E%3C/g%3E%3Cpath stroke='%23000' stroke-width='.028' d='m13.34 19.971 7.896-6.087-6.088-7.896-7.896 6.087z'/%3E%3Ccircle cx='13.945' cy='13' r='12.5' stroke='%23000'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='m13.336 19.99 7.918-6.104-6.104-7.918-7.918 6.104z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.content {
  padding: 16px 23px 14px;
  background-color: #f9f2ff;
}

.content span {
  font-weight: var(--fw-3);
  color: var(--black);
}

:is(.accordion, .accordions) details .content p {
  gap: 10px !important;
}

/* Service Cards */
.service-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  gap: 30px;
}

.service-card.cream {
  background-color: #fff6f1;
}

.service-card.sky-blue {
  background-color: #f3f8ff;
}

.service-card.light-red {
  background-color: #f9f3fd;
}

.service-card .flex-card-icon {
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.flex-card-icon span {
  height: 60px;
  width: 60px;
  display: flex;
  background: var(--pc);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-overlap .service-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0px 2px 4px 0px #00000013;
  gap: 30px;
}

.service-content .btn-fill {
  margin-top: 35px !important;
}

.section-overlap .service-card.cream {
  background-color: #FFEED2;
}

.section-overlap .service-card.sky-blue {
  background: #E4F3FF;
}

.section-overlap .service-card.light-red {
  background: #FFEBFA;
}

.section-overlap .service-card.green {
  background: #E4FFEC;
}

.service-cd-title {
  font-size: clamp(1.75rem, 1.5714rem + 0.4762vw, 2rem);
  font-weight: var(--fw-4);
  line-height: 1.3;
  color: var(--black);
}

.section-overlap .service-card p {
  font-size: 18px;
}

.section-overlap .service-cd-title {
  font-size: clamp(1.75rem, 1.5714rem + 0.4762vw, 2rem);
  font-weight: var(--fw-4);
  line-height: 1.3;
}

.section-overlap .service-card img {
  height: 350px;
}

.section-overlap .service-content {
  padding: 30px;
  text-align: left;
}

.section-overlap .col:has(.service-card) {
  position: sticky;
  position: -webkit-sticky;
}

.section-overlap .col:nth-child(1):has(.service-card) {
  top: 100px;
  padding-bottom: 30px;
}

.section-overlap .col:nth-child(2):has(.service-card) {
  top: 120px;
  padding-bottom: 30px;
}

.section-overlap .col:nth-child(3):has(.service-card) {
  top: 140px;
  padding-bottom: 40px;
}

.section-overlap .col:nth-child(4):has(.service-card) {
  padding-bottom: 40px;
  top: 160px;
}

.section-overlap .col:nth-child(5):has(.service-card) {
  padding-bottom: 40px;
  top: 180px;
}

.section-overlap .col:nth-child(6):has(.service-card) {
  padding-bottom: 40px;
  top: 200px;
}

.section-overlap .col:nth-child(7):has(.service-card) {
  padding-bottom: 40px;
  top: 220px;
}

.section-overlap .col:nth-child(8):has(.service-card) {
  padding-bottom: 40px;
  top: 240px;
}

.section-overlap .col:nth-child(9):has(.service-card) {
  padding-bottom: 40px;
  top: 260px;
}

.section-overlap .col:nth-child(10):has(.service-card) {
  padding-bottom: 40px;
  top: 280px;
}

.section-overlap .col:last-child {
  padding-bottom: unset !important;
}

.section-overlap .service-card:has(.step-number) {
  position: relative;
}

.service-card.sidebar-service-col .step-number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 4rem;
  font-weight: 800;
  color: #6b7578;
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sidebar-service-col {
  background: var(--white) !important;
  border: 1px solid var(--border-color) !important;
}

.sidebar-service-col .service-content {
  padding: 0;
}

.sidebar-service-col :is(.h3, p, h3) {
  color: var(--black) !important;
}

.feature-points .service-card {
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
}

/* Why Choose Section */
.why-choose-wrap {
  display: flex !important;
  gap: 15px !important;
  justify-content: start;
  text-align: left;
  align-items: start;
}

.why-choose-wrap:not(:last-child) {
  margin-bottom: 30px;
}

.why-choose-img img {
  height: 620px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}


.card-icon {
  align-items: center;
  background: var(--pc);
  border-radius: 50%;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 70px;
  align-items: center;
  flex-shrink: 0;
}

/* Blog Cards */
.blog-card {
  position: relative;
}

.blog-card .card-content {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-top: 0;
}

.blog-cat {
  position: absolute;
  top: 10px;
  right: 20px;
  background: var(--pc);
  padding: 5px 20px;
  color: #fff;
  border-radius: 5px;
  width: fit-content;
}

.dt-meta,
.author-meta a {
  color: var(--txt-color);
}

.author-meta a:hover,
.blog-title:hover {
  color: var(--pc);
}

.blog-title {
  font-size: var(--fs-18);
  font-weight: var(--fw-4);
  line-height: 1.4;
  color: var(--black);
}

.blog-title,
.meta-desc {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-img {
  border-radius: 10px;
}

.blog-sec .heading-sec {
  margin-bottom: 35px;
}

/* Contact Form */
.contact-form {
  background-color: #1d5649;
  border-radius: 10px 10px 0 0;
  --black: var(--white);
}

.contact-form form :is(input, textarea, select) {
  background-color: #fff0;
  font-size: 16px;
  border-bottom: 1px solid var(--light-white);
}

.contact-form form :is(input, textarea, select)::placeholder {
  color: #e1e7e6;
  font-size: 15px;
}

.contact-form form select {
  -webkit-appearance: none;
  appearance: none;
  padding: 0px 0px 15px 10px;
}

.contact-form select option {
  color: var(--txt-color);
}

.contact-email {
  background-color: var(--pc);
}

.contact-email a {
  color: var(--white);
}

.contact-main {
  margin-top: 60px;
}

.contact-main .contact-form {
  background-color: var(--white);
  box-shadow: 0 0 4px rgb(0 0 0 / 0.25);
  --black: var(--black);
  border-radius: 10px !important;
}

.contact-main .contact-form :is(input, textarea, select)::placeholder {
  color: var(--txt-color);
}

.contact-main select {
  height: 100%;
}

.contact-field {
  border-radius: 10px;
}

.contact-field.cream {
  background: #fff6f1;
}

.contact-field.sky-blue {
  background: #f3f8ff;
}

.contact-field.light-red {
  background: #f9f3fd;
}

.contact-icon {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.contact-field a {
  line-height: 1.5;
  text-decoration: none !important;
}

.contact-left {
  gap: 26px;
}

.form-texture {
  border-radius: 0 0 30px 30px;
}

.form-texture:after,
.form-texture:before {
  content: '';
  position: absolute;
  z-index: -1;
}

.form-texture:before {
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/texture-3.svg) no-repeat center bottom /contain;
  height: 300px;
  width: 150px;
  left: 0;
  transform: rotate(140deg);
  bottom: -90px;
}

.form-texture.shape-1:after {
  height: 700px;
  width: 450px;
  z-index: -1;
  right: 0;
  left: unset;
  transform: scale(-1);
}

.form-stats {
  background: #261940;
  padding: 20px;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.light-head :is(p, h2, .h2, .h1, .h3, a, .heading-large),
.form-stats :is(.h6, p) {
  color: var(--white);
}

/* Testimonials */
.testimonials-sec {
  border-bottom: unset;
  border-radius: 10px;
  background-image: linear-gradient(180deg, #04473730 0%, #00000000 90.04%);
}

.testimonials-sec::before {
  background: linear-gradient(180deg, #ffffff 75%, #fff0 99.04%);
}

.testimonials-sec .heading-sec::before {
  left: -105px;
}

.testimonials-sec .heading-sec::after {
  background: url(https://saferloop.com/wp-content/uploads/2025/04/testimonial-icon.webp) no-repeat;
  background-size: contain;
}

.swiper-slide {
  text-align: center;
  background: #fff;
}

.testimonail-card {
  border-radius: 10px;
  background: #fff;
}

.mySwiper {
  padding-bottom: 50px !important;
}

.client-profile img {
  border-radius: 50%;
}

.client-name {
  font-size: 15px;
  font-weight: var(--fw-3);
  text-align: left;
}

.swiper-pagination-bullet {
  background-color: var(--pc) !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--pc) !important;
}

.slideFour .swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  color: var(--white);
}

.slideFour {
  padding-bottom: 70px !important;
  margin-block: 50px !important;
}

.slideFour .swiper-button-next,
.swiper-button-prev {
  background: var(--pc);
  border-radius: 50%;
  height: 40px !important;
  width: 40px !important;
  bottom: 0 !important;
  top: unset !important;
  right: 0 !important;
  transform: translateX(-50%) !important;
}

.slideFour .swiper-button-next {
  left: 53% !important;
}

.slideFour .swiper-button-prev {
  left: 47% !important;
}

/* Footer */
.footer {
  background-color: #151515;
}

.footer :is(p, a, .copy-write span):not([class*="btn"]) {
  color: #ffffffcf;
}

.footer img {
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 22px;
  font-weight: var(--fw-4);
  color: var(--white);
}

.footer-title::before {
  background-color: var(--pc);
}

.gradient-icon {
  background: var(--gradient);
  border-radius: 50%;
}

.company-contact li a {
  line-height: 1.5;
  color: var(--txt-color);
}

.company-contact li a:hover,
.footer-list li a:hover {
  color: var(--pc);
}

.disclaimer span {
  font-weight: var(--fw-4);
  color: var(--black);
}

.copy-write {
  border-top: 1px solid var(--light-white);
}

.copy-write .footer-list li {
  margin-bottom: 0 !important;
}

/* Pagination */
.pagination {
  text-align: center;
}

.pagination .page-numbers {
  color: var(--white);
  background-color: #0e9ae6;
  line-height: 35px;
  transition: all 0.4s ease 0s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  color: var(--white);
  background-color: var(--pc);
}

.pagination .page-numbers.current::before,
.pagination .page-numbers.current::after,
.pagination .page-numbers:hover::before,
.pagination .page-numbers:hover::after {
  background-color: var(--pc);
  border-radius: 0 50px 50px 0;
  transition: all 0.4s ease 0s;
}

.pagination .page-numbers.current::after,
.pagination .page-numbers:hover::after {
  border-radius: 50% 0 0 50%;
}

/* Progress */
#progress {
  box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
  border-radius: 50%;
}

#progress-value {
  background-color: #fff;
  border-radius: 50%;
}

/* Page Content */
.page-box {
  display: block;
}

.page-box ol li,
.page-box ul li {
  line-height: 1.6;
}

.page-box a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--pc);
}

.page-box a strong {
  font-weight: 700;
  text-decoration: underline;
  color: var(--pc) !important;
}

.page-box p {
  font-size: 17px;
}

.page-header {
  border-bottom: 1px solid #b9b9b9;
}

.single-pg-header {
  text-align: center;
  background: #8729d724;
}
.single-pg-header .cta-texture:after {
    height: 143px;
    width: 223px;
    left: -178px;
    top: -46px;
    rotate: 97deg;
}


.single-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #eee9e9 url(https://images.rawpixel.com/image_800/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvcm0yMThiYXRjaDQta2F0aWUtMTcuanBn.jpg) no-repeat center center / cover;
  height: 100%;
  width: 100%;
  background-blend-mode: screen;
  z-index: -2;
  opacity: 0.5;
}

.author-p-i img {
  border: 4px solid var(--pc);
  border-radius: 50%;
}

.author-strip a {
  font-weight: 600;
}

.author-strip a:hover {
  text-decoration: underline;
}

.author main .flex-single-ath-profile {
  font-size: 30px;
  font-weight: 600;
}

.flex-single-ath-profile img {
  border-radius: 50%;
}

.related-head {
  font-size: 30px;
  font-weight: 700;
}

.ath-single-page :is(ul li, ol li) {
  margin-bottom: 16px;
  color: var(--txt-color);
}

.message-sec p {
  font-size: clamp(1rem, 0.9107rem + 0.2381vw, 1.125rem);
  color: var(--black);
}

.single-card {
  text-align: left;
}

/* Table of Contents */
#tableofcontent {
  background: #b4c8c321;
  padding: 30px;
  border: 1px solid var(--gradient-col);
  border-radius: 5px;
  width: fit-content;
  margin-block: 30px;
}

#tableofcontent .head-th {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

#tableofcontent ul li {
  list-style-type: none;
  position: relative;
  margin-left: 10px;
}

#tableofcontent ul li:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 4px;
  background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="m19 12 12 12-12 12" stroke="%23044737" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
  height: 18px;
  width: 18px;
}

#tableofcontent ul li a {
  text-decoration: none;
}

#tableofcontent ul li a:hover {
  text-decoration: underline;
}

/* Sources */
.sources {
  background: #e6edeb;
  padding: 18px 25px;
  margin-bottom: 20px;
  border-right: 3px solid var(--pc);
  border-radius: 4px 10px 10px 4px;
}

/* Tabs */
.tab_link {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab_link li {
  border: 1px solid #d9d9d9;
  padding: 7px 20px;
  border-radius: 34px;
  background: #eeeeee4f;
}

.tab_link li:hover {
  background-color: #dfdfdf4f;
  border-color: #cac9c9;
}

.tab_link li a {
  color: var(--txt-color);
}

.tab_link svg path {
  fill: var(--pc);
}

.tab_link svg {
  margin-left: 5px;
}

.tabsContainer .tabcontent {
  display: none;
  animation: fadeEffect 1s;
}

/* CTA Container */
.cta-container {
  background: var(--sc);
  padding: 30px;
  border-radius: 20px;
}

.cta-logo img {
  filter: brightness(0) invert(1);
  height: auto;
  width: 160px;
}

.cta-container .heading-large {
  padding-left: 20px;
}

.cta-container .cta-ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: var(--pc);
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cta-texture:after,
.cta-texture:before {
  content: '';
  position: absolute;
  z-index: -1;
}

.cta-texture:after {
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/half-circle.svg) no-repeat center center / contain;
  height: 250px;
  width: 250px;
  left: -100px;
  top: -30px;
}

.cta-texture:before {
  background: url(https://devicefixes.com/wp-content/uploads/2026/01/half-circle.svg) no-repeat center center / contain;
  height: 50px;
  width: 50px;
  right: -20px;
  top: -30px;
  transform: rotate(110deg);
}

.sidebar-cta {
  background: var(--sc);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  justify-content: center;
}

.sidebar-cta .h3 {
  margin-bottom: 10px;
}

.sidebar-cta :is(.h3, p) {
  color: var(--white);
}

.sidebar-cta .btn-fill {
  background: var(--white);
  color: var(--sc);
  margin-top: 5px;
}

/* Select Dropdown */
.select-dropdown {
  position: relative;
}

.select-dropdown:after {
  position: absolute;
  content: '';
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="M37 18 25 30 13 18" stroke="%23000" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
  height: 20px;
  width: 20px;
  right: 20px;
  top: 3px;
}

/* Process Section */
.process-col {
  position: relative;
}

.process-col .flex-process-col span {
  position: absolute;
  z-index: 999;
  background: var(--pc);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  top: -20px;
  transition: all 0.3s ease-in;
}

.process-col:hover .flex-process-col span {
  transform: rotateY(1turn);
  transition: all 0.3s ease-in;
}

.process-col p {
  padding-inline: 10px;
}

.process-wrap .row .col-lg-4:not(:last-child) .process-col:after {
  content: "";
  position: absolute;
  right: -50px;
  opacity: 0.3;
  top: 50px;
  background: url(https://images.freeimages.com/image/thumbs/87f/curvy-doodle-png-arrow-5691064.png) no-repeat center center / contain;
  height: 100px;
  width: 100px;
  transform: rotate(55deg);
}

/* Grid Content Card */
.grid-content-card .img-wrap {
  background: #cccccc14;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px;
}

.grid-content-card .content-col {
  padding: 30px;
  background: #00adef14;
}

.bg-content-card {
  padding: 40px;
  border-radius: 10px;
}

/* More Content */
.more-content {
  display: none;
}

/* Image Placeholder */
.img-placeholder {
  background: #e3e3e3;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

/* Top Mobile Header */
.top-mob-header {
  background: var(--sc);
  padding: 10px 0;
  position: relative;
}

.top-mob-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.top-mob-header .container {
  position: relative;
}

.remove-btn {
  position: absolute;
  right: 0;
  width: 20px;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.offer-slide {
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.offer-slide p {
  line-height: normal;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.offer-slide .btn {
  padding: 0px;
  border-bottom: 2px solid var(--pc);
  color: var(--pc);
  border-radius: unset !important;
}

.offer-slide .btn:hover {
  padding: 0px;
  border-bottom: 2px solid var(--white);
  border-radius: unset !important;
  color: var(--white);
}

.offer-slide .btn:hover svg path {
  fill: var(--white);
}

#marquee_container1 marquee {
  height: auto;
}

/* Comparison Table */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  text-align: left;
  border-radius: 10px;
  border: 1px solid rgba(34, 34, 34, 0.05);
  box-shadow: inset 0 .125rem 8rem 10px rgba(0, 0, 0, .075);
}

.comparison-table thead {
  background-color: #f7f7f7;
}

.comparison-table thead th {
  background-color: var(--sc);
  padding: 24px 20px;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  border: 1px solid rgba(34, 34, 34, 0.05);
  color: #fff;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
}

.comparison-table td.feature-name {
  font-weight: 500;
  padding: 20px;
  border: 1px solid rgba(34, 34, 34, 0.05);
  background-color: #ffffff;
  width: 25%;
}

.comparison-table td {
  padding: 20px;
  border: 1px solid rgba(34, 34, 34, 0.05);
  vertical-align: top;
  background-color: #ffffff;
  white-space: nowrap;
}

.comparison-table td.bmc-cell {
  width: 37.5%;
}

.comparison-table td.patreon-cell {
  width: 37.5%;
}

.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-check::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.icon-x {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #9ca3af;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-x::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.cell-content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cell-text {
  flex: 1;
}

.highlight-green {
  color: #22c55e;
  font-weight: 600;
}

.highlight-red {
  color: #ef4444;
  font-weight: 600;
}

/* Before After Slider */
.crop-container {
  width: 100%;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  width: 100%;
  height: 400px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.before-image,
.after-image {
  position: absolute;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.after-image {
  clip-path: inset(0 0 0 50%);
}

.resizer {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.resizer::before {
  content: "◄ ►";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ba-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 4;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.ba-label-before {
  left: 20px;
}

.ba-label-after {
  right: 20px;
}

/* Animations */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-img {
  animation: floatAnimation 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (min-width: 1025px) {
  .dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
  }

  .header ul .dropdown ul {
    left: -15px;
    top: 66px;
    white-space: nowrap;
  }

  .dropdown ul .dropdown ul {
    position: absolute;
    top: 10px;
    left: calc(100% + 15px);
  }

  .header .dropdown:hover > ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }

  .why-choose-wrap.left {
    text-align: right !important;
    margin-right: -60px;
    position: relative;
    z-index: 1;
  }

  .why-choose-wrap.right {
    text-align: left !important;
    margin-left: -60px;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 1024px) {
  .row-gap {
    row-gap: 20px;
  }

  .flex-sm-column {
    flex-direction: column;
  }

  .flex-stats-col {
    flex-direction: row !important;
    align-items: center;
  }

  .hero-stats .stats-wrapper .col-lg-9 .col-lg-3:not(:last-child) .flex-stats-col {
    border: unset !important;
    margin: unset !important;
  }

  .bg-texture:after,
  .bg-texture:before {
    display: none !important;
    content: unset !important;
  }

  .section-overlap .service-card img {
    height: auto !important;
  }

  .d-md-none {
    display: none !important;
  }

  .cta-container {
    padding: 25px !important;
  }

  .cta-container .heading-large {
    padding: 0 !important;
  }

  .flex-tab {
    width: 100% !important;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: start;
  }

  .hero-stats .justify-center {
    justify-content: start !important;
  }

  .sec-inner-gap {
    padding-block: 30px;
  }

  .md-px-15 {
    padding-inline: 15px;
  }

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

  .header nav ul {
    display: block;
    padding: 50px 30px 30px;
  }

  .header nav {
    background: var(--white);
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.2s;
    width: 300px;
    z-index: 10;
  }

  .header nav ul li {
    margin-bottom: 10px;
    padding: 10px 0 0;
  }

  .header ul .dropdown ul {
    left: 0;
    top: 25px;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 30px rgb(127 137 161 / 0.25);
    transition: all 0.3s;
  }

  .dropdown .dropdown:after,
  .dropdown:after {
    float: right;
  }

  .header ul li.showMenu > ul {
    display: block !important;
    margin-top: 15px;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .contact-form::before,
  .section2::before,
  .section2::after,
  .testimonials-sec .heading-sec::after,
  .testimonials-sec .heading-sec::before,
  .bg-icons::before,
  .bg-icons::after,
  .process-wrap .row .col-lg-4:not(:last-child) .process-col:after,
  .sidebar-cta [class^="btn"] svg,
  .arrow-icon {
    display: none;
  }

  .sidebar-cta [class^="btn"] {
    padding: 13px 16px !important;
  }

  .grid-50 {
    grid-template-columns: auto !important;
  }

  .grid-content-card .img-wrap,
  .grid-content-card .content-col {
    padding: 15px !important;
  }

  
.toggle-slide-btn {
  display: block;
  order: 1;
}

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .blog-card {
    flex-direction: row;
    align-items: center;
  }

  .blog-card .card-img {
    flex-shrink: 2;
  }

  .blog-card .meta-desc {
    margin-bottom: 0;
  }

  .blog-cat {
    left: 20px !important;
  }
}

@media (max-width: 768px) {
  .copy-write:has(.mb-30) {
    text-align: left;
  }

  
.why-choose-img {
    display: none;
  }

  .copy-write .footer-list {
    justify-content: center !important;
  }

  .blog-card {
    padding: 0px;
  }

  .site-logo img {
    max-width: 200px;
  }

  .blog-sec .heading-sec {
    margin-bottom: 35px;
  }

  .main-header {
    padding-block: 20px;
  }

  .contact-form {
    padding-bottom: 30px !important;
  }

  .hero-img {
    display: none;
  }

  .section-overlap .service-content {
    padding: 0 !important;
  }

  .why-choose-img {
    display: none;
  }

  .order-2 {
    order: 2;
  }

  .contact-icon {
    position: static;
  }

  .contact-field {
    padding: 30px;
    gap: 10px;
  }

  .d-lg-none {
    display: none;
  }

  .offer-slide {
    flex-direction: column;
  }

  .offer-slide p,
  .offer-slide .btn {
    font-size: 14px;
  }

  #marquee_container1 {
    padding: 0 10px;
  }

  .remove-btn svg {
    width: 10px;
    height: 10px;
  }

  .remove-btn {
    top: 5px;
    right: 5px;
    width: 16px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table .section-header {
    font-size: 16px;
    padding: 16px 12px;
  }

  .comparison-table td {
    padding: 12px;
  }

  .comparison-table td.feature-name {
    width: 30%;
    font-size: 13px;
  }

  .comparison-table td.bmc-cell,
  .comparison-table td.patreon-cell {
    width: 35%;
  }

  .icon-check,
  .icon-x {
    width: 16px;
    height: 16px;
  }

  .icon-check::after,
  .icon-x::after {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .section-overlap .col:nth-child(1):has(.service-card) {
    top: 10px;
    padding-bottom: 30px;
  }

  .section-overlap .col:nth-child(2):has(.service-card) {
    top: 20px;
    padding-bottom: 20px;
  }

  .section-overlap .col:nth-child(3):has(.service-card) {
    top: 30px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(4):has(.service-card) {
    top: 40px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(5):has(.service-card) {
    top: 50px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(6):has(.service-card) {
    top: 60px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(7):has(.service-card) {
    top: 70px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(8):has(.service-card) {
    top: 80px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(9):has(.service-card) {
    top: 90px;
    padding-bottom: 10px;
  }

  .section-overlap .col:nth-child(10):has(.service-card) {
    top: 100px;
    padding-bottom: 10px;
  }

  .bwe-service-logo img {
    height: 25px;
  }

  .v-divider-bar {
    display: none;
  }

  .author-strip {
    gap: 12px;
    flex-direction: column;
    align-items: unset;
  }

  .social-media-link,
  .btn-account {
    display: none;
  }

  .right-header .btn-fill {
    display: none;
  }

  .available-app {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
  }

  .statis-sec {
    flex-direction: column;
  }

  .available-app-sec > p {
    display: none;
  }

  .statis-sec .statis-box:nth-child(-n + 2) {
    border-right: 1px solid !important;
    margin-bottom: 20px;
  }

  .scroller-two {
    width: 100%;
  }

  .service-card {
    padding: 20px;
    align-items: unset !important;
  }

  .header .search-show {
    transform: translateY(21px);
  }

  .hero-img::after {
    width: 105px;
    height: 143px;
    right: -1%;
    bottom: -12%;
  }

  .hero-img::before {
    width: 93px;
    left: 4%;
  }

  .author-p-i {
    display: none;
  }

  .single-card {
    text-align: left;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px 0;
  }

  .tab_link {
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    justify-content: flex-start;
    padding-left: 0;
  }

  .tab_link li {
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .column-sm-reverse {
    flex-direction: column-reverse;
  }
}
