/* Header css start */

.main-middle-area {
  padding-top: 190px;
  position: relative;
}

header {
  --logoWidth: 160px;
  --navWidth: calc(100% - 160px);
  --fontSizeHeader16: 16px;
}

header .top-bar-dv {
  background-color: var(--primaryColor1);
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

header .top-bar-dv .top-bar-inner-dv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header ul.top-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  column-gap: 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--WixMadeforDisplay);
}

header ul.top-list a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
}

header ul.top-list li {
  display: inline-flex;
}

header ul.top-list .icon-whatsapp {
  font-size: 18px;
  color: #25d366;
}

header ul.top-list .icon-mail {
  color: var(--primaryColor2);
  font-size: 16px;
}

header .top-bar-rgt-dv {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--WixMadeforDisplay);
}

header .header-div {
  padding: 0;
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: 50px;
  z-index: 9999;
  width: 100%;
}

header .header-div .logo-div {
  padding: 0;
  margin: 0;
  display: flex;
  width: var(--logoWidth);
}

header .header-div .logo-div .logo_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  outline: none;
  box-shadow: none;
}

header .header-div .logo-div .img-fluid {
  height: 46px;
  object-fit: contain;
}

header .header-div .nav-center-div {
  padding: 0;
  margin: 0;
  display: flex;
  width: var(--navWidth);
  align-items: center;
  justify-content: flex-end;
}

header .header-div .header-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 14px;
  background: var(--white);
  border-radius: 16px;
  min-height: 82px;
  justify-content: space-between;
}

header .header-div .top-nav1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  width: 100%;
}

header .header-div .inner-top-header-div {
  padding: 30px 0;
  margin: 0;
}

header .header-div .cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 99999;
  display: none;
}

header .header-div .cd-shadow-layer.is-visible {
  display: block;
  animation: cd-fade-in 0.3s;
}

header .header-div .display-none {
  display: none;
}

header .header-div .ullist-inline {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 50px;
  column-gap: 8px;
}

header .header-div .ullist-inline li {
  padding: 0;
  margin: 0;
  transition: all 0.4s ease-in-out;
}

header .header-div .ullist-inline li:last-child {
  margin: 0;
}

header .header-div .ullist-inline li .menu-link {
  color: var(--black);
  padding: 8px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 46px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

header .header-div .ullist-inline li .menu-link:hover {
  color: var(--primaryColor2);
}

header .header-div .ullist-inline li.active .menu-link {
  color: var(--primaryColor2);
}

header .header-div .ullist-inline li a {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  padding: 10px 9px !important;
  display: inline-block;
}


header .header-div .ullist-inline li.menu-item-has-children a {
  padding-right: 30px !important;
}

.after-login header .header-div .ullist-inline li a {
  padding: 10px 9px !important;
}

header .header-div .ullist-inline li:hover {
  /* background-color: var(--primaryColor1);  */
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
}

header .header-div .ullist-inline li:hover span {
  filter: invert(1) brightness(1);
  transition: all 0.4s ease-in-out;
}

header .header-div .ullist-inline li:hover>a,
header .header-div .ullist-inline li.current-menu-item>a,
header .header-div .ullist-inline li.current-menu-parent>a {
  background: #220845;
  color: #fff !important;
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
}


header .header-div .ullist-inline li.menu-item-has-children span {
  width: 16px;
  height: 16px;
  position: absolute;
  background: url(../images/chevron-down.svg) no-repeat;
  background-position: center center;
  background-size: 24px;
  right: 8px;
  top: 12px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

header .header-div .ullist-inline li.menu-item-has-children:hover span {
  filter: invert(1) brightness(1);
  transition: all 0.4s ease-in-out;
}

header .header-div .nav-ul2 {
  padding-inline: 30px;
  position: relative;
}

header .header-div .nav-ul2::before {
  content: "";
  border-left: 1px solid #e6e6e6;
  position: relative;
  left: 0;
  height: 30px;
  width: 1px;
}

header .header-div .nav-ul2 li .menu-link {
  color: var(--primaryColor2);
}

header .header-div .nav-ul2 li .menu-link:hover {
  color: var(--primaryColorHover2);
}

header .header-div .nav-m-bar .menu-bars {
  display: none;
}

header .header-div .nav-div {
  width: 100%;
}

header .header-div .nav-div .closebtn {
  display: none;
}

header .header-div .nav-div .row-nav-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

header .header-div .nav-div .row-nav-div .left-side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

header .header-div.header-sticky {
  background-color: var(--whiteColor);
  position: fixed;
  z-index: 9999;
  width: 100%;
  min-height: 75px;
  top: 50;
  left: 0;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

header .header-div.header-sticky .inner-top-header-div {
  padding: 0;
}

header .header-div.header-sticky .header-container {
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

header .header-div.header-sticky .nav-center-div {
  align-items: center;
}

header .header-div.header-sticky .ullist-inline li .btn {
  background-color: var(--whiteColor);
  color: var(--primaryColor2);
}

header .header-div.header-sticky .ullist-inline li .btn.btn-primary:hover {
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}

/* .home-banner-section {
  padding: 190px 0 70px;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: calc(100dvh - 190px);
  width: 100%;
} */

/* .home-banner-section .container {position: static;}
.home-banner-section .home-banner-content h1,
.home-banner-section .home-banner-content p,
.home-banner-section .home-banner-content .cta {position: relative; z-index: 3;} */

/* .home-banner-section .slider-bg-image { position: absolute; left: 0; top: 0; width: 100%; z-index: 1; height: 100%;} */
/* .home-banner-section .slider-bg-image img {width: 100%; height: 100%; object-fit: cover; } */
/* .home-banner-section .slider-bg-image:before {background-color: rgba(241, 240, 231, 65%); content: ''; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 2;} */

.nav-ul2 .menu-link {
  color: var(--primaryColor2);
  padding: 0;
  margin-right: 28px;
}

.nav-ul2 .menu-link:hover {
  color: #fff;
}

.nav-div {
  padding-right: 18px;
}

.nav-ul2 {
  border-right: 1px solid var(--grey4);
  margin-right: 30px;
}

nav .btn.btn-primary {
  padding: 10px 24px;
}

.ullist-inline li.menu-item-has-children {
  position: relative;
}

.ullist-inline li .dropdown {
  position: absolute;
  left: 0;
  top: 42px;
  background: #fff;
  border-radius: 10px;
  width: 258px;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  filter: drop-shadow(2px -4px 5px rgba(0, 0, 0, 0.1));
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}

.ullist-inline li .dropdown:before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: -7px;
  left: 50px;
  transform: rotate(45deg);
  z-index: -2;
}

.ullist-inline li .dropdown li a {
  padding: 8px 12px;
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  color: var(--black) !important;
}

.ullist-inline li .dropdown li a:hover {
  transition: all 0.4s ease-in-out;
  /* color: var(--white) !important; */
}



.page-id-13 .main-middle-area {
  padding-top: 0;
}

/* Banner css start */

.home-banner-content p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.261;
  margin: 13px 0 45px;
  min-height: 46px;
}

.home-banner-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 120px;
}

.home-banner-image {
  text-align: right;
  position: relative;
}

.home-banner-image img {
  border-top-left-radius: 160px;
  display: block;
  margin-left: auto;
}

.red {
  color: var(--red);
}

.blue {
  color: var(--lightBlue);
}

.purple {
  color: var(--purple);
}

.orange {
  color: var(--primaryColor2);
}

.banner-tags li {
  width: 221px;
  background-color: #fff;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: 8px;
  fill: #FFF;
  filter: drop-shadow(0px 0px 41px rgba(0, 0, 0, 0.10));
  margin-bottom: 30px;
  animation: tag-bounce 2s ease infinite alternate;
  transition: all 0.4s ease-in-out;
}

.banner-tags li:nth-child(2) {
  animation: tag-bounce 2s 0.1s ease infinite alternate;
}

.banner-tags li:nth-child(3) {
  animation: tag-bounce 2s 0.2s ease infinite alternate;
}

.banner-tags {
  transition: all 0.4s ease-in-out;
}

.home-banner-image:hover .banner-tags {
  bottom: 60px;
  transition: all 0.4s ease-in-out;
}


@keyframes tag-bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(30px);
  }
}

.banner-tags li span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.63;
}

.banner-tags li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.banner-tags {
  position: absolute;
  left: -30px;
  top: 50%;
  padding-top: 30px;
  transform: translateY(-50%);
}



/* Banner Slider css start */

.bannerSlider .swiper-slide {
  padding: 274px 0 290px;
  width: 100%;
  height: 100%;
}

.sliderImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sliderImage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.sliderImage:before {
  content: '';
  background-color: rgb(241, 240, 231, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* .home-banner-section { height: calc(100dvh - 190px); } */
.bannerSlider,
.bannerSlider .swiper-wrapper,
.bannerSlider .swiper-slide {
  height: 100%;
}

.bannerSlider .home-banner-content {
  position: relative;
  z-index: 1;
  padding-left: calc((100% - 1280px) / 2);
  max-width: 54%;
}

.bannerSlider-navigation {
  position: absolute;
  bottom: 37px;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  right: calc((100% - 1280px) / 2);
  gap: 30px;
  z-index: 2;
}

.bannerSlider-navigation .swiper-button-next,
.bannerSlider-navigation .swiper-button-prev {
  position: static;
  margin: 0;
  background: rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.bannerSlider-navigation .swiper-button-next:hover,
.bannerSlider-navigation .swiper-button-prev:hover {
  background: var(--black);
}

.bannerSlider .swiper-pagination {
  padding-left: calc((100% - 1280px) / 2);
  bottom: 10px;
  padding-bottom: 37px;
}

.home-banner-content h1 {
  line-height: 78px;
}

.bannerSlider:before {
  content: '';
  height: 1px;
  width: 1280px;
  background-color: rgba(0, 0, 0, 0.10);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 107px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}

.home-banner-form form p {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.home-banner-form form {
  padding: 32px;
}

.home-banner-form form h4 {
  margin-bottom: 20px;
}

.full-col {
  grid-column: span 2;
}

.home-banner-form {
  width: 507px;
  position: absolute;
  right: calc((100% - 1280px) / 2);
  top: 231px;
  z-index: 1;
}

/* .bannerSlider {margin-top: -190px;} */


/* We help section */

.blue-bg {
  background-color: var(--primaryColor1);
  color: #fff;
}

.we-help {
  padding: 100px 0 49px;
}

.we-help h2 {
  font-size: 54px;
  line-height: normal;
}

.we-help .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding-bottom: 39px;
  margin-bottom: 75px;
}

.about-grid h3 {
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 34px;
}

.about-grid .img-container img {
  width: 511px;
  height: 341px;
  object-fit: cover;
}

.about-grid .grid-right p:not(:last-child) {
  margin-bottom: 30px;
}

.about-grid .grid-right .cta {
  margin-top: 46px;
}

.about-grid {
  display: grid;
  grid-template-columns: 511px 1fr;
  gap: 80px;
  position: relative;
}

.about-grid .grid-left {
  position: absolute;
  left: 0;
  bottom: -100px;
}

.about-grid .grid-right {
  grid-column: 2/3;
}

/* Our services */

.our-services {
  padding: 40px 0 60px;
  padding-top: 140px;
  background: #fff;
}

.our-services .title h2 {
  text-align: left;
}

.our-services .title {
  margin-bottom: 32px;
}

.service-grid .grid-col {
  background-color: var(--grey1);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey2);
}

.service-grid .grid-col .img-container {
  display: inline-block;
  width: 100%;
}

.service-grid .grid-col .img-container img {
  display: block;
  width: 100%;
  max-height: 213px;
  object-fit: cover;
  border-radius: 17px 17px 0px 0px;
  height: 100%;
}

.service-content h3 span {
  display: inline-block;
  color: var(--primaryColor2);
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
  margin-right: 12px;
}

.service-content h3 {
  margin-bottom: 8px;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.8s;
}

.service-content p {
  font-size: 18px;
  font-family: var(--WixMadeforDisplay);
  line-height: 1.26;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-grid {
  gap: 32px;
}

.service-content {
  padding: 20px;
}

.business-idea .idesSlider .wrap-content a,
.service-content a {
  color: #999;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s ease-in-out;
}

.business-idea .idesSlider .wrap-content a:hover,
.service-content a:hover {
  color: var(--primaryColor2);
}

.service-grid .grid-col:hover .service-content a,
.service-grid .grid-col:hover .service-content h3 {
  color: var(--primaryColor2);
}

.company-who-believes {
  padding-top: 60px;
  padding-bottom: 100px;
}

.company-who-believes h2 {
  font-weight: 600;
  line-height: normal;
  color: #000;
}

.logo-table {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--grey5);
  /* grid-gap: 1px; */
  background-color: var(--bgColor1);
  border-radius: 17px;
  overflow: hidden;
  width: 100%;
  overflow: hidden;
}

.logo-table li {
  padding: 35px;
  text-align: center;
  display: flex;
  min-height: 155px;
}

.logo-table li img {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-table li .img-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-self: center;
  max-width: 150px;
  margin: 0 auto;
  cursor: pointer;
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}

.company-who-believes .grid-wrapper {
  display: grid;
  grid-template-columns: 376px 1fr;
  gap: 44px;
}

.logo-table li:nth-child(3n+1),
.logo-table li:nth-child(3n+2) {
  border-right: 1px solid var(--grey5);
  border-bottom: 1px solid var(--grey5);
}

.logo-table li:nth-child(3n+3) {
  border-bottom: 1px solid var(--grey5);
}

.logo-table li:last-child {
  border-bottom: none;
}

.logo-table li .img-container:hover {
  filter: grayscale(0);
  transition: all 0.4s ease-in-out;
}

/* why choose section css */

.why-choose .title {
  margin-bottom: 42px;
}

.why-choose {
  padding: 85px 0 111px;
  background-color: #fff;
}

.beige-cards .grid-col {
  border: 1px solid var(--grey2);
  background-color: var(--grey1);
  border-radius: 11px;
  transition: all 0.4s ease-in-out;
}

.beige-cards .grid-col h4 {
  line-height: normal;
  margin-bottom: 15px;
  color: #000;
  transition: all .4s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .8s
}

.beige-cards .img-container {
  height: 100%;
  width: 100%;
  max-height: 170px
}

.beige-cards .grid-col p {
  color: #000;
  line-height: normal;
  transition: all .4s ease-in-out;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.beige-cards.grid-wrapper {
  gap: 30px;
}

.beige-cards .grid-col .img-container img {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  border-radius: 11px 11px 0px 0px;
  height: 100%;
}

.beige-cards .service-content {
  padding: 24px;
}

/* Our blogs css */

.our-blog {
  padding: 95px 0 117px;
}

.blog-col .img-container {
  width: 100%;
  height: 249px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.blog-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1);
  transition: all 0.8s;
}

.blog-col:hover .img-container img {
  transform: scale(1.1);
}

.blog-con {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 22px 19px 85px;
  position: relative;
  border-radius: 0 0 20px 20px;
}

.blog-con h4 {
  margin-bottom: 9px;
  transition: all 0.8s;
  min-height: 108px;
  transition: all 0.4s ease-in-out;
}

.blog-con h4 a {
  color: #000;
}

.blog-col:hover .blog-con h4 {
  background-size: 100% 100%;
}

.blog-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 500;
  display: inline-block;
}

.blog-con .cta {
  position: absolute;
  left: 18px;
  bottom: 30px;
  z-index: 1;
}

.our-blog .title {
  margin-bottom: 43px;
}

.blog-grid {
  gap: 30px;
}

.blog-grid .blog-date {
  width: 100%;
}

.blog-col:hover .blog-con h4,
.blog-col:hover .blog-con h4 a {
  color: var(--primaryColor2);
  transition: all 0.4s ease-in-out;
}


/* testimonial slider */

.testimonials {
  padding: 94px 0 120px;
}

.testimonials .title {
  margin-bottom: 43px;
}

.slider-grid .img-container img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.8s;
  border-top-right-radius: 160px;
}

.slider-grid .img-container {
  width: 383px;
  height: 512px;
  border-top-right-radius: 160px;
  overflow: hidden;
}

.slider-grid {
  display: grid;
  grid-template-columns: 383px 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid rgba(160, 160, 160, 0.20);
  padding-bottom: 30px;
}

.slider-grid:hover .img-container img {
  transform: scale(1.1);
}

.testimonial-review>p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  font-family: var(--WixMadeforDisplay);
  margin-bottom: 28px;
}

.author-detail {
  font-family: var(--Poppins) !important;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.author-desg {
  color: var(--grey3);
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  padding-bottom: 78px;
}



/* Get started section */

.get-started .grid-wrapper {
  background: var(--primaryColor2);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  overflow: hidden;
  align-items: center;
}

.get-started .grid-wrapper .left {
  padding: 103px 0 103px 57px;
}

.get-started .grid-wrapper .right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
  transform: scale(1);
}

.get-started .grid-wrapper .left h2 {
  color: #FFF;
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 17px;
}

.get-started .grid-wrapper .left p {
  color: #fff;
  font-family: var(--WixMadeforDisplay);
}

.get-started .grid-wrapper .cta {
  margin-top: 36px;
  text-align: center;
}

.get-started {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: -220px;
}

.get-started .grid-wrapper .right {
  height: 100%;
  width: 100%;
}

.get-started .grid-wrapper .right .img-container {
  height: 500px;
  overflow: hidden;
}

.get-started .grid-wrapper:hover .right img {
  transform: scale(1.1);
}

.get-started .cta .btn {
  background-color: var(--primaryColor1);
  color: var(--white);
  border-color: var(--primaryColor1);
}

.get-started .cta .btn:hover {
  border-color: var(--white);
}

/* Footer css start  */
.footer-menu li h3 {
  color: #FFF;
  font-family: var(--WorkSans);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.footer-menu-list {
  margin-top: 10px;
}

.footer-menu-list ul,
.footer-menu-list {
  display: grid;
  gap: 10px;
}

.footer-menu-list ul li a,
.footer-menu-list a {
  font-family: var(--WorkSans);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

footer {
  padding-top: 311px;
  position: relative;
  /* margin-top: 240px; */
}

.footer-menu li a:hover,
.footer-menu-list a:hover {
  color: var(--primaryColor2);
}

.footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 288px 1fr;
  align-items: flex-start;
  gap: 42px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

footer .logo img {
  display: block;
}

.copyright {
  padding: 28px 0 27px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.copyright p,
.copyright a {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--WorkSans);
}

.copyright a:hover {
  color: var(--primaryColor2);
}

.copyright p img {
  vertical-align: middle;
}



/* Contact us page css */

.contact-card {
  background: #fff;
  padding: 29px 20px 24px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.contact-card:last-child {
  margin-bottom: 0;
}

.contact-card .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 18px;
}

.contact-card .icon img {
  display: block;
}

.contact-card h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-grid .contact-desc {
  margin-bottom: 50px;
  margin-top: 3px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 19px;
}

.contact-card a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--primaryColor2);
}



/* About us page css */

.about-page .banner-tags li {
  animation: none;
  width: 322px;
}

.about-page .banner-tags {
  padding-top: 0;
  top: auto;
  transform: none;
  bottom: 20px;
  left: -160px;
}

.about-page .home-banner-content p {
  margin-bottom: 0;
  max-width: 527px;
  font-size: 16px;
}

.about-page .home-banner-content p+p {
  margin-top: 20px;
}

.performance {
  background: var(--primaryColor2);
  padding: 68px 0 74px;
}

.per-text {
  color: #fff;
  font-weight: 500;
  line-height: normal;
}

.performance-score {
  background: rgba(255, 255, 255, 0.10);
  padding: 37px 20px 78px;
  text-align: center;
  border-radius: 12px;
}

.performance-score p {
  font-size: 90px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
}

.performance-score span {
  display: inline-block;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.26;
}

.performance .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 477px;
  gap: 74px;
  align-items: center;
}

.mission-vision {
  padding: 100px 0;
}

.textblock-media {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 80px;
  align-items: center;
}

.textblock-media .img-container {
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  transition: all 0.4s ease-in-out;
}

.textblock-media .img-container:hover {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.textblock-media h3 {
  margin-bottom: 11px;
}

.textblock-media p {
  font-size: 18px;
  line-height: 1.26;
  margin-bottom: 30px;
}

.textblock-media p:last-child {
  margin-bottom: 0;
}

.vision {
  margin-top: 53px;
}

.textblock-media.vision .img-container {
  order: 1;
  background: linear-gradient(260deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  text-align: right;
}

.cards {
  padding-bottom: 100px;
}

.team {
  padding-top: 83px;
  padding-bottom: 201px;
  background-color: #fff;
}

.team h2 {
  text-align: center;
}

.team .title {
  margin-bottom: 32px;
}

.team-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-col .img-container {
  height: 100%;
  border-radius: 10px;
}

.team-col .img-container:hover img {
  transition: all 0.4s ease-in-out;
  transform: scale(1.1);
}

.team-col .img-container img {
  transition: all 0.4s ease-in-out;
}

.team-col {
  border-radius: 12px;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.team-name {
  background-color: #fff;
  width: 193px;
  border-radius: 12px;
  padding: 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.team-name span {
  color: var(--grey5);
  margin-top: 3px;
}

.team-grid {
  gap: 20px;
}


/* Login page css */

.login-header {
  height: 375px;
  background-color: var(--primaryColor1);
  text-align: center;
  padding-top: 110px;
  padding-bottom: 118px;
}

.login-header .title {
  margin-top: 30px;
}

.login-header .title h1 {
  font-size: 44px;
}

.login-container {
  width: 598px;
  margin: 0 auto;
  background: transparent;
  max-width: 100%;
  box-shadow: none;
  padding: 0;
  position: static;
}

.login-container input {
  padding: 15px 21px;
  border: 1px solid #b1b1b1;
  border-radius: 12px;
  margin-bottom: 10px;
}

.login-container label.error,
.login-container p.error {
  color: #e50d38;
}



.login-container button {
  width: 100%;
}

.login-form {
  margin-top: -90px;
}


/* New list page css */

.page-title .title {
  padding-top: 50px;
}

.page-title .title h4 {
  margin-bottom: 3px;
}


/* Tabs css */

.tab-articles>*:not(.tab-active),
.blog-listing>*:not(.blog-active) {
  display: none;
}

.main-tabs {
  margin-top: 26px;
}

.tab-list .tabs-item {
  display: inline-block;
}

.tabs-item .tab-button,
.cat-btn {
  display: flex;
  flex-wrap: wrap;
  width: 155px;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border: none;
  background: #FFF;
  color: #000;
  text-align: center;
  font-weight: 500;
  line-height: normal;
}

.tabs-item:first-child .tab-button {
  border-radius: 46px 0px 0px 46px;
}

.tabs-item:last-child .tab-button {
  border-radius: 0px 134px 134px 0px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.tab-button.active,
.cat-btn.title-active {
  color: var(--primaryColor2);
}

.blog-news-tab {
  padding-bottom: 100px;
}

.latest-blog .blog-col {
  display: grid;
  grid-template-columns: 560px 1fr;
  background-color: #fff;
  border-radius: 20px;
}

.latest-blog .blog-col .img-container {
  height: 358px;
  border-radius: 20px 0 0 20px;
}

.latest-blog .blog-con {
  padding: 55px 43px 81px 40px;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  height: auto;
}

.latest-blog .blog-col img {
  border-radius: 20px 0 0 20px;
}

.latest-blog .blog-con h4 {
  min-height: auto;
  margin-bottom: 15px;
  max-width: 343px;
}

.latest-blog .blog-date {
  margin-top: 10px;
}

.latest-blog .blog-con .cta {
  left: 40px;
  bottom: 57.5px;
  z-index: 1;
}

.blog-date.grey-text {
  color: var(--grey5);
}

.other-blogs {
  margin-top: 79px;
}

.other-blogs h2 {
  font-weight: 700;
  margin-bottom: 22px;
}

.blog-list-tabs .blog-cat-list {
  border-radius: 12px;
  background: #FFF;
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.blog-cat-list li {
  display: inline-block;
}

.cat-btn {
  width: auto;
  padding: 0;
}


.blog-con.bordered {
  border: 1px solid var(--grey5);
  border-radius: 20px;
}

.blog-con.bordered .blog-date {
  color: var(--grey5);
}

.blog-col-grid {
  gap: 30px;
}

.blog-con.bordered.no-top-bordered {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.courses-page .title {
  margin-bottom: 45px;
}

.blog-col {
  position: relative;
}

.course-grid {
  background: #fff;
  border-radius: 12px;
  padding: 30px 12px 50px 40px;
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.course-grid:last-child {
  margin-bottom: 0;
}

.course-grid .img-container {
  width: 100%;
  height: 238px;
  overflow: hidden;
  border-radius: 10px;
}

.course-grid .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.course-details h4 {
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.course-details p {
  margin-bottom: 15px;
}

.text-link a {
  color: #000;
  font-weight: 500;
  display: inline-block;
}

.text-link a:hover,
.url-link a:hover {
  color: var(--primaryColor2);
}

.text-link {
  margin-bottom: 13px;
}

.url-link a {
  color: #1F43FF;
  text-decoration: underline;
}

.courses-tabs {
  padding-bottom: 70px;
}

.course-grid:hover h4 {
  color: var(--primaryColor2);
  transition: all 0.4s ease-in-out;
}

.course-grid:hover .img-container img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

/* News List page css */

.news-detail-page {
  padding-top: 59px;
  padding-bottom: 88px;
}

.back-to-page {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--primaryColor2);
  gap: 3px;
}

.back-to-page:hover {
  color: var(--primaryColor2);
}

.arrow-right {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.back-to-page .arrow-right {
  transform: rotate(-180deg);
  transition: all 0.4s ease-in-out;
}

.back-to-page:hover .arrow-right {
  transform: rotate(-180deg) translateX(10px);
  transition: all 0.4s ease-in-out;
}

.news-detail-page .blog-date {
  font-size: 18px;
}

.news-banner {
  padding: 45px 0;
  position: relative;
}

.news-banner .img-container {
  height: 508px;
  width: 100%;
  position: relative;
}

.news-banner .img-container:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  border-radius: 17px;
}

.news-banner .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.youtube-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.news-detail-page p {
  line-height: 31px;
  margin-bottom: 20px;
}

.news-detail-page h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.36;
  margin-bottom: 7px;
}

.news-detail-page p img.size-full {
  margin-bottom: 20px;
  margin-top: 25px;
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.similar-news-inner {
  padding-top: 46px;
  border-top: 1px solid var(--grey5);
  padding-bottom: 100px;
}

.similar-news-inner h2 {
  margin-bottom: 43px;
}

/* Blog detail page */

.blog-image .img-container:before {
  content: none;
}

.blog-image {
  padding: 14px 0 76px;
}

.blog-page h2 {
  margin-top: 75px;
  margin-bottom: 16px;
}

.blog-content .img-container {
  height: auto;
  margin: 40px 0;
}

.blog-content .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 35px;
}

.blog-page {
  padding-bottom: 53px;
}

/* Service page css */

.services-banner h1 {
  font-size: 44px;
  margin-bottom: 61px;
  margin-bottom: 30px;
}

.services-banner {
  gap: 50px;
  grid-template-columns: 1fr 524px;
}

.form-wrapper h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 19px;
}

.form-wrapper form {
  padding-top: 19px;
}

.form-grid .form-group {
  margin-bottom: 0px;
}

.form-group .btn {
  margin-bottom: 0;
}

.form-grid {
  gap: 20px;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  gap: 17px;
}

.feature-list li .img-container {
  width: 30px;
  height: 30px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}

.contact-grid.services-banner .contact-desc {
  margin-bottom: 44px;
}

.form-wrapper .form-grid form {
  box-shadow: 0px 0px 44px 0px rgba(0, 0, 0, 0.1);
}

.services-banner {
  padding-bottom: 98px;
}


.service-nav li a {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
}

.service-nav li a:hover {
  color: var(--primaryColor2);
}

.service-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 41px;
}

.service-nav {
  background-color: #fff;
  padding: 26px 0;
  position: sticky;
  top: 132px;
  z-index: 99;
}

.service-nav .container {
  max-width: 1230px;
}

.steps-section {
  background-color: var(--primaryColor2);
  padding: 105px 0 111px;
}

.steps-section h2 {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}

.steps-list li .img-container {
  display: inline-flex;
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
}

.steps-list li p {
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.steps-list li {
  text-align: center;
  position: relative;
  padding-right: 102px;
  margin-right: 48px;
}

.steps-list li:before {
  content: '';
  width: 44px;
  height: 14px;
  background: url(../images/right-arrow-icon.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 57px;
}

.steps-list li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.steps-list li:last-child:before {
  content: none;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.service-advt {
  padding: 107px 0 120px;
}

.advt-grid {
  margin-top: 36px;
  gap: 30px;
}

.advt-grid .grid-item {
  background-color: var(--grey1);
  border-radius: 11px;
  padding: 24px 30px 42px 30px;
  border: 1px solid var(--grey2);
}

.advt-grid .grid-item .img-container {
  margin-bottom: 22px;
}

.advt-grid .grid-item h4 {
  margin-bottom: 15px;
  min-height: 79px;
}

.service-nav li a.active {
  color: var(--primaryColor2);
}

.service-disadvt {
  padding: 107px 0 119px;
  background-color: #FFDACD;
}

.service-disadvt h3 {
  text-align: center;
  margin-bottom: 36px;
}

.service-disadvt .grid-wrapper {
  gap: 30px;
}

.service-disadvt .grid-item {
  background-color: #fff;
  padding: 23px 29px 21px 41px;
  border: 1px solid var(--primaryColor2);
  border-radius: 11px;
}

.service-disadvt .grid-item h4 {
  margin-bottom: 9px;
}

.service-requirement {
  background-color: #fff;
  padding: 107px 0 0;
}

.service-requirement h3 {
  text-align: center;
  margin-bottom: 51px;
}

.req-grid .grid-item {
  padding: 33px 24px;
  text-align: center;
  border: 1px solid var(--grey2);
  border-radius: 11px;
}

.req-grid .grid-item:first-child {
  background-color: #EADAFE;
}

.req-grid .grid-item:nth-child(2) {
  background-color: #E4EDA5;
}

.req-grid .grid-item:last-child {
  background-color: var(--bgColor1);
}

.req-grid .img-container img {
  display: block;
  margin: 0 auto 10px;
}

.req-grid .grid-item h4 {
  max-width: 280px;
  margin: 0 auto 25px;
}

.req-grid .grid-item p {
  margin-bottom: 15px;
}

.req-grid {
  gap: 30px;
  padding-bottom: 120px;
}

.company-name {
  padding: 107px 0 120px;
}

.company-grid .grid-item {
  background-color: var(--grey1);
  padding: 0;
  border: none;
  border-radius: 11px;
}

.company-grid .grid-item h4 {
  padding: 14px 30px;
  background-color: var(--primaryColor2);
  max-width: 100%;
  margin: 0;
  border-radius: 11px 11px 0 0;
  text-align: left;
}

.company-grid .grid-item p {
  color: #000;
  text-align: left;
  padding: 20px 16px 35px 30px;
}

.company-grid {
  gap: 30px;
}

.service-process {
  padding: 103px 0 120px;
}

.process-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 452px;
  gap: 40px;
}

.process-list h4 {
  margin-bottom: 9px;
}

.process-list>li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 92px;
  padding-bottom: 14px;
  margin-bottom: 50px;
}

.process-list>li:last-child {
  margin-bottom: 0;
}

.process-list>li::before {
  content: counter(step-counter, decimal-leading-zero);
  font-size: 34px;
  color: var(--primaryColor2);
  font-weight: 500;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.process-list>li:after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: var(--grey5);
  position: absolute;
  left: 65px;
  top: 0;
}

.process-grid .img-container {
  width: 100%;
  height: 667px;
}

.process-grid .img-container img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-document {
  background-color: #fff;
  padding: 108px 0 120px;
}

.service-document h3 {
  text-align: center;
}

.doc-col {
  padding: 24px 15px 24px;
  border: 1px solid var(--grey2);
  border-radius: 11px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 208px;
}

.service-document h3 {
  margin-bottom: 57px;
}

.document-grid {
  gap: 30px;
}

.doc-col h4 span {
  display: block;
  font-size: 18px;
  font-weight: normal;
}

.service-deliverables {
  padding: 97px 0 116px;
}

.service-deliverables h3 {
  margin-bottom: 31px;
  text-align: center;
}

.deliverable-grid li {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 25px;
}

.deliverable-grid li:before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--primaryColor2);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1fr 395px 1fr;
  row-gap: 33px;
  justify-content: space-between;
  column-gap: 80px;
}

.faq {
  padding: 107px 0 110px;
  background-color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 721px;
  gap: 112px;
  align-items: start;
  line-height: normal;
}

.dropdown__content {
  max-height: 0;
  transition: 200ms;
  overflow: hidden;
  font-size: 18px;
}

.dropdown.active .dropdown__content {
  max-height: 100vh;
  transition: 400ms;
  padding-top: 20px;
}

.dropdown {
  border-bottom: 1px solid var(--grey5);
  padding-bottom: 25px;
}

.dropdown__title {
  font-size: 20px;
  font-weight: 600;
  padding-top: 30px;
  cursor: pointer;
  padding-right: 30px;
  position: relative;
}

.dropdown__title:before {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/dropdown.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 41px;
  transition: 400ms;
}

.dropdown:first-child .dropdown__title {
  padding-top: 0;
}

.dropdown:last-child {
  border-bottom: 0;
}

.dropdown:first-child .dropdown__title:before {
  top: 10px;
}

.dropdown.active .dropdown__title:before {
  transform: rotate(180deg);
  transition: 400ms;
}

.cta-block {
  padding: 80px 0;
}

.cta-inner {
  background-color: var(--primaryColor2);
  padding: 34px 30px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h4,
.cta-inner p {
  color: #fff;
}

.cta-inner p {
  margin-top: 7px;
}

.related-business {
  padding: 106px 0 120px;
}

.related-business .title {
  text-align: center;
}

.related-business .title h3 {
  margin-bottom: 20px;
}

.business-grid {
  gap: 30px;
  margin-top: 44px;
}

.bussiness-col {
  background-color: rgba(255, 255, 255, 15%);
  padding: 30px 30px 28px;
  border-radius: 17px;
}

.bussiness-col .img-container {
  width: 154px;
  height: 115px;
  margin-bottom: 11px;
}

.bussiness-col .img-container img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}

.bussiness-col p {
  margin-top: 12px;
  color: var(--primaryColor2);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.related-service {
  padding-top: 110px;
  padding-bottom: 90px;
}

.related-service h3 {
  text-align: center;
  margin-bottom: 34px;
}

.related-service .company-grid .grid-item h4 {
  color: #fff;
}

.related-service .company-grid .grid-item p {
  padding: 20px 32px 18px;
}

.related-service .company-grid .grid-item {
  padding-bottom: 24px;
}

.related-service .company-grid .grid-item .cta {
  padding: 0 30px;
}

.service-compare {
  padding: 107px 0 120px;
  background-color: var(--primaryColor2);
}

.service-compare .title {
  text-align: center;
}

.service-compare h3 {
  margin-bottom: 9px;
  color: #fff;
}

.service-compare p {
  color: #fff;
}

.blog-content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
}

.blog-content ul li:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primaryColor2);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Comparison section css */
.compare-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.compare-list li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 33px;
  padding: 0 30px;
}

.compare-list {
  border: 1px solid var(--grey7);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 20%);
  padding-top: 101px;
}

.compare-grid> :nth-child(2) {
  min-width: 100%;
}

.compare-content {
  border: 1px solid var(--grey7);
  border-radius: 12px;
  background-color: #fff;
}

.slide-title {
  text-align: center;
  padding: 23px 20px 25px;
  border-bottom: 1px solid #C9CED9;
  margin-bottom: 22px;
}

.slide-title p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.compare-content ul li {
  font-size: 14px;
  margin-bottom: 33px;
  padding: 0 7px;
  text-align: center;
}

.compareSlider,
.compareSlider .swiper-wrapper,
.compareSlider .swiper-slide,
.compare-content {
  height: 100%;
}

.compareSlider .swiper-button-next,
.compareSlider .swiper-rtl .compareSlider swiper-button-prev,
.compareSlider .swiper-button-prev,
.compareSlider .swiper-rtl .compareSlider .swiper-button-next {
  width: 40px;
  height: 40px;
}

.compare-slider {
  position: relative;
}

.compareSlider {
  position: static;
}

.compareSlider .swiper-button-prev,
.compareSlider .swiper-rtl .swiper-button-next {
  right: auto;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.compareSlider .swiper-button-prev:after, 
.compareSlider .swiper-rtl .swiper-button-next:after {
  transform: rotate(180deg);
}

.compareSlider .swiper-button-next,
.compareSlider .swiper-rtl .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

/* business idea section css */

.business-idea {
  padding-top: 77px;
  padding-bottom: 88px;
}

/* .business-idea .idesSlider p {
  padding: 24px;
  background-color: #fff;
  border-radius: 11px;
  min-height: 123px;
  font-size: 20px;
  transition: all 0.8s;
} */

.business-idea .idesSlider .wrap-content {
  padding: 24px;
  background-color: #fff;
  border-radius: 11px;
  min-height: 123px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.8s;
}

.business-idea .idesSlider .wrap-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.8s;
    cursor: pointer;
}

.business-idea .idesSlider p:hover {
  color: var(--primaryColor2);
}

.business-idea {
  padding-left: calc((100% - 1140px) / 2);
}

.business-idea .title {
  margin-bottom: 38px;
}

.business-idea .swiper-slide img {
  height: 249px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.business-idea h2 {
  display: inline-block;
}

.business-idea .idesSlider .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: auto;
  left: 70px;
}

.business-idea .idesSlider .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: auto;
  left: 0;
}

.business-idea .idesSlider {
  padding-bottom: 80px;
}

.idesSlider.swiper-backface-hidden .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.idesSlider.swiper-backface-hidden .swiper-slide:hover img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

/* Design changes */

.about-grid .grid-left .img-container {
  display: flex;
  flex-wrap: wrap;
  width: clamp(100px, 100%, 511px);
  height: clamp(230px, 100%, 341px);
  max-width: 100%;
  overflow: hidden;
  position: relative
}

.about-grid .grid-left .img-container img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all .8s
}

.about-grid .grid-left .img-container:hover img {
  transform: scale(1.1)
}

.service-grid .grid-col .img-container {
  height: 213px;
  overflow: hidden;
  border-radius: 17px 17px 0 0
}

.service-grid .grid-col .img-container img {
  border-radius: 0;
  transition: all .8s;
  transform: scale(1)
}

.service-grid .grid-col:hover .img-container img {
  transform: scale(1.1)
}

.logo-table li .img-container {
  transform: scale(1);
  transition: all .8s
}

.logo-table li:hover .img-container {
  transform: scale(1.1);
  filter: none;
}

.beige-cards .img-container {
  height: 170px;
  border-radius: 11px 11px 0px 0px;
  overflow: hidden;
}

.beige-cards .grid-col .img-container img {
  height: 100%;
  max-height: 100%;
  transform: scale(1);
  transition: all 0.8s;
  border-radius: 0;
}

.beige-cards .grid-col:hover .img-container img {
  transform: scale(1.1)
}

.beige-cards .grid-col:hover h4 {
  color: var(--primaryColor2);
}

/* End of Design changes */

.screen-reader-response {
  display: none;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
  margin-top: 10px;
  color: var(--primaryColorHover2);
  font-weight: 500;
  font-size: 14px;
}

/* .blog-news-tab .blog-col .blog-con {height: calc(100% - 249px);} */

.cards-has-icon .img-container {
  width: 60px;
  height: 60px;
  margin-left: -16px;
}

.cards-has-icon .grid-col {
  padding: 21px 16px 42px 30px;
}

.wpcf7-spinner {
  width: 25px;
  height: 25px;
  border: solid 3px var(--primaryColor2);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1.0s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

.wpcf7-form.submitting .wpcf7-spinner {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

.wpcf7-form.submitting .wpcf7-submit {
  opacity: 0.6;
  cursor: not-allowed;
}

header .header-div .ullist-inline li.menu-item-has-children span {
  transition: all 0.4s ease-in-out;
  /* filter: invert(1) brightness(1); */
}

.header-div .ullist-inline li.current-menu-parent>span {
  filter: invert(1) brightness(1);
}

header .header-div .ullist-inline li.menu-item-has-children.openSubMenu span {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}



section.common-banner img {
  width: 100%;
  height: auto;
}

.contact-banner .right h4 {
  padding-bottom: 20px;
}

.service-nav ul {
  gap: 20px;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 20px;
}

.service-nav li a {
  white-space: nowrap;
  font-size: 18px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar {
  height: 6px;
  background-color: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: lightgray;
  height: 6px;
  border-radius: 10px;
}

@media only screen and (min-width: 767px) {
  .steps-list {
    flex-wrap: nowrap;
  }
}

.why-us-title-item.grid-item h4 {
  border-radius: 11px;
}

.why-us-title-item.grid-item {
  background: var(--primaryColor2);
}

.req-grid .grid-item:nth-child(3n + 1) {
  background-color: #EADAFE;
}

.req-grid .grid-item:nth-child(3n - 1) {
  background-color: #E4EDA5;
}

.req-grid .grid-item:nth-child(3n + 3) {
  background-color: var(--bgColor1);
}

.service-rq-new .img-container {
  min-height: 72px;
}

.service-rq-new .img-container img,
.service-advt .img-container img {
  object-fit: contain;
  height: 72px;
}

.dropdown__content ul {
  padding: 0 0 0 20px;
}

.dropdown__content ul li {
  list-style: disc;
  margin: 0 0 10px;
}

.process-list>li ol {
  padding: 0 0 0 18px;
}

.process-list>li ol li {
  list-style: decimal;
  padding: 0 0 5px;
}

.process-list>li ul li {
  list-style: disc;
  padding: 0 0 5px;
}

.process-list>li ul {
  padding: 0 0 0 18px;
}

.process-list>li p {
  margin-bottom: 10px;
}

.service-requirement .grid-item ul li {
  list-style: disc;
  margin: 0 0 10px;
}

.service-requirement .grid-item ul {
  padding: 0 0 0 18px;
}

/* Common style */
.blog-page h3 {
  margin-block: 25px 15px;
}

.blog-page ol {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
  counter-reset: step-counter;
}

.blog-page ol li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  list-style: none;
  counter-increment: step-counter;
}

.blog-page ol strong {
  font-weight: 600;
}

.blog-page ol li:before {
  content: counter(step-counter, decimal-leading-zero)".";
  color: var(--primaryColor2);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  text-align: right;
  width: 18px;
}

.blog-page a {
  color: var(--primaryColor2);
}

.blog-page table {
  width: 100%;
  margin-block: 30px;
  color: inherit;
  vertical-align: top;
  background: #fff;
  border-radius: 12px;
  outline: 1px solid #C9CED9;
}

.blog-page table td,
.blog-page table th {
  padding: 8px 20px;
}

.blog-page table thead th {
  font-weight: 600;
  padding: 12px 20px;
  border-bottom: 1px solid #C9CED9;
}

.blog-content ul, .blog-content ol, .blog-content pre {
  margin-block: 16px;
}

.blog-page h5 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-block: 20px;
  font-weight: 600;
}

.blog-page h6 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-block: 20px;
  font-weight: 600;
}

.news-detail-page p strong {
  font-weight: 600;
}

.news-detail-page img,
.news-detail-page video {
  object-fit: contain;
  max-width: 100%;
}

.blog-page .news-banner.blog-image + .blog-content > :first-child {
  margin-top: 0;
}

.company-grid .grid-item .grid-desc-dv p {
  padding: 0;
}

.company-grid .grid-item .grid-desc-dv {
  padding: 20px 16px 35px 30px;
  display: grid;
  row-gap: 16px;
  color: #000;
  font-size: 18px;
  line-height: 1.33;
}

.grid-item.why-us-title-item .grid-desc-dv {
  padding: 0;
}

.advt-grid .grid-item .text-container {
  display: grid;
  row-gap: 16px;
  font-size: 18px;
  line-height: 1.33;
}

.advt-grid .grid-item .text-container ul li {
  list-style: disc;
  padding-bottom: 8px;
}

.advt-grid .grid-item .text-container ol li {
  list-style: decimal;
  padding-bottom: 8px;
}

.advt-grid .grid-item .text-container ol,
.advt-grid .grid-item .text-container ul {
  padding-left: 20px;
}

.doc-col .img-container .sub-title {
  margin-top: 10px;
  display: block;
}

.blog-content.blog-page {
  padding-block: 0;
  margin-block: 0;
}

.blog-content.blog-page > :first-child {
  margin-top: 0;
  padding-top: 0;
}
/* End of Common style */

/* Auth section design */

.forgot-pass {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 5px 0 0;
}

.btn-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.link-primary-cst {
  color: #F15B25;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.8s;
}

.link-primary-cst:hover {
  color: var(--primaryColor1);
}

.auth-form .form-group:not(:last-child) {
  margin-bottom: 30px;
}

.btn.btn-primary.btn-primary-56 {
  padding-block: 15px;
}

.acc-msg-btm-dv {
  text-align: center;
  margin: 20px 0 0;
}

.acc-msg-btm-dv p {
  color: var(--primaryColor1);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.auth-form {
  margin-bottom: 60px;
}

.auth-form .login-container input {
  margin-bottom: 5px;
  box-shadow: none;
}

.auth-form .form-control {
  color: #000 !important;
}

.auth-form .form-control::-webkit-input-placeholder {
  color: var(--grey5);
}

.auth-form .form-control::-moz-placeholder {
  color: var(--grey5);
}

.auth-form .form-control:-ms-input-placeholder {
  color: var(--grey5);
}

.auth-form .form-control:-moz-placeholder {
  color: var(--grey5);
}

.auth-form .form-control:focus {
  border-color: #F15B25;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  color: var(--grey5);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.checkbox-label a {
  color: #F15B25;
  text-decoration-line: underline;
  transition: all 0.8s;
}

.checkbox-label a:hover {
  color: var(--primaryColor1);
}

.checkbox-label .chk-span {
  position: relative;
  padding: 0 0 0 26px;
}

.checkbox-label .checkbox {
  visibility: hidden;
width: 0;
}

.checkbox-label .chk-span::before {
  content: "";
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey5);
  border-radius: 6px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0px;
  cursor: pointer;
}

.checkbox-label .chk-span::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='9' viewBox='0 0 10 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66675 5.45833C1.66675 5.45833 3.00008 6.21877 3.66675 7.33333C3.66675 7.33333 5.66675 2.95833 8.33341 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.checkbox-label .checkbox:checked + .chk-span::before {
  background-color: #F15B25;
  border-color: #F15B25;
}

.code-msg-dv {
  padding-top: 5px;
  margin: 0;
}

.code-msg-dv,
.code-msg-dv p {
  text-align: left;
  margin: 0;
}

.auth-form .login-container label.error, 
.auth-form .login-container p.error {
  color: var(--primaryColorHover2) !important;
  font-weight: 500;
  font-size: 14px;
}

.auth-form form {
  padding: 30px 20px;
  border-radius: 12px;
}

.success-div {
  padding-bottom: 60px;
}

.success-inner-div {
  padding: 30px 20px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  max-width: 445px;
  margin: 0 auto;
  width: 100%;
}

.success-div .content-dv {
  margin: 30px 0;
}

.success-div h2 {
  color: #171717;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 10px;
}

.success-div p {
  color: var(--grey5);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.chk-icon-dv {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px 0;
}

.chk-icon-span svg {
  position: relative;
  top: 4px;
}

.chk-icon-span {
  width: 80px;
  height: 80px;
  background: #F0F4F9;
  border: 1px solid #F0F4F9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px;
}

.chk-icon-span::before {
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  border: 2px solid #F0F4F9;
  border-radius: 100%;
  position: absolute;
}

.form-group-inner-row {
  position: relative;
}

.form-group .btn-pass {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth-form .form-control.password-input {
  padding-right: 56px;
}

.form-group .btn-pass i {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  position: relative;
  background-image: url(../images/eye-hide.svg);
}

.form-group .btn-pass .eye-img {
  background-image: url(../images/eye.svg);
}

.form-group .btn-pass .eye-slash-img {
  background-image: url(../images/eye-hide.svg);
}

.auth-inner-heading {
  margin: 0 0 30px;
}

.auth-inner-heading h2 {
  color: #171717;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 10px;
}

.auth-inner-heading p {
  color: var(--grey5);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.msg-err-succ-dv p.success {
  color: #00a800;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 15px auto 0;
  background: #00a8001a;
  border-radius: 8px;
  padding: 8px 16px 6px;
  border: 1px dashed #00a800;
  text-transform: uppercase;
}

.msg-err-succ-dv p.error {
  text-align: center;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  margin: 15px auto 0;
  background: rgb(221 148 118 / 10%);
  border-radius: 8px;
  padding: 8px 16px 6px;
  border: 1px dashed #DD9476;
  text-transform: uppercase;
}

/* End of Auth section design */

label#agreement-error {
    margin-top: 10px;
}


/* After login page css */

.after-login .login-footer {
  padding-top: 56px;
  padding-bottom: 27px;
}

.after-login .footer-grid ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s ease-in-out;
}

.after-login .footer-grid ul li a:hover {
  color: var(--primaryColor2);
  transition: all 0.4s ease-in-out;
}

.after-login .footer-grid ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.after-login .footer-btm p,
.after-login .footer-btm a {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  font-family: var(--WorkSans);
  transition: all 0.4s ease-in-out;
}

.after-login .footer-btm a:hover {
  color: var(--primaryColor2);
  transition: all 0.4s ease-in-out;
}

.after-login .footer-btm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.after-login header .header-div {
  top: 0;
}

.after-login .main-middle-area {
  padding-top: 162px;
}

.after-login .title h2 {
  font-size: 34px;
  font-weight: 500;
}


#vertical-tab {
  padding: 60px 0;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
  padding: 15px 20px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  font-size: 0;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 16px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
  background-color: var(--primaryColor2);
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
  color: #fff;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:last-child {
  margin-bottom: 0;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  word-wrap: break-word;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
  display: none;
  padding: 35px 45px 15px 25px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  margin: 0 0 20px;
}
.vertical-tab-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  margin: 0 0 20px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
  display: block;
}
#vertical-tab .mobile-vertical-tab {
  display: none;
  position: relative;
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
  padding: 16px;
  background-color: #5d9ccc;
  border-bottom: 1px solid #fff;
  position: relative;
  text-align: center;
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: #f7dd4b;
}


.tab-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.tab-grid .grid-left {
  max-height: 650px;
  overflow-y: auto;
}

.tab-grid .grid-right {
  padding-left: 60px;
  position: relative;
}

.tab-grid .grid-right:before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: var(--grey5);
  position: absolute;
  left: 30px;
  top: 0;
}

.tab-grid .grid-right .vertical-tab-content {
  background-color: #fff;
  padding: 22px 28px 25px 38px;
  border-radius: 16px;
}

.pay-now .btn.btn-primary {
  font-size: 16px;
  padding: 11px 24px;
  line-height: normal;
  margin-bottom: 10px;
}

.pay-now p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.333;
  margin-bottom: 0;
}

.pay-now p a {
  color: var(--primaryColor2);
}

.service-fees {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--grey5);
}

.pay-now {
  text-align: right;
}


.form-wizard .form-container {
  clear: both;
  display: none;
  left: 100%;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}

.form-wizard .form-container.active {
  display: block;
}

.form-wizard .steps ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#vertical-tab .form-wizard-tab {
  background-color: transparent;
  padding: 0 !important;
  border-radius: 0;
}

.form-wizard .steps ul li {
  padding: 0;
  text-align: center;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding-right: 61px;
}


.form-wizard .steps ul li:before {
  content: '';
  width: 100%;
  background-color: #F1D1BE;
  height: 3px;
  position: absolute;
  left: 3px;
  top: 19px;
}

.form-wizard .steps ul li:last-child {
  padding-right: 0;
}

.form-wizard .steps ul li:last-child:before {
  content: none;
}

.form-wizard .steps ul li span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  background-color: #F1D1BE;
  color: #fff;
  border-radius: 100%;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  z-index: 1;
}

.form-wizard .steps ul li span:before {
  content: '';
  width: 22px;
  height: 22px;
  background-color: var(--primaryColor2);
  border-radius: 100%;
  position: absolute;
  z-index: -1;
}

.form-wizard .steps ul li.active span {
  background-color: var(--primaryColor2);
}

.form-wizard .steps ul li:not(:last-child):after {
  content: '';
  width: 0%;
  height: 3px;
  background-color: var(--primaryColor2);
  position: absolute;
  left: 2px;
  top: 19px;
  transition: width 0.4s ease-in-out;
}

.form-wizard .steps ul li.completed:after {
  width: 100%;
  transition: width 0.4s ease-in-out;
}

.form-wizard .steps {
  margin-bottom: 40px;
}

#vertical-tab .form-container .form-group label {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: normal;
  display: block;
}

#vertical-tab .form-container form {
  padding: 0;
}

#vertical-tab .form-title {
  margin-bottom: 25px;
}

.form-title p {
  margin-bottom: 0 !important;
  margin-top: 20px;
}

#vertical-tab .form-title:not(:first-child) {
  padding-top: 35px;
  margin-bottom: 20px;
}

#vertical-tab .form-title span {
  display: block;
  margin-top: 8px;
  color: var(--grey5);
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
}

.input-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#vertical-tab .form-wrapper {
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

#vertical-tab form .form-group.full-col {
  grid-column: 1/3;
}

#vertical-tab .form-group:not(:last-child) {
  margin-bottom: 0;
}

.myContainer {
  padding-bottom: 80px;
  position: relative;
}

.myContainer .btn-group {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  gap: 20px;
  width: 100%;
}

.btn-group input[type="button"], 
  .btn-group input[type="submit"] {
  width: auto;
  display: inline-block;
  padding: 11px 24px;
  border-radius: 42px !important;
  width: 126px;
  flex: none;
  text-align: center;
}

.file-group {
  /* margin-top: 24px; */
}

.vertical-tab-content .form-subtitle {
  color: var(--grey5);
  font-size: 18px;
  line-height: 1.5;
  grid-column: 1/3;
  margin-bottom: 0;
}

/* Form accordian css */

.accordion-panel {
	margin: 0;
	padding-bottom: .8rem;
	display: none;
}


.form-accordion {
  max-width: 620px;
}

.form-accordion .accordion-item {
  border: 1px solid var(--grey5);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.form-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-thumb {
  position: relative;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.accordion-thumb:before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/chevron-down.svg) no-repeat;
  background-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s ease-in-out;
}

.accordion-panel {
  padding-top: 20px;
}

.form-accordion .accordion-item.is-active .accordion-thumb:before {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}

.add-more-shareholder {
  padding-top: 28px;
  margin-bottom: 0 !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.add-more-shareholder img {
  width: 24px;
  height: 24px;
}

p.full-col {
  margin-bottom: 0;
}

.rupee-icon,
.percent-icon {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  position: absolute;
  left: 20px;
  bottom: 8px;
}

.curr-input {
  position: relative;
}

.curr-input > input {padding-left: 45px;}

.percent-icon {
  left: auto;
  right: 20px;
}

.submit-grp {
  justify-content: space-between;
  width: 100%;
}

/* service list css  */

.service-list {
  background-color: #fff;
  padding: 19px 24px 24px;
  border-radius: 16px;
  margin-top: 30px;
}

.service-list h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.service-detail {
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
  color: #717680;
}

.service-detail span {
  display: inline-block;
  color: #000;
}

.service-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 16px;
  max-width: 698px;
}

.service-list-wrapper {
  padding-bottom: 80px;
}

.btn-group .btn {
  padding: 11px 24px;
  font-size: 16px;
}

.btn-group .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
}

.service-list .btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #B1B1B1;
  margin-top: 24px;
  border-radius: 0;
}

/* Profile page css */

.profile-tab .tab-grid {grid-template-columns: 260px 1fr;}
.profile-tab .form-container { padding: 30px; background-color: #fff; border-radius: 20px;}
.profile-tab form .form-group {position: relative;}
.profile-tab form .form-group .eye-icon { position: absolute; top: 52px; right: 20px; cursor: pointer;}
.resend-code {margin-bottom: 0 !important; margin-top: 10px !important; color: #B1B1B1 !important; font-size: 16px !important;}
.resend-code span {display: inline-block; color: #F15B25; font-weight: 600; cursor: pointer;}
.profile-tab .vertical-tab-content {padding: 0 !important; background-color: transparent !important; border-radius: 0 !important;}

/* .home-banner-section {padding-top: 190px;} */


.page-template-template-service-list .main-middle-area,
.page-template-template-my-profile .main-middle-area,
.page-template-template-my-service-list .main-middle-area {
  padding-top: 110px;
}

.page-id-13 .home-banner-section {padding-top: 0;}

.file-exists {color: #F15B25; font-size: 14px; font-weight: 600; line-height: 1.42; position: relative;  margin-bottom: 10px; display: inline-block;}
.file-exists:before {content: ''; width: 100%; height: 1px; background: #F15B25; position: absolute; left: 0; bottom: 0; transition: all 0.4s ease-in-out;}
.file-exists:hover:before {background-color: #0a58ca; transition: all 0.4s ease-in-out;}
.curr-input > input.shareholder-per {padding-left: 21px;}
.sign-field {margin-top: 15px;}
#clear-signature {background-color: var(--primaryColor2); border: 1px solid var(--primaryColor2); color: #fff; box-shadow: none; outline: none; transition: all 0.3s; line-height: 1.5; font-weight: 600; font-size: 16px; padding: 6px 18px; border-radius: 30px; margin-top: 20px;}

#signatureForm .checbox-input label {cursor: not-allowed;}

.loader:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}

.loader:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  pointer-events: none;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-animation: loader-anim  1s ease-out infinite;
  animation: loader-anim 1s ease-out infinite;
  z-index: 99999;
  position: fixed;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

@keyframes loader-anim {
  0% {
    transform: scale(0);
    opacity: 0;
    transform-origin: center center;
  }
  50% {
    opacity: 1;
  }
  100% {
      transform: scale(1);
      opacity: 0;
      transform-origin: center center;
  }
}

/* .myaccount-dash .nav-ul1 li {font-size: 14px; color: #000; font-weight: 500; padding: 10px 9px !important; display: inline-block; padding-right: 30px !important;} */
.myaccount-dash .nav-ul1 li {font-size: 14px; color: #000; font-weight: 500; padding: 10px 9px !important;}
.myaccount-dash .nav-ul1 li.menu-item-has-children ul {position: absolute; left: 0; top: 42px; background: #fff; border-radius: 10px; width: 140px; padding: 7px 10px; transition: all 0.4s ease-in-out; filter: drop-shadow(2px -4px 5px rgba(0, 0, 0, 0.1)); opacity: 0; visibility: hidden; transform: translateY(50px);}
.myaccount-dash {width: 140px;}
.myaccount-dash .nav-ul1 li.menu-item-has-children ul li {padding: 0 !important; position: relative;}
.myaccount-dash .nav-ul1 li.menu-item-has-children:before {content: ''; width: 16px; height: 16px; position: absolute; background: url(../images/chevron-down.svg) no-repeat; background-position: center center; background-size: 24px; right: 8px; top: 12px; display: inline-block; cursor: pointer; transition: all 0.4s ease-in-out;}
.myaccount-dash .nav-ul1 li.menu-item-has-children ul li:before {content: none;}
.myaccount-dash .nav-ul1 li.menu-item-has-children ul li a {width: 100%;}
.myaccount-dash .nav-ul1 li.menu-item-has-children:hover ul { opacity: 1; visibility: visible; transform: translateY(0); height: auto;}

.myaccount-dash .nav-ul1 li.menu-item-has-children {padding-right: 30px !important; cursor: pointer; transition: all 0.4s ease-in-out;}
.myaccount-dash .nav-ul1 li.menu-item-has-children:hover {background: #220845; color: #fff !important; transition: all 0.4s ease-in-out; border-radius: 10px;}
.myaccount-dash .nav-ul1 li.menu-item-has-children:hover:before {filter: invert(1) brightness(1); transition: all 0.4s ease-in-out;}
.page-template-template-service-list  header .header-div .nav-div {padding-right: 0;}

.myaccount-dash .nav-ul1 li.menu-item-has-children ul {left: auto; right: 0;}

.myaccount-dash .nav-ul1 li.menu-item-has-children ul:before { content: ''; width: 20px; height: 20px; background-color: #fff; position: absolute; top: -7px; right: 50px; transform: rotate(45deg); z-index: -2;}

/* #shareholderForm1804 {grid-template-columns: 1fr !important;}
.shareholders-list .accordion-panel {display: grid; grid-template-columns: 1fr 1fr; gap: 20px;} */

.form-wrapper.shareholder-form {grid-template-columns: 1fr !important;}

.shareholders-list .accordion-item.is-active .accordion-panel {display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: flex-end;}
.service-list-wrapper .title {display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;}
.service-list-wrapper .title .btn { padding: 14px 20px; min-height: auto;}


.shareholders-list .shareholder-template {position: relative;}
.remove-more-shareholder,
.remove-more-accountant {position: absolute; right: 0; top: 0; margin: 0 !important; right: 60px; top: 22px; font-size: 14px !important; color: #F15B25 !important; font-weight: 500 !important; cursor: pointer; display: inline-flex; align-items: center; gap: 5px;}
.remove-more-shareholder img,
.remove-more-accountant img {width: 18px; filter: brightness(0) saturate(100%) invert(42%) sepia(23%) saturate(3766%) hue-rotate(346deg) brightness(98%) contrast(94%);}


#success-msg,
.success {color: #00a800 !important; margin-bottom: 0 !important; margin-top: 10px !important; font-size: 14px !important; font-weight: 500 !important;}

.btn-pass.password-view {top: 36px; right: 3px; }

.form-group .btn-pass.password-view .eye-slash-img.eyes-off {background-image: url(../images/eye.svg);}
/* .news-detail-page.blog-page {padding-top: 210px;} */
.custom-sinature label + div {display: inline-block;}

.forgot-pass-group .btn-pass.password-view,
#sign-form .btn-pass.password-view{top: 0;}
#change-num-otp-form p { font-size: 16px; padding-top: 10px; font-weight: 500; color: var(--primaryColor1);}
.error {color: var(--primaryColorHover2) !important; font-size: 14px !important; font-weight: 500 !important; margin-top: 10px !important; margin-bottom: 5px !important;}
#change-num-err-msg {
  margin-top: 10px;
  font-size: 14px;
}

/* #change-num-success-msg {
  margin-bottom: 0;
  color: #00a800 !important;
  font-size: 14px;
  padding-top: 10px;
  font-weight: 500 !important;
} */

.page-template-template-my-service-list .service-list .btn-group {justify-content: space-between; gap: 20px;}

.shareholders-percetange-group {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-template-template-my-profile footer,
.page-template-template-my-service-list footer,
.page-template-template-service-list footer {
  padding-top: 80px;
}


.contact-grid.services-banner {
  padding-top: 50px;
}

.discount-info {
  background-color: transparent;
  padding: 0;
}

.coupon-details {
    background: #f1f0e7;
    padding: 20px;
    border-radius: 20px;
    width: 360px;
}

.coupon-section {
  position: relative;
}

.apply-coupon.btn-primary.btn {
    padding: 8px 13px;
    font-size: 12px;
    min-height: auto;
    position: absolute;
    right: 6px;
    top: 7px;
}

.coupon-code {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px !important;
    padding-right: 70px;
}

.discount-info p {
  margin: 0;
  font-size: 16px;
}

.remove-coupon {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--primaryColor2);
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.4s ease-in-out;
}

.remove-coupon:hover {
  color: #4f4fd6;
  transition: all 0.4s ease-in-out;
}

.coupon-message {
  min-height: 21px;
}

#vertical-tab .accountant-form.form-wrapper {
  display: block;
}

.accountant-form .is-active .accordion-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.accountant-form .form-group label {
  margin-bottom: 0 !important;
}

.add-more-accountant {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px !important;
  cursor: pointer;
}

.accountant-template {
  position: relative;
}

.accountants-list .accordion-thumb {width: 100%;}
/* .remove-more-accountant img { width: 18px; vertical-align: middle;}
.remove-more-accountant {  font-weight: 400;   position: absolute; right: 50px; top: 17px;} */

.remove-more-accountant { right: 50px; top: 21px;}

#custom-pwa-install-btn {
  display: flex;
  position: fixed;
  z-index: 99999;
  top: 50%;
  right: 0;
  background: #f15b26;
}

/**/

.vertical-tab { display:grid;row-gap:8px;}
.vertical-tab .accordion-section { color:#000;background:#ffffff;border-radius:8px;font-size:14px;line-height:1.5;}
.vertical-tab .accordion-header { background:#fff;padding:12px;border-radius:8px;text-transform: uppercase;font-weight: 500;}
.vertical-tab .accordion-section.active .accordion-header{background:#f15a26;color:#fff;}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab{margin:0;padding:8px 0;text-align:left;border-radius:0;border-bottom:1px solid #ddd;}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:last-child{border-bottom: none;}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title { font-size:14px;line-height:1.5;}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active { background-color:transparent;}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title{color:var(--primaryColor2);}
.vertical-tab .accordion-content{height:auto!important;display:none;}
.vertical-tab .accordion-section.active .accordion-content{display:grid;padding: 8px 24px;}

.vertical-tab .accordion-section .accordion-icon::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    background-size:contain;background-position:center;display:block;width:18px;height:18px;
}

.vertical-tab .accordion-section.active .accordion-icon::before {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.vertical-tab .accordion-section .accordion-icon{font-size:0;}

.tab-grid .grid-left::-webkit-scrollbar-track { background-color:#fff;}
.tab-grid .grid-left::-webkit-scrollbar { height:2px;width:4px;background-color:#c1c1c1;border-radius:10px;}
.tab-grid .grid-left::-webkit-scrollbar-thumb{background-color:lightgray;height:2px;border-radius:10px;}
.tab-grid .grid-left{padding-right:8px;}


.business-idea .idesSlider .wrap-content a {
  margin-top: auto;
}