/* Importing Local Fonts */
@font-face {
  font-family: Aktivgrotesk-bold;
  src: url("../assets/fonts/AktivGrotesk/TTF/AktivGrotesk-Bold.ttf");
}

@font-face {
  font-family: Aktivgrotesk-regular;
  src: url("../assets/fonts/AktivGrotesk/TTF/AktivGrotesk-Regular.ttf");
}

@font-face {
  font-family: Aktivgrotesk-medium;
  src: url("../assets/fonts/AktivGrotesk/TTF/AktivGrotesk-Medium.ttf");
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.freeze-body {
  height: 130vh;
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

/* Webkit browsers (Chrome, Safari, newer Edge) */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.hide-scrollbar {
  scrollbar-width: none;
}

/* IE and Edge */
.hide-scrollbar {
  -ms-overflow-style: none;
}

:root {
  /* Colors */
  --purple-primary: #8600ff;
  --purple-secondary: #6624a2;
  --yellow: #ffcc00;
  --secondary-text: #777777;

  /* Fonts */
  --poppins: "Poppins", sans-serif;
  --pontano-sans: "Pontano Sans", sans-serif;
  --merriweather: "Merriweather", serif;
  --aktivgrostek-bold: Aktivgrotesk-bold;
  --aktivgrostek-regular: Aktivgrotesk-regular;
  --aktivgrostek-medium: Aktivgrotesk-medium;
}

.section-mt {
  margin-top: 100px;
}

button {
  font-family: var(--poppins);
}

.primary-heading {
  font-family: var(--aktivgrostek-regular);
  font-weight: 400;
  font-size: 50px;
  line-height: 140%;
}

.target-heading-word {
  color: var(--purple-primary);
}

.primary-paragraph {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;

  color: #5d5d5d;
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1480px;
  }
}

/*=================== Buttons ==================*/

.btn-yellow-border {
  font-family: var(--poppins);
  cursor: pointer;
  position: relative;
  padding: 7px 20px !important;
  font-size: 16px !important;
  color: #fff;
  border: 2px solid var(--yellow);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.btn-yellow-border::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--yellow);
  transition: all 0.3s linear;
}

.btn-yellow-border:hover::before {
  scale: 1.5;
}

.btn-yellow-border:hover {
  color: #000;
  scale: 1.1;
  box-shadow: 0 0px 20px var(--yellow);
}

.btn-yellow-border:active {
  scale: 1;
}

/*=============== Header Styling Starts Here ===================*/
header {
  width: 100%;
  box-shadow: 0 0 19px -3px #000;
}

/* Contact Info Navbar */

.home-main-navbar {
  background-color: transparent !important;
}

.navbar-contact {
  width: 100% !important;
  color: #fff;
  background: linear-gradient(
    to right,
    var(--purple-secondary) 50%,
    var(--purple-primary) 50%
  );
  display: flex;
  justify-content: center;
}

.navbar-contact > div {
  margin: 0 auto;
}

.navbar-contact-left {
  width: 50%;
}

.navbar-contact-right {
  width: 50%;
}

.navbar-contact-left ul,
.navbar-contact-right ul {
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-contact-left ul li a,
.navbar-contact-right ul li a {
  color: white;
  text-decoration: none;
  font-family: var(--pontano-sans);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Main Header Styling */
nav {
  position: absolute;
  width: 100%;
  z-index: 99999;
}

.main-navbar-left > a {
  display: flex;
  align-items: center;
}

.nav-logo-image {
  margin-top: 12px;
  width: 190px;
}

.hide-nav-logo-image {
  opacity: 0;
}

.menu-hame-burger {
  height: 24px;
  width: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-hame-burger div {
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s linear;
}

.menu-hame-burger .top-bar-toggle {
  transform: rotate(45deg) translateY(11px);
}
.menu-hame-burger .middle-bar-toggle {
  width: 0;
}
.menu-hame-burger .bottom-bar-toggle {
  transform: rotate(-45deg) translateY(-11px);
}

/* Sticky Navbar Class for Toogle */
.sticky-nav {
  transition: all 0.5s;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999999999999999;
}

.main-navbar-right {
  position: relative;
  z-index: 99;
}

/*=============== Header Styling Ends Here ===================*/

/* +============= Full Screen Menu Starts Here ============== */
.fullscreen-menu {
  width: 100vw;
  height: calc(100vh - 50px) !important;
  position: fixed;
  bottom: 0;
  z-index: 999999;
  background: #4c197a;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
  overflow-y: scroll;
  overflow-x: hidden !important;
}

.fullscreen-menu > .container {
  margin-top: 30px;
  z-index: 9999;
}

#fullscreen-menu-canvas {
  width: 100vw !important;
  height: calc(100vh - 50px) !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.fullscreen-menu-logo {
  width: 180px;
}

.fullscreen-menu-about-list {
  list-style: none;
  margin-top: 0px !important;
}

.fullscreen-menu-about-list > li {
  border-bottom: 1px solid #ffffff2e;
  padding: 10px 0;
}

.fullscreen-menu-about-list > li > a {
  color: white;
  font-size: 18px;
  font-family: var(--poppins);
}

.fullscreen-menu-about-list > li > a:hover {
  text-decoration: none;
}

.fullscreen-menu-left {
  border-right: 1px solid #ffffff2e;
  padding-right: 20px;
}

.fullscreen-menu-right {
  padding-left: 40px;
}

.fullscreen-menu-left > :nth-child(2),
.fullscreen-menu-left > :nth-child(3) {
  margin-top: 40px;
}

.fullscreen-menu-list {
  padding: 12px 25px;
  backdrop-filter: brightness(90%);
  border-radius: 12px;
}

.fullscreen-menu-heading {
  font-family: var(--aktivgrostek-bold);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
}

.fullscreen-menu-list > li {
  list-style: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff2e;
}

.fullscreen-menu-list > :nth-child(3) {
  list-style: none;
  border-bottom: none;
}

.fullscreen-menu-list > li > a {
  padding: 8px 0px;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}

.fullscreen-menu-list > li > a:hover {
  text-decoration: none;
}

.fullscreen-menu-list > li > i {
  padding: 8px;
  background: #ffffff26;
  border-radius: 100%;
  margin-right: 6px;
}

.fullscreen-menu-social-icons {
  border-top: 1px solid #ffffff2e;
  padding-top: 20px;
  gap: 20px;
}

.fullscreen-menu-social-icons > li {
  list-style: none;
}

.fullscreen-menu-social-icons > li > a {
  color: #fff;
}

.fullscreen-menu-right > h1 {
  font-size: 28px;
  line-height: 140%;
  font-family: var(--aktivgrostek-medium);
}

.fullscreen-services-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
}

.fullscreen-services-card {
  width: 100%;
  backdrop-filter: brightness(90%);
  border-radius: 12px;
  padding: 22px;
}

.fullscreen-services-card > p {
  font-family: var(--pantano-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.fullscreen-services-card > h1 {
  font-family: var(--aktivgrostek-bold);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.fullscreen-consult-button {
  margin-top: 12px;
  padding: 7px 30px;
  color: #fff;
  font-size: 14px;
  border-radius: 99px;
  border: 2px solid #fff;
  background-color: transparent;
  outline: none;
  transition: all 0.3s linear;
  text-decoration: none !important;
}

.fullscreen-consult-button:hover {
  background-color: #fff !important;
  color: var(--purple-primary);
}

.fullscreen-menu-toggle {
  opacity: 100%;
  pointer-events: fill;
}

/* ============== Full Screen Menu Ends Here ============== */

/*=============== Hero Section Styling Starts Here ===================*/
.hero-section {
  width: 100%;
  height: 73vh;
  background-image: url(./assets/images/banner-background.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-background-wrapper {
  position: relative;
  width: 100%;
}

#canvas {
  display: block;
  position: absolute;
  z-index: 0;
  height: 73vh;
  width: 100%;
}

.banner-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(70px);
}

.banner-text h1 {
  font-family: var(--aktivgrostek-bold);
  font-weight: 400;
  font-size: 4vmax;
  line-height: 150%;

  text-align: center;
}

.banner-text h2 {
  font-family: var(--aktivgrostek-bold);
  font-weight: 400;
  font-size: 2.6vmax;
  line-height: 42px;
  text-align: center;
}

.banner-text p {
  margin-top: 20px;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 1.9vmax;
  text-align: center;
}

.banner-text button {
  margin-bottom: 20px;
  margin-left: 10px;
  padding: 8px 22px;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
}

.banner-gif-wrapper {
  transform: translateY(10vh);
}

.gif-image {
  transform-origin: 0 0;
  height: 70vh;
  border-radius: 400px 0 0 400px;
}

.banner-swiper > .swiper-wrapper > div {
  /* transform: translateY(500px); */
}

.banner-swiper .swiper-pagination {
  transform: translateY(90px);
}

.banner-swiper .swiper-pagination-bullet {
  background: #fff !important; /* Change to any color you want */
  border: 1px solid #baa9a9;
  opacity: 100% !important;
  transform: scale(1.2);
}

.banner-swiper .swiper-pagination-bullet-active {
  transition: all 0.3s linear !important;
  background-color: var(--purple-primary) !important;
  width: 24px !important;
  border-radius: 100px;
}

.banner-swiper > .swiper-wrapper > :nth-child(1) > .banner-gif-wrapper {
  /* transform: translateY(100px); */
  z-index: 0;
  overflow: hidden;
  position: relative;
  right: -15px;
  /* bottom: -50px; */
}

.banner-swiper > .swiper-wrapper > :nth-child(2) > .banner-gif-wrapper {
  /* transform: translateY(100px); */
  z-index: 0;
  overflow: hidden;
  position: relative;
  right: -45px;
  /* bottom: -50px; */
}
.banner-swiper > .swiper-wrapper > :nth-child(3) > .banner-gif-wrapper {
  /* transform: translateY(100px); */
  z-index: 0;
  overflow: hidden;
  position: relative;
  right: -76px;
  /* bottom: -50px; */
}

.banner-nagivation-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10vh);
  z-index: 99;
}

.swiper-button-prev {
  color: var(--purple-primary) !important;
  font-size: 18px !important;
  background-color: #fff;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  outline: none;
  box-shadow: 0px 5px 12px -5px #000;
}

.swiper-button-next {
  color: #fff !important;
  font-size: 18px !important;
  background-color: var(--purple-primary) !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  border: 2px solid white;
  outline: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.banner-navigation-button-group {
  margin: auto auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(80px) translateX(-50%);
  position: absolute;
  left: 50%;
  z-index: 9999;
}

.banner-navigation-button-group > button {
  border: none;
  outline: none;
  padding: 8px;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  outline: none;
}

.banner-navigation-button-group > :nth-child(1) {
  background-color: white;
  box-shadow: 0px 5px 12px -5px;
}

.banner-navigation-button-group > :nth-child(2) {
  background-color: var(--purple-primary);
  box-shadow: 0 0 9px -3px;
  color: #fff;
  border: 2px solid white;
}

/*=============== Hero Section Styling Ends Here ===================*/

/*=============== About Section Styling Starts Here ===================*/

.about {
  margin-top: 129px;
}

.about-heading-section {
  padding: 0 80px;
}

.about-heading-section h1 {
  text-align: center;
}

.about-heading-section p {
  text-align: center;
  padding: 0 50px;
}

.about-bottom-section {
  margin-top: 36px;
}

.about-swiper-image {
  width: 100%;
}

.about-images-swiper {
  overflow: hidden;
  border-radius: 32px;
}

.about-images-swiper .swiper-pagination-bullet {
  background: #fff !important; /* Change to any color you want */
  opacity: 100% !important;
  transform: scale(1.2);
}

.about-images-swiper .swiper-pagination-bullet-active {
  background-color: var(--yellow) !important;
  border: 1px solid #fff !important;
}

.about-right-section {
  padding-left: 40px;
}

.about-right-section > h2 {
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 33px;
  line-height: 50px;
}

.about-right-section > h1 {
  font-family: var(--aktivgrostek-bold);
  font-weight: 400;
  font-size: 70px;
  line-height: 74px;

  display: inline-block;
  background: linear-gradient(
    to right,
    var(--purple-secondary),
    var(--yellow),
    var(--purple-primary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-right-section > :nth-child(3) {
  font-family: var(--poppins);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
}

.about-right-section > :nth-child(4) {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;

  color: var(--secondary-text);
}

/*=============== About Section Styling Ends Here ===================*/

/*=============== Why Section Styling Starts Here ===================*/

.why-container {
  padding: 36px 50px;
  padding-bottom: 52px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff9e2, #e7ccff);
  border-radius: 16px;
}

.why-container h1 {
  text-align: center;
}

.why-swiper {
  margin-top: 32px;
  overflow: hidden;
}

.why-swiper-pagination {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.why-swiper .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 100% !important;
  transform: scale(1.7);
}

.why-swiper .swiper-pagination-bullet-active {
  background-color: var(--yellow) !important;
  border: 2px solid #fff !important;
}

.why-swiper-card {
  /* max-width: 420px; */
  height: 550px !important;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
  border: 3px solid transparent !important;
  background-clip: padding-box;
  transition: all 0.3s linear !important;
}

/* .why-container .swiper-wrapper > :nth-child(1) { */
.why-swiper-card:hover {
  transition: all 0.3s linear !important;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(
        to bottom,
        var(--purple-secondary),
        var(--yellow),
        var(--purple-primary)
      )
      border-box;
  border: 3px solid transparent;
}

.why-swiper-card > div {
  width: 100%;
}

.why-swiper-card > div > img {
  width: 100%;
}

.why-swiper-card > .why-card-text-container {
  padding: 42px 42px;
}

.why-swiper-card > .why-card-text-container > h2 {
  font-family: var(--aktivgrostek-regular);
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;

  vertical-align: middle;
  text-transform: capitalize;
  text-align: center;
}

.why-swiper-card:hover > .why-card-text-container > h2 {
  font-family: var(--aktivgrostek-medium);
}

.why-swiper-card > .why-card-text-container > p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;

  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #777777;
}

/*=============== Why Section Styling Ends Here ===================*/

/*=============== Digital Section Styling Starts Here ===================*/

.digital-heading-section > p {
  margin-top: 8px;
}

.digital-cards-container {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.digital-cards-container > div > div {
  padding: 18px !important;
}

.digital-card {
  padding: 38px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  border: 3px solid #e9e9e9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  min-height: 100% !important;
}

.digital-card:hover {
  background: linear-gradient(120deg, #fff9e2, #e7ccff);
  border: 3px solid transparent !important;
  background-clip: padding-box;
}

.digital-card > :nth-child(1) {
  font-family: var(--aktivgrostek-regular);
  font-weight: 400;
  font-size: 30px;
  line-height: 43px !important;
}

.digital-card > p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;

  color: #5d5d5d;
}

.digital-card-button {
  margin-top: 4vmax;
  /* margin-top: 68px; */
  padding: 10px 30px;
  font-size: 17px;
  font-family: var(--poppins);
  font-weight: 500;
  color: var(--purple-primary);
  background: transparent;
  border: 2px solid #e9e9e9;
  cursor: pointer;
  border-radius: 99px;
  z-index: 1;
  overflow: hidden;
  outline: none;
  transition: all 0.1s linear;
}

/* Gradient Border Button */
.digital-card:hover .digital-card-button {
  /* margin-top: 64px; */
  position: relative;
  padding: 10px 30px;
  font-size: 17px;
  font-family: var(--poppins);
  font-weight: 500;
  color: var(--purple-primary);
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 99px;
  z-index: 1;
  overflow: hidden;
  outline: none;
}

.digital-card:hover .digital-card-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    to right,
    var(--purple-primary),
    var(--yellow),
    var(--purple-secondary)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.digital-card-button:hover {
  background: var(--purple-primary);
  color: #fff !important;
  border: 2px solid var(--purple-primary);
}

.digital-card-button:hover::before {
  display: none;
}

/*=============== Digital Section Styling Ends Here ===================*/

/*=============== Connecting Section Styling Starts Here ===================*/

.connecting {
  margin-top: 120px;
  background: linear-gradient(120deg, #fff9e2, #e7ccff);
}

.connecting-container {
  padding-bottom: 54px;
}

.connecting-statistics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(-50%);
}

.connecting-statistics > li {
  padding: 22px 48px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 3px solid #efdeff;
  transition: all 0.3s linear;
}

.connecting-statistics > li:hover {
  background-color: var(--purple-primary);
  color: #fff !important;
  border-color: transparent !important;
}

.connecting-statistics > li:hover p {
  color: #fff !important;
}

.connecting-statistics > li > h1 {
  font-family: var(--aktivgrostek-medium);
  font-weight: 400;
  font-size: 38px;
  line-height: 38px;
  text-align: center;
}

.connecting-statistics > li > p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  /* line-height: 22px; */
  margin-bottom: 0px !important;
  text-align: center;
  color: #7c7c7c;
}

.statistics-p-break {
  display: none;
}

.connecting-heading-section {
  margin-top: -20px;
}

.connecting-heading-section > h1 {
  text-align: center;
  /* font-family: var(--aktivgrostek-medium) !important; */
}

.connecting-heading-section > p {
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 18px;
  text-align: center;
}

.connecting-buttons-group {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.connecting-us-btn-left {
  position: relative;
  padding: 10px 30px;
  font-size: 17px;
  font-family: var(--poppins);
  font-weight: 500;
  color: var(--purple-primary);
  background-color: transparent;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  outline: none;
  transition: all 0.3s linear;
  text-decoration: none !important;
}

.connecting-us-btn-left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    to right,
    var(--purple-primary),
    var(--yellow),
    var(--purple-secondary)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.3s linear;
}

.connecting-us-btn-left:hover {
  background: var(--purple-primary);
  color: #fff !important;
}

.connecting-us-btn-left:hover::before {
  display: none;
}

.connecting-us-btn-right {
  padding: 10px 30px;
  font-size: 17px;
  font-family: var(--poppins);
  font-weight: 500;
  color: black;
  background-color: #fff;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s linear;
  text-decoration: none !important;
}

.connecting-us-btn-right:hover {
  position: relative;
  padding: 10px 30px;
  font-size: 17px;
  font-family: var(--poppins);
  font-weight: 500;
  color: var(--purple-primary);
  background-color: transparent;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  outline: none;
}

.connecting-us-btn-right:hover::before {
  transition: all 0.3s linear;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    to right,
    var(--purple-primary),
    var(--yellow),
    var(--purple-secondary)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/*=============== Connecting Section Styling Ends Here ===================*/

footer {
  background: #6624a2;
}

.footer-container {
  margin: 0 auto;
}

.footer-cols-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
}

.footer-bottom-section {
  background-color: #5b1e92;
}

/* .footer-bottom-section > .container {
  display: flex;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
} */

.footer-nav-heading {
  font-family: var(--merriweather);
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;

  text-align: start;
}

.fa-plus-icon {
  display: none !important;
  transition: all 0.3s linear;
}

.font-nav-heading .footer-navs-div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2px;
  padding-bottom: 0 !important;
}

.footer-nav-heading-underline {
  margin-top: 8px !important;
  width: 56px;
  height: 3px;
  background-color: #fff;
  opacity: 20%;
}

.footer-nav-list {
  margin-top: 5px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.footer-nav-list > li {
  list-style: none;
  text-align: left;
}

.footer-nav-list > li > a {
  text-decoration: none;
  color: #fff;
  font-family: var(--pontano-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}

.footer-contact-info-div > ul {
  gap: 12px;
}

.footer-contact-info-div > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-contact-info-div > ul > li > i {
  padding: 8px;
  backdrop-filter: brightness(150%);
  border-radius: 100%;
}

.footer-logo {
  width: 120px;
}

/* .footer-bottom-section > .container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.footer-bottom-section > .container > div > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-bottom-section > .container > div > ul > li {
  list-style: none;
}

.footer-bottom-section > .container > div > ul > li > a {
  text-decoration: none;
  color: #fff;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

/* ---------------------------------------------------------- */
/* ++++++++++++++++++++ Mobile Responsive Design +++++++++++++++++++ */

@media only screen and (min-width: 0px) and (max-width: 480px) {
  /* Common Things */

  button {
    font-size: 14px !important;
  }

  .section-mt {
    margin-top: 50px;
  }

  .primary-heading {
    font-size: 28px;
    line-height: 130%;
  }

  .primary-paragraph {
    font-size: 14px;
    line-height: 20px;
  }

  /* Header */

  .navbar-contact {
    background: linear-gradient(
      to right,
      var(--purple-secondary) 60%,
      var(--purple-primary) 40%
    );
    display: flex;
    justify-content: space-between;
  }

  .navbar-contact > .container > div > :nth-child(1) > ul {
    flex-direction: column !important;
    gap: 0px !important;
  }

  .navbar-contact-left {
    width: 60%;
  }

  .navbar-contact-right {
    width: 40%;
  }

  .navbar-contact-right ul {
    gap: 15px;
  }

  .nav-logo-image {
    margin-top: 12px;
    width: 130px;
  }

  /* Hero Section */
  .hero-section {
    height: calc(100vh - 100px);
    padding-top: 50px;
  }

  #canvas {
    height: var(100vh - 100px);
  }

  .banner-swiper {
    margin-top: 20px;
  }

  .banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(50px);
  }

  .banner-text h1 {
    font-size: 38px;
    line-height: 100%;
    text-align: center;
  }

  .banner-text h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .banner-text p {
    margin-top: 10px;
    font-weight: 400;
    font-size: 1.9vmax;
  }

  .banner-text button {
    margin-bottom: 10px;
    margin-left: 10px;
    font-size: 20px;
  }

  .banner-gif-wrapper {
    transform: translateY(0px);
    position: static;
  }

  .gif-image {
    margin-top: 100px;
    transform-origin: 0 0;
    height: 250px;
    border-radius: 400px 0 0 400px;
  }

  .banner-swiper .swiper-pagination {
    transform: translateY(-40px);
  }

  .banner-nagivation-container {
    position: absolute;
    transform: translateX(-50%) translateY(70px);
    z-index: 9999;
  }

  /* About */
  .about {
    margin-top: 70px;
  }

  .about-heading-section {
    padding: 0 0;
  }

  .about-heading-section p {
    text-align: center;
    padding: 0 0px;
  }

  .about-right-section {
    margin-top: 40px;
    padding-left: 15px !important;
    text-align: center;
  }

  .about-right-section > h2 {
    font-weight: 300;
    font-size: 20px;
    line-height: 0%;
  }

  .about-right-section > h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 62px;
  }

  .about-right-section > :nth-child(3) {
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
  }

  .about-right-section > :nth-child(4) {
    font-size: 14px;
    line-height: 20px;
  }

  /* Why */

  .why-container {
    padding: 36px 20px;
    /* padding-bottom: 52px; */
  }

  /* .why-swiper{
    padding-left: -10px;
  } */

  .why-swiper-card {
    height: 400px !important;
  }

  .why-card-text-container {
    padding: 12px 22px !important;
  }

  .why-card-text-container > h2 {
    font-size: 20px !important;
    line-height: 10px;
  }

  .why-card-text-container > p {
    margin-top: 0px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  /* Digital Section */

  .digital-heading-section {
    text-align: center;
  }

  .digital-heading-section > p {
    margin-bottom: 0px !important;
  }

  .digital-cards-container {
    margin-top: 20px !important;
  }

  .digital-cards-container > .row > div {
    padding: 8px !important;
  }

  .digital-card {
    padding: 22px;
  }

  .digital-card > :nth-child(1) {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px !important;
  }

  .digital-card > h1 {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
  }

  .digital-card > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    color: #5d5d5d;
  }

  .digital-card-button {
    margin-top: 0px !important;
    font-size: 14px;
    padding: 6px 18px !important;
  }

  .digital-card-button:hover {
    padding: 6px 18px !important;
  }

  /* Connecting US*/

  .connecting {
    margin-top: 40px;
    padding-top: 0px;
  }

  .connecting-container {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .connecting-heading-section > h1 {
    margin: 0 auto;
    max-width: 320px;
    text-align: center;
  }

  .connecting-heading-section > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  .connecting-statistics {
    gap: 10px !important;
  }

  .connecting-statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transform: translateY(0%);
  }

  .connecting-statistics > li {
    padding: 18px 30px !important;
    width: 150px;
  }

  .connecting-statistics > li > h1 {
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;

    text-align: center;
  }

  .connecting-statistics > li > p {
    font-size: 15px !important;
    line-height: 21px;
  }

  .connecting-heading-section {
    margin-top: 50px;
  }

  .connecting-heading-section > h1 {
    text-align: center;
  }

  .connecting-heading-section > p {
    padding: 0 8px;
    margin-top: 18px;
    text-align: center;
  }

  .connecting-buttons-group {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }

  .connecting-us-btn-left {
    font-size: 14px !important;
    padding: 7px 18px;
  }

  .connecting-us-btn-right {
    font-size: 14px;
    padding: 7px 18px;
  }

  /* .connecting-buttons-group > button {
    width: 280px;
  } */

  /* Footer Section */

  .footer-cols-container {
    display: grid;
    grid-template-columns: 100% !important;
    grid-template-rows: auto auto auto auto !important;
  }

  .font-nav-heading .footer-navs-div {
    padding: 0 0 !important;
    /* gap: 0px !important; */
  }

  .rotate-plus-icon {
    transform: rotate(45deg);
  }

  .footer-collaps-expand {
    transition: all 0.3s linear;
    height: 0px !important;
    overflow: hidden !important;
  }

  .footer-nav-heading {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;

    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fa-plus-icon {
    display: block !important;
  }

  .footer-nav-heading-underline {
    margin-top: 20px !important;
    width: 100% !important;
  }

  .footer-nav-list > li {
    margin-top: 0px;
    padding: 5px;
    padding-left: 12px;
    width: 100%;
    font-size: 14px;
    color: #ffffff;
    backdrop-filter: brightness(150%);
    border-radius: 10px;
  }

  /* ==== Terms and Conditions */

  .tems-main-heading {
    margin-top: 100px;
    font-size: 36px !important;
    font-family: var(--aktivgrostek-regular);
  }

  .terms-heading {
    margin-top: 60px;
    font-size: 24px;
    font-family: var(--aktivgrostek-medium);
  }

  .terms-sub-heading {
    margin-top: 30px;
    font-size: 20px;
    font-family: var(--aktivgrostek-regular);
    background: #f7efff;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .terms-paragraph {
    font-size: 14px !important;
    line-height: 20px !important;
    color: var(--secondary-text);
  }

  .terms-list {
    list-style: disc;
    list-style-position: outside;
    margin-left: 22px;
  }

  .terms-list-item {
    margin-top: 5px;
    color: var(--secondary-text) !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  /* Contact us page */

  .contactbanner_txt {
    padding-top: 50px;
    padding-bottom: 0px !important;
  }

  .contactbanner_txt h3 {
    font-size: 22px !important;
    color: #fff;
    font-family: var(--aktivgrostek-bold);
  }

  .contactbanner_txt h1 {
    font-size: 36px !important;
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px !important;
    font-family: var(--aktivgrostek-bold);
  }

  .contact_form {
    width: 100% !important;
    position: static !important;
    top: 0px !important;
    padding: 15px;
  }

  /* contact page start */
  .contact_form .hc-heading {
    text-align: center;
    font-size: 25px;
    margin: 10px 0 20px;
    font-family: var(--aktivgrostek-regular);
  }

  .contact_detail ul {
    flex-wrap: wrap;
    gap: 16px !important;
  }

  .contact_info {
    margin-top: 100px;
  }

  #fullscreen-menu-canvas {
    opacity: 50% !important;
  }

  .fullscreen-menu {
    height: calc(100vh - 30px) !important;
  }

  /* Full Scren Menu */
  .fullscreen-menu-right {
    display: none;
  }

  .fullscreen-menu-left {
    width: 320px !important;
  }
}

/* ---------------------------------------------------------- */
/* ++++++++++++++++++++ Tablet Responsive Design +++++++++++++++++++ */

@media only screen and (min-width: 481px) and (max-width: 1024px) {
  /* Common Things */

  button {
    font-size: 14px !important;
  }

  .section-mt {
    margin-top: 50px;
  }

  .primary-heading {
    font-weight: 400;
    font-size: 34px;
    line-height: 120%;
  }

  .primary-paragraph {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  /* Header */

  .navbar-contact {
    background: linear-gradient(
      to right,
      var(--purple-secondary) 50%,
      var(--purple-primary) 50%
    );
    display: flex;
    justify-content: space-between;
  }

  .navbar-contact > .container > div > :nth-child(1) > ul {
    flex-direction: column !important;
    gap: 0px !important;
  }

  .navbar-contact-left {
    width: 50%;
  }

  .navbar-contact-right {
    width: 50%;
  }

  .navbar-contact-right ul {
    gap: 15px;
    justify-content: end !important;
  }

  .nav-logo-image {
    margin-top: 12px;
    width: 130px;
  }

  /* Hero Section */
  .hero-section {
    height: calc(100vh - 100px);
    padding-top: 50px;
  }

  #canvas {
    display: block;
    position: absolute;
    z-index: 0;
    height: var(100vh - 100px);
    /* width: 100%; */
  }

  .banner-swiper {
    margin-top: 20px;
  }

  .banner-swiper > .swiper-wrapper > div {
    flex-direction: column !important;
  }

  .banner-text {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(50px);
  }

  .banner-text h1 {
    font-weight: 400;
    font-size: 38px;
    line-height: 100%;

    text-align: center;
  }

  .banner-text h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
  }

  .banner-text p {
    margin-top: 10px;
    font-weight: 400;
    font-size: 1.9vmax;
    text-align: center;
  }

  .banner-text button {
    margin-bottom: 10px;
    margin-left: 10px;
    font-weight: 400;
    font-size: 20px;
  }

  .banner-gif-wrapper {
    transform: translateY(0px) translateX(47%);
    position: static;
  }

  .gif-image {
    margin-top: 100px;
    transform-origin: 0 0;
    height: 250px;
    border-radius: 400px 0 0 400px;
  }

  .banner-swiper .swiper-pagination {
    transform: translateY(-40px);
  }

  .banner-nagivation-container {
    position: absolute;
    transform: translateX(-50%) translateY(70px);
    z-index: 9999;
  }

  /* About */
  .about {
    margin-top: 70px;
  }

  .about-heading-section {
    padding: 0 0;
  }

  .about-right-section {
    margin-top: 40px;
    padding-left: 15px !important;
    text-align: center;
  }

  .about-right-section > h2 {
    font-weight: 300;
    font-size: 20px;
    line-height: 0%;
  }

  .about-right-section > h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 62px;
  }

  .about-right-section > :nth-child(3) {
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
  }

  .about-right-section > :nth-child(4) {
    font-size: 14px;
    line-height: 20px;
  }

  /* Why Section */

  .why-container {
    padding: 36px 20px;
    /* padding-bottom: 52px; */
  }

  /* .why-swiper{
    padding-left: -10px;
  } */

  .why-swiper-card {
    height: 450px !important;
  }

  .why-card-text-container {
    padding: 12px 22px !important;
  }

  .why-card-text-container > h2 {
    font-size: 22px !important;
    line-height: 10px;
  }

  .why-card-text-container > p {
    margin-top: 0px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  /* Digital Section */

  .digital-heading-section {
    text-align: center;
  }

  .digital-heading-section > p {
    margin-bottom: 0px !important;
  }

  .digital-cards-container {
    margin-top: 20px !important;
  }

  .digital-cards-container > .row > div {
    padding: 8px !important;
  }

  .digital-card {
    padding: 22px;
  }

  .digital-card > :nth-child(1) {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
  }

  .digital-card > h1 {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
  }

  .digital-card > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    color: #5d5d5d;
  }

  .digital-card-button {
    margin-top: 0px !important;
  }

  /* Connecting US*/

  .connecting {
    margin-top: 40px;
    padding-top: 0px;
  }

  .connecting-container {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .connecting-heading-section > h1 {
    margin: 0px auto !important ;
    max-width: 320px;
    text-align: center;
  }

  .connecting-heading-section > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  .connecting-statistics {
    gap: 10px !important;
  }

  .connecting-statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transform: translateY(0%);
  }

  .connecting-statistics > li {
    padding: 22px 30px !important;
    width: 200px;
    height: 100px;
  }

  .connecting-statistics > li > h1 {
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;

    text-align: center;
  }

  .connecting-statistics > li > p {
    font-size: 15px !important;
    line-height: 21px;
    margin-bottom: -8px;
  }

  .statistics-p-break {
    display: inline;
  }

  .connecting-heading-section {
    margin-top: 50px;
  }

  .connecting-heading-section > h1 {
    margin: 0 auto;
    max-width: 100% !important;
    text-align: center;
  }

  .connecting-heading-section > p {
    padding: 0 8px;
    margin-top: 18px;
    text-align: center;
  }

  .connecting-buttons-group {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }

  /* Footer Section */

  .footer-cols-container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
  }

  .font-nav-heading .footer-navs-div {
    padding: 0 0 !important;
    /* gap: 0px !important; */
  }

  .rotate-plus-icon {
    transform: rotate(45deg);
  }

  .footer-collaps-expand {
    transition: all 0.3s linear;
    height: 0px !important;
    overflow: hidden !important;
  }

  .footer-nav-heading {
    width: 100% !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fa-plus-icon {
    display: block !important;
  }

  .footer-nav-heading-underline {
    margin-top: 20px !important;
    width: 100%;
  }

  .footer-nav-list > li {
    margin-top: 0px;
    padding: 5px;
    padding-left: 12px;
    width: 100% !important;
    font-size: 14px;
    color: #ffffff;
    backdrop-filter: brightness(150%);
    border-radius: 10px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .section-mt {
    margin-top: 70px;
  }

  .primary-heading {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
  }

  .primary-paragraph {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  /* Hero Section */

  .hero-section {
    height: 80vh;
  }

  .banner-text h1 {
    font-weight: 400;
    font-size: 55px;
    line-height: 120%;
    text-align: center;
  }

  .banner-text h2 {
    font-weight: 400;
    font-size: 34px;
    line-height: 42px;
    text-align: center;
  }

  .banner-text p {
    margin-top: 8px;
    font-weight: 400;
    font-size: 1.9vmax;
    text-align: center;
  }

  .banner-text button {
    margin-bottom: 20px;
    margin-left: 10px;
    font-weight: 400;
    font-size: 20px;
  }

  .banner-text {
    transform: translateY(70px);
  }

  .gif-image {
    /* height: 400px; */
  }

  .banner-gif-wrapper {
    transform: translateY(15vh);
  }

  .banner-swiper .swiper-pagination {
    transform: translateY(60px);
  }

  .banner-nagivation-container {
    transform: translateX(-50%) translateY(15vh);
  }

  /* About */

  .about {
    margin-top: 120px;
  }

  .about-heading-section {
    padding: 0 0;
  }

  .about-right-section {
    margin-top: 40px;
    padding-left: 15px !important;
    /* text-align: center; */
  }

  .about-right-section > h2 {
    font-weight: 300;
    font-size: 22px;
    line-height: 0%;
  }

  .about-right-section > h1 {
    font-weight: 400;
    font-size: 38px;
    line-height: 62px;
  }

  .about-right-section > :nth-child(3) {
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
  }

  .about-right-section > :nth-child(4) {
    font-size: 14px;
    line-height: 20px;
  }

  /* Why */

  .why-container {
    padding: 36px 30px;
  }

  .why-swiper-card {
    height: 420px !important;
  }

  .why-card-text-container {
    padding: 12px 22px !important;
  }

  .why-card-text-container > h2 {
    font-size: 20px !important;
    line-height: 10px;
  }

  .why-card-text-container > p {
    margin-top: 0px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  /* Digital Section */

  .digital-heading-section > h1 {
    line-height: 45px;
  }

  .digital-heading-section > p {
    margin-bottom: 0px !important;
  }

  .digital-cards-container {
    margin-top: 40px !important;
  }

  .digital-cards-container > .row > div {
    padding: 12px !important;
  }

  .digital-card {
    padding: 22px;
  }

  .digital-card > :nth-child(1) {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px !important;
  }

  .digital-card > h1 {
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
  }

  .digital-card > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    color: #5d5d5d;
  }

  .digital-card-button {
    margin-top: 60px !important;
  }

  /* Connecting US*/

  .connecting {
    margin-top: 100px;
    padding-top: 0px;
  }

  .connecting-container {
    padding-bottom: 54px;
  }

  .connecting-heading-section > h1 {
    margin: 0 auto;
    max-width: 320px;
    text-align: center;
  }

  .connecting-heading-section > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  .connecting-statistics {
    gap: 10px !important;
  }

  .connecting-statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px !important;
  }

  .connecting-statistics > li {
    padding: 25px 30px !important;
  }

  .connecting-statistics > li > h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 24px;
    text-align: center;
  }

  .connecting-statistics > li > p {
    font-size: 16px !important;
    line-height: 21px;
    margin-top: 8px;
    margin-bottom: -5px !important;
  }

  .statistics-p-break {
    display: none;
  }

  .connecting-heading-section {
    margin-top: 0px;
  }

  .connecting-heading-section > h1 {
    margin: 0 auto;
    max-width: 100% !important;
    text-align: center;
  }

  .connecting-heading-section > p {
    padding: 0 110px;
    margin-top: 15px;
    text-align: center;
  }

  .connecting-buttons-group {
    margin-top: 40px;
    gap: 10px;
  }

  /* Footer Section */

  .footer-cols-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
    gap: 50px;
  }

  .footer-nav-heading {
    font-size: 17px;
    line-height: 110%;
  }

  .footer-nav-list > li > a {
    font-size: 15px !important;
  }

  /* ==== Terms and Conditions */

  .tems-main-heading {
    margin-top: 100px;
    font-size: 36px !important;
    font-family: var(--aktivgrostek-regular);
  }

  .terms-heading {
    margin-top: 60px;
    font-size: 24px;
    font-family: var(--aktivgrostek-medium);
  }

  .terms-sub-heading {
    margin-top: 30px;
    font-size: 20px;
    font-family: var(--aktivgrostek-regular);
    background: #f7efff;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .terms-paragraph {
    font-size: 14px !important;
    line-height: 20px !important;
    color: var(--secondary-text);
  }

  .terms-list {
    list-style: disc;
    list-style-position: outside;
    margin-left: 22px;
  }

  .terms-list-item {
    margin-top: 5px;
    color: var(--secondary-text) !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .terms-list-item a {
    font-size: 14px !important;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============= Terms and Conditions Styling Starts Here ============== */

.terms-nav {
  background: linear-gradient(
    to right,
    var(--purple-secondary) 80%,
    var(--purple-primary) 20%
  ) !important;
  position: static;
}

.terms-nav .nav-logo-image {
  transform: scale(0.6) !important;
  transform-origin: 0 50% !important;
  margin-top: 0 !important;
}

.tems-main-heading {
  margin-top: 100px;
  font-size: 45px;
  font-family: var(--aktivgrostek-regular);
}

.terms-heading {
  margin-top: 60px;
  font-size: 28px;
  font-family: var(--aktivgrostek-medium);
}

.terms-sub-heading {
  margin-top: 30px;
  font-size: 22px;
  font-family: var(--aktivgrostek-regular);
  background: #f7efff;
  padding: 10px 20px;
  border-radius: 10px;
}

.terms-paragraph {
  font-size: 18px;
  font-family: var(--poppins);
  line-height: 32px;
  color: var(--secondary-text);
}

.terms-list {
  list-style: disc;
  list-style-position: outside;
  margin-left: 22px;
  color: var(--secondary-text);
}

.terms-list-item {
  margin-top: 5px;
  font-family: var(--poppins);
  font-size: 18px;
}

/* ============= Terms and Conditions Styling Ends Here ===================== */

.contact_form {
  transform: translateY(20px);
}

/* contact page start */
.contact_form .hc-heading {
  text-align: center;
  font-size: 25px;
  margin: 10px 0 20px;
  font-family: var(--aktivgrostek-regular);
}

.contact_banner {
  /* background-image: url(assets/images/About_page_banner.png); */
  background-image: url(./assets/images/banner-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  height: 525px;
  height: 440px;
  width: 100%;
}
.contact_detail ul li a span i {
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 100px;
}
.contact_sec {
  display: flex;
  align-items: flex-end;
}
.contact_form {
  width: 550px;
  background-color: #fff;
  position: relative;
  top: 30px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 10px 0px #cccccc;
}
.contact_form p {
  text-align: center;
  margin: 0px 0px 10px 0px;
  font-size: 14px;
  font-family: var(--poppins);
}

.contact_form .form-control {
  margin-bottom: 10px;
  padding: 6px 16px;
  border: 2px solid #ededed;
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #545454 !important;
  font-weight: 400;
}

.contact_form .required p {
  text-align: center;
  color: #b70000;
  font-size: 14px;
}

.contact_form textarea {
  height: 85px;
  resize: none;
  color: #000 !important;
}

.contactbanner_txt {
  padding-bottom: 60px;
}
.contactbanner_txt h3 {
  font-size: 32px;
  color: #fff;
  font-family: var(--aktivgrostek-bold);
}
.contactbanner_txt p {
  width: 60%;
  color: #fff;
}
.contactbanner_txt h1 {
  font-size: 55px;
  color: #fff;
  font-size: 48px;
  margin-bottom: 10px !important;
  font-family: var(--aktivgrostek-bold);
}

.contact_form button {
  padding: 6px 22px;
  border: 2px solid #cacaca;
  border-radius: 22px;
  background-color: transparent;
  outline: none;
  transition: all 0.3s;
}

.contact_form button:hover {
  background: #cacaca;
  box-shadow: 0 0 12px -3px #cacaca;
}

.contact_info {
  padding: 60px 0px;
}

.contact_head h1 span {
  color: #1e9afe;
}

.contact_head h1 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
}

.contact_detail h3 {
  font-size: 22px;
  padding: 10px 0px;
  font-family: var(--aktivgrostek-medium);
}

.contact_detail ul {
  display: flex;
  gap: 3px !important;
  list-style: none;
}
.contact_detail ul li {
  background: #f1f1f1;
  backdrop-filter: opacity(0);
  padding: 7px 20px 7px 10px;

  border-radius: 99px;
  margin-right: 15px;
}

.contact_detail ul li a {
  color: #000000;
  font-family: var(--poppins);
  font-weight: 400;
}

.contact_detail ul li a i {
  color: var(--purple-primary) !important;
}

.contact_map iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
}

.social-media ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}

.social-media ul li {
  background: linear-gradient(45deg, #1e9afe, #60dfcd);
  padding: 8px 14px;
  border-radius: 100px;
  transition: transform 2s;
}
.social-media ul .facebook {
  padding: 8px 16px;
}
/* constact page ends  */
