* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth !important;
  font-family: "Poppins", sans-serif;
}
body {
  background: #fff;
}
.message_btn{
  padding: 5px 12px;
  background: blue;
  color: #fff;
  border-radius: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h3 {
  font-weight: 700 !important;
}
h4 {
  font-weight: 700 !important;
}
h5 {
  font-weight: 700;
}
:root {
  --white: #fff;
  --black: #232323;
  --lite: rgba(255, 255, 255, 0.6);
  --gray-dark: #343a40;
  --gray: rgba(1, 1, 1, 0.6);
  --dark: #3c3d3c;
  --secondary: #000a17;
  --red: #f71735;
}

.header {
  position: relative;
}
.socila_div .fa-brands,
.open_time a,
.mail_div a {
  color: var(--white);
 
}
.mail_div a:hover i,
.mail_div a:hover span{
  color: var(--red);
  transition: 0.5s ease-in-out;
}
.socila_div .fa-facebook:hover,
.socila_div .fa-twitter:hover,
.socila_div .fa-linkedin:hover {
  color: var(--red);
  transition: 0.5s ease-in-out;
}
.logo_div {
  height: 68px;
  width: 160px;
  border-radius: 3px;
  overflow: hidden;
}
.logo_div img {
  width: 100%;
  height: 100%;
}
.nav_link {
  margin-bottom: 0;
}
.get_btn {
  color: #000a17 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  transition: 0.5s ease-in-out !important;
}
.get_btn:hover {
  color: #fff !important;
}
.nav_link > li {
  list-style: none;
  margin-right: 3px;
  padding: 25px 9px;
}
.sub_menu li {
  list-style: none;
  padding: 6px 8px;
}
.menu_wrapper {
  position: relative;
}
.nav_link li > a {
  display: block;
  text-decoration: none;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  position: relative;
  color: var(--secondary);
  /* transition: 0.3s ease-in-out; */
  font-weight: 700 !important;
}

.nav_link > li > a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 0px;
  background-color: #f71735;
  margin-left: -8px;
}
.nav_link li a.active,
.nav_link li:hover > a {
  color: #f71735;
}

.nav_link li a.active::after,
.nav_link li:hover a::after {
  width: 3px;
  background-color: #f71735;
}

.sub_menu {
  position: absolute;
  top: 102%;
  left: 0;
  background-color: #ffffff;
  padding: 8px;
  z-index: 99;
  width: 350px;
  box-shadow: 0 0 10px rgb(126, 120, 120);
  display: none;
}
.mega__menu {
  position: absolute;
  top: 72px;
  left: 116px;
  width: 84vw;
  z-index: 999;
}
.bg-Notice{
  background: #f5faff ;
}
.playstore{
  display: block;
  height: 50px;
  width: 150px;
}
.playstore img{
  height: 100%;
  width: 100%;
}
.mega__menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.right_border {
  border-right: 2px solid rgba(128, 128, 128, 0.384);
}
.bottom_border {
  border-bottom: 2px solid rgba(128, 128, 128, 0.384);
}
.mega_text:hover h6 {
  color: red;
  transition: 0.3s ease;
}
.mega_menu_wrapper:hover .mega__menu,
.menu_wrapper:hover .sub_menu {
  display: block;
}
.nav_link li ul li:hover {
  background: #e9e9ee;
}
.sub_menu li a {
  font-weight: 600 !important;
}
.drop {
  height: 1px;
  font-size: 13px;
}

.sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.5s ease-in-out;
  background-color: var(--white);
  border-bottom: 4px solid #f71735;
}
.ham {
  height: 40px;
  width: 40px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: none;
  & > span {
    display: block;
    position: absolute;
    top: 18px;
    left: 4px;
    height: 3px;
    width: 25px;
    z-index: 1;
    background: var(--black);
    border-radius: 10px;
    transition: 0.5s ease-in-out;
  }
  & span:nth-child(1) {
    transform: translateY(-7px);
    width: 20px;
  }
  & span:nth-child(3) {
    transform: translateY(7px);
    width: 20px;
  }
  &.transfrom span:nth-child(2) {
    transform: translateX(50px);
  }
  &.transfrom span:nth-child(1) {
    transform: rotate(45deg);
    width: 30px;
  }
  &.transfrom span:nth-child(3) {
    transform: rotate(315deg);
    width: 30px;
  }
}

/***************************
            DEFAULT
****************************/

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
  background: var(--dark);
}

a {
  text-decoration: none !important;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

a,
button {
  transition: 0.5s;
}

em {
  font-style: normal;
  color: var(--primary_lite);
}

.btn {
  font-size: 15px;
}
a,
p {
  font-size: 15px ;
}

a,
button,
input,
textarea,
select {
  outline: none !important;
}

fieldset {
  border: 0;
}

.title,
.sub_title {
  font-family: var(--title_font);
  font-weight: 400;
  margin: 0;
}

.flex,
.fixed_flex {
  display: flex;
}

.flex_content {
  width: 100%;
  position: relative;
}

.padding_1x {
  padding: 1rem;
}

.padding_2x {
  padding: 2rem;
}

.padding_3x {
  padding: 3rem;
}

.padding_4x {
  padding: 4rem;
}

.big {
  font-size: 3rem;
}
.Managing{
  font-size: 2.5rem;
}

.medium {
  font-size: 2em;
}

.small {
  font-size: 1.3em;
}
.center-y p {
  max-width: 700px;
  font-size: 18px !important;
  line-height: 27px !important;
}

.btn {
  padding: 1rem;
  border-radius: 5px;
  color: var(--white) !important;
  position: relative;
  border: 0;
  text-align: center;
}

.login_btn {
  border: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 20px;
  padding: 8px 0px;
  background-color: var(--red);
  color: #fff;
  width: 100px;
}
.btn_3 {
  display: block;
  background-color: 0;
  color: var(--white);
  position: relative;
  font-family: var(--default_font);
  font-weight: 400;
  text-transform: uppercase;
}
.update_btn{
  width: 200px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 10px;
  border: none;
color: #fff;
}
.Admin {
 background-color: #010318;
 max-width: 400px;
 width: 100%;
padding: 40px;
border-radius: 8px;
}
.btn-color{
  background: #0b0c26f1;
}
.btn-color:hover{
  background: #0b0c26;
}
.form-control{
  border: 2px solid rgba(107, 103, 103, 0.662);
}
.form-control:focus{
  box-shadow: initial;
}


.login_panel input {
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  font-size: 14px;
  border-radius: 30px;
  border: none;
}

.btn_3:before {
  content: "";
  background-color: var(--red);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 40px;
  transition: 0.5s;
  transform: translate(0%, -50%);
  z-index: -2;
  border-radius: 40px;
}

.btn_3:after {
  content: "\f178";
  font-family: "FontAwesome";
  margin-left: 5px;
}

@media (max-width: 920px) {
  .flex {
    flex-wrap: wrap;
  }

  .padding_1x,
  .padding_2x,
  .padding_3x,
  .padding_4x {
    padding: 1rem;
  }

  .big {
    font-size: 1.8em;
  }

  .medium {
    font-size: 1.3em;
  }

  .small {
    font-size: 1.1em;
  }

  .btn {
    padding: 0.5rem 1rem;
  }

  a,
  p,
  .btn {
    font-size: 12px;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 86vh;
}

ul {
  padding: 0;
  margin: 0;
}

.slider .title {
  font-weight: 600;
}

.slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: clip 0.7s ease-in-out, z-index 0s 0.7s;
  clip: rect(0, 100vw, 100vh, 100vw);
  display: flex;
  align-items: center;
  justify-content: left;
}

.about_img img {
  height: 100%;
  width: 100%;
}
/* .slider li:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 250px;
  height: 250px;
  background-image: url("https://i.postimg.cc/02zcww6c/slider-shape.png");
  background-size: 100% 100%;
  transition-delay: 1s;
  transform: rotate(-90deg);
  z-index: 1;
} */

.slider li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url("https://i.postimg.cc/KjKbwDfR/slider-shape-2.png");
  background-size: 100% 100%;
  transform: rotate(360deg);
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  z-index: 1;
  background-position: center left;
}
.slider li:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("../image/slider_1.jpg");
  background-size: cover;
  background-position: top right;
}

.slider li:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url("../image/Notice2.png");
  background-size: cover;
  background-position: right right;
}
.slider li:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("../image/ZOHO.jpg");
  background-size: cover;
  background-position: center center;
}

/* .slider li:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("../image/slider_3\ \(1\).jpg");
  background-size: cover;
  background-position: top top;
} */
.slider li:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("../image/slider_4.jpg");
  background-size: cover;
  background-position: top top;
}
.slider li:nth-child(5) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("../image/slider_5\ \(1\).jpg");
  background-size: cover;
  background-position: center center;
}
.slider li:nth-child(6) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("../image/slider_6.jpg");
  background-size: cover;
  background-position: center center;
}

.article_3 {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 800px !important;
}
.document_bg {
  background: #e7f1fb;
  color: black !important;
}
.slider article {
  width: 70%;
  margin-top: 4rem;
  color: #fff;
  margin-left: 5rem;
  z-index: 11;
}

.slider h3 + {
  display: inline-block;
  color: var(--lite);
  font-weight: 800;
}

.slider h3,
.slider h3 + p,
.slider p + .btn,
li:after {
  opacity: 0;
  transition: opacity 0.7s 0s, transform 0.5s 0.2s;
  transform: translate3d(0, 50%, 0);
}

li.current h3,
li.current h3 + p,
li.current p + .btn,
li.current:after {
  opacity: 1;
  transition-delay: 1s;
  transform: translate3d(0, 0, 0);
}

/* .slider li:before {
  transition: 0.5s;
  top: -250px !important;
} */

li.current:before {
  transition-delay: 1s;
  transform: rotate(-90deg);
  top: -20px !important;
}

li.current {
  z-index: 1;
  clip: rect(0, 100vw, 100vh, 0);
}

li.prev {
  clip: rect(0, 0, 100vh, 0);
}

.slider aside {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  text-align: center;
  z-index: 10;
}

.slider aside a {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--white);
  margin: 0 0.2rem;
  transition: transform 0.3s;
}

.slider em {
  background: #ff3131;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

a.current_dot {
  transform: scale(1.4);
  background: var(--primary) !important;
}
.about_text h4 {
  color: var(--red);
  font-weight: 600;
  font-size: 18px;
}
.about_text h2 {
  font-weight: 700 !important;
  font-size: 39px;
}

.offer i {
  color: var(--red);
}
.offer li {
  margin-top: 10px;
}

.experi {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 9;
  background-color: var(--white);
  max-width: 250px;
  box-shadow: -8px 8px 0px var(--danger);
  border-radius: 2px;
}
.why_chooes_bg {
  background-image: linear-gradient(
      rgba(4, 8, 44, 0.858),
      rgba(6, 3, 35, 0.795)
    ),
    url(../image/row-bgimage-1.jpg);
  background-position: center;
  background-size: cover;
  height: auto;
  overflow: hidden;
}
.why_chooes h2,
.why_chooes p {
  color: var(--white);
}
.why_chooes h2 {
  font-size: 35px;
  font-weight: 700;
}
.Mission .fa-solid {
  font-size: 43px;
  color: var(--red);
}
.Mission span {
  font-size: 25px;
  font-weight: 500;
  color: var(--white);
}

.contact_bg {
  background-image: url(../image/contact-bg-one.jpg);
  background-position: center;
  background-size: cover;
  height: auto;
}
.address {
  border-right: 1px solid rgba(128, 128, 128, 0.333);
}
.address h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--danger);
}
.address p {
  font-size: 16px;
}
.input_fild input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 30px 0px 0 30px;
  border: none;
  border: 1px solid gray;
}
.input_fild span button {
  padding: 9.3px 15px;
  border: none;
  border: 2px solid gray;
  border-left: none;
  border-radius: 0px 30px 30px 0px;
  font-weight: 600;
  background-color: var(--red);
}
.input_fild span button:hover {
  color: #fff;
  background-color: var(--red);
}
.footer__bg {
  background-image: linear-gradient(
      rgba(4, 8, 44, 0.162),
      rgba(6, 3, 35, 0.201)
    ),
    url(../image/footer-bg.jpg);
  background-position: center center;
  background-size: cover;
  height: auto;
}
.footer {
  color: var(--white) !important;
}
.Address li,
.Quick_Links li {
  margin-top: 10px;
  list-style-type: none;
}
.Quick_Links li a {
  color: var(--white);
}
.Quick_Links li:hover a {
  color: #e70909 !important;
}
.footer_icon a i {
  color: rgb(248, 246, 246);
  height: 35px;
  width: 35px;
  border: 1px solid gray;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  border-radius: 50%;
}

.socil__icon .fa-brands {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px;
  border-radius: 50%;
  background: #362e2e75;
  transition: 0.4s ease-in-out;
}
.socil__icon .fa-brands:hover {
  background: red;
}
.foote_img {
  height: 60px;
  width: 60px;
}
.Privacy,
.Disclaimer,
.footer_about {
  position: relative;
  padding: 0 10px;
}
.disc:hover a,
.Disclaimer:hover a {
  color: red !important;
}
.Disclaimer :last-child div:hover {
  color: red !important;
}

.Privacy::after,
.Disclaimer::after,
.footer_about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  background: var(--red);
}
.Insider_bg,
.powerbi_bg,
.Domain_bg,
.Compliance_bg,
.service_bg,
.Next_bg,
.about_bg,
.digital_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url(../image/digital_1.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6.9rem 0;
}

.Compliance_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../image/digital_2.svg);
  background-position: left center;
}
.Domain_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url(../image/crm_1.svg);
  background-position: right center;
}
.powerbi_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)),
    url(../image/Dashboard_1.svg);
  background-position: top center;
}
.Insider_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    url(../image/Trading\(1\).svg);
  background-position: left left;
}
.Next_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(../image/slider_4.svg);
  background-position: center center;
}
.service p {
  color: var(--red);
}
.about_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../image/service_bg.jpg);
  background-position: center center;
}
.service h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.service {
  cursor: pointer;
}
.service a {
  color: #fff;
  margin-left: 5px;
  font-size: 19px;
}
.service span {
  color: var(--red);
}
.Applicant1 {
  margin-top: 2rem !important;
}
.Applicant {
  margin-top: 4rem;
}
.service_wrapper {
  max-height: 370px;
  height: 100%;
  color: #fff !important;
}
.service_wrapper p {
  color: #e3e9ef;
}
.service_text {
  border: 2px dashed rgba(128, 128, 128, 0.306);
  padding: 15px 0px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.service_text::after {
  border-bottom: 3px dashed red;
  border-right: 3px dashed red;
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  height: 0%;
  width: 0%;
  transition: 0.6s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.service_text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  height: 0%;
  width: 0%;
  border-top: 3px dashed red;
  border-left: 3px dashed red;
  transition: 0.6s ease-in-out;
  opacity: 0;
  z-index: -1;
}
.service_text:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.service_text:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.service_text i {
  font-size: 45px;
  color: #970104;
}
.icon_image_div {
  height: 50px;
  width: 50px;
}

.over_lay {
  background: linear-gradient(rgba(241, 7, 7, 0.895), rgba(241, 7, 7, 0.895));
  height: 40vh;
  width: 100%;
  transform: translateY(-40%);
}

.career__img {
  position: relative;
  top: 25%;
  left: 0;
  content: "";
  background: rgba(4, 8, 44, 0.858);
  height: 50%;
  width: 100%;
  border-radius: 5px;
}
.card {
  background-color: #ed0f305e !important;
  border-radius: 5px !important;
  width: 100% !important;
}
.show {
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: 0.7s ease-in-out !important ;
}

.Digital__bg {
  background: #f5faff;
}
.get_in_touch ul,
.digital_list ul {
  list-style: none;
  margin-top: 20px;
}
.digital_list ul li {
  margin-top: 10px;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  border-left: 5px solid rgba(0, 0, 0, 0.105);
  cursor: pointer;
}
.digital_list ul li.digital_active,
.digital_list ul li:hover::before {
  background: var(--red);
  width: 100%;
}
.digital_list ul li.digital_active,
.digital_list ul li:hover {
  border-left: 5px solid black;
}
.digital_list ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 1%;
  transition: 0.6s ease-in-out;
  z-index: -2;
}
.digital_list ul li.digital_active a,
.digital_list ul li:hover a {
  color: #fff;
}
.digital_list ul li a {
  display: block;
  color: #0b0c26;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 20px;
  width: 100%;
}

.get_in_touch ul li a {
  color: #0b0c26 !important;
  font-weight: 600;
}
.get_in_touch ul li a i {
  color: var(--red) !important;
}
.Applicant_need {
  color: var(--red);
}

.Disclaimer_bg,
.Privacy_bg,
.terms_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(7, 7, 7, 0.8)),
    url(../image/Terms\ of\ Service.svg);
  background-position: top top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6.5rem 0;
}
.Privacy_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(7, 7, 7, 0.8)),
    url(../image/Privacy\ Policy.svg);
  background-position: center left;
}
.Disclaimer_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(7, 7, 7, 0.8)),
    url(../image/Disclaimer.svg);
  background-position: left left;
}
.terms_list {
  background: #f5faff;
  margin-bottom: 10px;
}

.list-type3 li::marker {
  color: red;
}
.list-type3 li,
.list-type3 a {
  float: left;
  height: 35px;
  line-height: 35px;
  position: relative;
  font-size: 15px;
  margin-bottom: 12px;
  transition: background-color 1.5s ease;
  padding: 0px 10px;
  width: 100%;
}
.list-type3 a {
  padding: 0 60px 0 12px;
  background: #008ae0b1;
  color: #fff !important;
  text-decoration: none;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}

.list-type3 a:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent #008ae0b1 transparent transparent;
  border-style: solid;
  border-width: 18px 12px 18px 0;
}

.list-type3 a:hover {
  background: #555;
}

.list-type3 a:hover:before {
  border-color: transparent #008ae0b1 transparent transparent;
}

.get_btn_term {
  padding: 8px 12px !important;
  color: #fff;
  font-weight: 600;
  background: #080b67;
}
.get_btn_term:hover {
  background: var(--red);
  color: #fff;
}

.Policy_list ol > li {
  margin-bottom: 25px;
}
.Policy_list li::marker {
  color: red;
}
.a__text {
  font-size: 30px;
  color: red;
}
.team_sec {
  height: 380px;
  width: 380px;
}
.team_sec img {
  width: 100%;
  height: 100%;
}

.form__bg {
  background: #f5faff;
}

.input_bg {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(20, 19, 19, 0.493);
}
.mobile__menu {
  display: none;
}
.tab-img{
  height: 50px;
  width: 180px;
  border: 2px solid rgba(128, 128, 128, 0);
  background:#f7f9f8;
  object-fit: contain;
}
.tab-img img{
  height: 100%;
  width: 100%;
}
.nav-pills .nav-link.active{
  background:#f7f9f8;
  border: 2px solid gray;
}
.Radar_gst{
  list-style: none;
}
.Radar_gst li i{
  color: var(--red);
}
.Radar_gst li{
  margin-bottom: 7px;
}
.zoho_bg{
 padding: 0px;
}
table{
  border: 1px solid gray;
  
}
table td{
 border:1px solid rgba(128, 128, 128, 0.534) ;
  
}
.table_wrapper{
  overflow-x: scroll;
}
.table_wrapper::-webkit-scrollbar {
  display: none;
}
.tabletata{
background-color: rgba(219, 211, 211, 0.671) !important;
border:1px solid rgba(128, 128, 128, 0.409) ;
}





.tab-container {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* border: 600px;
  padding: 10px; */
}

/* Tab Buttons */
.tab-buttons {
  display: inline-block;
  background: rgb(240, 239, 239);
  border-radius: 15px 15px 0  0 ;
}
.Profile-btn {
  border-radius: 10px 10px 0 0;
  display: inline-block !important;
  background: #F4F4F4;
}

.Profile-tab,
.tab-button {
  padding: 12px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  border-bottom: 3px solid #000a1709;
}
.Profile-tab {
  padding: 12px 12px;
  border-bottom: initial !important;
  border-radius: 10px 10px 0 0;
  text-transform: capitalize !important;
}

.tab-button.active {
  border-bottom: 3px solid #3498db00;
  color: #fff;
  background: #080b67;
  border-radius: 10px 10px 0 0; 
}

.Profile-tab.active{
  color: #FFf;
  background: #2F6FC0;
  border-bottom: initial !important;
}
/* Tab Content */
.tab-content {
  padding: 15px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.list-items li{
  list-style: none;
  display: flex;
  
  
}
.list-items li span{
  display: block;
  margin-top: 4px;
}
.list-items li span .fa-check{ 
  color: #fff;
  height: 20px;
  width: 20px;
  line-height: 20px;
  background: #f71634;
  border-radius: 50%;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;

}

.contents-wrapper{
  display: flex;
  text-align: center;
  justify-items: center;
  justify-content: center;
  flex-direction: column;
  padding:25px;
  background: #f8fafd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
}
.contents-wrapper i{
  font-size: 18px !important;
  color:  red;
}
.contents-wrapper .title{
  font-size: 15px !important;
  color:  red !important;
}
.description{
  color:  red;
}
.btn_get{
  background: rgb(235, 56, 56);
  padding: 15px 20px;
  width: 300px;
  border: none;
  border-radius: 30px;
  color: #fff;
}

.btn_get:hover{
  background: rgba(255, 0, 0, 0.772);
}






/* CSS variables */
:root {
  --primary-text: #4f8f70;
  --secondary-text: #e9fff3;
  --white-text-white: #ffffff;
  --black-text-black: #000000;
}
/* custom font */
/* @font-face {
  font-family: "Avenir";
  src: url("../assets/font/AvenirLight.woff2") format("woff2"),
    url("../assets/font/AvenirLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
} */

.nitic_imag{
  height: 400px;
  max-width: 500px;
  width: 100%;
}
.nitic_imag img{
  height: 100%;
  width: 100%;
}


a {
  text-decoration: none;
}
.accordion-body ul li a {
  color: black;
  font-weight: 700;
}
.faq-section .accordion {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  /* background-color: #c5e5d8;*/
  background-color: #f71634;
  color: #ffffff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
  content: "";
  position: absolute;
  /*   right: 0.75rem; */
  right: 0.75rem;
  top: 1.4rem;
  height: 2px;
  width: 1rem;
  background-color: var(--primary-text);
}
.accordion-button.collapsed:after {
  content: "";
  position: absolute;
  /*   right: 1.1875rem; */
  right: 1.1875rem;
  top: 0.9rem;
  height: 1.0625rem;
  width: 0.122rem;
  border-style: none;
  background-color: var(--primary-text);
}
.accordion-item{
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.142);
  margin-bottom: 10px;
  border-radius: 8px !important;
  overflow: hidden;
}
.faq-section .accordion-button h5 {
  /*   color: #7dbc9e; */
  color: var(--primary-text);
  margin-right: 13px;
}

/* button:focus:not(:focus-visible) {
    outline: 0;
} */

/* list */
ul {
  list-style-type: none;
  list-style-type: disc; /* Default bullet points for ul */
  margin-left: 20px;
}
ul li {
  margin-bottom: 5px;
}

.accordion-body ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ol > li {
  counter-increment: step-counter; /* Increment custom counter */
  margin-bottom: 10px;
}

.accordion-body ol > li::before {
  content: "Steps " counter(step-counter) ": "; /* Custom prefix */
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

  .accordion-button:before {
    right: 0.75rem;
  }

  .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}






















@media screen and (max-width: 920px) {
  .cs-down {
    display: none;
  }

  .slider {
    height: 70vh;
  }

  .slider article {
    width: 100%;
    margin-top: 2rem;
  }

  .slider li:nth-child(2) {
    background-position: top center;
  }

  .slider li:nth-child(3) {
    background-position: top center;
  }

  li.current:before {
    top: -30px;
    right: -10px;
  }
}

@media only screen and (max-width: 1110px) {
  .nav_link {
    top: 75px;
    left: 0;
    bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    background-color: #010318;
    width: 100%;
    z-index: 9999;
    height: 100vh !important;
    visibility: hidden;
    opacity: 0;
    transition: 0.6s ease-in-out;
    padding-left: 20px;
    overflow-y: scroll;
  }
  .sub_menu {
    position: static;
  }
  .ham {
    display: initial;
  }
  .show {
    height: 60vh;
    opacity: 1;
    visibility: visible;
    transition: 0.6s ease-in-out;
  }
  .for_pc_none {
    display: none !important;
  }
  .mobile__menu {
    display: initial !important;
  }
  .nav_link > li {
    margin-right: 3px;
    padding: 8px 6px;
  }
  .nav_link > li > a {
    color: #fff;
  }
}
@media only screen and (max-width: 778px) {
  slider article {
    width: 60%;
    margin-top: 4rem;
    color: #fff;
    z-index: 11;
  }
  .slider article {
    width: 100%;
    margin-top: 4rem;
    color: #fff;
    margin-left: 0rem;
    z-index: 11;
  }
  .article_3 {
    position: initial;
    width: 100%;
    left: 0;
    width: 100%;
    max-width: 800px !important;
  }
  .about_text h2 {
    font-size: 28px;
  }
  h2 {
    font-size: 30px !important;
  }
  .Applicant1 {
    margin-top: 0 !important;
  }
  .Applicant {
    margin-top: 0;
  }
}
