:root {
  /* --primary: #1c2a40; */
  --secondary: #2f435a;

  --primary-light: #f3f5f7;
  --primary-light-2: #e6e9ee;
  --primary-light-3: #edf1f6;
  --primary-dark: #16202f;

  --white: #fff;
  --black: #1a1a1a;

  --background-color: #504e4e;
  --bg-bright: #f8f8f8;
  --bg-dark: #2f435a;

  --font-main: "NeueMontreal", sans-serif;

  --line-height: 1.7;
  /* New Changes  */
  --primary:#0a3161;
  --us-primary:#0a3161;
  --us-app-red:#B31942; 
  --bold-weight:500;
  --nav-height:70px;
  --font-sub: clamp(30px, 3vw, 42px);

}

@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0%;
  letter-spacing: 1.1px;
}
/* global */
header {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100vw;
  height: var(--nav-height);
}
body {
  font-family: var(--font-main);
}
main {
  padding-top: 86px;
}

[data-animate] {
  opacity: 0;
}
p{
  margin-bottom:0px ;
}
/* .animate__animated {
  opacity: 1 !important;
} */

.section-block {
  margin: 0px 80px;
}

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

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

.dark-bg h1,
.dark-bg h2,
.dark-bg p {
  color: var(--white);
}
/* End Global */

/* nav */
.nav-link {
  font-weight: 500;
font-size: clamp(12px, 1.2vw, 16px);
  color: var(--black);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}
.navbar {
  background-color: var(--white) !important;
}
.mega-menu-full {
  width: 100vw !important;
  /* left: 43% !important; */
  /* transform: translateX(-69%) !important; */
  border-radius: 0;
  border: none;
  top: 100%;
  background: var(--white);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease, opacity 0.3s ease;
  /* transform-origin: top; */
  opacity: 0;
  /* transform: translateY(-315px); */
  /* pointer-events: none; */
}
.mega-menu-full{
  opacity: 0;
}
.mega-menu-full.show {
  opacity: 1;
  /* transform: translateY(0); */
}
/* .mega-dropdown-full .dropdown-menu.show,
.mega-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
} */

/* .dropdown {
  position: static !important;
}

.dropdown-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  margin-top: 0px !important;
  width: 100% !important;
} */
/* Submenus */
.mega-submenu li {
  margin-bottom: 10px;
}
.mega-submenu li {
  opacity: 0;
}

.mega-dropdown:hover .mega-submenu li {
  opacity: 1;
}
.mega-submenu li:nth-child(1) {
  animation-delay: 0.1s;
}

.mega-submenu li:nth-child(2) {
  animation-delay: 0.2s;
}

.mega-submenu li:nth-child(3) {
  animation-delay: 0.3s;
}

.mega-submenu li:nth-child(4) {
  animation-delay: 0.4s;
}

.mega-submenu li:nth-child(5) {
  animation-delay: 0.5s;
}

.mega-submenu a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

.mega-submenu a:hover {
  color: var(--primary);
}

/* Enable hover open */
.mega-dropdown:hover .dropdown-menu {
  display: block;
}

.menu-image-block {
  position: relative;
  height: 140px;
  background-image: url("../images/menu-bg-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}
.menu-image-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}
.border-left {
  border-left: solid 1px;
}

.menu-image-block .menu-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  bottom: 45px;
  left: 20px;
}
/* End Nav */

/* Footer */
footer {
  background: #1a1f29;
  color: #ffffff;
  font-size: 12px;
  z-index: 1;
}
footer.fullpage {
  position: fixed;
  bottom: 0px;
  width: 100vw;
}

.org-address {
  opacity: 0.8;
  padding-inline: 11px;
}

.footer-menus,
.social-icon {
  list-style: none;
  padding: 0;
  line-height: 1.9;
}

.footer-menus a,
.social-icon a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
}
.social-menus h6{
  text-align: right;
}
.social-menus .footer-menus a{
font-size: 24px;
}

.right-reserved {
  background: #000000;
  color: #ffffff;
  font-size: 12px;
}
.social-icon .fa-brands {
  font-size: 30px;
}
/* End Footer */

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);

  --bs-btn-hover-bg: #162233;
  --bs-btn-hover-border-color: #121b29;

  --bs-btn-active-bg: #121b29;
  --bs-btn-active-border-color: #0c141f;

  --bs-btn-color: var(--white);
  --bs-btn-hover-color: var(--white);

  transition: all 0.3s ease;
}

/* Animated fill button */

.home-page-1 button.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--primary);
  border: none;
  color: #fff;
}

.home-page-1 button.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--secondary);
  transition: width 0.35s ease-in-out;
}

.home-page-1 button.btn-primary:hover::before {
  width: 100%;
}

.home-page-1 button.btn-primary:hover i,
.home-page-1 button.btn-primary:focus i {
  animation: shakeIcon 0.8s ease 1;
}

.home-section-subHeader {
  color: var(--primary);
  font-size: clamp(32px, 4vw, 96px);
  font-weight: bold;
}
.home-section-subHeader1 {
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  font-size: clamp(16px, 5vw, 36px);
}
.home-section-description,
.home-section-description1 {
  color: var(--secondary);
  font-weight: 400;
}
.home-section-description {
  font-size: clamp(15px, 2vw, 22px);
}

.home-section-description1 {
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: center;
}
#fp-nav ul li {
  margin: 30px 10px;
}
#fp-nav ul li span:nth-child(2) {
  height: 3px;
  width: 20px;
  border-radius: 0px;
}
#fp-nav ul li a.active span {
  height: 6px;
  width: 60px;
  border-radius: 0px;
  margin-top: -15px;
  margin-left: -2px;
}
#fp-nav ul li .fp-tooltip.fp-left {
  left: 5px;
}
#fp-nav ul li:hover a span,
#fp-nav ul li:hover a.active span {
  height: 6px;
  width: 60px;
  border-radius: 0px;
  margin-top: -15px;
  margin-left: -2px;
}

#fp-nav ul li:nth-child(odd) .fp-tooltip {
  color: var(--primary);
}
#fp-nav ul li:nth-child(even) a.active span {
  background: var(--white);
}

.text-content {
  z-index: 1;
}
.text-justify{
  text-align: justify;
}
.home-page-1 .top-img {
  width: 350px;
  height: 450px;

  background-image: url("../images/img-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 10px 10px 133px 10px;
  /* animation: smoothMove 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
}
.home-page-1 .circle-img {
  width: 250px;
  height: 250px;

  background-image: url("../images/img-5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 50%;
   /* animation: smoothMove 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
}


.home-page-1 .bottom-img {
  width: 550px;
  height: 300px;
  background-image: url("../images/img-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 10px 133px 10px 10px;
   /* animation: smoothMove 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
}
.home-page-1 .bottom-img-icon {
  position: absolute;
  bottom: 85px;
  right: 75px;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
}
.home-page-1 .bottom-img-icon i {
  position: absolute;
  bottom: 12px;
  right: 8px;
  font-size: 28px;
  color: var(--white);
  animation: breathe 0.8s ease-in-out infinite;
}

.home-page-2 {
  background-image: url("../images/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.home-page-4 {
  background-image: url("../images/bg-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.card-title {
  font-size: 22px;
}
.card-text {
  font-size: 13px;
}
.home-card{
  width: 20rem;
  padding: 0px;
  border: 0px;

  box-shadow: 10px 20px 0px var(--primary);
}

.why-us-card ul li:not(:last-child) {
  margin-bottom: 10px;
}
.card-img-wrapper {
  position: relative;
}
.home-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.home-card .card-icon img {
  width: 28px;
  height: 28px;
}
.home-card .card-title,
.why-us-card .card-title {
  text-align: center;
  color: var(--primary);
}
.why-us-card .card-title {
  font-weight: 400;
}
.home-card .card-text {
  color: var(--black);
  text-align: justify;
}
.why-us-card .card-text {
  background-color: var(--background-color);
  padding: 10px;
  border-radius: 10px 5px 10px 5px;
}
.home-card .card-icon {
  font-size: 30px;
  color: var(--primary);
}
.home-card .card-know-more {
  cursor: pointer;
  color: var(--primary);
  font-size: 30px;
  transform: rotate(45deg);
}
.home-card .card-know-more:hover {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.client-slider {
  width: 100%;
  overflow: hidden;
  /* background: var(--bg-bright); */
  padding: 20px 0;
}

.client-track {
  display: flex;
  gap: 60px;
  animation: scroll 18s linear infinite;
}

.client-track img {
  height: 70px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.client-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes shakeIcon {
  0% {
    transform: translateY(-5px);
  }
  25% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  75% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes breathe {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.92;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.info-section {
  position: relative;
  padding: 0px 0 20px;
  /* overflow: hidden; */
  background: var(--bg-bright);
  z-index: 1;
}
.bg-shape-block {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.talent-bg-shape {
  position: absolute;
  width: 230vw;
  height: 200vw;
  background: radial-gradient(
    circle,
    var(--primary-light) 0%,
    var(--primary-light-2) 50%,
    var(--primary-light-3) 100%
  );
  border-radius: 50%;
  top: 300px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  z-index: -1;
}
.talent-header {
  font-size: 20px;
  line-height: var(--line-height);
  color: var(--black);
  min-height: 150px;
}
.talent-content {
  height: 100vh;
}
.talent-content:first-child {
  margin-top: 200px;
}
.talent-content .key {
  font-weight: bold;
  color: var(--primary);
}
.talent-content .text-block {
  margin-top: 40px;
}
.talent-content h2 {
  font-weight: bold;
  color: var(--primary);
  padding-bottom: 5px;
}
.talent-content p {
  font-size: 18px;
  line-height: var(--line-height);
  font-weight: 400;
  padding-bottom: 5px;
}
.talent-content .text-block ul li {
  font-size: 18px;
  line-height: var(--line-height);
}

.highlight {
  color: var(--us-app-red);
  font-weight: bold;
}

.timeline-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-bottom: 200px; /* space before footer */
}
.timeline-scroll {
  padding-top: 100px;
  display: flex;
  align-items: flex-start;
}

.side-image {
  position: sticky;
  display: inline-block;
  top: 120px;
  height: fit-content;
}

.side-image svg {
  position: absolute;
  top: 25%;
  left: -10%;
}

.side-image img {
  position: relative;
  top: 200px;
  right: 130px;
  width: 500px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
  opacity: 1;
}
#sectionImage {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

#sectionImage.fade-out {
  opacity: 0;
}

.running-points {
  overflow: hidden;
  background: var(--primary);
  padding: 20px 0;
  position: fixed;
  bottom: 20px;
  right: 1px;
  /* transform: rotate(360deg); */
  z-index: -1;
}
.running-wrapper {
  width: 110%;
  display: flex;
}
.running-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}
.track {
  display: flex;
  gap: 50px;
}
.track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: var(--white);
  font-size: 22px;
}

.fp-watermark{
  display: none;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes smoothMove {
  0%   { transform: translateX(0); }

  50%  { transform: translateX(10px); } /* subtle motion */
  100% { transform: translateX(0); }
}


/* New changes 12-12-2025 */
#app-logo{
  width: 240px;
}
.btn-primary{
  --primary: var(--us-app-red)
}
.app-section {
  min-height: calc(85dvh - var(--nav-height));
  transition: background-color .8s ease-in;
  position: relative;
  overflow: hidden; /* required so pseudo element doesn't leak out */
  z-index: 0;   
}
.sectionheight{
    height: calc(120dvh - var(--nav-height));
}
.hero-section{
  height: 90dvh;
}

.info-strip{
  height: 15dvh;
  color:var(--white);
}
.info-strip.stats{
  height: 35dvh;
}
.hero-content{
  padding-top:10rem ;
}
.hero-title{
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
}
.hero-desc{
  font-size: 1.2rem;

}
.hero-tag{
  background-color: var(--us-app-red);
  width: fit-content;
  border-radius: 20px;
  color: white;
  padding-inline: 15px;
  padding-block:5px ;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;

}
.dot{
      width: 5px;
    display: block;
    height: 5px;
    background: #fff;
    border-radius: 100%;
}
.bg-circle{
  position: relative;
}
.bg-circle::before{
  content: "";
      background: var(--primary);
    position: absolute;
    height: 550px;
    width: 550px;
    z-index: -1;
    border-radius: 100%;
    display: flex;
    opacity: .3;
    right: 0px;
}
.us-red{
  color: var(--us-app-red);
}


.usBlueBG{
  background-color: var(--us-primary);
  color: var(--white);
}
.appBlackBg{
  background-color: #000000;
  color: var(--white);
}
/* CARDS */
.infoCards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  border-radius: 24px;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.infoCardContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px;
  border-radius: 10px;
  color: #000000;
  overflow: hidden;
  background: #f3f5f7;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
.infoCardContent h5{
  font-weight: 600;
}
.infoCardContent::before {
  position: absolute;
  content: "";
  top: -4%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-45%);
  background: #68686845;
  z-index: -1;
  transform-origin: bottom;

  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.infoCardContent::after {
  position: absolute;
  content: "";
  top: -8%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-55%);
  background:#68686845; /*#e7ecff;*/
  z-index: -2;
  transform-origin: bottom;
  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
.infoCardContent h5{
  text-align: center;
}
.infoCardContent .para {
  z-index: 1;
  font-size: 14px;
  opacity: .6;
  text-align: justify;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.infoCardContent .link {
  z-index: 1;
  color: #fea000;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.infoCardContent .link:hover {
  text-decoration: underline;
}

.infoCards:hover {
  transform: translate(0px, -16px);
}

 .infoCardContent::before {
  rotate: -8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

 .infoCardContent::after {
  rotate: 8deg;
  top: 0;
  width: 100%;
  height: 100%;
}



/* CARDS END */
/* the background reveal layer */
.info-strip::before {
   content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;               /* start at bottom */
  height: 0%;              /* collapsed */
  background: var(--primary-color, --us-primary); /* default color or CSS var */
  opacity: 1;              /* set <1 for softer blend if desired */
  transform-origin: bottom center;
  transition: height 1s cubic-bezier(.22,.9,.32,1), opacity 0.9s ease;
  z-index: -1;             /* behind the content */
  pointer-events: none;              /* behind content */
}

/* when info-strip becomes active */
section.active::before {
  height: 100%;
}
.bg-fill {
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s ease;
  z-index: 1;
}

/* When section becomes active */
.fill-section.active .bg-fill {
  transform: scaleY(1);
}
.client-section{

  height: 40dvh;
}
.CTA-btn{
  width: fit-content;
}
.client-wrapper h3{
  color: var(--us-primary);
}
/*WHY US CARD */

.why-us-card{
  margin-top: 3rem;
  width: 400px;
  border-radius: 10px;
  padding-inline: 30px;
padding-block: 30px 5px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(19px) saturate(180%);
    -webkit-backdrop-filter: blur(19px) saturate(180%);
    background-color: rgba(43, 42, 42, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);

}

.why-us-card .icon,
.why-us-card .heading,
.why-us-card .content {
  position: relative;
  z-index: 5;
  transition: all 0.5s;
}
.why-us-card .content{
  opacity: .6;
}
.why-us-card .content ul{
  padding: 15px;
}
.why-us-card .content,.why-us-card .heading{
  color: #ffffff;
}
.why-us-card .icon {
  font-size: 3rem;
 color: #ff7985;
  margin-bottom: 20px;
}

.why-us-card .heading {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-us-card .number {
  position: absolute;
  top: -90px;
  right: -85px;
  padding: 80px 100px 30px 30px;
  background:var(--us-app-red);
  border-radius: 100%;
  z-index: 5;
}

.why-us-card .number .text {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.why-us-card .text {
  margin-top: 20px;
}

.why-us-card .number::after {
  content: "";
  width: 50px;
  height: 50px;
  background: var(--us-app-red);
  position: absolute;
  border-radius: 100%;
  top: 50%;
  right: 50%;
  transition: all 0.5s;
  transform: translateX(50%) translateY(-50%);
  z-index: -1;
}

.why-us-card:hover {
  scale: 1.02;
}

.why-us-card:hover .number::after {
  width: 1200px;
  height: 1200px;
}
.why-us-card:hover .icon{
  color: #ff7985;
}
.why-us-card:hover .heading,
.why-us-card:hover .content {
  color: #f5f5f5;

}


/* WHY US CARD */
.dropdown-menu{
  width: 33rem;
  padding-inline: 10px;
  margin-top: .2rem;
 
}
.dropdown-menu ul{
  display: flex;
  flex-direction: column;
  /* gap:10px; */
}
.dropdown-menu ul li a{
  text-decoration: none;
   color: #000000
}
.dropdown-menu ul li a:hover{
color: var(--us-app-red) !important;
transform: translateX(1.5);
}
.copy-right{
  /* margin-top: 5px; */
  color: var(--white);
  font-size: 12px;
  padding: 5px;
  text-align: end;
  background-color: #000000;
}
.cardList{
  background: #ffffff ;
  min-height: 10rem;
}
.cardList h5{
  color: var(--us-primary);
}
.us-text{
  color: var(--us-primary);
}
#navbarNav .nav-link:hover,#navbarNav .nav-link.show,#navbarNav .dropdown:hover > .nav-link{
color: var(--us-app-red) !important;
}
#navbarNav .dropdown-toggle::after {
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;          /* down arrow */
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
}

#navbarNav .dropdown:hover > .dropdown-toggle::after,
#navbarNav .dropdown.show > .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

#navbarNav .dropdown-toggle::after {
  transition: border 0.2s ease;
}
.subSec-Title{
  font-size: var(  --font-sub);
  line-height: 1;
}
.subSec-desc.is-inview{
  opacity: .6 !important;
}
.whyUs-section{
  height: calc(125dvh - var(--nav-height));
}
.whyUsSection{
    height: calc(92dvh - var(--nav-height));
}
.statsWrapper {
  border-right: 1px solid #d3d3d3;
  
}
.subMenuList li:nth-child(1){
  padding-top: 0px;
}
.subMenuList li{
font-size: 1.2rem;
    border-bottom: 1px solid #d3d3d3;
    padding-block: .8rem;
}
.itStaff-desc{
  font-size: 1.5rem;
  opacity: .6 !important;
  line-height: 1.5;
}
.iconBox{
    font-size: 2rem;
    padding: 10px;
    background: #ff7985;
    /* width: 100px; */
    /* height: 100px; */
    border-radius: var(--border-radius16);
    /* background: #1dc2dd; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px;
    border-radius: 8px;
}
.op-6{
  opacity: .6;
}