* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --section-padding: 50px 0;
  --section-padding-mobile: 30px 0;
  --section-margin: 0 0 40px 0 --section-border: 1px solid #e5e5e5;
  --main-heading-size: 30px;
  --sub-heading-size: 18px;
  --main-color: #203864;
  --main-heading-color: #203864;
  --paragraph-size: 16px;
  --paragraph-color: #000;
  --p-line-height: 25px;
  --li-size: 16px;
  --li-color: #2d2d2d;
  --box-shadow: 0 3px 7px #ccc;
  --primary-color: #2495ff;
  --button-color: #203864;
}

html,
body {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  background-color: #fff;
}

body {
  max-width: 1920px;
  margin-inline: auto;
}

/* -------- Headings -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 0;
}

/* -------- Paragraph -------- */
p {
  color: var(--paragraph-color);
  font-size: var(--paragraph-size);
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

/* -------- Links -------- */
a {
  color: #000;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:focus,
a:active {
  color: #000;
  text-decoration: none;
  outline: none;
}

.heading {
  margin-bottom: 30px;
}
.heading h1,
.heading h2 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--main-heading-size);
  color: var(--main-heading-color);
  font-weight: 700;
  margin: 0 0 10px 0;
}
.heading p {
  margin-bottom: 20px;
}

.homepage-banner {
  position: relative;
  height: 520px;
}
.homepage-banner video {
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage-banner #muteBtn {
  background-color: none;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  outline: 0;
}

.section-wrap {
  background-image: url(../images/amplify-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.section-wrap .heading-text-wrap {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}
.section-wrap .heading-text-wrap .heading-text {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--main-heading-size);
  font-weight: 700;
  color: var(--main-heading-color);
  margin: 0 0 10px 0;
  text-align: center;
}
.section-wrap .heading-text-wrap .description-text {
  margin-bottom: 20px;
}

.services-main {
  padding: var(--section-padding);
}
.services-main .nav-pills {
  width: 35%;
}
.services-main .nav-pills .nav-link {
  background-color: white;
  color: black;
  text-align: initial;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 35px;
  margin-bottom: 10px;
}
.services-main .nav-pills .nav-link.active {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
}
.services-main .nav-pills .nav-link.active p {
  color: white;
}
.services-main .nav-pills .nav-link.active h3 svg {
  stroke: white;
}
.services-main .nav-pills .nav-link.active svg {
  stroke: white;
}
.services-main .nav-pills .nav-link svg {
  stroke: white;
  padding: 5px;
}
.services-main .nav-pills .nav-link h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.services-main .nav-pills .nav-link h3 svg {
  stroke: black;
}
.services-main .nav-pills .nav-link p {
  font-size: 13px;
}
.services-main .tab-content {
  width: 65%;
}
.services-main .tab-content .tab-pane {
  padding: 0 20px;
  border-radius: 10px;
}
.services-main .tab-content .tab-pane .tab-content-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.services-main .tab-content .tab-pane .tab-content-heading svg {
  width: 40px;
  height: auto;
  background-color: #eff6ff;
  stroke: #1188DC;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
  border: 1px solid #dbeafe;
}
.services-main .tab-content .tab-pane .tab-content-heading .linked-heading {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #1188DC;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.services-main .tab-content .tab-pane .tab-content-heading .linked-heading:hover {
  color: #6f6af8;
}
.services-main .tab-content .tab-pane .tab-content-heading p {
  font-size: 15px;
}
.services-main .tab-content .tab-pane .service-detail-info {
  display: flex;
  padding: 5px;
  margin-bottom: 3px;
}
.services-main .tab-content .tab-pane .service-detail-info svg {
  width: 10%;
  height: 20px;
  border-radius: 5px;
  margin-right: 10px;
  margin-top: 6px;
}
.services-main .tab-content .tab-pane .service-detail-info h4 {
  width: 90%;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.services-main .tab-content .tab-pane .service-detail-info p {
  width: 90%;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.services-main .tab-content .tab-pane .service-detail-info p:hover {
  color: var(--primary-color);
}
.services-main .tab-content .tab-pane .service-img-box img {
  width: 100%;
  height: 410px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.services-main .tab-content .tab-pane .service-img-box .rs-btn .icon-box svg {
  width: 17px;
}
.services-main .tab-content .tab-pane .learn-more-btn {
  text-align: center;
  margin-top: 40px;
}
.services-main .tab-content .tab-pane .learn-more-btn a {
  background-color: #2572b8;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
}

.our-clients-main {
  padding: 100px 0;
  background-image: url(/assets/images/homepage/clients/clients-cover.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.our-clients-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.our-clients-main .heading-text-wrap {
  position: relative;
  z-index: 1;
}
.our-clients-main .heading-text-wrap .heading-text {
  color: white;
  -webkit-text-fill-color: unset;
}
.our-clients-main .heading-text-wrap .description-text {
  color: white;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-700px);
  }
}
.our-clients-main .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  max-width: 1096px;
  padding: 0 22px;
}
.our-clients-main .slider .slide-track {
  animation: scroll 15s linear infinite;
  display: flex;
  width: 3500px;
}
.our-clients-main .slider .slide img {
  background-color: white;
  width: 160px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}

.sectors-main {
  padding: 70px 0;
  background-image: url(/assets/images/homepage/sectors-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.sectors-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.sectors-main .heading-text-wrap {
  position: relative;
  z-index: 1;
}
.sectors-main .heading-text-wrap .heading-text {
  color: white;
  -webkit-text-fill-color: unset;
}
.sectors-main .heading-text-wrap .description-text {
  color: white;
}
.sectors-main .sector-slider {
  position: relative;
  padding: 20px;
  z-index: 1;
}
.sectors-main .sector-slider .slick-slide {
  margin: 10px;
}
.sectors-main .sector-slider .slick-dots li button::before {
  color: white;
  font-size: 10px;
}
.sectors-main .sector-slider .slick-dots li.slick-active button::before {
  color: white;
  opacity: 1;
}
.sectors-main .sector-slider .slider-item .sector-card {
  position: relative;
  border-radius: 5px;
  padding: 20px;
  height: 350px;
  overflow: hidden;
}
.sectors-main .sector-slider .slider-item .sector-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(to top, rgb(0, 0, 0), transparent);
  z-index: 1;
}
.sectors-main .sector-slider .slider-item .sector-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.sectors-main .sector-slider .slider-item .sector-card:hover::before {
  height: 100%;
}
.sectors-main .sector-slider .slider-item .sector-card:hover .card-body {
  transform: translateY(45%);
}
.sectors-main .sector-slider .slider-item .sector-card:hover .card-body h3 {
  border-bottom: 1px solid #A64AF6;
  border-bottom: 2px solid #00AAFF;
}
.sectors-main .sector-slider .slider-item .sector-card:hover .card-body p {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  transition-delay: 0.1s;
}
.sectors-main .sector-slider .slider-item .sector-card .card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  transform: translateY(88%);
  transition: all 0.3s ease-in-out;
}
.sectors-main .sector-slider .slider-item .sector-card .card-body h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  padding-bottom: 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sectors-main .sector-slider .slider-item .sector-card .card-body p {
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.sectors-main .sector-slider .slider-item .sector-card .card-body p:not(:nth-child(2)) {
  display: none;
}

.case-study-main {
  padding: var(--section-padding);
}
.case-study-main .sector-card {
  position: relative;
  border-radius: 5px;
  padding: 20px;
  height: 350px;
  overflow: hidden;
}
.case-study-main .sector-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(to top, rgb(0, 0, 0), transparent);
  z-index: 1;
}
.case-study-main .sector-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-study-main .sector-card:hover::before {
  height: 100%;
}
.case-study-main .sector-card:hover .card-body {
  transform: translateY(45%);
}
.case-study-main .sector-card:hover .card-body h3 {
  border-bottom: 2px solid #00AAFF;
}
.case-study-main .sector-card:hover .card-body p {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  transition-delay: 0.1s;
}
.case-study-main .sector-card:hover .card-body .read-more-btn {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  transition-delay: 0.15s;
}
.case-study-main .sector-card .card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  transform: translateY(78%);
  transition: all 0.3s ease-in-out;
}
.case-study-main .sector-card .card-body h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid white;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.case-study-main .sector-card .card-body p {
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.case-study-main .sector-card .read-more-btn {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  bottom: 30px;
}
.case-study-main .sector-card .read-more-btn:hover {
  color: #00AAFF;
}

.service-intro-main {
  padding: var(--section-padding);
}
.service-intro-main .intro-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.service-intro-main .intro-text .heading {
  margin-bottom: 20px;
}
.service-intro-main .intro-text p {
  margin-bottom: 15px;
}
.service-intro-main .intro-text p:last-child {
  margin-bottom: 0;
}

.service-list-main {
  background-image: url(/assets/images/covers/services-cover.webp);
  background-size: cover;
  background-position: center;
  padding: var(--section-padding);
  position: relative;
}
.service-list-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.service-list-main .container {
  position: relative;
  z-index: 1;
}
.service-list-main .heading-text-wrap {
  width: 60%;
  margin: 0 auto 30px;
  text-align: center;
}
.service-list-main .heading-text-wrap .heading-text {
  color: white;
  font-size: var(--main-heading-size);
  font-weight: 700;
  margin: 0 0 10px 0;
}
.service-list-main .heading-text-wrap .description-text {
  color: white;
  margin-bottom: 0;
}
.service-list-main .service-item-card {
  height: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
}
.service-list-main .service-item-card:hover {
  box-shadow: rgba(17, 24, 39, 0.08) 0px 10px 30px;
  transform: translateY(-4px);
  border-color: transparent;
}
.service-list-main .service-item-card:hover .service-item-icon {
  transform: scale(1.05);
}
.service-list-main .service-item-card .service-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6F6AF8, #A64AF6);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
}
.service-list-main .service-item-card .service-item-icon svg {
  stroke: white;
}
.service-list-main .service-item-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--main-heading-color);
  margin-bottom: 10px;
}
.service-list-main .service-item-card p {
  font-size: 14px;
  line-height: 22px;
}

.service-provide-main {
  padding: var(--section-padding);
}
.service-provide-main .provide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-provide-main .provide-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}
.service-provide-main .provide-list li:last-child {
  border-bottom: 0;
}
.service-provide-main .provide-list li svg {
  flex-shrink: 0;
  stroke: white;
  background: linear-gradient(135deg, #00AAFF, #6F6AF8);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}
.service-provide-main .provide-list li span {
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
}
.service-provide-main .approach-card {
  height: 100%;
  background-color: #0a0a12;
  background-image: radial-gradient(circle at 100% 0%, rgba(111, 106, 248, 0.45) 0%, rgba(10, 10, 18, 0) 45%);
  border-radius: 16px;
  padding: 30px;
}
.service-provide-main .approach-card h3 {
  color: white;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.service-provide-main .approach-card .approach-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-provide-main .approach-card .approach-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.service-provide-main .approach-card .approach-item h4 {
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.service-provide-main .approach-card .approach-item p {
  color: #b8c4dc;
  font-size: 14px;
  line-height: 22px;
}

.service-process-main {
  background-image: url(/assets/images/covers/services-cover.webp);
  background-size: cover;
  background-position: center;
  padding: var(--section-padding);
  position: relative;
}
.service-process-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.service-process-main .container {
  position: relative;
  z-index: 1;
}
.service-process-main .heading-text-wrap .heading-text {
  -webkit-text-fill-color: unset;
  color: white;
}
.service-process-main .heading-text-wrap .description-text {
  color: white;
}
.service-process-main .process-step {
  height: 100%;
  padding: 25px 20px;
  background: white;
  border: 1px solid #e5e7eb;
}
.service-process-main .process-step .step-label {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #00AAFF, #6F6AF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-process-main .process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-heading-color);
  margin-bottom: 8px;
}
.service-process-main .process-step p {
  font-size: 14px;
  line-height: 22px;
}

.engagement-models-main {
  padding: var(--section-padding);
}
.engagement-models-main .engagement-card {
  height: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.engagement-models-main .engagement-card:hover {
  box-shadow: rgba(17, 24, 39, 0.08) 0px 10px 30px;
  transform: translateY(-4px);
  border-color: transparent;
}
.engagement-models-main .engagement-card .engagement-tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.engagement-models-main .engagement-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-heading-color);
  margin-bottom: 12px;
}
.engagement-models-main .engagement-card > p {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 20px;
  height: 80px;
}
.engagement-models-main .engagement-card .engagement-best {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  font-size: 14px;
  color: #4b5563;
}
.engagement-models-main .engagement-card .engagement-best strong {
  color: var(--main-heading-color);
}

.case-study-detail .cs-client .heading-text-wrap,
.case-study-detail .cs-brief .heading-text-wrap,
.case-study-detail .cs-approach .heading-text-wrap,
.case-study-detail .cs-outcome .heading-text-wrap {
  width: 70%;
  margin: 0 auto 30px;
  text-align: center;
}
.case-study-detail .cs-client .heading-text-wrap .heading-text,
.case-study-detail .cs-brief .heading-text-wrap .heading-text,
.case-study-detail .cs-approach .heading-text-wrap .heading-text,
.case-study-detail .cs-outcome .heading-text-wrap .heading-text {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--main-heading-size);
  font-weight: 700;
  color: var(--main-heading-color);
  margin: 0 0 10px 0;
}
.case-study-detail .cs-client .heading-text-wrap .description-text,
.case-study-detail .cs-brief .heading-text-wrap .description-text,
.case-study-detail .cs-approach .heading-text-wrap .description-text,
.case-study-detail .cs-outcome .heading-text-wrap .description-text {
  margin-bottom: 0;
}
.case-study-detail .cs-hero {
  background: linear-gradient(207deg, rgba(5, 18, 127, 0.91) 0%, rgb(20, 20, 20) 100%);
  position: relative;
  padding: var(--section-padding);
}
.case-study-detail .cs-hero .breadcrumb {
  top: 0;
  left: 3.4%;
}
.case-study-detail .cs-hero .container {
  position: relative;
  z-index: 2;
}
.case-study-detail .cs-hero h1 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.case-study-detail .cs-hero .cs-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.case-study-detail .cs-hero .cs-hero-actions .common-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 40px;
  margin: 0 auto;
  margin: 0;
}
.case-study-detail .cs-hero .cs-hero-actions .cs-meta {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin: 0;
}
.case-study-detail .cs-hero .cs-hero-actions .cs-meta span {
  color: var(--primary-color);
}
.case-study-detail .cs-hero .cs-hero-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.case-study-detail .cs-client {
  padding: var(--section-padding);
}
.case-study-detail .cs-client .heading-text-wrap {
  width: 100%;
  margin: 0;
}
.case-study-detail .cs-client .heading-text-wrap .heading-text {
  text-align: left;
  color: var(--main-heading-color);
}
.case-study-detail .cs-client p {
  margin-bottom: 15px;
}
.case-study-detail .cs-client .cs-glance {
  border-radius: 14px;
  padding: 25px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.case-study-detail .cs-client .cs-glance h3 {
  font-size: 16px;
  color: var(--main-heading-color);
  margin-bottom: 15px;
}
.case-study-detail .cs-client .cs-glance ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-study-detail .cs-client .cs-glance ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.case-study-detail .cs-client .cs-glance ul li:last-child {
  border-bottom: 0;
}
.case-study-detail .cs-client .cs-glance ul li span {
  font-size: 14px;
}
.case-study-detail .cs-client .cs-glance ul li strong {
  color: var(--main-heading-color);
  font-size: 14px;
  text-align: right;
}
.case-study-detail .cs-brief {
  padding: var(--section-padding);
  background: #eef4ff;
}
.case-study-detail .cs-brief .container {
  position: relative;
  z-index: 1;
}
.case-study-detail .cs-brief .heading-text-wrap {
  width: 100%;
  margin: 0;
}
.case-study-detail .cs-brief .heading-text-wrap .heading-text {
  text-align: left;
}
.case-study-detail .cs-brief .heading-text-wrap p {
  text-align: left;
}
.case-study-detail .cs-brief .cs-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-study-detail .cs-brief .cs-checklist li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #dbe6fb;
}
.case-study-detail .cs-brief .cs-checklist li:last-child {
  border-bottom: 0;
}
.case-study-detail .cs-brief .cs-checklist li svg {
  flex-shrink: 0;
  stroke: var(--primary-color);
  margin-top: 2px;
}
.case-study-detail .cs-brief .cs-checklist li span {
  font-size: 15px;
}
.case-study-detail .cs-brief .cs-checklist li span strong {
  color: var(--primary-color);
}
.case-study-detail .cs-approach {
  padding: var(--section-padding);
  background: linear-gradient(207deg, rgba(5, 18, 127, 0.91) 0%, rgb(20, 20, 20) 100%);
}
.case-study-detail .cs-approach .heading-text-wrap .heading-text {
  -webkit-text-fill-color: unset;
  color: white;
}
.case-study-detail .cs-approach .heading-text-wrap p {
  color: white;
}
.case-study-detail .cs-approach .cs-approach-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.case-study-detail .cs-approach .cs-approach-card:hover {
  box-shadow: rgba(17, 24, 39, 0.08) 0px 10px 30px;
  transform: translateY(-4px);
}
.case-study-detail .cs-approach .cs-approach-card .cs-approach-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.case-study-detail .cs-approach .cs-approach-card .cs-approach-icon svg {
  stroke: var(--primary-color);
}
.case-study-detail .cs-approach .cs-approach-card .cs-card-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
}
.case-study-detail .cs-approach .cs-approach-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}
.case-study-detail .cs-approach .cs-approach-card p {
  color: white;
  font-size: 14px;
  line-height: 22px;
}
.case-study-detail .cs-outcome {
  padding: var(--section-padding);
}
.case-study-detail .cs-outcome .cs-outcome-card {
  position: relative;
  height: 100%;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.case-study-detail .cs-outcome .cs-outcome-card .cs-outcome-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 30px;
}
.case-study-detail .cs-outcome .cs-outcome-card .cs-outcome-badge.up {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}
.case-study-detail .cs-outcome .cs-outcome-card .cs-outcome-badge.down {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
}
.case-study-detail .cs-outcome .cs-outcome-card h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.case-study-detail .cs-outcome .cs-outcome-card h3 span {
  font-size: 26px;
}
.case-study-detail .cs-outcome .cs-outcome-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.case-study-detail .cs-outcome .cs-outcome-card p {
  font-size: 14px;
  line-height: 22px;
}

.tech-stack-main {
  padding: var(--section-padding);
}
.tech-stack-main .text-wrap h2 {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--main-heading-size);
  font-weight: 700;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons img {
  cursor: pointer;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  margin: 10px 0;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons img:hover {
  opacity: 1;
  filter: none;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons:nth-child(1) img:nth-child(1) {
  margin-left: 80px;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons:nth-child(1) img:nth-child(2) {
  margin-right: 80px;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons:nth-child(3) img:nth-child(1) {
  margin-left: 80px;
}
.tech-stack-main .tech-stack-wrap .tech-stack-icons:nth-child(3) img:nth-child(2) {
  margin-right: 80px;
}

.why-us-main {
  padding: var(--section-padding);
  overflow: hidden;
}
.why-us-main .why-us-wrap .why-us-item {
  position: relative;
}
.why-us-main .why-us-wrap .why-us-item.first-child {
  height: 100%;
}
.why-us-main .why-us-wrap .why-us-item.first-child img {
  position: relative;
  top: 100px;
}
.why-us-main .why-us-wrap .why-us-item h2 {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-size: var(--main-heading-size);
  font-weight: 700;
  color: var(--main-heading-color);
  margin: 0 0 10px 0;
}
.why-us-main .why-us-wrap .why-us-item p {
  font-size: 16px;
  margin-bottom: 20px;
}
.why-us-main .why-us-wrap .why-us-item .img2 {
  position: absolute;
  left: -10%;
  z-index: 1;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.why-us-main .why-us-wrap .why-us-item .img3 {
  position: relative;
  height: 400px;
  left: -20%;
}
.why-us-main .why-us-wrap .why-us-item .why-us-card {
  background-color: white;
  height: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 40px 0px 40px 0px;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-item {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 40px 0px 40px 0px;
  border: 0;
  margin-bottom: 16px;
  overflow: hidden;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-button {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: white;
  color: black;
  box-shadow: none;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: white;
  box-shadow: none;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-button:focus {
  box-shadow: none;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-button::after {
  width: 15px;
  height: 15px;
  background-size: contain;
}
.why-us-main .why-us-wrap .why-us-item .why-us-accordion .accordion-body {
  padding: 0 20px 20px;
  font-size: 16px;
}

.case-studies-main {
  padding: 100px 0;
  background-image: url(/assets/images/homepage/case-study.webp);
  background-size: contain;
  background-position: center;
  position: relative;
}
.case-studies-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.7;
}
.case-studies-main .text-wrap {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-left: 8rem;
}
.case-studies-main .text-wrap h2 {
  color: white;
  font-size: var(--main-heading-size);
  font-weight: 700;
  margin: 0 0 20px 0;
}
.case-studies-main .text-wrap p {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}
.case-studies-main .text-wrap .view-more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 40px;
}
.case-studies-main .case-studies-slider {
  margin-bottom: 10px;
}
.case-studies-main .case-studies-slider .slider-item {
  margin: 10px;
}
.case-studies-main .case-studies-slider .slider-item.slick-current h4 {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
}
.case-studies-main .case-studies-slider .slider-item h4 {
  background: white;
  font-size: 14px;
  line-height: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 500;
}
.case-studies-main .case-studies-slider .slider-item h4:hover {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
}
.case-studies-main .slider-for .slick-slide {
  margin: 10px;
}
.case-studies-main .slider-for .slick-dots li button::before {
  color: white;
  font-size: 10px;
}
.case-studies-main .slider-for .slick-dots li.slick-active button::before {
  color: white;
  opacity: 1;
}
.case-studies-main .slider-for .case-studies-card {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  height: 350px;
  overflow: hidden;
}
.case-studies-main .slider-for .case-studies-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgb(0, 0, 0), transparent);
  opacity: 0.5;
  z-index: 1;
}
.case-studies-main .slider-for .case-studies-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-studies-main .slider-for .case-studies-card:hover::before {
  background: black;
  opacity: 0.6;
}
.case-studies-main .slider-for .case-studies-card:hover .card-body {
  transform: translateY(48%);
}
.case-studies-main .slider-for .case-studies-card:hover .card-body p {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  transition-delay: 0.1s;
}
.case-studies-main .slider-for .case-studies-card:hover .read-more-btn {
  color: #f5ad0d;
}
.case-studies-main .slider-for .case-studies-card .card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  transform: translateY(72%);
  transition: all 0.3s ease-in-out;
}
.case-studies-main .slider-for .case-studies-card .card-body a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #e1e6ee;
  line-height: 25px;
  padding-bottom: 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.case-studies-main .slider-for .case-studies-card .card-body a:hover {
  color: var(--primary-color);
}
.case-studies-main .slider-for .case-studies-card .card-body p {
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.case-studies-main .slider-for .case-studies-card .card-body p:not(:nth-child(2)) {
  display: none;
}

.testimonials-main {
  padding: var(--section-padding);
}
.testimonials-main .widget-wrap {
  position: relative;
  z-index: 1;
}
.testimonials-main .widget-wrap .img-wrap img {
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
.testimonials-main .widget-wrap.widget-wrap-left .img-wrap:nth-child(1) {
  margin: 0% 0% 0% 28%;
}
.testimonials-main .widget-wrap.widget-wrap-left .img-wrap:nth-child(2) {
  margin: 0 28% 0% 0%;
}
.testimonials-main .widget-wrap.widget-wrap-left .img-wrap:nth-child(3) {
  margin: 30px 35px 30px 0px;
}
.testimonials-main .widget-wrap.widget-wrap-left .img-wrap:nth-child(4) {
  margin: 0% 0% 0% 19%;
}
.testimonials-main .widget-wrap.widget-wrap-left .img-wrap:nth-child(5) {
  margin: 0 21% 0% 0%;
}
.testimonials-main .widget-wrap.widget-wrap-right .img-wrap:nth-child(1) {
  margin: 0% 0% 0% 38%;
}
.testimonials-main .widget-wrap.widget-wrap-right .img-wrap:nth-child(2) {
  margin: 0 26% 0% 0%;
}
.testimonials-main .widget-wrap.widget-wrap-right .img-wrap:nth-child(3) {
  margin: 20px 0px 10px 20px;
}
.testimonials-main .widget-wrap.widget-wrap-right .img-wrap:nth-child(4) {
  margin: 10px 16% 0% 0%;
}
.testimonials-main .widget-wrap.widget-wrap-right .img-wrap:nth-child(5) {
  margin: 0 0% 0% 29%;
}
.testimonials-main .testimonial-slider {
  background-color: rgba(255, 255, 255, 0.5411764706);
  width: 650px;
  padding: 30px;
  border-radius: 40px;
  margin: 50px auto 80px auto;
  margin-top: -350px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  z-index: 1;
}
.testimonials-main .testimonial-slider .slick-dots {
  bottom: -55px;
}
.testimonials-main .testimonial-slider .slick-dots li button::before {
  font-size: 15px;
  color: #6f6af8;
}
.testimonials-main .testimonial-slider .slick-dots li.slick-active button:before {
  color: #6f6af8;
}
.testimonials-main .testimonial-slider .slider-item {
  text-align: center;
  padding: 0 30px;
}
.testimonials-main .testimonial-slider .slider-item svg {
  fill: #6f6af8;
}
.certification-main {
  padding: 100px 0;
  background-image: url(/assets/images/covers/certification-cover.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.certification-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.certification-main .heading-text-wrap {
  position: relative;
  z-index: 1;
}
.certification-main .heading-text-wrap .heading-text {
  color: white;
  -webkit-text-fill-color: unset;
}
.certification-main .heading-text-wrap .description-text {
  color: white;
}
.certification-main .certification-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.certification-main .certification-wrap .items img {
  background-color: white;
  width: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  margin: 4px;
}

.faq-main {
  padding: var(--section-padding);
}
.faq-main .accordion-flush .accordion-item {
  border-radius: 10px;
  margin-bottom: 10px;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button {
  background-color: white;
  align-items: center;
  height: 70px;
  gap: 15px;
  border: 0;
  box-shadow: none;
  padding: 10px 22px;
  border-radius: 10px;
  margin-bottom: 5px;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button.collapsed span {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button.collapsed span svg {
  stroke: #6366f1;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button p {
  color: #1e1b4b;
  font-weight: 600;
  font-size: 16px;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button::after {
  width: 15px;
  height: 15px;
  background-size: contain;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button span {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-main .accordion-flush .accordion-item .accordion-header .accordion-button span svg {
  width: 15px;
  height: 15px;
  transition: all 0.2s ease;
  stroke: white;
}
.faq-main .accordion-flush .accordion-item .accordion-body {
  border-top: 1px solid #dfdfdf;
  text-align: justify;
}

.our-team-main {
  padding: 100px 0;
  background-image: url(/assets/images/covers/why-us-cover.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.our-team-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.our-team-main .text-wrap {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.our-team-main .text-wrap h2 {
  color: white;
  font-size: var(--main-heading-size);
  font-weight: 700;
  margin: 0 0 10px 0;
}
.our-team-main .text-wrap p {
  color: white;
  margin-bottom: 30px;
}
.our-team-main .join-us-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-weight: 600;
  padding: 5px 40px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
.our-team-main .our-team-slider .slick-slide {
  margin: 10px;
}
.our-team-main .our-team-slider .slick-slide img {
  border-radius: 10px;
}
.our-team-main .our-team-slider .slick-dots li button::before {
  color: white;
  font-size: 10px;
}
.our-team-main .our-team-slider .slick-dots li.slick-active button::before {
  color: white;
  opacity: 1;
}

.get-in-touch {
  padding: var(--section-padding);
}
.get-in-touch form input {
  background-color: unset;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #ced3d9;
  border-radius: 0;
}
.get-in-touch form input:focus {
  box-shadow: none;
}
.get-in-touch form select {
  background-color: unset;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #ced3d9;
}
.get-in-touch form select:focus {
  box-shadow: none;
}
.get-in-touch form textarea {
  background-color: unset;
  border: 0;
  border-bottom: 1px solid #ced3d9;
  border-radius: 0;
}
.get-in-touch form textarea:focus {
  box-shadow: none;
}
.get-in-touch form .captcha-reload-btn {
  background-color: rgb(243, 243, 243);
  padding: 3px 10px;
  margin-right: 10px;
}
.get-in-touch form .captcha-reload-btn:active {
  border: 1px solid var(--primary-color);
}
.get-in-touch form .captcha-text {
  background-color: rgb(243, 243, 243);
  width: 100%;
  align-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 4px 15px;
  line-height: normal;
}
.get-in-touch form .captcha-text span {
  font-weight: 600;
  text-align: center;
}
.get-in-touch form .captcha-input {
  background-color: rgb(243, 243, 243);
  font-size: 14px;
  text-align: center;
  padding: 5px 20px;
  border: 0;
  border-radius: 5px;
  outline: 0;
}
.get-in-touch form .submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  padding: 6px 30px;
  border: 0;
  border-radius: 40px;
}
.get-in-touch .form-text-wrap {
  padding: 0 30px;
}
.get-in-touch .form-text-wrap h4 {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 50px;
}
.get-in-touch .form-text-wrap p {
  margin-bottom: 20px;
}
.get-in-touch .form-text-wrap .separator {
  display: block;
  width: 15%;
  height: 4px;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
}
.get-in-touch .form-text-wrap h5 {
  margin-top: 60px;
}
.get-in-touch .form-text-wrap a {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #6f6af8;
  transition: all 0.3s ease;
}
.get-in-touch .form-text-wrap a:hover {
  color: var(--main-heading-color);
}

.cta-main {
  padding: var(--section-padding);
}
.cta-main .cta-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-main .cta-content {
  max-width: 620px;
}
.cta-main .cta-content h2 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-main .cta-content p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
}
.cta-main .cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 40px;
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.cta-main .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 106, 248, 0.4);
}

.modal .modal-dialog {
  max-width: 100%;
}
.modal .modal-dialog .modal-content {
  min-height: 100vh;
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  border: 0;
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
  box-shadow: none;
}
.modal .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 50px 0;
}
.modal .modal-dialog .modal-content .modal-body .search-box {
  margin-bottom: 30px;
  position: relative;
}
.modal .modal-dialog .modal-content .modal-body .search-box .btn-close {
  box-shadow: none;
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 999;
  background-color: #f8f9fb;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  padding: 12px;
}
.modal .modal-dialog .modal-content .modal-body .search-box input {
  background-color: #f8f9fb;
  width: 90%;
  box-shadow: none;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
}
.modal .modal-dialog .modal-content .modal-body .search-box input:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.modal .modal-dialog .modal-content .modal-body .search-box input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.modal .modal-dialog .modal-content .modal-body .search-box svg {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 6px;
}
.modal .modal-dialog .modal-content .modal-body .search-box #clearBtn {
  background-color: var(--primary-color);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 20px;
  border-radius: 30px;
}
.modal .modal-dialog .modal-content .modal-body .search-box #searchIcon,
.modal .modal-dialog .modal-content .modal-body .search-box #clearBtn {
  position: absolute;
  right: 11%;
  top: 50%;
  transform: translateY(-50%);
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items {
  padding: 10px;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e9ee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading h3 {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading h3 svg {
  margin-right: 5px;
  stroke: var(--primary-color);
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading a {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-size: 13px;
  line-height: normal;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading a svg {
  margin-left: 5px;
  stroke: var(--main-color);
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading a:hover {
  color: var(--primary-color);
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items .heading a:hover svg {
  stroke: var(--primary-color);
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items ul {
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items ul li {
  list-style: none;
  margin-bottom: 20px;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items ul li a {
  color: var(--main-color);
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.modal .modal-dialog .modal-content .modal-body .search-results .search-items ul li a:hover {
  color: var(--primary-color);
}

.footer-main {
  background-color: black;
  padding: 40px 0 0 0;
}
.footer-main .about-us {
  padding: 0;
}
.footer-main .about-us img {
  margin-bottom: 20px;
}
.footer-main .about-us h4 {
  color: white;
  font-weight: 600;
}
.footer-main .about-us p {
  color: white;
  font-size: 16px;
}
.footer-main .copyright {
  background-color: black;
  margin-top: 20px;
  border-top: 1px solid #333;
}
.footer-main .copyright p {
  color: white;
  font-size: 16px;
}
.footer-main .quick-links .list-unstyled h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.footer-main .quick-links .list-unstyled h4 img {
  color: #0064b4;
}
.footer-main .quick-links .list-unstyled p {
  display: flex;
  align-items: flex-start;
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
.footer-main .quick-links .list-unstyled p svg {
  margin-top: 2px;
  margin-right: 8px;
}
.footer-main .quick-links .list-unstyled a {
  display: flex;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
.footer-main .quick-links .list-unstyled a:hover {
  color: #00aaff;
}
.footer-main .quick-links .list-unstyled a svg {
  margin-top: 2px;
  margin-right: 8px;
}
.footer-main ul {
  padding: 0;
}
.footer-main ul li {
  margin-bottom: 5px;
}
.footer-main ul li a {
  color: white;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.footer-main ul li a img {
  width: 20px;
}
.footer-main ul li a:hover {
  transform: translateX(15px);
}
.footer-main .social-icons a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-main .social-icons img {
  margin: 0 10px;
}

.breadcrumb {
  position: absolute;
  top: 4%;
  left: 4%;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 6px 0;
  margin: 0 auto;
  margin-bottom: 20px;
  z-index: 1;
}
.breadcrumb .breadcrumb-item {
  line-height: normal;
  display: flex;
}
.breadcrumb .breadcrumb-item a {
  display: block;
  color: white;
  font-size: 15px;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color);
}
.breadcrumb .breadcrumb-item.active {
  color: white;
  font-size: 15px !important;
}
.breadcrumb .breadcrumb-item::before {
  color: white;
  font-weight: 600;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: none;
}
.breadcrumb .breadcrumb-item {
  padding: 0;
}
.breadcrumb .breadcrumb-item:not(:last-child)::after {
  position: relative;
  content: " ";
  background-image: url(../images/homepage/angle-right-solid-full.svg);
  top: 3px;
  height: 16px;
  width: 16px;
  padding: 0;
  margin-right: 5px;
}

.banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.banner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 1;
}
.banner .banner-img {
  position: absolute;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-text {
  padding: 0 35px;
  text-align: center;
  z-index: 99;
}
.banner .banner-text h1 {
  font-size: 30px;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}
.banner .banner-text p {
  color: white;
}
.banner .banner-text .common-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 40px;
  margin: 0 auto;
}

.about-us-intro {
  padding: var(--section-padding);
}
.about-us-intro .heading p {
  text-align: justify;
}
.about-us-intro .about-intro-wrap:not(:last-child) {
  margin-bottom: 40px;
}
.about-us-intro .about-intro-wrap .intro-card {
  padding: 30px 0;
  align-content: center;
}
.about-us-intro .about-intro-wrap .intro-card h3 {
  font-size: 20px;
  margin: 0 0 10px 0;
  font-weight: 700;
}
.about-us-intro .about-intro-wrap .intro-card p {
  text-align: justify;
  margin-bottom: 10px;
}
.about-us-intro .about-intro-wrap .img-dv {
  width: 100%;
  overflow: hidden;
  border-radius: 40px;
}
.about-us-intro .about-intro-wrap .img-dv img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
  transition: all 0.3s ease-in;
}
.about-us-intro .about-intro-wrap .img-dv:hover img {
  transform: scale(1.1);
}

.mission-vision {
  padding: var(--section-padding);
}
.mission-vision .heading {
  height: 100%;
  align-content: center;
  padding-right: 20px;
  margin-bottom: 0;
}
.mission-vision .heading h2 {
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  font-weight: 600;
}
.mission-vision .heading h5 {
  font-size: 17px;
  font-weight: 600;
}
.mission-vision .heading p {
  text-align: justify;
  margin-bottom: 0;
}
.mission-vision .card-wrap {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 40px;
  height: 440px;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.mission-vision .card-wrap img {
  margin: 0 auto 15px;
}
.mission-vision .card-wrap h4 {
  font-weight: 600;
}
.mission-vision .card-wrap p {
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}

.imarc-contact {
  padding: var(--section-padding);
}
.imarc-contact .card-wrap {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.imarc-contact .card-wrap img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.imarc-contact .card-wrap .content-wrap {
  height: 200px;
  padding: 20px;
}
.imarc-contact .card-wrap .content-wrap h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.imarc-contact .card-wrap .content-wrap p {
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px;
}
.imarc-contact .card-wrap .content-wrap .find-btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: var(--main-color);
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  padding: 5px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

#ourCustomer {
  scroll-margin-top: 70px;
}

.services-main .service-wrap {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 30px;
}
.services-main .service-wrap .service-list {
  padding: 0 40px;
}
.services-main .service-wrap .service-list .service-heading {
  display: block;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.services-main .service-wrap .service-list .service-heading:hover {
  -webkit-text-fill-color: #6f6af8;
}
.services-main .service-wrap .service-list ul {
  padding-left: 10px;
  margin: 0;
}
.services-main .service-wrap .service-list ul li {
  list-style: none;
  font-size: var(--li-size);
  color: black;
  font-weight: 500;
  gap: 5px;
  margin-bottom: 12px;
}
.services-main .service-wrap .service-list ul li p {
  display: flex;
  justify-content: flex-start;
}
.services-main .service-wrap .service-list ul li img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: 6px;
}
.services-main .service-wrap .img-dv img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sector-main {
  padding: var(--section-padding);
}
.sector-main .flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
}
.sector-main .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.sector-main .flip-card .card-front,
.sector-main .flip-card .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sector-main .flip-card .card-front {
  position: relative;
}
.sector-main .flip-card .card-front img {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sector-main .flip-card .card-front h4 {
  position: relative;
  color: white;
  z-index: 1;
}
.sector-main .flip-card .card-front::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.8;
  z-index: 1;
}
.sector-main .flip-card .card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}
.sector-main .flip-card .card-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sector-main .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.banner .banner-text {
  position: relative;
}
.banner .banner-text p {
  color: white;
  margin-bottom: 20px;
}

.why-us-intro {
  padding: var(--section-padding);
}
.why-us-intro .intro-content-wrap {
  margin-bottom: 0;
}
.why-us-intro .intro-content-wrap p {
  margin-bottom: 10px;
}
.why-us-intro .intro-content-wrap p:last-child {
  margin-bottom: 0;
}

.key-differentiation .key-differentiation-slider .slick-slide {
  margin: 10px 5px;
}
.key-differentiation .slider-items {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.key-differentiation .card-wrap {
  padding: 20px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  height: 610px;
  margin: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.key-differentiation .card-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.8;
}
.key-differentiation .card-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.key-differentiation .card-wrap .card-heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.key-differentiation .card-wrap .card-heading svg {
  background-color: #e6ecff;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  padding: 5px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
.key-differentiation .card-wrap .card-content {
  position: relative;
}
.key-differentiation .card-wrap h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
}
.key-differentiation .card-wrap h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
}
.key-differentiation .card-wrap p {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
}
.key-differentiation .card-wrap ul {
  padding-left: 25px;
  margin: 0;
}
.key-differentiation .card-wrap ul li {
  color: white;
  position: relative;
  list-style: none;
  margin-bottom: 5px;
}
.key-differentiation .card-wrap ul li::before {
  position: absolute;
  content: "";
  background-image: url(../images/angle-right-light.svg);
  width: 18px;
  height: 18px;
  left: -25px;
  top: 2px;
}

.our-process-main {
  padding: var(--section-padding);
}
.our-process-main .card-wrap {
  background-color: white;
  padding: 20px;
  height: 220px;
  border-radius: 10px;
  display: flex;
  gap: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.our-process-main .card-wrap img {
  padding: 0px;
  margin-right: 15px;
}
.our-process-main .card-wrap .content-wrap {
  width: 90%;
}
.our-process-main .card-wrap .content-wrap h3 {
  font-size: 18px;
  font-weight: 600;
}
.our-process-main .card-wrap .content-wrap p {
  font-size: 15px;
  font-weight: 500;
}

.features-compatibility table thead tr th {
  white-space: nowrap;
  width: 33%;
  background-color: var(--main-color);
  color: white;
  font-size: 17px;
  font-weight: 600;
  padding: 15px;
}
.features-compatibility table tbody tr td:first-child {
  font-weight: 600;
}
.features-compatibility table tbody tr td img {
  width: 30px;
  margin-right: 10px;
}
.features-compatibility table tr th {
  padding: 15px;
}
.features-compatibility table tr td {
  white-space: nowrap;
  align-content: center;
  padding: 10px 40px 10px 20px;
  font-weight: 500;
}

.client-benefits {
  padding: var(--section-padding);
}
.client-benefits .heading {
  margin-bottom: 20px;
}
.client-benefits .img-dv img {
  width: 100%;
  height: 490px;
  -o-object-fit: cover;
     object-fit: cover;
}
.client-benefits .accordion .accordion-item {
  border: 1px solid #dbdbdb;
  margin-bottom: 10px;
}
.client-benefits .accordion .accordion-item .accordion-header {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.client-benefits .accordion .accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  background-color: #f0f4f9;
  font-weight: 600;
  padding: 10px 15px;
}
.client-benefits .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #dbdbdb;
}
.client-benefits .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(/assets/images/why-us/minus-solid-full.svg);
}
.client-benefits .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(/assets/images/why-us/plus-solid-full.svg);
}
.client-benefits .accordion .accordion-item .accordion-body ul {
  padding: 0;
  margin: 0;
}
.client-benefits .accordion .accordion-item .accordion-body ul li {
  list-style: none;
  margin-bottom: 10px;
}
.client-benefits .accordion .accordion-item .accordion-body ul li img {
  width: 20px;
  margin-right: 10px;
  margin-top: -2px;
}

.quality-assurance {
  padding-bottom: 50px;
}
.quality-assurance .main-box-wrapper {
  display: flex;
}
.quality-assurance .main-box-wrapper .box-items:nth-child(1) {
  width: 30%;
}
.quality-assurance .main-box-wrapper .box-items:nth-child(2) {
  width: 40%;
}
.quality-assurance .main-box-wrapper .box-items:nth-child(3) {
  width: 30%;
}
.quality-assurance .main-box-wrapper .card-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: start;
  gap: 10px;
}
.quality-assurance .main-box-wrapper .card-wrapper .icon-box {
  width: 10%;
}
.quality-assurance .main-box-wrapper .card-wrapper .icon-box span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0064b4;
  color: white;
  font-weight: 600;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 10px 0;
}
.quality-assurance .main-box-wrapper .card-wrapper .content-wrap {
  width: 85%;
  padding: 10px;
}
.quality-assurance .main-box-wrapper .card-wrapper .content-wrap h4 {
  font-size: 17px;
  font-weight: 600;
}
.quality-assurance .main-box-wrapper .img-dv {
  padding: 20px;
  align-content: center;
  height: 100%;
  margin: 0 auto;
}

.contact-us-main {
  padding: var(--section-padding);
}
.contact-us-main .contact-info {
  height: 100%;
  padding: 22px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 20px;
}
.contact-us-main .contact-info h2 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--main-heading-size);
  font-weight: 700;
  margin: 0 0 10px 0;
}
.contact-us-main .contact-info .contact-info-wrap {
  display: flex;
  gap: 20px;
  padding: 18px;
}
.contact-us-main .contact-info .contact-info-wrap .icon-box {
  width: 80px;
  height: 80px;
  background-color: #E4F1FC;
  padding: 15px;
  border-radius: 50%;
}
.contact-us-main .contact-info .contact-info-wrap .icon-box img {
  width: 80px;
}
.contact-us-main .contact-info .contact-info-wrap h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-us-main .contact-info .contact-info-wrap a {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.contact-us-main .contact-info .contact-info-wrap a span svg {
  margin-right: 10px;
}
.contact-us-main .contact-info .contact-info-wrap a:hover span {
  color: black;
}
.contact-us-main .contact-info .contact-info-wrap a:hover {
  color: #0064b4;
}
.contact-us-main .contact-info .contact-info-wrap p {
  font-size: 15px;
  margin-bottom: 5px;
}
.contact-us-main .contact-info .separator {
  display: block;
  width: 95%;
  height: 1px;
  background-color: #dfdfdf;
  margin: 0 10px;
}
.contact-us-main .contact-form {
  padding: 22px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 20px;
}
.contact-us-main .contact-form form label {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 5px;
}
.contact-us-main .contact-form form input {
  box-shadow: none;
  background-color: #f3f3f3;
  border: 0;
  padding: 4px 12px;
}
.contact-us-main .contact-form form select {
  box-shadow: none;
  background-color: #f3f3f3;
  font-size: 14px;
  padding: 5px 12px;
  border: 0;
}
.contact-us-main .contact-form form textarea {
  box-shadow: none;
  background-color: #f3f3f3;
  border: 0;
}
.contact-us-main .contact-form form .captcha-reload-btn {
  background-color: rgb(243, 243, 243);
  padding: 3px 10px;
  margin-right: 10px;
}
.contact-us-main .contact-form form .captcha-reload-btn:active {
  border: 1px solid var(--primary-color);
}
.contact-us-main .contact-form form .captcha-text {
  background-color: rgb(243, 243, 243);
  width: 100%;
  align-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 4px 15px;
  line-height: normal;
}
.contact-us-main .contact-form form .captcha-text span {
  font-weight: 600;
  text-align: center;
}
.contact-us-main .contact-form form .captcha-input {
  background-color: rgb(243, 243, 243);
  font-size: 14px;
  text-align: center;
  padding: 5px 20px;
  border: 0;
  border-radius: 5px;
  outline: 0;
}
.contact-us-main .contact-form form .submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  padding: 6px 30px;
  border: 0;
  border-radius: 40px;
}
.contact-us-main .contact-map {
  margin-top: 30px;
}

.privacy-policy-main {
  padding: var(--section-padding);
}
.privacy-policy-main .heading {
  margin-bottom: 20px;
}
.privacy-policy-main .heading h1 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  font-weight: 600;
}
.privacy-policy-main .heading p a {
  color: var(--primary-color);
}
.privacy-policy-main .heading p a:hover {
  color: var(--main-color);
}
.privacy-policy-main .content-wrap h2,
.privacy-policy-main .content-wrap h3 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
}
.privacy-policy-main .content-wrap p {
  text-align: justify;
  margin-bottom: 10px;
}
.privacy-policy-main .content-wrap p:last-child {
  margin-bottom: 0;
}
.privacy-policy-main .content-wrap p a {
  color: var(--primary-color);
}
.privacy-policy-main .content-wrap p a:hover {
  color: var(--main-color);
}
.privacy-policy-main .content-wrap .disclaimer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.privacy-policy-main .content-wrap .disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: justify;
  margin-bottom: 15px;
}
.privacy-policy-main .content-wrap .disclaimer-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--primary-color);
}
.privacy-policy-main .content-wrap .disclaimer-list li:last-child {
  margin-bottom: 0;
}

.terms-main {
  padding: var(--section-padding);
}
.terms-main .heading {
  margin-bottom: 20px;
}
.terms-main .heading h2 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  font-weight: 600;
}
.terms-main .heading p a {
  color: var(--primary-color);
}
.terms-main .heading p a:hover {
  color: var(--main-color);
}
.terms-main .content-wrap h2,
.terms-main .content-wrap h3 {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
}
.terms-main .content-wrap p {
  text-align: justify;
  margin-bottom: 10px;
}
.terms-main .content-wrap p:last-child {
  margin-bottom: 0;
}
.terms-main .content-wrap p a {
  color: var(--primary-color);
}
.terms-main .content-wrap p a:hover {
  color: var(--main-color);
}

.cookie-main {
  position: fixed;
  bottom: 0;
  background-color: black;
  padding: 8px 0;
  width: 100%;
  z-index: 999;
}
.cookie-main p {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cookie-main p a {
  display: inline;
  color: var(--primary-color);
  text-decoration: underline !important;
  text-decoration-color: white !important;
  text-underline-offset: 6px;
}
.cookie-main .accept-cookies {
  background: white;
  color: black;
  padding: 0 15px;
  margin-right: 5px;
  margin-left: 10px !important;
}
.cookie-main .accept-cookies,
.cookie-main .cancel-btn {
  border: none;
  outline: 0;
  border-radius: 2px;
  transition: 0.35s;
  font-size: 11px;
  font-weight: 700;
}
.cookie-main .cancel-btn {
  background: white;
  font-weight: 700;
  padding: 0 10px;
}

.error-main {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f4f8ff 0%, #faf6ff 100%);
  overflow: hidden;
}
.error-main .error-content .error-code {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 125px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-main .error-content .error-title {
  position: relative;
  font-size: 35px;
  font-weight: 700;
  color: #1c2136;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-bottom: 14px;
}
.error-main .error-content .error-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #00AAFF 0%, #6F6AF8 50%, #D92AF7 100%);
}
.error-main .error-content > p {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  line-height: 28px;
  margin-bottom: 10px;
}
.error-main .error-nav h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1c2136;
  margin-bottom: 10px;
}
.error-main .error-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-bottom: 1px solid #e7ecf5;
  transition: 0.35s;
  margin-bottom: 5px;
}
.error-main .error-nav-card:hover {
  padding-left: 10px;
  padding-right: 10px;
  background: #ffffff;
  border-radius: 12px;
  border-bottom-color: transparent;
  box-shadow: 0 8px 24px rgba(111, 106, 248, 0.12);
}
.error-main .error-nav-card:hover .arrow {
  color: var(--primary-color);
  transform: translateX(4px);
}
.error-main .error-nav-card .icon-box {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-main .error-nav-card .icon-box.blue {
  background: #e7f2ff;
  color: #2495ff;
}
.error-main .error-nav-card .icon-box.purple {
  background: #f1ecfe;
  color: #8b5cf6;
}
.error-main .error-nav-card .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.error-main .error-nav-card .text strong {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1c2136;
  line-height: 20px;
}
.error-main .error-nav-card .text small {
  font-size: 14px;
  color: #6a7285;
}
.error-main .error-nav-card .arrow {
  flex-shrink: 0;
  color: #9aa3b8;
  transition: 0.35s;
}
.error-main .error-help {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #dfe4f5;
  border-radius: 16px;
  background: #f7f9ff;
}
.error-main .error-help .help-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #3C8EF5 0%, #A64AF6 100%);
}
.error-main .error-help .help-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1c2136;
  margin-bottom: 6px;
}
.error-main .error-help .help-text p {
  font-size: 15px;
  color: #5a6275;
  margin-bottom: 14px;
}
.error-main .error-help .help-text .common-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00AAFF 0%, #3C8EF5 25%, #6F6AF8 50%, #A64AF6 75%, #D92AF7 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 26px;
  border-radius: 40px;
}
@media (max-width: 991px) {
  .error-main .error-content {
    text-align: center;
  }
  .error-main .error-content .error-code {
    margin: 0 auto;
    font-size: 60px;
  }
  .error-main .error-content .error-title {
    font-size: 25px;
  }
  .error-main .error-content .error-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .error-main .error-nav h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .error-main .error-content .error-code {
    margin: 0 auto;
    font-size: 50px;
  }
  .error-main .error-content .error-title {
    font-size: 30px;
  }
  .error-main .error-help {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */