html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Raleway", sans-serif;
  color: #333;
  background-color: #150210;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 94px;
}

.border-bottom {
  border-bottom: 1px solid #ffffff20;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.error-msg {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #000;
}

a:hover {
  color: #9b2480;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.columns.gap-7 {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.gap-7 > .column {
  padding-left: 96px;
  padding-right: 96px;
}

.columns.gap-6 {
  margin-left: -84px !important;
  margin-right: -84px !important;
}

.gap-6 > .column {
  padding-left: 84px;
  padding-right: 84px;
}

.columns.gap-5 {
  margin-left: -72px !important;
  margin-right: -72px !important;
}

.gap-5 > .column {
  padding-left: 72px;
  padding-right: 72px;
}

.columns.gap-4 {
  margin-left: -60px !important;
  margin-right: -60px !important;
}

.gap-4 > .column {
  padding-left: 60px;
  padding-right: 60px;
}

.columns.gap-3 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.gap-3 > .column {
  padding-left: 48px;
  padding-right: 48px;
}

.columns.gap-2 {
  margin-left: -36px !important;
  margin-right: -36px !important;
}

.gap-2 > .column {
  padding-left: 36px;
  padding-right: 36px;
}

.columns.gap-1 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.gap-1 > .column {
  padding-left: 24px;
  padding-right: 24px;
}

.is-gap-0 {
  gap: 0 !important;
}

.is-gap-1 {
  gap: 4px !important;
}

.is-gap-2 {
  gap: 8px !important;
}

.is-gap-3 {
  gap: 12px !important;
}

.is-gap-4 {
  gap: 16px !important;
}

.is-gap-5 {
  gap: 24px !important;
}

.is-gap-6 {
  gap: 32px !important;
}

.is-gap-7 {
  gap: 40px !important;
}

.is-gap-8 {
  gap: 48px !important;
}

.is-gap-9 {
  gap: 56px !important;
}

.is-gap-10 {
  gap: 64px !important;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 800px;
  min-height: 390px;
  width: 100%;
  padding: 40px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #00000000;
  backdrop-filter: blur(25px);
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.modal-title {
  color: #fff;
  font-size: 62px;
  line-height: 72px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 50px;
}

html.is-active {
  overflow: hidden;
}

/* html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;   
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
} */

html.is-active:before {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
}

.theme-modal-card-body {
  /* padding: 30px; */
  /* background-color: transparent; */
  /* border: 1px solid rgb(255 255 255 / 20%); */
}

.close {
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 40px;
  right: 20px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.close:hover {
  background-color: transparent;
  color: #9b2480;
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*** End Modal CSS ***/
.columns.row-register {
  margin-bottom: -12px !important;
}

.sticky-bottom-form .col-form .form-control::-webkit-input-placeholder,
.theme-modal .col-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.sticky-bottom-form .col-form .form-control:-ms-input-placeholder,
.theme-modal .col-form .form-control:-ms-input-placeholder {
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.sticky-bottom-form .col-form .form-control::placeholder,
.theme-modal .col-form .form-control::placeholder {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.section-title {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 52px;
  line-height: 62px;
  color: #000000;
  margin: 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.section-title h2 {
  font-size: 62px;
  line-height: 72px;
  color: #000000;
  margin: 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark span,
.dark small {
  color: #fff;
}

.dark a:hover {
  color: #9b2480;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Raleway", sans-serif;
  border: 1px solid;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.btn-primary {
  background-color: #9b2480;
  border-color: #9b2480;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #9b2480;
  border-color: #9b2480;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #9b2480;
  color: #9b2480;
}

.btn.btn-primary-outline:hover {
  background-color: #9b2480;
  border-color: #9b2480;
  color: #ffffff;
}

.btn.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #9b2480;
}

.btn.btn-white:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #9b2480;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #9b2480;
}

.col-form {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  margin: 30px auto 0;
  height: 50px;
  width: auto;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

.thankyou-block {
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  font-weight: 500;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #9b2480;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide__pagination {
  margin-top: 30px;
}

.splide.pagination .splide__pagination {
  counter-reset: pagination-num;
}

.splide.pagination .splide__pagination__page:before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}

.splide.pagination .splide__pagination__page.is-active {
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide.pagination .splide__pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: unset;
  font-size: 18px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  transition: fill 0.2s linear;
  width: 45px;
  -webkit-transition: fill 0.2s linear;
  -moz-transition: fill 0.2s linear;
  -ms-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: transparent;
}

.splide {
  padding: 0;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.splide__arrow {
  width: 45px;
  height: 45px;
  padding: 10px;
  color: #fff;
  background-color: #0076bc;
  border: 1px solid #0076bc;
  opacity: 1;
}

.splide__arrow:hover {
  background-color: #9b2480;
  color: #fff;
  opacity: 1;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #9b2480;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #9b2480;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 15px 12px;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #fff;
  font-size: 14px;
  border: 1px solid #9b248066;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #ff0000;
}

.title-tagline {
  font-size: 72px;
  line-height: normal;
  font-weight: 800;
  margin-top: 5px;
  display: block;
  text-transform: capitalize;
}

header {
  position: fixed;
  z-index: 9999;
  padding: 0 !important;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  background-color: transparent;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.theme-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-link {
  font-size: 16px;
  font-weight: 600;
}

.menu-link.active {
  color: #9b2480;
}

.theme-logo img {
  width: auto;
  max-height: 70px;
  max-width: 200px;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.menu-item {
  padding: 0px 10px;
}

.theme-padding {
  padding-left: 250px;
  padding-right: 250px;
}

.js-scroll {
  opacity: 0;
}

.scrolled.fade-in {
  animation: 2s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 2s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 2s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 2s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 2s ease-in-out both fade-in-right;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoom-out {
  opacity: 0;
  transition-duration: 3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.zoom-out {
  transition-property: opacity, transform, -webkit-transform;
  transition-timing-function: ease-out;
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.delay5 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.delay6 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.delay7 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.delay8 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}
.delay9 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

/* Js Scroll End */
.sticky-btn-enquire {
  position: fixed !important;
  top: 210px;
  right: -44px;
  z-index: 999 !important;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sticky-btn-enquire:hover {
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #9b2480;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-bottom: 0;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .form-control {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#footer {
  padding: 30px 0 0;
}

/* #home #footer {
  padding: 30px 0 80px;
} */

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
}

.theme-block-img:before- {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #9b2480;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 0.5;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.counter {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.counter-block h3 {
  font-size: 32px;
  font-weight: 600;
}

.counter-block p {
  margin-top: 6px;
}

/* Accordion Css Start */

.collapse {
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;
}

.collapse:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion {
}

.accordion .card {
  overflow: hidden;
  margin: -1px -1px 1px;
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
}

.accordion .card:last-child {
  margin-bottom: -1px;
}

.accordion .card:not(:last-child):not(.is-active) {
  border-bottom-color: transparent;
}

.accordion .card.is-active {
  background: #fff;
}

.accordion .card.is-active + .card {
  border-top-color: transparent;
}

.accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 30px 0 30px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
}

.accordion-content {
  padding-bottom: 30px;
}

.theme-light-bg .accordion-header {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

/* .accordion .accordion-header:hover .icon {
  opacity: 0.8;
} */

.accordion .accordion-header.is-active .icon {
  transform: rotateX(180deg);
  opacity: 1;
  fill: #fff;
}

.accordion .accordion-header .icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: -0.25rem;
}

.accordion .accordion-header.is-active .feather-minus {
  display: block;
}

.accordion .accordion-header.is-active .feather-plus {
  display: none;
}

.feather-minus {
  display: none;
}

/* .accordion .accordion-content {
  padding: 20px 0 4px;
} */

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #9b2480;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.theme-text {
  color: #9b2480 !important;
}

.white-text {
  color: #fff !important;
}

.call-btn {
  position: fixed;
  bottom: 74px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 888;
  display: block;
  text-align: center;
  border-color: #9b2480;
  background-color: #9b2480;
  animation: theme-pulse 2s infinite;
  border-radius: 100%;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.call-btn svg {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 7px;
}

@keyframes theme-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(29 87 163);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.theme-img-animation > picture > img {
  filter: blur(12px);
}

.theme-img-animation.eligibility > picture > img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.theme-block.theme-img-animation {
  overflow: hidden;
}

.plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: fit-content;
  opacity: 1;
  visibility: visible;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.sticky-btn-enquire.sticky-brochure {
  top: 380px;
  right: -70px;
}

.scroll-to-top {
  position: fixed;
  bottom: 74px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #9b2480;
  color: #fff;
  border-radius: 100%;
  border: 1px solid #ffffff30;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.scroll-to-top:hover {
  background: #fff;
  color: #9b2480;
}

.scroll-to-top.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image::after,
.actual-image::after,
.artistic-impression::after {
  content: "Artistic Impression";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}

.social-icon {
  position: relative;
  color: #fff;
  display: block;
  max-width: 50px;
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.2);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.amenities-icon img {
  max-width: 60px;
  margin: 0 auto 12px;
}

.amenities-block {
  text-align: center;
  padding: 12px 0;
}

.amenities-col {
  width: 20%;
  flex: 0 0 auto;
}

.connectivity-detail {
  padding-left: 100px;
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.highlight-item:not(:last-child) {
  margin-bottom: 12px;
}

.connectivity-detail .accordion-item.is-active svg path {
  stroke: #9b2480;
}

.connectivity-detail svg {
  width: 36px;
  height: 36px;
}

.list-point li:not(:last-child) {
  margin-bottom: 8px;
}

/* Custom Css */

/* Header */

.header-container {
  padding: 16px 20px;
  margin-top: 20px;
  position: relative;
}

.header-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header-container .columns {
  position: relative;
}

.btn-hover {
  overflow: hidden;
}

.theme-btn {
  position: relative;
}

.theme-btn svg {
  right: -24px;
  margin-right: -24px;
  transition: all 0.3s linear;
}

.theme-btn:hover svg {
  right: 0;
  margin-right: 0;
}

.header-btn {
  position: relative;
  min-width: 90px;
  text-align: right;
}

.theme-btn {
  padding: 10px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: fit-content;
}

.theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #9b2480;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.theme-btn span {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

/* .theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #9b2480;
  top: 0;
  left: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.theme-btn {
  padding: 10px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: skewX(-15deg);
  overflow: hidden;
  background: transparent;
  max-width: fit-content;
  transform: skewX(-15deg) translateZ(0);
  -webkit-transform: skewX(-15deg) translateZ(0);
  -moz-transform: skewX(-15deg) translateZ(0);
  -ms-transform: skewX(-15deg) translateZ(0);
  -o-transform: skewX(-15deg) translateZ(0);
}

.theme-btn span {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transform: skewX(5deg);
  isolation: isolate;
  -webkit-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
} */

.menu-item {
  position: relative;
}

.menu-item::before,
.menu-item .menu-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 53px;
  width: 0%;
  height: 3px;
  background-color: #9b2480;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-item .menu-link.active::after,
.menu-item:hover::before {
  width: 100%;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow-icon svg {
  stroke: #fff;
}

.arrow-icon svg {
  display: flex;
  align-items: center;
  width: auto;
  height: 22px;
}

/* Header end */

/* banner */

.banner-title .section-title span {
  display: block;
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
  color: #00a1e0 !important;
  text-transform: capitalize;
  margin: 15px auto 0;
  max-width: 900px;
}

.theme-block-video-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #9b2480;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.theme-block-video-icon svg {
  position: relative;
  left: 1px;
  width: 30px;
  height: 30px;
  color: #fff;
}

/* banner end */

.section-video video {
transform: rotateY(180deg);
}

/* Cloud Expertise */

.expertise-detail h3 {
  font-weight: 600;
  margin-bottom: 13px;
}

.expertise-detail p {
  font-size: 18px;
  line-height: 30px;
}

.theme-arrow {
  width: 40px;
  height: 40px;
  background-color: #9b2480;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.expertise-block {
  border: 1px solid #ffffff26;
  background-color: #150210;
  padding: 50px 0;
  backdrop-filter: blur(15px);
}

.expertise-block.block-1 {
  margin-top: 100px;
}

/* Cloud Expertise */

/* sticky */
.expertise-block.sticky-block.block-1 {
  top: 100px;
}

.expertise-block.sticky-block.block-2 {
  top: 120px;
}

.expertise-block.sticky-block.block-3 {
  top: 140px;
}

.expertise-block.sticky-block.block-4 {
  top: 160px;
}

.expertise-block.sticky-block.block-5 {
  top: 180px;
}

.sticky-block {
  position: sticky;
}

.sticky-section {
  position: unset;
  overflow: unset;
}

.video1-wrapper.sticky-block {
  top: 100px;
}

/* sticky end */

/* salesfores */
.salesforce-accordion {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.salesforce-accordion ul {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.salesforce-accordion ul li {
  flex: 0.1;
  height: 100%;
  transition: all 0.6s ease;
  overflow: hidden;
  position: relative;
}

.salesforce-accordion ul li.active {
  flex: 0.7;
}

.salesforce-accordion ul:hover li {
  flex: 0.1;
}

.salesforce-accordion ul:hover li:hover {
  flex: 0.7;
}

.panel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  box-sizing: border-box;
  transition: background 0.4s ease;
  overflow: hidden;
  padding-left: 40px;
}

.panel1 {
  background: #7b3f8c;
}

.panel2 {
  background: #2e6d9e;
}

.panel3 {
  background: #267043;
}

.panel4 {
  background: #a64132;
}

.panel h2 {
  margin: 0;
  transform: rotate(-90deg);
  transform-origin: center center;
  transition: all 0.6s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  opacity: 0.7;
}

.salesforce-accordion ul li:hover .panel h2 {
  transform: rotate(0deg);
  opacity: 1;
}

/* salesfores end */

/* section-solutions */

.section-solutions .bg-video,
.theme-before .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.theme-before::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: -1px;
  background: #150210;
  background: linear-gradient(360deg, #150210 0%, #150210 4.51%, rgb(21 2 16 / 52%) 22.55%);
  z-index: 1;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.theme-before::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #150210;
  background: linear-gradient(
    360deg,
    #150210 0%,
    #150210 4.51%,
    rgba(21, 2, 16, 0) 22.55%
  );
}

.section-solutions,
.theme-before {
  position: relative;
  overflow: hidden;
}

.solutions-inner-detail {
  position: absolute;
  bottom: 0;
  padding: 30px;
}

.theme-arrow.solutions-arrow {
  position: absolute;
  top: 30px;
  right: -40px;
}

.solutions-img {
  overflow: hidden;
}

.solutions-img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(155, 36, 128, 0) 0%,
    rgba(155, 36, 128, 0.7) 100%
  );
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solutions-inner-detail h5 {
  font-weight: 600;
  color: #fff;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solutions-block:hover .solutions-img::before,
.solutions-block:hover .solutions-inner-detail h5 {
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.solutions-block:hover .theme-arrow.solutions-arrow {
  right: 25px;
}

/* section-solutions end */
/* clients */

.column.cols-clients {
  width: 16.66%;
  flex: 0 0 16.66%;
}

.clients-logo {
  background: #150210;
  /* dark ya colored background zaruri hai */
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-logo img {
  mix-blend-mode: luminosity;
  width: 100%;
  height: auto;
  max-height: 50px;
}

.column.cols-clients:nth-child(5) .clients-logo {
  background-color: transparent;
}

.column.cols-clients:nth-child(5) .clients-logo img {
  /* mix-blend-mode: color; */
}

/* clients endx */
/* Blog */

.home-blog h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 18px;
}

.blog-title-wrapper,
.media-title-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.theme-text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.media-block-logo img {
  width: auto;
  margin: 15px 0;
  max-height: 40px;
}

/* Blog end */

/* footer */
.footer-logo {
  position: relative;
  bottom: -160px;
  width: fit-content;
  margin: 0 auto;
}

footer {
  min-height: 100vh;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #9b2480;
  mix-blend-mode: multiply;
}

.footer {
  background-image: url("../images/footer/footer-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.footer-icon img {
  width: 24px;
  height: 24px;
}

.footer-icon {
  background: #fff;
  flex: 0 0 auto;
  padding: 12px;
  border-radius: 100%;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.footer-inner-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant: lining-nums;
}

.footer-desc p {
  max-width: 460px;
  font-weight: 500 !important;
  text-transform: none !important;
}

.footer-detail p {
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-mobile,
.footer-mail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright-bar {
  border-top: 1px solid #ffffff20;
  margin-top: 30px;
  padding-top: 30px;
  width: 100%;
  font-variant: lining-nums;
}

.footer-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-contact-detail.footer-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* justify-content: end; */
  width: fit-content;
  align-items: start;
  margin-left: auto;
}

/* footer end */

/* Promise Page */

.promise-title .section-title p {
  max-width: 700px;
  margin-top: 10px;
}

.promise-wrapper {
  margin: 100px 20px 0;
}

.promise-block h5,
.promise-block span {
  font-family: "Reddit Sans", sans-serif;
}

.columns.row-promise {
  justify-content: center;
}

.promise-block span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.promise-block h5 {
  margin-top: 10px;
}

.stage-of-growth-wrapper {
  margin: 0 12px;
}

.stage-of-growth-block {
  border: 1px solid #9b2480;
  padding: 22px 30px;
  display: inline-block;
  border-radius: 6px;
  transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
}

.stage-of-growth-block .stage-of-growth-title {
  transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
}

.stage-of-growth-block h6 {
  font-size: 20px;
  line-height: normal;
  text-align: center;
  font-weight: 600;
}

.img-skew {
  position: relative;
  display: block;
  background: transparent;
  border: 1px solid #ffffff33;
  border-radius: 20px;
  overflow: hidden;
  transform: skewX(-12deg);
  -webkit-transform: skewX(-12deg);
  margin: 0 20px;
}

.img-skew .inner-skew {
  transform: skewX(12deg);
  -webkit-transform: skewX(12deg);
  -moz-transform: skewX(12deg);
  -ms-transform: skewX(12deg);
  -o-transform: skewX(12deg);
}

.img-skew img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
}

.promise-block-img {
  position: relative;
  display: inline-block;
  background: transparent;
  border: 1px solid #ffffff33;
  border-radius: 20px;
  overflow: hidden;
  transform: skewX(-12deg);
  -webkit-transform: skewX(-12deg);
  -moz-transform: skewX(-12deg);
  -ms-transform: skewX(-12deg);
  -o-transform: skewX(-12deg);
}

.promise-block-img .inner {
  transform: skewX(12deg);
  -webkit-transform: skewX(12deg);
  -moz-transform: skewX(12deg);
  -ms-transform: skewX(12deg);
  -o-transform: skewX(12deg);
}

.promise-block-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
}

.promise-block .promise-block-desc {
  position: relative;
  left: -20px;
  width: calc(100% + 10px);
}

/* Promise Page end */

/* ACX Gallery Start */
.salesforce-gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.salesforce-gallery-item {
  flex: 1;
  height: 100%;
  position: relative;
  transition: flex 0.8s ease;
  overflow: hidden;
}

.salesforce-gallery-item.active {
  flex: 7;
}

/* 🔹 When active collapses temporarily */
.salesforce-gallery-item.active.collapsed {
  flex: 1 !important;
}

.salesforce-gallery-item:hover {
  flex: 7;
}

/* ✅ Image */
.salesforce-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* ✅ Overlay */
.salesforce-gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(155, 36, 128, 0.75);
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 1;
}

/* ✅ Hide overlay for active */
.salesforce-gallery-item.active::before {
  opacity: 0;
}

/* ✅ When hovering any item */
.salesforce-gallery-item:hover::before {
  opacity: 1;
}

/* ✅ Show overlay again when active loses focus */
.salesforce-gallery-item.restore-overlay::before {
  opacity: 1 !important;
}

/* ✅ Text */
.gallery-text {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ✅ Hover text */
.salesforce-gallery-item:hover .gallery-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  font-size: 34px;
}

.theme-arrow.services-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
  background: #fff;
  transform: translateY(-60%) scale(0);
  -webkit-transform: translateY(-60%) scale(0);
  -moz-transform: translateY(-60%) scale(0);
  -ms-transform: translateY(-60%) scale(0);
  -o-transform: translateY(-60%) scale(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  -moz-transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  -ms-transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  -o-transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.salesforce-gallery-item:hover .theme-arrow.services-arrow {
  transform: translateY(-60%) scale(1);
  -webkit-transform: translateY(-60%) scale(1);
  -moz-transform: translateY(-60%) scale(1);
  -ms-transform: translateY(-60%) scale(1);
  -o-transform: translateY(-60%) scale(1);
}

.theme-arrow.services-arrow svg {
  stroke: #9b2480;
}

/* .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  opacity: 0;
  transition: all 0.6s ease;
  margin-left: 12px;
}

.salesforce-gallery-item:hover .arrow-icon {
  transform: scale(1);
  opacity: 1;
} */

.z-1 {
  z-index: 1;
}

/* Reventers Gallery End */

/* service page */

.salesforce-consulting-wrapper:not(:last-child) {
  margin-bottom: 150px;
}

.salesforce-consulting-wrapper:last-child {
  margin-bottom: 80px;
}

.inner-page-block-desc {
  display: flex;
  align-items: center;
  gap: 50px;
}

.inner-page-block-img {
  flex: 0 0 250px;
}

.inner-page-block-detail.border-top {
  border-top: 1px solid #ffffff33;
  padding-top: 40px;
  margin-top: 40px;
}

.partnership-col.audit:nth-child(3),
.partnership-col.audit:nth-child(4) {
  border-bottom: 1px solid #9b2480 !important;
}

.partnership-col:last-child {
  border-bottom: unset;
}

/* service page end */

/* Solution */

.list-block ul li:not(:last-child) {
  margin-bottom: 30px;
}

.list-block ul {
  position: relative;
}

.list-block ul li::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  background: #9b2480;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.list-block ul li {
  position: relative;
  padding-left: 13px;
}

.col-coustomer-layout img {
  width: auto;
  height: 500px;
}

/* Solution end */
.blogs-content p {
  font-weight: 600;
  margin-top: 18px;
  line-height: 28px;
   font-variant: lining-nums;
}

#loadMoreBtn {
  display: block !important;
  margin: 0 auto;
}

/* Blog */

.blog-post-details .banner-img {
  margin-bottom: 30px;
}

.blog-post-details h3 {
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 40px;
  font-variant: lining-nums;
}

.mb-30 {
  margin-bottom: 30px;
}

.list-point.dark li {
  color: #fff;
}

.blog-item-inner h5 {
  margin-bottom: 30px;
}

.back-blog {
  position: absolute;
  left: 265px;
  top: 30px;
}

.explore-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9d1680;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  position: relative;
  max-width: fit-content;
}

.explore-btn img {
  margin-left: 0px;
  position: relative;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.back-blog a:hover {
  color: #fff;
}

.blog-recent-post {
  max-height: 600px;
}

.recent-post-item-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  align-items: center;
}

.recent-post-item {
  position: relative;
  margin-bottom: 30px;
}

.blog-post-details,
.recent-post-title {
  font-size: 16px;
  line-height: 22px;
  font-variant: lining-nums;
}

.recent-post-img img {
  position: relative;
}

.recent-post-img {
  flex: 0 0 150px;
}

.col-blog-post:nth-child(1) {
  border-right: 1px solid #9b2480;
}

.col-blog-post {
  padding: 0 20px;
  position: relative;
}

/* Blog end */

/* Modal */

.theme-modal.is-active {
  background-image: url(../images/modal-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.close svg {
  height: 40px;
  width: 40px;
}

.theme-modal::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.8;
}

.header-title {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

/* Modal end */

/* mansi css */

.tab-list {
  position: relative;
  margin-bottom: 40px;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  text-align: right;
  background: transparent;
  cursor: pointer;
  user-select: none;
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.tab-list .tab:last-child a {
  margin-bottom: 0;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  color: #9b2480;
}

.tab-content::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  border-left: 1px solid #9b2480;
  left: 0;
  top: 0;
}

.tab-list-block,
.tab-content {
  position: relative;
  padding-bottom: 40px;
}

.tab-content {
  padding-left: 50px;
}

.theme-color h1,
.theme-color h2 {
  color: #9b2480;
}

.tab {
  position: relative;
}

.tab::before {
  content: "";
  position: absolute;
  right: 0;
  border-right: 3px solid #9b2480;
  height: 0;
  width: 3px;
  top: 0;

  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab:hover::before,
.tab-list .tab.is-active::before {
  height: 100%;
}

.tab-details.cloud-tab p:not(:last-child),
.content-block:not(:last-child) {
  margin-bottom: 30px;
}

.position-sticky-page {
  overflow-x: unset;
  overflow-y: unset;
}

.position-sticky-section,
.position-sticky-cols {
  position: unset !important;
  overflow: unset !important;
  align-items: flex-start;
}

.top-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  z-index: 99;
}

.overview-img-wrapper::before {
  content: "";
  position: absolute;
  content: " ";
  background: linear-gradient(90deg, rgba(155, 36, 128, 0) 0%, #9b2480 82.37%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.overview-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overview-img-wrapper {
  padding: 70px 30px;
}

.overview-desc {
  position: relative;
  z-index: 9;
  text-align: end;
}

.overview-desc h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.theme-btn.white-btn::before {
  background-color: #fff;
}

.theme-btn.white-btn span {
  color: #9b2480;
}

.theme-btn.white-btn .arrow-icon svg {
  stroke: #9b2480;
}

.overview-desc .theme-btn.white-btn {
  margin-left: auto;
}

.overview-detail {
  margin-bottom: 40px;
}

.inner-page-wrapper .section-title h2,
.tab-details .section-title h1,
.tab-details .section-title h2 {
  font-size: 38px;
  line-height: 44px;
}

.inner-page-wrapper .section-title span {
  margin-top: 8px;
  display: block;
}

.tab-content .section-title{
  margin-bottom: 40px;
}

.accordion-item {
  border-bottom: 1px solid #ffffff33;
}

.content-block h5 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.inner-page-block:not(:last-child) {
  margin-bottom: 60px;
}

.checkmark-img {
  max-width: 40px;
  margin-bottom: 10px;
}

.partnership-block {
  padding: 20px;
}

.partnership-cols {
  max-width: 900px;
}

.partnership-col {
  border-right: 1px solid #9b2480;
  border-bottom: 1px solid #9b2480;
}

.partnership-col:nth-child(even) {
  border-right: 0;
}

.partnership-col:nth-child(3),
.partnership-col:nth-child(4) {
  border-bottom: 0;
}

.inner-page-block .expertise-block {
  border: 0;
  border-top: 1px solid #ffffff26;
}

/* mansi css end */

/* Custom Css end */

.footer-wrapper-block {
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: end;
  min-height: 90vh;
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.row-footer-detail {
  width: 100%;
}

/* .footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
} */

.footer-logo img {
  width: 100%;
  height: auto;
  max-width: 1200px;
}

#paginated-list h3 {
  margin-bottom: 30px;
}

.mobile-visible {
  display: none;
}

.tab-content .expertise-block h3,
.inner-page-block-desc h3 {
  font-size: 24px;
  line-height: 30px;
}

.theme-arrow:hover {
  background: #fff;
}

.list-item span {
  font-variant: lining-nums;
}

.block-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.section-title .theme-color {
  color: #9b2480 !important;
}

.arrow-bottom {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #9b2480;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}

.menu-dropdown .menu-link {
  padding-right: 15px;
  position: relative;
}

.sub-menu-details {
  position: absolute;
  top: 72px;
  left: -40px;
  padding: 15px;
  border-radius: 8px;
  white-space: normal;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 99;
  box-shadow: 0 0 6px rgb(0 0 0 / 40%);
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 220px;
   
}

.menu-item.menu-dropdown:hover .sub-menu-details {
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow-up {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  top: -8px;
  left: 80px;
}


.sub-menu-details .menu-link{
  border-right: 0;
  padding-right: 0;
}

.sub-menu-details .menu-link{
  transform: skewX(15deg);
}

.sub-menu-details::before{
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skewX(-15deg);
  background-color: #fff;
  top:0;
  left: 0;
   border-radius: 5px;
}