* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[role="switch"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #5960e8;
  outline-offset: 3px;
}
a {
  text-decoration: none;
  color: unset;
  display: inline-block;
}
p {
  color: #ffffffaf;
}
body {
  font-family: Montserrat, sans-serif;
  background: #000;
}
main {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
.flex {
  display: flex;
  align-items: center;
}
.f-clmn {
  flex-direction: column;
}
.sb {
  justify-content: space-between;
}
.jc {
  justify-content: center;
}
.ac {
  align-items: center;
}
li {
  list-style: none;
}
span {
  display: inline-block;
}

/*------
 BUTTONS
 -----*/

.blueBtn {
  box-shadow: inset 2px 2px 10px -4px #fff;
  background-color: #5960e8;
  color: #fff;
}
button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 12px 14px;
  border: unset;
  border-radius: 8px;
  font-size: clamp(14px, 15px, 16px);
  transition: 0.3s ease;
  display: inline-block;
  opacity: 1;
}
button .text,
button .hover-text {
  display: block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
button .hover-text {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
button:hover .text {
  transform: translateY(-170%);
}
button:hover .hover-text {
  transform: translateY(-170%);
}
button:hover {
  box-shadow: 0px 0px 50px -10px #fff;
  transform: scale(1.05);
}
button:active {
  transform: scale(0.9);
}

/*--------------
 FOR ALL SECTION 
 -------------*/

section {
  height: 100vh;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow-y: hidden;
}
.allh2 {
  font-size: clamp(14px, 14px, 16px);
  font-weight: 500;
  margin-bottom: 35px;
  padding: 8px 12px;
  border: 1px solid #ffffff46;
  border-radius: 8px;
  width: fit-content;
}
.allh1 {
  font-size: clamp(24px, 5vw, 50px);
  line-height: clamp(2rem, 8vw, 5vw);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.allp {
  margin-bottom: 50px;
  font-size: clamp(16px, 16px, 16px);
  line-height: clamp(1.6rem, 1.6rem, 1.6rem);
  color: #ffffffaf;
  text-align: center;
}

/*-----
 Header 
 ----*/

header {
  background-color: #000000;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  color: #fff;
  height: 3.5rem;
  z-index: 999;
  user-select: none;
  border-radius: 8px;
  box-shadow:
    1px 1px 50px -20px #f780ff88,
    1px 1px 50px -20px rgba(218, 165, 32, 0.553);
}
.IconCol {
  display: none;
}
.logo {
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 600;
}
.nav {
  gap: 15px;
}
.nav li {
  font-size: 14px;
  transition: 0.3s ease;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.nav li a{
  padding: 10px 15px;
}
.nav li:hover {
  color: #ffffff;
  background-color: #5960e8;
  box-shadow:
    0px 0px 50px -10px #fff,
    inset 2px 2px 10px -4px #fff;
}
.nav li:active {
  transform: scale(0.9);
}
.ri-menu-4-line,
.ri-close-large-fill {
  display: none;
}
.ri-menu-4-line,
.ri-close-large-fill {
  font-size: 22px;
  color: #fff;
  margin-right: 10px;
}
.navRow {
  display: none;
  line-height: clamp(3rem, 5vw, 5rem);
  margin-top: 1rem;
  text-align: center;
  border-top: 0.1px solid #ffffffaf;
  padding: 20px 0px;
}
header.add {
  padding: 15px 0px;
  height: fit-content;
}
header.add .navRow {
  display: flex !important;
}
.navCol h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
}

/*---------------
 SECTION - 1 HERO 
 ---------------*/

.heroSec {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heroSec::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  filter: blur(80px);
  opacity: 0.6;
  background: radial-gradient(circle at 50% 0%, #c500ff, #000000 60%);
  animation: rotateGlow 5s linear infinite;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cursor {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  box-shadow: 1px 1px 39px 26px #fff;
  background-color: #ffffffad;
  position: absolute;
  backdrop-filter: blur(10px);
  filter: blur(10px);
  top: 5px;
  opacity: 0;
  left: 0;
}
.hero-content {
  position: relative;
  gap: 30px;
}
.hero-content h1 {
  font-size: clamp(35px, 5vw, 70px);
  line-height: clamp(2.6rem, 8vw, 7vw);
  font-weight: 600;
}
.hero-content p {
  font-size: 18px;
  line-height: clamp(1.5rem, 1.5rem, 1.5rem);
  color: #ffffffaf;
}
.hero-content p:nth-child(1) {
  font-size: 12px;
  padding: 5px 15px;
  width: fit-content;
  border-radius: 30px;
  border: 1px solid #ffffff78;
}
.btn-set {
  gap: 15px;
}

/*------------------
 SECTION - 2 BRANDS 
 -----------------*/

.brandsSec {
  padding: 50px 0px;
  text-align: center;
  height: fit-content;
  display: block;
}
.brandsSec h2 {
  font-size: clamp(16px, 16px, 16px);
  font-weight: 500;
  margin-bottom: 35px;
}
.outter {
  position: relative;
  overflow: hidden;
  width: 80vw;
  margin: auto;
  padding: 0px 30px;
}
.track {
  display: flex;
  gap: 40px;
  width: max-content;
  position: relative;
}
.inner {
  flex-shrink: 0;
}
.inner i {
  margin-right: 5px;
  font-size: 20px;
}
.inner h3 {
  font-size: clamp(25px, 5vw, 40px);
}
.inner h3:nth-child(2),
.inner h3:nth-child(4),
.inner h3:nth-child(6),
.inner h3:nth-child(8) {
  font-weight: 400;
}
.left-layer {
  position: absolute;
  height: 200%;
  width: 7%;
  left: -10px;
  top: 0;
  background: #000;
  box-shadow: 15px 0px 20px #000000;
}
.right-layer {
  position: absolute;
  height: 200%;
  width: 7%;
  right: -10px;
  top: 0;
  background: #000;
  box-shadow: -15px 0px 20px #000000;
}

/*------------------
 SECTION - 3 SERVICES 
 -----------------*/
.servicesSec {
  height: fit-content;
  display: block;
  padding: 50px 0px;
  text-align: center;
}
.serviceMainrow {
  gap: 100px;
}
.Servicerow {
  gap: 70px;
}
.Servicerow:nth-child(2) {
  flex-direction: row-reverse;
}
.Servicerow:nth-child(4) {
  flex-direction: row-reverse;
}
.service-video {
  width: 100%;
  border-radius: 8px;
  height: 350px;
  padding: 50px;
  overflow: hidden;
  background-color: #111111;
}
.service-video video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid #ffffff45;
}
.service-cont {
  width: 100%;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}
.service-cont h4 {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border: 1px solid #ffffff46;
  border-radius: 8px;
  width: fit-content;
}
.service-cont h3 {
  font-size: 25px;
  font-weight: 600;
}
.service-cont p {
  font-size: 16px;
  line-height: 1.6rem;
  color: #e0e0e0;
  margin: 8px 0px;
}
.service-tags {
  gap: 10px;
}
.service-tags p {
  font-size: 15px;
  font-weight: 500;
  padding: 4px 7px;
  border: 1px solid #ffffff46;
  border-radius: 8px;
  width: fit-content;
  line-height: 1.6rem;
}

/*----------------------
 SECTION - 4 OUR PROCESS 
 ---------------------*/

.processSec {
  display: block;
  padding: 50px 0px;
  height: fit-content;
}
.bothrow {
  gap: 30px;
  width: 80%;
  margin: auto;
}
.Processcol {
  gap: 30px;
}
.process {
  height: 450px;
  padding: 30px;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  width: 100%;
  background: radial-gradient(#ffffff2a, #0000000d);
}
.process h4 {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
}
.process h3 {
  font-size: 25px;
  font-weight: 600;
}
.process p {
  font-size: 16px;
  line-height: 1.6rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}
.process-video {
  height: 180px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ffffff2d;
}
.process-video video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*-----------------------
 SECTION - 5 CASE STUDIES 
 ----------------------*/

.casesSec {
  display: block;
  padding: 50px 0px;
  height: fit-content;
}
.caseSlider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.caseTrack {
  display: flex;
  transition: transform 0.4s ease;
  flex-direction: row;
}
.mainCaseRow {
  min-width: 100%;
  height: 450px;
  gap: 50px;
  box-sizing: border-box;
  background: radial-gradient(#2196f32b, transparent);
  cursor: grab;
}
.caseImgCol,
.caseTextCol {
  width: 100%;
  padding: 15px;
}
.caseImgCol img {
  width: 100%;
  height: 425px;
  border-radius: 8px;
  object-fit: cover;
}
.caseTextCol {
  height: 100%;
  align-items: baseline;
  gap: 20px;
  justify-content: center;
}
.caseTextCol h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.caseTextCol h3 {
  font-size: 25px;
  font-weight: 600;
}
.des {
  line-height: 1.6rem;
}
.caseInnerCol p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 2rem;
}
.imp {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.swipe {
  margin-top: 50px;
  gap: 20px;
  font-weight: 700;
  color: #cbcbcb;
  font-size: 18px;
}
/*------------------
 SECTION - 6 BENEFITS 
 -----------------*/

.benefitsSec {
  display: block;
  padding: 50px 0px;
  height: fit-content;
}
.tworows {
  gap: 22px;
}
.box {
  width: 32%;
  height: 210px;
  gap: 17px;
  border: 1px solid #ffffff28;
  border-radius: 8px;
  padding: 15px 20px;
  background: linear-gradient(135deg, black, #c300ff1e 40% 50%, #000);
  align-items: baseline;
  text-align: left;
}
.box i {
  font-size: 25px;
}
.box h3 {
  font-weight: 600;
  font-size: 20px;
}
.box p {
  color: #d1d1d1;
  line-height: 1.6rem;
  font-size: 16px;
}

/*------------------
 SECTION - 7 PRICING 
 -----------------*/

.pricingSec {
  display: block;
  padding: 50px 0px;
  height: fit-content;
}
.pricingMethod {
  margin-bottom: 30px;
}
.pricingMethod span {
  font-weight: 500;
}
.togglebtn {
  height: 26px;
  width: 55px;
  background-color: #5960e8;
  border-radius: 30px;
  margin: 0px 10px;
  position: relative;
  border: 1px solid #ffffff26;
}
.white {
  position: absolute;
  top: 1px;
  right: 2px;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border-radius: 50%;
}
.range {
  align-items: baseline;
}
.landing,
.elite,
.custom {
  text-align: start;
  align-items: baseline;
  height: fit-content;
  padding: 20px 15px;
  border: 1px solid #ffffff48;
  border-radius: 8px;
  width: 32%;
  gap: 10px;
}
.landing,
.custom {
  background: radial-gradient(
    circle at 50% 160%,
    #5960e88e 0%,
    transparent 60%
  );
}
.heading {
  font-size: 20px;
  color: #cbcbcb;
  font-weight: 600;
}
.price {
  font-size: 30px;
  margin: 10px 0px;
  font-weight: 600;
}
.price small {
  font-weight: 300;
  font-size: 14px;
}
.remove {
  display: none;
}
.left {
  left: 2px !important;
}
.black {
  background-color: #ffffff21;
}
.description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7rem;
}
.landing button,
.custom button {
  width: 90%;
  background-color: #ffffff1a;
  color: #fff;
  padding: 9px 0px;
  border: 1px solid #ffffff3d;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.elite button {
  width: 90%;
  background-color: #5960e8;
  color: #fff;
  padding: 9px 0px;
  border: 1px solid #ffffff3d;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sub-head {
  font-size: 16px;
  color: #cbcbcb;
  margin-bottom: 10px;
}
.landing h4,
.elite h4,
.custom h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7rem;
}
.elite {
  background: radial-gradient(
    circle at 50% -40%,
    #f308ff80 0%,
    transparent 60%
  );
}
.ri-check-fill {
  font-size: 14px;
  font-weight: 100;
  margin-right: 5px;
}

/*-----------------------
 SECTION - 8 TESTIMONIALS 
 ----------------------*/

.testimonialSec {
  display: block;
  padding: 50px 0px;
  height: fit-content;
}
.outter-wraper,
.outter-wraper2 {
  width: 100%;
  padding: 10px 0px;
  overflow-x: hidden;
  gap: 40px;
  white-space: nowrap;
}
.outter-wraper2 {
  justify-content: flex-end;
}
.Reviewrow,
.Reviewrow2 {
  gap: 15px;
  padding: 20px 15px;
  width: 500px;
  height: 225px;
  align-items: baseline;
  border: 1px solid #ffffff40;
  border-radius: 8px;
  flex-shrink: 0;
  white-space: normal;
  background: linear-gradient(135deg, #00ffff19, #000000, #ee00ff16);
}
.stars {
  gap: 5px;
}
.stars i {
  color: goldenrod;
}
.msg p {
  font-size: 15px;
  line-height: 1.5rem;
  color: #ffffffce;
}
.Personrow {
  gap: 15px;
}
.person img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ffffff4a;
  object-position: top;
}
.Personcol {
  gap: 5px;
  align-items: baseline;
}
.Personrow h3 {
  font-weight: 500;
  font-size: 18px;
}
.Personrow p {
  font-weight: 500;
  font-size: 12px;
}

/*---------------
 SECTION - 9 FAQs 
 --------------*/

.faqSec {
  height: fit-content;
  display: block;
  padding: 50px 0px;
  background: linear-gradient(180deg, #000000, #00fffb0a 40% 60%, #000000);
}
details summary {
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
.all-ques {
  border: 1px solid #ffffff20;
  width: 60vw;
  margin: auto;
  padding: 20px 15px;
  border-radius: 8px;
  background: linear-gradient(135deg, #000, #4848480c 25% 35%, #000);
  margin-bottom: 30px;
}
.que h3 {
  font-weight: 500;
  font-size: 18px;
}
.ans p {
  font-size: 16px;
  line-height: 1.6rem;
  color: #d1d1d1;
}
summary {
  cursor: pointer;
}
.ans {
  margin-top: 20px;
  padding: 20px 0px;
  border-top: 1px solid #ffffff47;
}
details i {
  transition: 0.3s ease;
  font-size: 20px;
}
details[open] i {
  transform: rotate(180deg);
}

/*------------------
 SECTION - 10 PROMO 
 -----------------*/

.promoSec {
  height: fit-content;
  padding: 50px 0px;
  text-align: center;
  display: block;
}
.promotion {
  padding: 70px 50px;
  border-radius: 8px;
  width: fit-content;
  margin: auto;
  background: linear-gradient(130deg, #9976ff, #ffffff14 20% 80%, #9976ff);
}
.promotion .allh1 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: clamp(2rem, 8vw, 5vw);
}
.promotion button {
  margin-top: 30px;
}

/*-----
 FOOTER
 -----*/

footer {
  padding-top: 50px;
  user-select: none;
}
.footer-main {
  padding: 40px 0px;
}
.imgcol {
  align-items: baseline;
  gap: 30px;
  width: 50%;
}
.imgcol img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
}
.imgcol .logo {
  color: #fff;
  font-size: clamp(20px, 3vh, 30px);
}
.inputCol {
  align-items: end;
  gap: 30px;
  width: 50%;
}
.inputCol label {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.inputCol input {
  width: 40vw;
  height: 3rem;
  background-color: #343434;
  color: #fff;
  border: unset;
  border-radius: 8px;
  padding: 0px 100px 0px 15px;
}
.inputCol input::placeholder {
  color: #fff;
  font-family: Montserrat;
}
.innerInput {
  position: relative;
}
.innerInput button {
  position: absolute;
  top: 8%;
  right: 3px;
  font-size: 14px;
  background-color: #5960e8;
  color: #ffffff;
  font-weight: 400;
  box-shadow: inset 2px 2px 10px -4px #fff;
}
.signrow {
  margin-top: 20px;
  padding: 15px 0px;
  border-top: 1px solid #ffffff38;
}
.Reservecol p {
  font-size: 14px;
}
.linkscol {
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: right;
}
.main-links {
  width: 100%;
  justify-content: right;
  gap: 30px;
}
.main-links h2 {
  color: #fff;
  width: 100%;
  text-align: right;
}
.linkscol i {
  font-size: 25px;
  color: #fff;
}
.signatureCol a {
  color: #cacdff;
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 768px) {
  /*------
  Header 
  ------*/
  .IconCol {
    display: block;
  }
  .ri-menu-4-line {
    display: block;
  }
  .nav {
    display: none;
  }
  .login {
    display: none;
  }
  .navRow {
    display: none;
  }
  .cursor {
    display: none;
  }

  .allp {
    margin-bottom: 70px;
    font-size: clamp(16px, 16px, 16px);
    line-height: clamp(1.6rem, 1.6rem, 1.6rem);
    color: #ffffffaf;
    text-align: center;
  }
  .allh2 {
    font-size: clamp(14px, 14px, 16px);
    font-weight: 500;
    margin-bottom: 25px;
    padding: 8px 12px;
    border: 1px solid #ffffff46;
    border-radius: 8px;
    width: fit-content;
  }

  /*----------------
 SECTION - 2 BRANDS 
 -----------------*/

  .left-layer,
  .right-layer {
    display: none;
  }

  /*------------------
  SECTION - 3 SERVICE 
  ------------------*/
  .Servicerow {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    gap: 15px;
  }
  .Servicerow:nth-child(2) {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    flex-direction: column;
  }
  .Servicerow:nth-child(4) {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    flex-direction: column;
  }
  .service-cont {
    padding: 0px 15px 15px 15px;
    background: linear-gradient(155deg, black, #ffffff1a, black);
  }
  .service-video {
    height: 250px;
    padding: 0px;
  }
  .service-video video {
    border-radius: 8px 8px 0px 0px;
    border-bottom: unset;
  }
  .service-tags p {
    font-size: 12px;
  }
  .process {
    padding: 15px;
  }

  /*------------------
  SECTION - 4 PROCESS 
  ------------------*/
  .Processcol {
    flex-direction: column;
  }
  .bothrow {
    width: 100%;
  }
  .process p {
    margin: 15px 0px;
  }
  .process-video {
    height: 250px;
  }
  .process {
    height: fit-content;
    padding: 30px;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #ffffff1f;
    border-radius: 8px;
    width: 100%;
    background: radial-gradient(#ffffff2a, #0000000d);
  }

  /*------------------
  SECTION - 5 CASES 
  ------------------*/

  .caseSlider {
    overflow: visible; /* scroll allow */
  }

  .caseTrack {
    flex-direction: column;
    gap: 50px;
    transform: none !important;
  }

  .mainCaseRow {
    min-width: 100%;
    height: fit-content;
    flex-direction: column;
    border: 1px solid #ffffff4f;
    border-radius: 8px;
    cursor: default;
  }

  .caseImgCol img {
    width: 100%;
    height: 270px;
    border-radius: 8px;
    object-fit: cover;
  }

  .caseTextCol h3 {
    font-size: 20px;
    font-weight: 500;
  }

  .caseTextCol h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
  }

  .caseInnerCol p {
    font-size: 18px;
    line-height: 2rem;
  }

  .swipe {
    display: none;
  }

  /*------------------
  SECTION - 6 BENEFITS 
  ------------------*/
  .firstrow {
    flex-direction: column;
    gap: 30px;
  }
  .box {
    width: 100%;
    height: fit-content;
  }
  .box p {
    margin-bottom: 20px;
  }

  /*-----------------
  SECTION - 7 PRICING 
  -----------------*/
  .range {
    flex-direction: column;
    gap: 30px;
  }
  .landing,
  .elite,
  .custom {
    width: 100%;
  }
  .description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6rem;
  }
  .landing h4,
  .custom h4,
  .elite h4 {
    font-size: 16px;
  }

  /*----------------------
  SECTION - 8 TESTIMONIALS 
  ----------------------*/

  .Reviewrow,
  .Reviewrow2 {
    width: 89vw;
    flex-shrink: 0;
    white-space: normal;
    height: 255px;
  }

  /*---------------
  SECTION - 9 FAQs 
  --------------*/

  .all-ques {
    width: unset;
    margin-bottom: 20px;
  }
  .ans p {
    font-size: 16px;
    line-height: 1.7rem;
    margin: 10px 0px;
  }

  /*-----
  FOOTER
  ------*/

  .footer-main {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0px;
  }
  .imgcol {
    align-items: baseline;
    gap: 20px;
    width: 100%;
  }
  .main-links {
    width: 100%;
    justify-content: left;
    gap: 20px;
  }
  .main-links h2 {
    color: #fff;
    width: 100%;
    text-align: left;
  }
  .linkscol {
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: left;
  }
  .footer-main {
    padding: 20px 0px;
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  /*------
    Header 
    ------*/
  .IconCol {
    display: block;
  }
  .ri-menu-4-line {
    display: block;
  }
  .nav {
    display: none;
  }
  .login {
    display: none;
  }
  .navRow {
    display: none;
  }
  .cursor {
    display: none;
  }

  /*-----------------
  SECTION - 2 BRANDS 
  ----------------*/

  .left-layer,
  .right-layer {
    display: none;
  }

  /*------------------
  SECTION - 4 PROCESS 
  ------------------*/
  .Servicerow {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    gap: 30px;
  }
  .Servicerow:nth-child(2) {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    flex-direction: column;
  }
  .Servicerow:nth-child(4) {
    flex-direction: column;
    border: 1px solid #ffffff5c;
    border-radius: 8px;
    flex-direction: column;
  }
  .service-cont {
    padding: 0px 35px 35px 35px;
    background: linear-gradient(155deg, black, #ffffff1a, black);
  }
  .service-video {
    height: 300px;
    padding: 0px;
  }
  .service-video video {
    border-radius: 8px 8px 0px 0px;
    border-bottom: unset;
  }
  .service-tags p {
    font-size: 11px;
  }
  .process {
    padding: 15px;
  }
  .bothrow {
    gap: 30px;
    width: 100%;
    margin: auto;
  }

  /*---------------
  SECTION - 5 CASES 
  ---------------*/

  .caseTrack {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .mainCaseRow {
    min-width: 100%;
    height: fit-content;
    box-sizing: border-box;
    flex-direction: column;
    border: 1px solid #ffffff4f;
    border-radius: 8px;
  }

  /*------------------
  SECTION - 6 BENEFITS 
  ------------------*/
  .firstrow {
    flex-direction: column;
    gap: 19px;
  }
  .box {
    width: 70%;
  }

  /*-----------------
  SECTION - 7 PRICING 
  -----------------*/
  .range {
    flex-direction: column;
    gap: 30px;
  }
  .landing,
  .elite,
  .custom {
    width: 70%;
    margin: auto;
  }

  /*--------------
  SECTION - 9 FAQs 
  --------------*/
  .all-ques {
    width: 70vw;
  }

  /*-----
  FOOTER
  ------*/

  .inputCol label {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
  }
  .footer-main {
    padding: 20px 0px;
  }
}
