@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

* {
  margin: 0;
  padding: 0;
}

:root {
  --Animation-Duration: all 0.35s ease;
  --Font-Primary: "Poppins", sans-serif;
  --Font-Secondary: "Inter", sans-serif;
  --Font-Tabler: "tabler-icons";
  --Primary: #3147ff;
  --Secondary: #f7f8ff;
  --SecondaryTwo: rgba(188, 196, 255, 0.3);
  --Heading: #161616;
  --Text: #49515b;
  --Border: rgba(73, 81, 91, 0.3);
  --Background: #161616;
  --White: #ffffff;
  --Success: #3cb371;
  --Success-Hover: #34885a;
  --Warning: #f7921f;
  --Warning-Hover: #be7016;
  --Info: #02a5ce;
  --Info-Hover: #156e85;
  --Danger: #dc3545;
  --Danger-Hover: #9c1321;
}

html[data-theme="two"] {
  --Primary: #7444fd;
  --Secondary: #f7f8ff;
  --SecondaryTwo: rgba(116, 68, 253, 0.1);
  --Heading: #282c32;
  --Text: #565656;
  --Border: rgba(73, 81, 91, 0.3);
  --Background: #161616;
}

html[data-theme="three"] {
  --Primary: #fa3e5f;
  --Secondary: #f8f8f8;
  --SecondaryTwo: rgba(250, 62, 95, 0.1);
  --Heading: #1f1f1f;
  --Text: #565656;
  --Border: rgba(73, 81, 91, 0.3);
  --Background: #1f1f1f;
}

html[data-theme="four"] {
  --Primary: #601feb;
  --Secondary: #f7f7fc;
  --SecondaryTwo: rgba(96, 31, 235, 0.1);
  --Heading: #161616;
  --Text: #49515b;
  --Border: rgba(73, 81, 91, 0.3);
  --Background: #161616;
}

html[data-theme="five"] {
  --Primary: #0f0f0f;
  --Secondary: #f5f5f5;
  --SecondaryTwo: rgba(15, 15, 15, 0.1);
  --Heading: #0f0f0f;
  --Text: #0f0f0f;
  --Border: rgba(15, 15, 15, 0.2);
  --Background: #0f0f0f;
}

body,
html {
  color: var(--Text);
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0 !important;
  font-family: var(--Font-Secondary);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--Heading);
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--Font-Primary);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  letter-spacing: -1px;
}

h5,
.h5,
h6,
.h6 {
  letter-spacing: -0.5px;
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--Text);
}

a {
  transition: var(--Animation-Duration);
  text-decoration: none;
  outline: 0 solid transparent;
  color: var(--Heading);
  font-family: var(--Font-Primary);
  font-weight: 600;
}

a:hover,
a:focus {
  transition: var(--Animation-Duration);
  text-decoration: none;
  outline: 0 solid transparent;
  color: var(--Heading);
  font-weight: 600;
}

ul,
ol {
  margin-bottom: 0;
}

ul li,
ol li {
  line-height: 1.75;
}

.border,
.border-end,
.border-start,
.border-top,
.border-bottom {
  border-color: var(--Border) !important;
}

img {
  max-width: 100%;
  height: auto;
}

input:required,
textarea:required,
input:invalid,
textarea:invalid {
  box-shadow: none !important;
}

.bg-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 320px;
}

@media (min-width: 400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 360px;
  }
}

@media (min-width: 480px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 420px;
  }
}

@media (min-width: 576px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.row.g-4,
.row.gy-4 {
  --bs-gutter-y: 30px;
}

.row.g-4,
.row.gx-4 {
  --bs-gutter-x: 30px;
}

.custom-container {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .custom-container {
    width: 420px;
  }
}

@media (min-width: 576px) {
  .custom-container {
    width: 540px;
  }
}

@media (min-width: 768px) {
  .custom-container {
    width: 720px;
  }
}

@media (min-width: 992px) {
  .custom-container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    width: 1140px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    width: 1320px;
  }
}

.fz-12 {
  font-size: 12px !important;
}

.fz-14 {
  font-size: 14px !important;
}

.fz-16 {
  font-size: 16px !important;
}

.fz-18 {
  font-size: 18px !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem #2f5bea13 !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem #2f5bea26 !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem #2f5bea2d !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 12px 24px;
  gap: 6px;
  border-radius: 5rem;
  border: 0;
  position: relative;
  height: 48px;
  min-width: auto;
  text-transform: capitalize;
  overflow: hidden;
  transition: var(--Animation-Duration);
  font-family: var(--Font-Primary);
  font-weight: 600;
}

@media only screen and (min-width: 1200px) {
  .btn {
    height: 54px;
    padding: 12px 24px;
  }
}

@media only screen and (min-width: 1400px) {
  .btn {
    height: 60px;
    padding: 16px 32px;
    font-size: 16px;
  }
}

.btn > span {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  position: relative;
  opacity: 1;
}

.btn > span:last-child {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
}

.btn i {
  font-size: 140%;
  transition: var(--Animation-Duration);
}

.btn:active,
.btn:hover,
.btn:focus {
  box-shadow: none;
}

.btn:active span:first-child,
.btn:hover span:first-child,
.btn:focus span:first-child {
  opacity: 0;
  transform: translateY(-50px);
}

.btn:active span:last-child,
.btn:hover span:last-child,
.btn:focus span:last-child {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--Primary);
  color: var(--White);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--Heading);
  color: var(--White);
}

.btn-success {
  background-color: var(--Success);
  color: var(--White);
}

.btn-success:active,
.btn-success:hover,
.btn-success:focus {
  background-color: var(--Success-Hover);
  color: var(--White);
}

.btn-info {
  background-color: var(--Info);
  color: var(--White);
}

.btn-info:active,
.btn-info:hover,
.btn-info:focus {
  background-color: var(--Info-Hover);
  color: var(--White);
}

.btn-warning {
  background-color: var(--Warning);
  color: var(--White);
}

.btn-warning:active,
.btn-warning:hover,
.btn-warning:focus {
  background-color: var(--Warning-Hover);
  color: var(--White);
}

.btn-danger {
  background-color: var(--Danger);
  color: var(--White);
}

.btn-danger:active,
.btn-danger:hover,
.btn-danger:focus {
  background-color: var(--Danger-Hover);
  color: var(--White);
}

.btn-light {
  background-color: var(--White);
  color: var(--Heading);
}

.btn-light:active,
.btn-light:hover,
.btn-light:focus {
  background-color: var(--White);
  color: var(--Heading);
}

.btn-dark {
  background-color: var(--Heading);
  color: var(--White) !important;
}

.btn-dark:active,
.btn-dark:hover,
.btn-dark:focus {
  background-color: var(--Text);
  color: var(--White) !important;
}

.btn-link {
  position: relative;
  z-index: 1;
  color: var(--Heading);
  gap: 6px;
  padding: 0 !important;
  min-width: 0;
  height: auto;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  border-radius: 0 !important;
}

.btn-link:active,
.btn-link:hover,
.btn-link:focus {
  box-shadow: none;
  color: var(--Primary);
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.375rem 1.25rem;
  font-size: 12px;
  height: 37px;
  min-width: 100px;
}

.btn-outline-primary {
  border: 1px solid var(--Primary);
  color: var(--Primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.btn-outline-success {
  border: 1px solid var(--Success);
  color: var(--Success);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: var(--Success);
  color: var(--White);
}

.btn-outline-warning {
  border: 1px solid var(--Warning);
  color: var(--Warning);
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: var(--Warning);
  color: var(--White);
}

.btn-outline-info {
  border: 1px solid var(--Info);
  color: var(--Info);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
  background-color: var(--Info);
  color: var(--White);
}

.btn-outline-danger {
  border: 1px solid var(--Danger);
  color: var(--Danger);
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: var(--Danger);
  color: var(--White);
}

.btn-outline-light {
  border: 1px solid var(--White);
  color: var(--White);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: var(--White);
  color: var(--Primary);
}

.btn-outline-dark {
  border: 1px solid var(--Heading);
  color: var(--Heading);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--Heading);
  color: var(--White);
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 60px;
  padding: 0 30px;
  border-radius: 5rem;
  border: 1px solid var(--White);
  color: var(--White);
  outline: none;
  box-shadow: none;
  transition: var(--Animation-Duration);
}

.btn-download i {
  font-size: 36px;
}

.btn-download > div {
  line-height: 1;
}

.btn-download .sub-text {
  font-size: 12px;
  font-weight: 500;
  color: #faf8ff;
  display: block;
  margin-bottom: 4px;
}

.btn-download p {
  color: var(--White);
  line-height: 1.1;
}

.btn-download.active,
.btn-download:hover,
.btn-download:focus {
  box-shadow: none;
  background-color: #282c32;
  border-color: #282c32;
  color: var(--White);
}

.bg-primary {
  background-color: var(--Primary) !important;
}

.bg-secondary {
  background-color: var(--Secondary) !important;
}

.bg-success {
  background-color: var(--Success) !important;
}

.bg-danger {
  background-color: var(--Danger) !important;
}

.bg-warning {
  background-color: var(--Warning) !important;
}

.bg-info {
  background-color: var(--Info) !important;
}

.bg-dark {
  background-color: var(--Heading) !important;
}

.bg-gray {
  background-color: var(--Secondary) !important;
}

.text-primary {
  color: var(--Primary) !important;
}

.text-dark {
  color: var(--Text) !important;
}

.text-heading {
  color: var(--Heading) !important;
}

.text-success {
  color: var(--Success) !important;
}

.text-danger {
  color: var(--Danger) !important;
}

.text-warning {
  color: var(--Warning) !important;
}

.text-info {
  color: var(--Info) !important;
}

.elixirbooks-scrolltop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transition: var(--Animation-Duration);
  z-index: 9999;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--White);
  cursor: pointer;
  transform: translateY(100px);
  border: 0 !important;
  box-shadow: none;
  background-color: var(--Background);
}

.elixirbooks-scrolltop span {
  font-size: 1.75rem;
}

.elixirbooks-scrolltop.scrolltop-show {
  transform: translateY(0);
}

.elixirbooks-scrolltop.scrolltop-hide {
  transform: translateY(100px);
}

@media only screen and (min-width: 992px) {
  .elixirbooks-scrolltop {
    width: 3rem;
    height: 3rem;
    right: 3rem;
    bottom: 3rem;
  }
}

.elixirbooks-scrolltop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--Primary) var(--scroll-progress),
    var(--Heading) 0
  );
  z-index: -1;
}

.divider {
  width: 100%;
  display: block;
  height: 60px;
}

@media only screen and (min-width: 576px) {
  .divider {
    height: 70px;
  }
}

@media only screen and (min-width: 768px) {
  .divider {
    height: 80px;
  }
}

@media only screen and (min-width: 992px) {
  .divider {
    height: 95px;
  }
}

@media only screen and (min-width: 1200px) {
  .divider {
    height: 110px;
  }
}

@media only screen and (min-width: 1400px) {
  .divider {
    height: 124px;
  }
}

.divider-sm {
  width: 100%;
  display: block;
  height: 50px;
}

@media only screen and (min-width: 768px) {
  .divider-sm {
    height: 60px;
  }
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading .subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--Primary);
  border-radius: 30px;
  background: var(--SecondaryTwo);
  padding: 6px 18px;
  text-transform: uppercase;
  display: inline-flex;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .section-heading .subtitle {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .section-heading .subtitle {
    font-size: 1rem;
  }
}

.section-heading .subtitle.text-light {
  color: var(--White);
  background: #fff3;
}

.section-heading h2 {
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.2;
  color: var(--Heading);
}

.section-heading h3 {
  color: var(--Heading);
  text-align: center;
  font-size: clamp(60px, 10vw, 250px);
  font-weight: 600;
  line-height: 0.8;
}

.section-heading h3 > span {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--Heading);
}

.section-heading h3 > span:first-child {
  color: var(--Heading);
}

@media only screen and (min-width: 1200px) {
  .section-heading p {
    font-size: 18px;
  }
}

.section-heading .question-mark {
  position: absolute;
  bottom: -20%;
  right: 10%;
  z-index: -10;
}

.section-heading img {
  border-radius: 18px;
  width: 100%;
}

.search-bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--Background);
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 100000;
  visibility: hidden;
  transition: var(--Animation-Duration);
}

.search-bg-overlay.open {
  opacity: 0.98;
  visibility: visible;
}

.search-form-popup {
  position: fixed;
  z-index: 100000;
  padding: 24px;
  background-color: transparent;
  left: 50%;
  top: 50%;
  min-width: 290px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--Animation-Duration);
  transform: scale(0.9) translate(-50%, -50%);
  text-align: center;
}

@media only screen and (min-width: 480px) {
  .search-form-popup {
    min-width: 360px;
  }
}

@media only screen and (min-width: 768px) {
  .search-form-popup {
    padding: 40px 32px;
    min-width: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .search-form-popup {
    min-width: 600px;
  }
}

.search-form-popup .close-btn {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 1000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  color: var(--White);
  transition: var(--Animation-Duration);
}

.search-form-popup .close-btn:hover,
.search-form-popup .close-btn:focus {
  background-color: var(--White);
  color: var(--Heading);
}

@media only screen and (min-width: 768px) {
  .search-form-popup .close-btn {
    width: 40px;
    height: 40px;
    top: -2rem;
    right: -2rem;
  }
}

.search-form-popup form {
  display: flex;
  gap: 30px;
}

.search-form-popup form .form-control {
  width: 100%;
  height: 48px;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--White);
  background-color: transparent;
  color: var(--White);
  font-size: 16px;
  padding: 15px 24px;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) {
  .search-form-popup form .form-control {
    font-size: 18px;
    height: 64px;
  }
}

.search-form-popup form .form-control::-moz-placeholder {
  color: var(--White);
  opacity: 0.85;
}

.search-form-popup form .form-control::placeholder {
  color: var(--White);
  opacity: 0.85;
}

.search-form-popup form .form-control:focus {
  box-shadow: none;
}

.search-form-popup form .btn {
  border-radius: 8px;
  height: 48px;
}

@media only screen and (min-width: 1200px) {
  .search-form-popup form .btn {
    height: 64px;
  }
}

.search-form-popup.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) {
  .error-content p {
    font-size: 18px;
  }
}

.integration-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (min-width: 1400px) {
  .integration-content {
    gap: 30px;
  }
}

.integration-card {
  border-radius: 10px;
  background-color: var(--White);
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 118px;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .integration-card {
    max-width: 240px;
  }
}

@media only screen and (min-width: 768px) {
  .integration-card {
    max-width: 280px;
  }
}

@media only screen and (min-width: 992px) {
  .integration-card {
    max-width: 290px;
  }
}

@media only screen and (min-width: 1200px) {
  .integration-card {
    max-width: 300px;
  }
}

.integration-card img {
  width: 88px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.integration-card .integration-icon {
  width: 88px;
  height: 56px;
  display: block;
  flex-shrink: 0;
}

.integration-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
}

@media only screen and (min-width: 1200px) {
  .integration-card p {
    font-size: 15px;
  }
}

.tilt-image {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.translateY10 {
  transition: var(--Animation-Duration);
}

.translateY10:hover,
.translateY10:focus {
  transform: translateY(-10px);
}

.img-rotate360 {
  animation: rotate360 8s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

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

.imgZoomInOut {
  transition: width 0.5s ease;
}

.preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: var(--Heading);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img,
picture.jarallax-img img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-search-btn {
  cursor: pointer;
}

.header-search-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
  transition: var(--Animation-Duration);
}

.header-search-btn .btn svg path {
  fill: var(--Heading);
  transition: var(--Animation-Duration);
}

.header-search-btn .btn:hover svg path,
.header-search-btn .btn:focus svg path {
  fill: var(--Primary);
}

.header-navigation {
  gap: 40px;
}

@media only screen and (min-width: 1200px) {
  .header-navigation {
    padding-left: 40px;
  }
}

.header-navigation.style-two {
  padding-left: 80px;
}

.header-section {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--Animation-Duration);
}

@media only screen and (min-width: 1200px) {
  .header-section {
    box-shadow: none;
  }
}

.header-section.mobile-menu-open {
  background-color: var(--White);
}

.header-section .navbar-toggler {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  color: var(--Heading);
  border: 1px solid var(--Border);
  transition: var(--Animation-Duration);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .navbar {
  background-color: var(--White);
  transition: var(--Animation-Duration);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar {
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.header-section .navbar .navbar-brand {
  margin-right: 2rem;
  line-height: 1 !important;
}

@media only screen and (min-width: 992px) {
  .header-section .navbar .navbar-brand {
    margin-right: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar .navbar-brand {
    margin-right: 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .header-section .navbar .navbar-brand {
    margin-right: 6rem;
  }
}

.header-section .header-top {
  width: 100%;
  height: 60px;
  transition: var(--Animation-Duration);
  background-color: var(--Background);
}

@media only screen and (min-width: 1200px) {
  .header-section .header-top {
    background-color: transparent;
  }
}

.header-section .header-top .left-side i {
  color: var(--White);
  font-size: 20px;
}

.header-section .header-top .left-side span {
  color: var(--White);
}

.header-section .header-top .social-nav a {
  color: var(--White);
  font-size: 16px;
  transform: all 0.35s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-section .header-top .social-nav a i {
  font-size: 18px;
}

.header-section .header-top .social-nav a:hover,
.header-section .header-top .social-nav a:focus {
  color: var(--White);
  transform: translateY(-6px);
}

.header-section .navbar-nav {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 992px) {
  .header-section .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav {
    gap: 30px;
  }
}

@media only screen and (min-width: 1400px) {
  .header-section .navbar-nav {
    gap: 40px;
  }
}

.header-section .navbar-nav li > a {
  transition: var(--Animation-Duration);
  font-family: var(--Font-Secondary);
  display: inline-block;
  color: var(--Heading);
  font-weight: 500;
  font-size: 1rem;
  text-transform: capitalize;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-section .navbar-nav li > a i {
  font-size: 1rem;
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li > a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.header-section .navbar-nav li > a:hover,
.header-section .navbar-nav li > a:focus {
  color: var(--Primary);
}

.header-section .navbar-nav li .elixirbooks-dd-menu {
  list-style: none;
  background-color: transparent;
  position: relative;
  z-index: 100;
  top: 100%;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  display: none;
  padding-left: 0;
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li .elixirbooks-dd-menu {
    padding: 1rem 0;
    transition: var(--Animation-Duration);
    background-color: var(--White);
    position: absolute;
    top: calc(100% + 8px);
    width: 16rem;
    visibility: hidden;
    opacity: 0;
    display: block;
    left: -1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 30px #2d364314;
  }
}

.header-section .navbar-nav li .elixirbooks-dd-menu li > a {
  transition: var(--Animation-Duration);
  position: relative;
  font-size: 1rem;
  padding: 0.375rem 1rem;
  color: var(--Heading);
  text-transform: capitalize;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li .elixirbooks-dd-menu li > a {
    padding: 0.375rem 1.5rem;
  }
}

.header-section .navbar-nav li .elixirbooks-dd-menu li > a:hover,
.header-section .navbar-nav li .elixirbooks-dd-menu li > a:focus {
  background-color: transparent;
  color: var(--Primary);
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li .elixirbooks-dd-menu li > a:hover,
  .header-section .navbar-nav li .elixirbooks-dd-menu li > a:focus {
    color: var(--Primary);
  }
}

.header-section .navbar-nav li.elixirbooks-dd {
  position: relative;
  z-index: 1;
}

.header-section .navbar-nav li.elixirbooks-dd .dropdown-toggler {
  position: absolute;
  width: 100%;
  height: 36px;
  z-index: 100;
  background-color: transparent;
  color: var(--Info);
  top: 2px;
  cursor: pointer;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1rem;
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li.elixirbooks-dd .dropdown-toggler {
    display: none;
  }
}

.header-section .navbar-nav li.elixirbooks-dd > a {
  position: relative;
}

.header-section .navbar-nav li.elixirbooks-dd:hover > a,
.header-section .navbar-nav li.elixirbooks-dd:focus > a {
  color: var(--Primary);
}

@media only screen and (min-width: 1200px) {
  .header-section .navbar-nav li.elixirbooks-dd:hover .elixirbooks-dd-menu,
  .header-section .navbar-nav li.elixirbooks-dd:focus .elixirbooks-dd-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}

.header-section
  .navbar-nav
  li.elixirbooks-dd
  .elixirbooks-dd
  .dropdown-toggler {
  right: 1rem;
}

.header-section .navbar-nav li.elixirbooks-dd .elixirbooks-dd > a {
  position: relative;
  width: 100%;
}

.header-section
  .navbar-nav
  li.elixirbooks-dd
  .elixirbooks-dd
  .elixirbooks-dd-menu {
  display: none;
  padding-left: 1rem;
}

@media only screen and (min-width: 1200px) {
  .header-section
    .navbar-nav
    li.elixirbooks-dd
    .elixirbooks-dd
    .elixirbooks-dd-menu {
    margin-left: 0.25rem;
    top: -8px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section
    .navbar-nav
    li.elixirbooks-dd
    .elixirbooks-dd:hover
    .elixirbooks-dd-menu,
  .header-section
    .navbar-nav
    li.elixirbooks-dd
    .elixirbooks-dd:focus
    .elixirbooks-dd-menu {
    visibility: visible;
    opacity: 1;
  }
}

.header-section.style-two {
  background-color: transparent;
  border-bottom: 1px solid rgba(40, 44, 50, 0.2);
}

.header-section.style-two .navbar {
  background-color: transparent;
  padding-left: 4%;
  padding-right: 4%;
  border-radius: 0;
  height: 90px;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-two .navbar {
    height: 110px;
  }
}

.header-section.style-two .navbar .navbar-brand {
  margin-right: 0;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-two .navbar .navbar-brand {
    margin-right: 0;
  }
}

.header-section.style-two .header-navigation {
  padding-left: 0;
  gap: 20px;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-two .header-navigation {
    gap: 40px;
  }
}

.header-section.style-two.mobile-menu-open {
  background-color: var(--White) !important;
}

.header-section.style-two.mobile-menu-open .navbar {
  height: auto;
}

.header-section.style-three {
  background-color: transparent;
  top: 24px;
}

.header-section.style-three .navbar {
  border: 1px solid transparent;
  border-radius: 8rem;
  margin-left: 4%;
  margin-right: 4%;
  padding-left: 30px;
  padding-right: 30px;
  height: 90px;
}

@media only screen and (min-width: 992px) {
  .header-section.style-three .navbar {
    margin-left: 3%;
    margin-right: 3%;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section.style-three .navbar {
    height: 110px;
  }
}

.header-section.style-three .navbar .navbar-brand {
  margin-right: 0;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-three .navbar .navbar-brand {
    margin-right: 0;
  }
}

.header-section.style-three .header-navigation {
  padding-left: 0;
  gap: 20px;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-three .header-navigation {
    gap: 40px;
  }
}

.header-section.style-three.mobile-menu-open {
  background-color: var(--White) !important;
}

.header-section.style-three.mobile-menu-open .navbar {
  height: auto;
  box-shadow: none;
}

.header-section.style-four {
  background-color: transparent;
}

.header-section.style-four .navbar {
  background-color: transparent;
  margin-left: 5%;
  margin-right: 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 90px;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-four .navbar {
    height: 110px;
  }
}

.header-section.style-four .navbar-nav li > a {
  color: var(--White);
}

.header-section.style-four .navbar-nav li > a:hover,
.header-section.style-four .navbar-nav li > a:focus {
  color: var(--Primary);
}

.header-section.style-four .navbar-nav li .elixirbooks-dd-menu {
  background-color: transparent;
}

@media only screen and (min-width: 1200px) {
  .header-section.style-four .navbar-nav li .elixirbooks-dd-menu {
    background-color: var(--White);
  }
}

.header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a {
  color: var(--White);
}

@media only screen and (min-width: 1200px) {
  .header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a {
    color: var(--Heading);
  }
}

.header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a:hover,
.header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a:focus {
  background-color: transparent;
  color: var(--Primary);
}

@media only screen and (min-width: 1200px) {
  .header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a:hover,
  .header-section.style-four .navbar-nav li .elixirbooks-dd-menu li > a:focus {
    color: var(--Primary);
  }
}

.header-section.style-four .navbar-nav li.elixirbooks-dd .dropdown-toggler {
  background-color: transparent;
  color: var(--White);
}

.header-section.style-four .navbar-nav li.elixirbooks-dd:hover > a,
.header-section.style-four .navbar-nav li.elixirbooks-dd:focus > a {
  color: var(--Primary);
}

.header-section.style-four .navbar-toggler {
  border-color: var(--White);
  color: var(--White);
}

.header-section.style-four.mobile-menu-open {
  background-color: var(--Background) !important;
}

.header-section.style-four.mobile-menu-open .navbar {
  height: auto;
  box-shadow: none;
}

.header-section.sticky-on .navbar {
  box-shadow: 0 30px 42px #2127251a;
}

@media only screen and (min-width: 1200px) {
  .header-section.sticky-on .navbar {
    height: 80px;
  }
}

.header-section.sticky-on .header-top {
  height: 44px;
  background-color: var(--Background);
}

.header-section.sticky-on.style-two {
  background-color: var(--Secondary);
  box-shadow: 0 30px 42px #2127251a;
  border-bottom-color: transparent;
}

@media only screen and (min-width: 1200px) {
  .header-section.sticky-on.style-two .navbar {
    box-shadow: none;
  }
}

.header-section.sticky-on.style-three {
  box-shadow: none;
}

@media only screen and (min-width: 1200px) {
  .header-section.sticky-on.style-three .navbar {
    box-shadow: 0 30px 42px #2127251a;
    border-color: #0000001a;
  }
}

.header-section.sticky-on.style-four {
  background-color: var(--Background);
}

.header-section.sticky-on.style-four .navbar {
  border-color: transparent;
}

.header-section.sticky-on.style-four.mobile-menu-open {
  background-color: var(--Background) !important;
}

.header-section.sticky-on.style-four.mobile-menu-open .navbar {
  height: auto;
  box-shadow: none;
}

.right-side-elixirbooks-offcanvas {
  width: 320px !important;
  background-color: var(--White);
}

@media only screen and (min-width: 576px) {
  .right-side-elixirbooks-offcanvas {
    width: 400px !important;
  }
}

.right-side-elixirbooks-offcanvas .offcanvas-header {
  height: 110px;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--Background);
}

@media only screen and (min-width: 576px) {
  .right-side-elixirbooks-offcanvas .offcanvas-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.right-side-elixirbooks-offcanvas .offcanvas-header .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: var(--Animation-Duration);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.right-side-elixirbooks-offcanvas .offcanvas-body {
  padding: 1.5rem;
  scrollbar-width: thin;
}

@media only screen and (min-width: 576px) {
  .right-side-elixirbooks-offcanvas .offcanvas-body {
    padding: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .elixirbooks-dd-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .elixirbooks-dd-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(7) {
    transition-delay: 0.7s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(8) {
    transition-delay: 0.8s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(9) {
    transition-delay: 0.9s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(10) {
    transition-delay: 1s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(11) {
    transition-delay: 1.1s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(12) {
    transition-delay: 1.2s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(13) {
    transition-delay: 1.3s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(14) {
    transition-delay: 1.4s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(15) {
    transition-delay: 1.5s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(16) {
    transition-delay: 1.6s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(17) {
    transition-delay: 1.7s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(18) {
    transition-delay: 1.8s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(19) {
    transition-delay: 1.9s;
  }

  .elixirbooks-dd:hover .elixirbooks-dd-menu li:nth-child(20) {
    transition-delay: 2s;
  }
}

.navbar-nav-scroll {
  max-height: 55vh;
}

.navbar .navbar-nav li.active a,
.navbar .navbar-nav li.active li.active a {
  color: var(--Primary);
}

.hero-content {
  margin-top: 60px;
}

@media only screen and (min-width: 768px) {
  .hero-content {
    margin-top: 70px;
  }
}

@media only screen and (min-width: 992px) {
  .hero-content {
    margin-top: 80px;
  }
}

@media only screen and (min-width: 1200px) {
  .hero-content {
    margin-top: 100px;
  }
}

.hero-content h2 {
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 600;
  line-height: 1.2;
}

.hero-content h5 {
  color: var(--White);
  line-height: 1.5;
}

.hero-content .subtitle {
  padding: 10px 18px;
  border-radius: 30px;
  background: #ffffff1a;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--White);
  display: inline-block;
  font-weight: 400;
}

@media only screen and (min-width: 1200px) {
  .hero-content .subtitle {
    font-size: 18px;
  }
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1200px) {
  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}

.imgs-group {
  display: flex;
  align-items: center;
}

.imgs-group img {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fefefe;
  -o-object-fit: cover;
  object-fit: cover;
}

.imgs-group img:not(:first-child) {
  margin-left: -25px;
}

@media only screen and (min-width: 1400px) {
  .imgs-group img {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .imgs-group img:not(:first-child) {
    margin-left: -30px;
  }
}

.imgs-group div {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Primary);
  color: var(--White);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-left: -25px;
}

@media only screen and (min-width: 1400px) {
  .imgs-group div {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-left: -30px;
  }
}

.imgs-group.style-two img {
  border: 2px solid var(--Heading);
}

.hero-image {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

@media only screen and (min-width: 1200px) {
  .hero-image {
    margin-top: 100px;
  }
}

.hero-image .bg-shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero-image .bg-shape img {
  width: 100%;
}

.hero-image.style-two .curve-img {
  border-radius: 322rem 322rem 0 0;
}

.hero-image.style-two .floating-img {
  border-radius: 12px;
  box-shadow: 0 30px 42px #05262514;
  position: absolute;
  z-index: 100;
  bottom: 50px;
  right: -125px;
}

.hero-cool-facts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-cool-facts .line {
  width: 1.5px;
  height: 39px;
  background-color: #5656564d;
  flex-shrink: 0;
}

.hero-cool-facts .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--Warning);
  font-size: 16px;
}

.hero-section {
  position: relative;
  z-index: 1;
  background-color: var(--Background);
  padding-top: 142px;
}

@media only screen and (min-width: 1200px) {
  .hero-section {
    padding-top: 160px;
  }
}

.hero-section.style-two {
  background-color: var(--Secondary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
}

@media only screen and (min-width: 1200px) {
  .hero-section.style-two {
    padding-top: 110px;
  }
}

.hero-section.style-two .hero-content {
  padding-top: 60px;
  margin-top: 0;
}

@media only screen and (min-width: 1200px) {
  .hero-section.style-two .hero-content {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.hero-section.style-two .bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 24px;
  z-index: 100;
}

.hero-section.style-three {
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 113px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 1200px) {
  .hero-section.style-three {
    padding-top: 133px;
    padding-bottom: 116px;
  }
}

.hero-section.style-three .hero-shape {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}

.hero-section.style-three .hero-shape span {
  width: 146px;
  height: 146px;
  border: 2px solid rgba(250, 62, 95, 0.1);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section.style-three .hero-shape span:nth-child(2) {
  width: 220px;
  height: 220px;
}

.hero-section.style-three .hero-shape span:nth-child(3) {
  width: 293px;
  height: 293px;
}

.hero-section.style-three .hero-shape span:nth-child(4) {
  width: 366px;
  height: 366px;
}

.hero-section.style-three .hero-shape span:nth-child(5) {
  width: 439px;
  height: 439px;
}

.hero-section.style-three .hero-shape-two {
  position: absolute;
  left: 40%;
  bottom: 15%;
  z-index: -1;
}

.hero-section.style-three .hero-shape-two img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-section.style-four {
  position: relative;
  z-index: 1;
  height: 900px;
  padding-top: 90px;
  padding-bottom: 60px;
}

@media only screen and (min-width: 768px) {
  .hero-section.style-four {
    height: 700px;
  }
}

@media only screen and (min-width: 1200px) {
  .hero-section.style-four {
    padding-top: 110px;
    padding-bottom: 124px;
    height: 950px;
  }
}

@media only screen and (min-width: 1400px) {
  .hero-section.style-four {
    height: 1080px;
  }
}

.hero-section.style-four:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #101010b3;
}

.hero-section.style-four .hero-content {
  margin-left: 5%;
  margin-right: 5%;
}

.hero-section.style-four .hero-content h2 {
  font-size: clamp(42px, 5vw, 120px);
  color: var(--White);
}

.hero-section.style-four .hero-content p {
  color: var(--White);
  font-size: clamp(16px, 2vw, 20px);
}

.col-hero-img {
  order: 21;
}

@media only screen and (min-width: 992px) {
  .col-hero-img {
    order: 0;
  }
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .about-list {
    gap: 20px;
  }
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--Heading);
}

@media only screen and (min-width: 1200px) {
  .about-list li {
    font-size: 18px;
  }
}

.about-img {
  position: relative;
  border-radius: 18px;
}

.about-img:after {
  width: 70%;
  height: 80%;
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  border-radius: 18px;
  background: #e3e5fd;
  z-index: 1;
}

.about-img img {
  position: relative;
  z-index: 10;
  border-radius: 18px;
  width: 100%;
}

.about-two-img {
  position: relative;
  z-index: 1;
  border-radius: 21px;
  background: var(--Secondary);
  text-align: right;
  min-height: 100%;
  overflow: hidden;
}

.about-two-img .first-img {
  position: absolute;
  left: 35px;
  bottom: 30px;
  z-index: 5;
  width: 220px;
}

.about-two-img .second-img {
  position: relative;
  bottom: -3rem;
  width: 330px;
  z-index: 20;
}

.about-top-content h2 {
  font-size: clamp(24px, 5vw, 50px);
  font-weight: 400;
}

.about-top-content h3 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 600;
}

.about-top-content p {
  font-size: 18px;
}

.about-top-content .about-top-img {
  display: flex;
  align-items: center;
}

.about-top-content .about-top-img img {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--White);
  -o-object-fit: cover;
  object-fit: cover;
}

.about-top-content .about-top-img img:nth-child(2) {
  transform: translate(-20px);
}

.about-top-content .about-top-img img:nth-child(3) {
  transform: translate(-40px);
}

.about-top-content .about-top-img img:nth-child(4) {
  transform: translate(-60px);
}

.about-top-content .about-top-img img:nth-child(5) {
  transform: translate(-80px);
}

.about-top-content .about-top-img img:nth-child(6) {
  transform: translate(-100px);
}

.about-top-content .about-top-img img:nth-child(7) {
  transform: translate(-120px);
}

.about-top-content .about-top-img img:nth-child(8) {
  transform: translate(-140px);
}

.about-top-content .about-top-img img:nth-child(9) {
  transform: translate(-160px);
}

.about-top-content .about-top-img img:nth-child(10) {
  transform: translate(-180px);
}

.about-top-content .about-top-img img:nth-child(11) {
  transform: translate(-200px);
}

.about-top-content .about-top-img img:nth-child(12) {
  transform: translate(-220px);
}

.about-top-content .about-top-img img:nth-child(13) {
  transform: translate(-240px);
}

.about-top-content .about-top-img img:nth-child(14) {
  transform: translate(-260px);
}

.about-top-content .about-top-img img:nth-child(15) {
  transform: translate(-280px);
}

.about-top-content .about-top-img img:nth-child(16) {
  transform: translate(-300px);
}

.about-top-content .about-top-img img:nth-child(17) {
  transform: translate(-320px);
}

.about-top-content .about-top-img img:nth-child(18) {
  transform: translate(-340px);
}

.about-top-content .about-top-img img:nth-child(19) {
  transform: translate(-360px);
}

.about-top-content .about-top-img img:nth-child(20) {
  transform: translate(-380px);
}

.about-bottom-img {
  border-radius: 18px;
  margin-top: 3rem;
}

.about-bottom-img img {
  border-radius: 18px;
  width: 100%;
}

.about-content {
  text-align: center;
}

.about-content h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 5vw, 50px);
  display: inline;
  line-height: 1.5;
  margin-right: 0.75rem;
}

.about-content img {
  width: 150px;
  height: 44px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .about-content img {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .about-content img {
    width: 200px;
    height: 60px;
    margin-bottom: 1.5rem;
    margin-right: 0.75rem;
  }
}

.about-section {
  position: relative;
  z-index: 1;
}

.about-section.style-one:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--Secondary);
  z-index: -1;
  opacity: 0.8;
}

.story-content {
  background-color: var(--Secondary);
  border-radius: 32px;
  padding: 30px;
}

@media only screen and (min-width: 576px) {
  .story-content {
    padding: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .story-content {
    padding: 50px;
  }
}

@media only screen and (min-width: 992px) {
  .story-content {
    padding: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  .story-content {
    padding: 70px;
  }
}

@media only screen and (min-width: 1400px) {
  .story-content {
    padding: 80px;
  }
}

.story-content img {
  border-radius: 20px;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}

.process-card img {
  transition: var(--Animation-Duration);
  max-height: 200px;
}

.process-card .step-number {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card .step-number span {
  font-size: 16px;
  border-radius: 100px;
  background: var(--Primary);
  color: var(--White);
  padding: 5px 15px;
  display: inline;
  text-transform: uppercase;
}

.process-card .step-number:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  border-top: 2px dashed var(--Primary);
  z-index: -10;
  opacity: 0.4;
}

.process-card .process-body {
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.process-card:hover img,
.process-card:focus img {
  transform: translateY(-8px);
}

.get-started-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--Border);
  transition: var(--Animation-Duration);
  color: var(--Heading);
}

.get-started-btn span {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--Primary);
  color: var(--White);
  font-size: 20px;
}

.get-started-btn h6 {
  color: var(--Heading);
}

.get-started-btn:hover,
.get-started-btn:focus {
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--Primary);
}

.get-started-btn:hover h6,
.get-started-btn:focus h6 {
  color: var(--Primary);
}

.team-card {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
  border-radius: 20px;
  background-color: var(--Secondary);
  padding: 10px;
}

.team-card .team-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px 12px 20px 20px;
}

.team-card .team-img img {
  width: 100%;
  transition: var(--Animation-Duration);
  border-radius: 12px 12px 20px 20px;
}

.team-card .team-img .team-social {
  position: absolute;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  visibility: hidden;
  transition: var(--Animation-Duration);
}

.team-card .team-img .team-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--White);
  background-color: var(--Background);
  transition: var(--Animation-Duration);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .team-img .team-social a:hover,
.team-card .team-img .team-social a:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.team-card h4,
.team-card p,
.team-card .member-title {
  transition: var(--Animation-Duration);
}

.team-card p {
  font-size: 18px;
}

.team-card:hover,
.team-card:focus {
  background-color: var(--Background);
}

.team-card:hover .team-social,
.team-card:focus .team-social {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.team-card:hover h4,
.team-card:hover p,
.team-card:hover .member-title,
.team-card:focus h4,
.team-card:focus p,
.team-card:focus .member-title {
  color: var(--White);
}

.team-card-two {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  transition: var(--Animation-Duration);
}

.team-card-two img {
  width: 100%;
  border-radius: 18px;
}

.team-card-two .team-social {
  transition: var(--Animation-Duration);
  position: absolute;
  z-index: 10;
  top: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card-two .team-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--Heading);
  background-color: var(--Secondary);
  transition: var(--Animation-Duration);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-two .team-social a:hover,
.team-card-two .team-social a:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.team-card-three {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--Animation-Duration);
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: var(--Secondary);
}

.team-card-three .team-img {
  position: relative;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.team-card-three .team-img img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}

.team-card-three .team-body {
  padding: 24px;
  transition: var(--Animation-Duration);
}

.team-card-three .social-nav-trigger {
  position: absolute;
  z-index: 10;
  right: 20px;
  bottom: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White);
  background-color: var(--Primary);
  transition: var(--Animation-Duration);
  border: 0;
  font-size: 24px;
}

.team-card-three .social-nav-trigger i.ti-minus {
  display: none;
}

.team-card-three .social-nav-trigger.active i.ti-minus {
  display: block;
}

.team-card-three .social-nav-trigger.active i.ti-plus {
  display: none;
}

.team-card-three .social-nav-trigger:hover,
.team-card-three .social-nav-trigger:focus {
  background-color: var(--Heading);
  color: var(--White);
}

.team-card-three .social-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 100;
  right: 20px;
  bottom: 30px;
  gap: 8px;
}

.team-card-three .social-nav a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--Heading);
  background-color: var(--White);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--Animation-Duration);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-three .social-nav a:hover,
.team-card-three .social-nav a:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.team-card-three .social-nav a.show {
  opacity: 1;
  transform: translateY(0);
}

.team-card-three h5 {
  transition: var(--Animation-Duration);
}

.team-card-three:hover,
.team-card-three:focus {
  transform: translateY(-10px);
  border-color: var(--Border);
}

.team-card-three:hover h5,
.team-card-three:focus h5 {
  color: var(--Primary);
}

.team-details-content h2 {
  font-size: clamp(24px, 2.5vw, 50px);
}

.team-details-content .social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-details-content .social-nav a {
  transition: var(--Animation-Duration);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--White);
  background-color: var(--Heading);
}

@media only screen and (min-width: 1200px) {
  .team-details-content .social-nav a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

.team-details-content .social-nav a:hover,
.team-details-content .social-nav a:focus {
  background-color: var(--Primary);
  color: var(--White);
  transform: translateY(-5px);
}

.team-nav-list {
  gap: 30px;
}

@media only screen and (min-width: 1400px) {
  .team-nav-list {
    gap: 40px;
  }
}

.team-nav-list .nav-link {
  padding: 0;
}

.team-nav-list .team-nav {
  padding: 12px 20px;
  border: 1px solid rgba(15, 15, 15, 0.3);
  background: var(--White);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: var(--Animation-Duration);
  flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .team-nav-list .team-nav {
    flex-wrap: nowrap;
    border-radius: 10rem;
  }
}

@media only screen and (min-width: 1200px) {
  .team-nav-list .team-nav {
    padding: 20px 30px;
  }
}

@media only screen and (min-width: 1400px) {
  .team-nav-list .team-nav {
    gap: 80px;
  }
}

.team-nav-list .team-nav h2 {
  font-size: clamp(24px, 2.5vw, 36px);
}

.team-nav-list .team-nav p {
  color: var(--Heading);
}

@media only screen and (min-width: 992px) {
  .team-nav-list .team-nav p {
    font-size: 18px;
  }
}

.team-nav-list .team-nav .btn-team {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White);
  background-color: var(--Primary);
  transition: var(--Animation-Duration);
}

.team-nav-list .team-nav .btn-team:hover,
.team-nav-list .team-nav .btn-team:focus {
  transform: scale(1.15);
}

.team-nav-list .nav-link.active .team-nav {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
}

.team-nav-list .nav-link.active .team-nav h2,
.team-nav-list .nav-link.active .team-nav p {
  color: var(--White);
}

.team-nav-list .nav-link.active .team-nav .btn-team {
  background-color: var(--White);
  color: var(--Primary);
}

.team-details-section img {
  width: 100%;
  border-radius: 20px;
}

.team-details-section p {
  font-size: 18px;
}

.experience-info p {
  font-size: 16px;
}

@media only screen and (min-width: 992px) {
  .experience-info p {
    font-size: 18px;
  }
}

.progress-item .progress {
  width: 100%;
  height: 12px;
  border-radius: 1rem;
  background: #ffaf014d;
  padding: 3px;
}

.progress-item .progress-bar {
  border-radius: 1rem;
  background: #ffaf01;
}

.progress-item .progress-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--Heading);
}

.progress-item .progress-info svg {
  transform: translateY(8px);
}

.progress-item .progress-info svg path {
  fill: #ffaf01;
}

.progress-item .progress-info .percentage {
  position: absolute;
  z-index: 100;
  right: 0;
}

.progress-item:nth-child(2) .progress-info svg path {
  fill: #c700b1;
}

.progress-item:nth-child(2) .progress {
  background: #c700b14d;
}

.progress-item:nth-child(2) .progress-bar {
  background: #c700b1;
}

.progress-item:last-child .progress-info svg path {
  fill: #1352fc;
}

.progress-item:last-child .progress {
  background: #1352fc4d;
}

.progress-item:last-child .progress-bar {
  background: #1352fc;
}

.testimonial-card {
  position: relative;
  transition: var(--Animation-Duration);
  padding: 40px;
  border-radius: 20px;
  background: var(--White);
  text-align: center;
}

.testimonial-card .testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card .testimonial-text {
  font-size: 16px;
  margin-bottom: 36px;
  color: var(--Text);
}

@media only screen and (min-width: 768px) {
  .testimonial-card .testimonial-text {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .testimonial-card .testimonial-text {
    font-size: 22px;
  }
}

.testimonial-side-imgs {
  display: none;
  flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .testimonial-side-imgs {
    display: flex;
  }
}

.testimonial-side-imgs img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  animation: zoomInOut 2s linear infinite;
}

@media only screen and (min-width: 992px) {
  .testimonial-side-imgs img {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img {
    width: 60px;
    height: 60px;
  }
}

.testimonial-side-imgs img:nth-child(1) {
  animation-delay: 1s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(1) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(2) {
  animation-delay: 2s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(2) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(3) {
  animation-delay: 3s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(3) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(4) {
  animation-delay: 4s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(4) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(5) {
  animation-delay: 5s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(5) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(6) {
  animation-delay: 6s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(6) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(7) {
  animation-delay: 7s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(7) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(8) {
  animation-delay: 8s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(8) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(9) {
  animation-delay: 9s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(9) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(10) {
  animation-delay: 10s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(10) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(11) {
  animation-delay: 11s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(11) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(12) {
  animation-delay: 12s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(12) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(13) {
  animation-delay: 13s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(13) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(14) {
  animation-delay: 14s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(14) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(15) {
  animation-delay: 15s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(15) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(16) {
  animation-delay: 16s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(16) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(17) {
  animation-delay: 17s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(17) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(18) {
  animation-delay: 18s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(18) {
    margin-top: 120px;
  }
}

.testimonial-side-imgs img:nth-child(19) {
  animation-delay: 19s;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(19) {
    margin-right: 60px;
  }
}

.testimonial-side-imgs img:nth-child(20) {
  animation-delay: 20s;
  margin-top: 90px;
}

@media only screen and (min-width: 1400px) {
  .testimonial-side-imgs img:nth-child(20) {
    margin-top: 120px;
  }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.testimonial-card-four {
  display: flex;
  border-radius: 20px;
  background: var(--Secondary);
  padding: 30px 24px;
  gap: 24px;
}

@media only screen and (min-width: 768px) {
  .testimonial-card-four {
    gap: 36px;
    padding: 40px 36px;
  }
}

.testimonial-card-four .quote-icon {
  flex-shrink: 0;
}

.testimonial-card-four .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
}

@media only screen and (min-width: 1200px) {
  .testimonial-card-four .testimonial-text {
    font-size: 18px;
  }
}

.testimonial-card-four .rating {
  font-size: 20px;
  color: var(--Warning);
}

@media only screen and (min-width: 1200px) {
  .testimonial-card-four .rating {
    font-size: 24px;
  }
}

.testimonial-pagination,
.other-page-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet,
.other-page-pagination .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 1rem;
  background-color: var(--Text);
  animation: var(--Animation-Duration);
  z-index: 1;
  flex-shrink: 0;
}

.testimonial-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active,
.other-page-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px !important;
  height: 10px;
  border-radius: 1rem;
  animation: var(--Animation-Duration);
  background-color: var(--Heading);
}

.testimonial-four-button-prev,
.testimonial-four-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--Animation-Duration);
  font-size: 24px;
  background-color: var(--Secondary);
  color: var(--Heading);
  border: 0;
  cursor: pointer;
}

@media only screen and (min-width: 1200px) {
  .testimonial-four-button-prev,
  .testimonial-four-button-next {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.testimonial-four-button-prev:hover,
.testimonial-four-button-prev:focus,
.testimonial-four-button-next:hover,
.testimonial-four-button-next:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.testimonial-two-button-prev,
.testimonial-two-button-next {
  transition: var(--Animation-Duration);
  background-color: var(--Heading);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--White);
  border: 0;
  cursor: pointer;
}

@media only screen and (min-width: 1200px) {
  .testimonial-two-button-prev,
  .testimonial-two-button-next {
    width: 60px;
    height: 60px;
  }
}

.testimonial-two-button-prev:hover,
.testimonial-two-button-prev:focus,
.testimonial-two-button-next:hover,
.testimonial-two-button-next:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.testimonial-pagination-four,
.project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-pagination-four .swiper-pagination-bullet,
.project-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Heading);
  animation: var(--Animation-Duration);
  z-index: 1;
  flex-shrink: 0;
}

.testimonial-pagination-four
  .swiper-pagination-bullet.swiper-pagination-bullet-active,
.project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--Heading);
  animation: var(--Animation-Duration);
}

.testimonial-pagination-four
  .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.project-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  animation: var(--Animation-Duration);
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--Heading);
}

.testimonial-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.testimonial-section.style-two {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.testimonial-section.style-three {
  position: relative;
  z-index: 1;
}

.testimonial-section.style-three:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #1f1f1f;
  opacity: 0.95;
}

.rating-card {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 24px 30px;
  border-radius: 10px;
  background-color: var(--Primary);
}

.rating-card h2 {
  color: var(--White);
  font-size: 50px;
}

.rating-card .rating {
  display: flex;
  align-items: center;
  color: var(--Warning);
  font-size: 20px;
  gap: 2px;
  margin-bottom: 4px;
}

.rating-card p {
  color: var(--White);
}

.testimonial-card-three {
  border-radius: 15px;
  background: var(--White);
  padding: 40px;
}

.testimonial-card-three .testimonial-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
}

.testimonial-card-three .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card-three .testimonial-info {
  display: flex;
  gap: 16px;
}

.testimonial-card-three .testimonial-info .quote-icon {
  flex-shrink: 0;
}

.testimonial-card-three .testimonial-text {
  margin-bottom: 0;
  font-size: 1rem;
}

@media only screen and (min-width: 1200px) {
  .testimonial-card-three .testimonial-text {
    font-size: 18px;
  }
}

.testimonial-card-two {
  text-align: center;
}

.testimonial-card-two .testimonial-text {
  color: var(--Heading);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.testimonial-card-two .testimonial-info .rating {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
  color: var(--Warning);
}

.col-testimonial {
  order: -20;
}

@media only screen and (min-width: 576px) {
  .col-testimonial {
    order: 0;
  }
}

.popup-video {
  position: relative;
  z-index: 1;
}

.popup-video .video-btn {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--Primary);
  align-items: center;
  justify-content: center;
  color: var(--White);
  font-size: 12px;
  cursor: pointer;
}

.video-popup-iframe {
  background-color: #000000e6;
  transition: var(--Animation-Duration);
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.video-popup-iframe .video-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  padding: 0;
  z-index: 1;
}

.video-popup-iframe .video-content iframe {
  border-radius: 8px;
}

.video-popup-iframe .video-content .close-btn {
  transition: var(--Animation-Duration);
  position: absolute;
  top: -3rem;
  right: 0;
  z-index: 1000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--White);
  color: var(--Heading);
  cursor: pointer;
}

.video-popup-iframe .video-content .close-btn:hover,
.video-popup-iframe .video-content .close-btn:focus {
  background-color: var(--Heading);
  color: var(--White);
}

@media only screen and (min-width: 992px) {
  .video-popup-iframe .video-content .close-btn {
    top: -1.75rem;
    right: -1.75rem;
  }
}

@keyframes video-sonar {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }

  to {
    opacity: 0;
    transform: scale(1.3);
  }
}

.video-sonar {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: var(--White);
  animation: video-sonar 2s linear infinite;
}

.video-sonar:before {
  position: absolute;
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background-color: #fffc;
  content: "";
  top: 50%;
  left: 50%;
  z-index: -100;
  transform: translate(-50%, -50%);
}

.video-sonar:after {
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background-color: #fffc;
  content: "";
  top: 50%;
  left: 50%;
  z-index: -50;
  transform: translate(-50%, -50%);
}

.blog-card {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
}

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

.blog-card .blog-img img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.blog-card .blog-body {
  padding: 30px;
  border-radius: 0 0 20px 20px;
  background-color: var(--Secondary);
  transition: var(--Animation-Duration);
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .blog-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--Text);
  flex-shrink: 0;
}

.blog-card .blog-meta .post-category,
.blog-card .blog-meta .post-date {
  transition: var(--Animation-Duration);
  color: var(--Text);
  font-weight: 400;
  font-size: 16px;
}

.blog-card .blog-meta .post-category:hover,
.blog-card .blog-meta .post-category:focus,
.blog-card .blog-meta .post-date:hover,
.blog-card .blog-meta .post-date:focus {
  color: var(--Primary);
}

.blog-card .post-title {
  transition: var(--Animation-Duration);
  color: var(--Heading);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -1px;
}

.blog-card .post-title:hover,
.blog-card .post-title:focus {
  color: var(--Primary);
}

.blog-card.style-two {
  border: 1px solid var(--Border);
  border-radius: 20px;
}

.blog-card.style-two .blog-body {
  padding: 30px 40px;
  background-color: var(--White);
  transition: var(--Animation-Duration);
}

@media only screen and (min-width: 1200px) {
  .blog-card.style-two .blog-body p {
    font-size: 18px;
  }
}

.blog-card.style-two .post-title {
  font-size: clamp(24px, 3vw, 50px);
  line-height: 1.2;
}

.blog-card-two {
  display: flex;
}

.blog-card-two .blog-img,
.blog-card-two .blog-body {
  width: 50%;
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 100%;
}

.blog-card-two .blog-img {
  border-radius: 18px 0 0 18px;
}

.blog-card-two .blog-img img {
  border-radius: 18px 0 0 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-card-two .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card-two .blog-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--Text);
  flex-shrink: 0;
}

.blog-card-two .blog-meta .post-category,
.blog-card-two .blog-meta .post-date {
  transition: var(--Animation-Duration);
  color: var(--Text);
  font-weight: 400;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .blog-card-two .blog-meta .post-category,
  .blog-card-two .blog-meta .post-date {
    font-size: 16px;
  }
}

.blog-card-two .blog-meta .post-category:hover,
.blog-card-two .blog-meta .post-category:focus,
.blog-card-two .blog-meta .post-date:hover,
.blog-card-two .blog-meta .post-date:focus {
  color: var(--Primary);
}

.blog-card-two .post-title {
  transition: var(--Animation-Duration);
  color: var(--Heading);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.blog-card-two .post-title:hover,
.blog-card-two .post-title:focus {
  color: var(--Primary);
}

.blog-card-two .blog-body {
  padding: 30px 20px;
  background-color: var(--Secondary);
  border-radius: 0 18px 18px 0;
}

@media only screen and (min-width: 768px) {
  .blog-card-two .blog-body {
    padding: 40px 30px;
  }
}

.blog-card-three {
  border-bottom: 1px solid var(--Border);
  padding-bottom: 60px;
  padding-top: 60px;
  cursor: pointer;
}

.blog-card-three:first-child {
  padding-top: 0;
}

.blog-card-three:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-card-three .blog-img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: var(--Animation-Duration);
}

.blog-card-three .blog-img img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-card-three .blog-img .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card-three .blog-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: var(--Animation-Duration);
  flex-wrap: wrap;
}

@media only screen and (min-width: 576px) {
  .blog-card-three .blog-body {
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-card-three .blog-body {
    gap: 60px;
  }
}

@media only screen and (min-width: 1400px) {
  .blog-card-three .blog-body {
    gap: 80px;
  }
}

.blog-card-three .blog-body .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex: 0 0 100%;
  width: 100%;
}

@media only screen and (min-width: 576px) {
  .blog-card-three .blog-body .post-author {
    flex: 0 0 30%;
    width: 30%;
  }
}

.blog-card-three .blog-body .post-author img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) {
  .blog-card-three .blog-body .post-location {
    flex-shrink: 0;
  }
}

.blog-card-three .blog-body .post-location a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--Text);
}

@media only screen and (min-width: 576px) {
  .blog-card-three .blog-body .post-location a {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-card-three .blog-body .post-location a {
    font-size: 18px;
  }
}

.blog-card-three .blog-body .post-location span {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: var(--Secondary);
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Primary);
}

.blog-card-three .blog-body .post-title {
  transition: var(--Animation-Duration);
  color: var(--Heading);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(24px, 2.5vw, 36px);
  display: block;
  letter-spacing: -1px;
}

.blog-card-three .blog-body .post-title:hover,
.blog-card-three .blog-body .post-title:focus {
  color: var(--Primary);
}

.blog-card-three .blog-body .blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .blog-card-three .blog-body .blog-meta {
    gap: 24px;
  }
}

.blog-card-three .blog-body .blog-meta .post-comments,
.blog-card-three .blog-body .blog-meta .post-location {
  transition: var(--Animation-Duration);
  color: var(--Text);
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media only screen and (min-width: 1200px) {
  .blog-card-three .blog-body .blog-meta .post-comments,
  .blog-card-three .blog-body .blog-meta .post-location {
    font-size: 18px;
  }
}

.blog-card-three .blog-body .blog-meta .post-comments i,
.blog-card-three .blog-body .blog-meta .post-location i {
  font-size: 24px;
}

.blog-card-three .blog-body .blog-meta .post-comments:hover,
.blog-card-three .blog-body .blog-meta .post-comments:focus,
.blog-card-three .blog-body .blog-meta .post-location:hover,
.blog-card-three .blog-body .blog-meta .post-location:focus {
  color: var(--Primary);
}

.blog-card-three.open .blog-img {
  opacity: 1;
  visibility: visible;
  height: 180px;
}

@media only screen and (min-width: 768px) {
  .blog-card-three.open .blog-img {
    height: 220px;
  }
}

@media only screen and (min-width: 992px) {
  .blog-card-three.open .blog-img {
    height: 260px;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-card-three.open .blog-img {
    height: 300px;
  }
}

@media only screen and (min-width: 1400px) {
  .blog-card-three.open .blog-img {
    height: 350px;
  }
}

.blog-card-three.open .blog-body {
  padding-top: 40px;
}

@media only screen and (min-width: 1200px) {
  .blog-card-three.open .blog-body {
    padding-top: 60px;
  }
}

.blog-card-three.open .blog-body .post-author img {
  border: 2px solid var(--Primary);
}

.blog-card-wrapper {
  display: flex;
  flex-direction: column;
}

.widget-card {
  background-color: var(--Secondary);
  padding: 32px 24px;
  border-radius: 20px;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .widget-card {
    padding: 40px 36px;
  }
}

.widget-card .widget-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.widget-card form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget-card form .form-control {
  transition: var(--Animation-Duration);
  background-color: var(--White);
  border-radius: 8px;
  height: 54px;
  color: var(--Text);
  border: 1px solid transparent;
  padding-left: 20px;
  padding-right: 20px;
}

.widget-card form .form-control::-moz-placeholder {
  color: var(--Text);
  opacity: 0.8;
}

.widget-card form .form-control::placeholder {
  color: var(--Text);
  opacity: 0.8;
}

.widget-card form .form-control:focus {
  box-shadow: none;
  border-color: var(--Border);
}

.widget-card form button {
  transition: var(--Animation-Duration);
  background-color: var(--Primary);
  color: var(--White);
  position: absolute;
  right: 0;
  border: 0;
  width: 60px;
  height: 100%;
  border-radius: 0 8px 8px 0;
  font-size: 24px;
  z-index: 10;
}

.widget-card form button:hover,
.widget-card form button:focus {
  color: var(--White);
  background-color: var(--Heading);
}

.blog-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  gap: 14px;
}

.blog-list li a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 54px;
  color: var(--Text);
  background-color: var(--White);
  border-radius: 8px;
  font-size: 16px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  transition: var(--Animation-Duration);
  font-family: var(--Font-Secondary);
}

@media only screen and (min-width: 992px) {
  .blog-list li a {
    font-size: 18px;
  }
}

.blog-list li a:hover,
.blog-list li a:focus {
  color: var(--White);
  background-color: var(--Primary);
}

.widget-blog {
  display: flex;
  align-items: center;
  gap: 20px;
}

.widget-blog .blog-thumbnail {
  border-radius: 10px;
  flex: 0 0 100px;
  max-width: 100px;
}

.widget-blog .blog-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.widget-blog .blog-content .post-date {
  color: var(--Text);
  font-size: 14px;
  font-weight: 400;
  display: block;
}

@media only screen and (min-width: 1200px) {
  .widget-blog .blog-content .post-date {
    font-size: 16px;
  }
}

.widget-blog .blog-content .post-title {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: -1px;
}

@media only screen and (min-width: 1200px) {
  .widget-blog .blog-content .post-title {
    font-size: 18px;
  }
}

.widget-blog .blog-content .post-title:hover,
.widget-blog .blog-content .post-title:focus {
  color: var(--Primary);
}

.tag-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-list a {
  padding: 6px 20px;
  color: var(--Heading);
  border: 1px solid var(--Border);
  font-size: 16px;
  font-weight: 400;
  display: block;
  border-radius: 6rem;
  background-color: transparent;
  transition: var(--Animation-Duration);
}

.tag-list a:hover,
.tag-list a:focus {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
}

.elixirbooks-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.elixirbooks-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  color: var(--Heading);
  border: 1px solid var(--Border);
  font-family: var(--Font-Secondary);
}

@media only screen and (min-width: 576px) {
  .elixirbooks-pagination li a {
    width: 42px;
    height: 42px;
  }
}

@media only screen and (min-width: 768px) {
  .elixirbooks-pagination li a {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

.elixirbooks-pagination li a:hover,
.elixirbooks-pagination li a:focus {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
}

.elixirbooks-pagination li.active a {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
}

.quote-card {
  border-radius: 10px;
  background: var(--Secondary);
  padding: 32px 24px;
  display: flex;
  gap: 24px;
}

@media only screen and (min-width: 992px) {
  .quote-card {
    padding: 40px 36px;
  }
}

.quote-card svg {
  width: 60px;
  flex-shrink: 0;
}

.quote-card p {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--Heading);
}

@media only screen and (min-width: 992px) {
  .quote-card p {
    font-size: 20px !important;
  }
}

.blog-comments-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  .blog-comments-list {
    gap: 48px;
  }
}

.blog-comments-list ul {
  list-style: none;
  padding-left: 24px;
}

@media only screen and (min-width: 576px) {
  .blog-comments-list ul {
    padding-left: 48px;
  }
}

.blog-comments-list .single-comment {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 1200px) {
  .blog-comments-list .single-comment {
    gap: 48px;
  }
}

.blog-comments-list .single-comment ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 1200px) {
  .blog-comments-list .single-comment ul {
    gap: 48px;
  }
}

.comment-content {
  display: flex;
  gap: 24px;
}

.comment-content img {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

@media only screen and (min-width: 1200px) {
  .comment-content img {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }
}

.comment-form .form-control {
  background-color: var(--Secondary);
}

.tag-share-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--Border);
  border-bottom: 1px solid var(--Border);
}

@media only screen and (min-width: 1200px) {
  .tag-share-wrap {
    padding: 24px 0;
  }
}

.tag-share-wrap .tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-share-wrap .tag-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--Heading);
  font-family: var(--Font-Primary);
}

@media only screen and (min-width: 1200px) {
  .tag-share-wrap .tag-list li {
    font-size: 16px;
  }
}

.tag-share-wrap .tag-list li a {
  transition: var(--Animation-Duration);
  border: 1px solid var(--Border);
  border-radius: 5rem;
  padding: 8px 20px;
  color: var(--Text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  max-height: 32px;
}

.tag-share-wrap .tag-list li a:hover,
.tag-share-wrap .tag-list li a:focus {
  background-color: var(--Primary);
  color: var(--White);
}

.tag-share-wrap .share-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-share-wrap .share-list li {
  font-size: 16px;
  font-weight: 600;
}

.tag-share-wrap .share-list li a {
  padding: 0 6px !important;
  color: var(--Text);
  font-size: 18px;
}

.tag-share-wrap .share-list li a:hover,
.tag-share-wrap .share-list li a:focus {
  color: var(--Primary);
}

.single-blog-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-blog-content h1,
.single-blog-content .h1,
.single-blog-content h2,
.single-blog-content .h2,
.single-blog-content h3,
.single-blog-content .h3,
.single-blog-content h4,
.single-blog-content .h4,
.single-blog-content h5,
.single-blog-content .h5,
.single-blog-content h6,
.single-blog-content .h6 {
  margin-bottom: 0;
}

.single-blog-content p {
  font-size: 1rem;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .single-blog-content p {
    font-size: 18px;
  }
}

.single-blog-content img {
  border-radius: 20px;
  width: 100%;
}

.single-blog-content .post-title {
  position: relative;
  z-index: 1;
  color: var(--Heading);
  font-weight: 500;
  line-height: 1.2;
  transition: var(--Animation-Duration);
  background-image: none;
  font-size: clamp(26px, 5vw, 54px);
  pointer-events: none;
  letter-spacing: -1px;
}

.single-blog-content .blog-meta {
  border-bottom: 1px solid var(--Border);
  padding-bottom: 20px;
}

.single-blog-content .blog-meta a {
  font-size: 16px;
  font-weight: 400;
  color: var(--Text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.single-blog-content .blog-meta a i {
  font-size: 20px;
  color: var(--Primary);
}

.single-blog-content .blog-meta a:hover,
.single-blog-content .blog-meta a:focus {
  color: var(--Primary);
}

.footer-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer-card p {
  font-size: 16px;
  color: var(--Text);
  margin-bottom: 40px;
}

@media only screen and (min-width: 992px) {
  .footer-card p {
    font-size: 18px;
  }
}

.footer-card h5 {
  font-weight: 600;
}

.footer-card .social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-card .social-nav a {
  transition: var(--Animation-Duration);
  border: 1px solid var(--Text);
  background-color: var(--Secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--Text);
}

@media only screen and (min-width: 1200px) {
  .footer-card .social-nav a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

.footer-card .social-nav a:hover,
.footer-card .social-nav a:focus {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
  transform: translateY(-5px);
}

.footer-card .social-nav.style-two a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--White);
  border: 1px solid var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--Animation-Duration);
  background-color: transparent;
}

.footer-card .social-nav.style-two a:hover,
.footer-card .social-nav.style-two a:focus {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
  transform: translateY(-5px);
}

.footer-card .social-nav.style-three a {
  transition: var(--Animation-Duration);
  border-color: var(--White);
  background-color: transparent;
  border-radius: 6px;
  color: var(--White);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-card .social-nav.style-three a:hover,
.footer-card .social-nav.style-three a:focus {
  color: var(--White);
  background-color: var(--Primary);
  border-color: var(--Primary);
}

.footer-card .social-nav.style-three.theme-two a {
  color: var(--Primary);
  border-color: var(--Primary);
}

.footer-card .social-nav.style-three.theme-two a:hover,
.footer-card .social-nav.style-three.theme-two a:focus {
  color: var(--White);
  background-color: var(--Primary);
  border-color: var(--Primary);
}

.footer-nav {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}

.footer-nav li a {
  color: var(--Text);
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--Font-Secondary);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-nav li a i {
  font-size: 18px;
}

.footer-nav li a:hover,
.footer-nav li a:focus {
  color: var(--Primary);
}

.footer-nav-two {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
}

.footer-nav-two li a {
  color: var(--White);
  opacity: 0.8;
  font-size: 16px;
  font-weight: 400;
}

.footer-nav-two li a:hover,
.footer-nav-two li a:focus {
  color: var(--Primary);
}

.footer-nav-two.theme-two li a {
  color: var(--Primary);
}

.footer-nav-two.theme-two li a:hover,
.footer-nav-two.theme-two li a:focus {
  color: var(--Primary);
}

.copyright-section {
  padding-top: 32px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(22, 22, 22, 0.3);
  text-align: center;
}

.copyright-section .copyright {
  font-size: 16px;
  color: var(--Text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .copyright-section .copyright {
    font-size: 18px;
  }
}

.copyright-section .copyright a {
  font-size: 16px;
  color: var(--Text);
  font-weight: 500;
}

@media only screen and (min-width: 1200px) {
  .copyright-section .copyright a {
    font-size: 18px;
  }
}

.copyright-section .copyright a:hover,
.copyright-section .copyright a:focus {
  font-weight: 500;
  color: var(--Primary);
}

.copyright-section .copyright.style-two,
.copyright-section .copyright.style-two a {
  color: var(--White);
}

.copyright-section .copyright.style-two a:hover,
.copyright-section .copyright.style-two a:focus {
  color: var(--Primary);
}

.copyright-nav {
  padding-left: 0;
}

.copyright-nav li a {
  color: var(--White);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--Font-Secondary);
}

@media only screen and (min-width: 992px) {
  .copyright-nav li a {
    font-size: 18px;
  }
}

.copyright-nav li a:hover,
.copyright-nav li a:focus {
  color: var(--Primary);
}

.copyright-nav.theme-two li a {
  color: var(--Primary);
}

.copyright-nav.theme-two li a:hover,
.copyright-nav.theme-two li a:focus {
  color: var(--Primary);
}

.recent-posts-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.recent-posts-nav li {
  width: calc(33.3333333% - 8px);
  max-width: calc(33.3333333% - 8px);
}

.recent-posts-nav li a {
  display: block;
  transition: var(--Animation-Duration);
  position: relative;
}

.recent-posts-nav li a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.recent-posts-nav li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--White);
  z-index: 100;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--Primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--Animation-Duration);
}

.recent-posts-nav li a:hover,
.recent-posts-nav li a:focus {
  transform: scale(1.05);
}

.recent-posts-nav li a:hover span,
.recent-posts-nav li a:focus span {
  opacity: 1;
  visibility: visible;
}

.footer-section {
  position: relative;
  z-index: 1;
}

.footer-section.style-two:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #282c32fa;
}

.footer-section.style-two .border-top,
.footer-section.style-two .copyright-section {
  border-top-color: #fff3 !important;
}

.footer-section.style-two .footer-card p {
  color: #faf8ff;
}

.footer-section.style-two .footer-card h5,
.footer-section.style-two .footer-card h4 {
  color: var(--White);
}

.footer-section.style-two .footer-card .social-nav a {
  border: 0;
}

.footer-section.style-two .footer-card .social-nav a:hover,
.footer-section.style-two .footer-card .social-nav a:focus {
  color: var(--White);
  background-color: var(--Primary);
}

.footer-section.style-two .footer-nav li a {
  color: #faf8ff;
}

.footer-section.style-two .footer-nav li a:hover,
.footer-section.style-two .footer-nav li a:focus {
  color: var(--Primary);
}

.footer-section.style-three {
  background-color: #1f1f1f;
}

.footer-section.style-three .footer-card p {
  color: var(--White);
  opacity: 0.8;
}

.footer-section.style-three .footer-card h5 {
  color: var(--White);
}

.footer-section.style-three .footer-nav li a {
  font-family: var(--Font-Primary);
  color: var(--White);
  opacity: 0.8;
  font-size: 16px;
  font-weight: 400;
}

.footer-section.style-three .footer-nav li a:hover,
.footer-section.style-three .footer-nav li a:focus {
  color: var(--Primary);
}

.footer-section.style-three .copyright-section {
  border-top-color: #fff3 !important;
}

.footer-section.style-four:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000000e6;
}

.footer-section.style-four .border-top,
.footer-section.style-four .copyright-section {
  border-top-color: #fff3 !important;
}

.footer-section.style-four .footer-card p {
  color: #f7f7fc;
}

.footer-section.style-four .footer-card h5,
.footer-section.style-four .footer-card h4 {
  color: var(--White);
}

.footer-section.style-four .footer-card .social-nav a {
  border: 0;
}

.footer-section.style-four .footer-card .social-nav a:hover,
.footer-section.style-four .footer-card .social-nav a:focus {
  color: var(--White);
  background-color: var(--Primary);
}

.footer-section.style-four .footer-nav li a {
  color: #f7f7fc;
}

.footer-section.style-four .footer-nav li a:focus {
  color: var(--Primary);
}

.footer-section.style-five {
  background-color: #111827;
  padding: 80px 0 0;
}

.footer-section.style-five .footer-card p,
.footer-section.style-five .footer-card small {
  color: #d1d5db; /* Lighter/brighter for better visibility */
}

.footer-section.style-five .footer-card h5 {
  color: var(--White);
  font-weight: 600;
}

.footer-section.style-five .footer-nav li a {
  color: #d1d5db;
}

.footer-section.style-five .footer-nav li a:hover,
.footer-section.style-five .footer-nav li a:focus {
  color: var(--White);
}

.footer-section.style-five .divider {
  background-color: rgba(255, 255, 255, 0.1);
  height: 1px;
  width: 100%;
}

.footer-section.style-five .social-nav a {
  color: #000000 !important; /* Black icons */
  background-color: var(--White); /* White background chips */
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-section.style-five .social-nav a:hover,
.footer-section.style-five .social-nav a:focus {
  color: var(--White) !important;
  background-color: var(--Primary);
}

.footer-section.style-five .copyright {
  color: #9ca3af;
  padding: 30px 0;
}

.cta-section {
  position: relative;
  z-index: 1;
  background-color: var(--Primary);
  overflow: hidden;
}

.cta-section h2 {
  font-weight: 600;
  font-size: clamp(36px, 5vw, 80px);
  letter-spacing: -2px;
}

@media only screen and (min-width: 768px) {
  .cta-section p {
    font-size: 18px;
  }
}

.cta-section .cta-circles span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cta-section .cta-circles span:nth-child(1) {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffffff1a;
}

@media only screen and (min-width: 992px) {
  .cta-section .cta-circles span:nth-child(1) {
    width: 600px;
    height: 600px;
  }
}

@media only screen and (min-width: 1400px) {
  .cta-section .cta-circles span:nth-child(1) {
    width: 950px;
    height: 950px;
  }
}

.cta-section .cta-circles span:nth-child(2) {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #ffffff13;
}

@media only screen and (min-width: 992px) {
  .cta-section .cta-circles span:nth-child(2) {
    width: 800px;
    height: 800px;
  }
}

@media only screen and (min-width: 1400px) {
  .cta-section .cta-circles span:nth-child(2) {
    width: 1250px;
    height: 1250px;
  }
}

.cta-section .cta-circles span:nth-child(3) {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: #ffffff0d;
}

@media only screen and (min-width: 992px) {
  .cta-section .cta-circles span:nth-child(3) {
    width: 1000px;
    height: 1000px;
  }
}

@media only screen and (min-width: 1400px) {
  .cta-section .cta-circles span:nth-child(3) {
    width: 1500px;
    height: 1500px;
  }
}

.cta-section .cta-content {
  position: relative;
  z-index: 100;
}

.cta-section .cta-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(7, 17, 92, 0.2));
  box-shadow: 0 12px 30px rgba(5, 10, 48, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section .cta-lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(22px, 2.7vw, 30px);
  font-weight: 500;
  line-height: 1.38;
  text-wrap: balance;
}

.cta-section .cta-points {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 760px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(5, 10, 48, 0.14);
  backdrop-filter: blur(12px);
}

.cta-section .cta-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: auto;
  padding: 0 18px;
  color: var(--White);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.cta-section .cta-points span + span::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .cta-section .cta-eyebrow {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .cta-section .cta-points {
    display: flex;
    width: 100%;
    max-width: 360px;
    padding: 16px 18px;
    border-radius: 24px;
    gap: 10px;
  }

  .cta-section .cta-points span {
    width: 100%;
    padding: 0;
  }

  .cta-section .cta-points span + span::before {
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
  }
}

.download-app-img {
  position: relative;
  z-index: 1;
  text-align: center;
}

.download-app-img .download-app-img-two {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cta-content hr {
  background-color: #ffffff4d;
  margin-top: 100px;
}

.cool-fact-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cool-fact-card .cta-icon {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fa3e5f1a;
}

.cool-fact-card h2 {
  font-size: clamp(28px, 4vw, 50px);
  color: var(--White);
  flex-shrink: 0;
  line-height: 1;
}

.cool-fact-card p {
  color: var(--White);
}

.app-cool-facts-section {
  position: relative;
  z-index: 1;
  padding-top: 320px;
}

@media only screen and (min-width: 576px) {
  .app-cool-facts-section {
    padding-top: 240px;
  }
}

.app-cool-facts-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000b3;
  z-index: -1;
}

.app-cool-facts-section .app-video {
  position: absolute;
  top: 20%;
  right: 0;
  transform: translateY(-50%);
  width: 260px;
  height: 130px;
  border-radius: 75px 0 0 75px;
  background: var(--White);
  z-index: 100;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

@media only screen and (min-width: 576px) {
  .app-cool-facts-section .app-video {
    top: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .app-cool-facts-section .app-video {
    width: 350px;
  }
}

@media only screen and (min-width: 1200px) {
  .app-cool-facts-section .app-video {
    width: 450px;
  }
}

@media only screen and (min-width: 1400px) {
  .app-cool-facts-section .app-video {
    width: 600px;
    height: 150px;
    top: 50%;
  }
}

.app-cool-facts-section .app-video .play-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.app-cool-facts-section .app-video .play-video-btn .icon {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border: 1px solid var(--Primary);
  color: var(--Primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
}

.app-cool-facts-section .app-video .play-video-btn .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1px solid rgba(116, 68, 253, 0.3);
  border-radius: 50%;
  z-index: -1;
}

.app-cool-facts-card {
  display: inline-flex;
  align-items: stretch;
  border-radius: 20px 20px 0 0;
  background-color: var(--Primary);
}

.app-cool-facts-card > div {
  width: 148px;
  padding: 30px 16px;
  flex-shrink: 0;
  text-align: center;
  min-height: 100%;
}

@media only screen and (min-width: 768px) {
  .app-cool-facts-card > div {
    width: 200px;
  }
}

@media only screen and (min-width: 1400px) {
  .app-cool-facts-card > div {
    width: 220px;
    padding: 40px 16px;
  }
}

.app-cool-facts-card > div h2 {
  color: var(--White);
  font-size: clamp(28px, 5vw, 50px);
  margin-bottom: 1rem;
  line-height: 1;
}

.app-cool-facts-card > div h5 {
  color: var(--White);
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .app-cool-facts-card > div h5 {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .app-cool-facts-card > div h5 {
    font-size: 1.25rem;
  }
}

.app-cool-facts-card > div:last-child {
  background-color: #fa3e5f;
  border-radius: 0 20px 0 0;
}

.cool-facts {
  text-align: center;
  background-color: var(--Primary);
  padding: 3rem 1rem;
  height: 100%;
}

@media only screen and (min-width: 1200px) {
  .cool-facts {
    padding: 4rem 1rem;
  }
}

.cool-facts h2 {
  font-size: clamp(36px, 4vw, 50px);
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--White);
}

.cool-facts p {
  color: var(--White);
}

@media only screen and (min-width: 1200px) {
  .cool-facts p {
    font-size: 18px;
  }
}

.cool-facts-wrap .row .col-12:first-child .cool-facts {
  border-radius: 20px 20px 0 0;
}

@media only screen and (min-width: 576px) {
  .cool-facts-wrap .row .col-12:first-child .cool-facts {
    border-radius: 20px 0 0;
  }
}

@media only screen and (min-width: 992px) {
  .cool-facts-wrap .row .col-12:first-child .cool-facts {
    border-radius: 20px 0 0 20px;
  }
}

.cool-facts-wrap .row .col-12:nth-child(2) .cool-facts {
  background-color: #2f43ec;
}

@media only screen and (min-width: 576px) {
  .cool-facts-wrap .row .col-12:nth-child(2) .cool-facts {
    border-radius: 0 20px 0 0;
  }
}

@media only screen and (min-width: 992px) {
  .cool-facts-wrap .row .col-12:nth-child(2) .cool-facts {
    border-radius: 0;
  }
}

@media only screen and (min-width: 576px) {
  .cool-facts-wrap .row .col-12:nth-child(3) .cool-facts {
    border-radius: 0 0 0 20px;
    background-color: #2f43ec;
  }
}

@media only screen and (min-width: 992px) {
  .cool-facts-wrap .row .col-12:nth-child(3) .cool-facts {
    border-radius: 0;
    background-color: var(--Primary);
  }
}

.cool-facts-wrap .row .col-12:last-child .cool-facts {
  border-radius: 0 0 20px 20px;
  background-color: #2f43ec;
}

@media only screen and (min-width: 576px) {
  .cool-facts-wrap .row .col-12:last-child .cool-facts {
    border-radius: 0 0 20px;
    background-color: var(--Primary);
  }
}

@media only screen and (min-width: 992px) {
  .cool-facts-wrap .row .col-12:last-child .cool-facts {
    border-radius: 0 20px 20px 0;
    background-color: #2f43ec;
  }
}

.cookiealert {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: 280px;
  padding: 30px 22px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: var(--Animation-Duration);
  background-color: var(--Background);
  color: var(--White);
}

@media only screen and (min-width: 576px) {
  .cookiealert {
    max-width: 360px;
  }
}

@media only screen and (min-width: 768px) {
  .cookiealert {
    max-width: 550px;
  }
}

@media only screen and (min-width: 992px) {
  .cookiealert {
    max-width: 700px;
    left: 2rem;
    bottom: 2rem;
    padding: 40px 32px;
  }
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookiealert p {
  font-size: 12px;
  color: var(--Text);
}

@media only screen and (min-width: 768px) {
  .cookiealert p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .cookiealert p {
    font-size: 16px;
  }
}

.cookiealert a {
  color: var(--White);
  font-weight: 600;
}

.cookiealert a:hover,
.cookiealert a:focus {
  color: var(--Primary);
}

.form-control {
  transition: var(--Animation-Duration);
  border-radius: 8px;
  background: var(--White);
  height: 60px;
  font-size: 1rem;
  border: 1px solid transparent;
  padding: 1rem 1.25rem;
  color: var(--Text);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--Border);
}

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

.form-control::placeholder {
  color: var(--Text);
}

.form-select {
  transition: var(--Animation-Duration);
  border-radius: 8px;
  background: var(--White);
  height: 60px;
  font-size: 1rem;
  border: 1px solid transparent;
  padding: 0 1.25rem;
  color: var(--Text);
  cursor: pointer;
}

.form-select:focus {
  box-shadow: none;
  border-color: var(--Border);
}

textarea.form-control {
  min-height: 10rem;
}

.contact-info-card {
  transition: var(--Animation-Duration);
  background: var(--Secondary);
  border-radius: 20px;
  padding: 36px 20px;
  height: 100%;
}

@media only screen and (min-width: 1200px) {
  .contact-info-card {
    padding: 50px 40px;
  }
}

.contact-info-card hr {
  background: var(--Border);
  margin-top: 30px;
  margin-bottom: 30px;
  opacity: 0.3;
}

.contact-sm-card p {
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 1200px) {
  .contact-sm-card p {
    font-size: 18px;
  }
}

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

.contact-sm-card .social-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-sm-card .social-nav a {
  transition: var(--Animation-Duration);
  border: 1px solid var(--Text);
  background-color: var(--Secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--Text);
}

@media only screen and (min-width: 1200px) {
  .contact-sm-card .social-nav a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

.contact-sm-card .social-nav a:hover,
.contact-sm-card .social-nav a:focus {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
  transform: translateY(-5px);
}

.maps-section {
  transform: translateY(6px);
}

.maps-section iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(0.5);
}

@media only screen and (min-width: 768px) {
  .maps-section iframe {
    height: 500px;
  }
}

@media only screen and (min-width: 1200px) {
  .maps-section iframe {
    height: 700px;
  }
}

.faq-accordion .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion .accordion-item {
  position: relative;
  border-radius: 10px;
  background: var(--Secondary);
  border: 0;
}

.faq-accordion .accordion-item .accordion-button {
  border-radius: 10px;
  background: var(--Secondary);
  color: var(--Heading);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 30px;
}

@media only screen and (min-width: 1200px) {
  .faq-accordion .accordion-item .accordion-button {
    font-size: 20px;
  }
}

.faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none !important;
}

.faq-accordion .accordion-item .accordion-button:after {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-position: center;
  background-color: var(--Heading);
  color: var(--White);
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3Cpath%20d%3D%22M6%209l6%206l6%20-6%22/%3E%3C/svg%3E);
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--White);
  background-color: var(--Primary);
  border-radius: 10px 10px 0 0;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed):after {
  background-color: var(--White);
  background-image: url(data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%209l6%206l6%20-6%22%20/%3E%3C/svg%3E);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: var(--Secondary);
  padding: 20px 30px;
  color: var(--Text);
  font-size: 16px;
  border-radius: 0 0 10px 10px;
}

.faq-accordion.style-two .accordion {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}

.faq-accordion.style-two .accordion .accordion-item {
  flex: 0 0 100%;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .faq-accordion.style-two .accordion .accordion-item {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

.faq-accordion.style-two .accordion-item {
  background: transparent;
  border-radius: 8px;
}

.faq-accordion.style-two .accordion-item .accordion-button {
  background-color: var(--White);
  border-radius: 8px;
}

.faq-accordion.style-two .accordion-item .accordion-button:not(.collapsed) {
  color: var(--Primary);
  background-color: var(--White);
}

.faq-accordion.style-two
  .accordion-item
  .accordion-button:not(.collapsed):after {
  background-color: var(--Primary);
  color: var(--White);
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3Cpath%20d%3D%22M6%209l6%206l6%20-6%22/%3E%3C/svg%3E);
}

.faq-accordion.style-two .accordion-item .accordion-body {
  padding-top: 0;
  background-color: var(--White);
  color: var(--Text);
  border-radius: 0 0 8px 8px;
}

.faq-accordion.style-three .faq-title {
  font-size: clamp(24px, 2.5vw, 36px);
}

.faq-accordion.style-three .accordion {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  border-radius: 10px;
}

.faq-accordion.style-three .accordion .accordion-item {
  flex: 0 0 100%;
  width: 100%;
}

.faq-accordion.style-three .accordion-item {
  background: var(--Primary);
  border-radius: 10px;
}

.faq-accordion.style-three .accordion-item .accordion-button {
  background-color: var(--Secondary);
  border-radius: 8px;
  color: var(--Heading);
  font-size: clamp(18px, 2vw, 24px);
}

.faq-accordion.style-three .accordion-item .accordion-button:not(.collapsed) {
  color: var(--White);
  background-color: var(--Primary);
}

.faq-accordion.style-three
  .accordion-item
  .accordion-button:not(.collapsed):after {
  background-color: #fff3;
  color: var(--White);
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3Cpath%20d%3D%22M6%209l6%206l6%20-6%22/%3E%3C/svg%3E);
}

.faq-accordion.style-three .accordion-item .accordion-body {
  padding-top: 0;
  background-color: var(--Primary);
  color: var(--White);
  border-radius: 0 0 8px 8px;
}

@media only screen and (min-width: 1200px) {
  .faq-accordion.style-three .accordion-item .accordion-body {
    font-size: 18px;
  }
}

.faq-accordion.theme-two .accordion-item {
  background: var(--White);
}

.faq-accordion.theme-two .accordion-item .accordion-button {
  background: var(--White);
  color: var(--Heading);
}

.faq-accordion.theme-two .accordion-item .accordion-button:not(.collapsed) {
  color: var(--White);
  background-color: var(--Primary);
}

.faq-accordion.theme-two
  .accordion-item
  .accordion-button:not(.collapsed):after {
  background-color: var(--White);
}

.faq-accordion.theme-two .accordion-item .accordion-body {
  background-color: var(--White);
}

.faq-question-section {
  background-position: center center;
  background-repeat: no-repeat;
}

.breadcrumb-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* fm-grid for breadcrumb sections */
.bc-fm-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(var(--bc-cols, 1), 60px);
  grid-template-rows: repeat(var(--bc-rows, 1), 60px);
  overflow: hidden;
  pointer-events: none;
}

.bc-fm-cell {
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  will-change: background-color;
}

.breadcrumb-section > .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-section:before {
  content: "";
  position: absolute;
  inset: -25% -10%;
  z-index: -9;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 82% 18%, rgba(130, 197, 255, 0.28) 0%, rgba(130, 197, 255, 0) 34%),
    radial-gradient(circle at 60% 78%, rgba(197, 170, 255, 0.22) 0%, rgba(197, 170, 255, 0) 36%);
  animation: breadcrumbGlowDrift 14s ease-in-out infinite alternate;
}

.breadcrumb-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: linear-gradient(0deg, #3147fff0, #0f175bf0 96.97%);
  transform-origin: 50% 50%;
  animation: breadcrumbBgZoom 10s ease-in-out infinite alternate;
}

@keyframes breadcrumbBgZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.09); }
}

.breadcrumb-section .breadcrumb-content {
  text-align: center;
  padding-top: 140px;
}

@media only screen and (min-width: 1200px) {
  .breadcrumb-section .breadcrumb-content {
    padding-top: 160px;
  }
}

.breadcrumb-section .breadcrumb-content h2 {
  color: var(--White);
  font-size: clamp(32px, 5vw, 80px);
  line-height: 1.1;
}


@media only screen and (min-width: 1200px) {
  .breadcrumb-section .breadcrumb-content h2 {
    margin-bottom: 1rem;
  }
}

.breadcrumb-section .breadcrumb-content ul {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb-section .breadcrumb-content ul li {
  color: var(--Secondary);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--Font-Primary);
  line-height: 1.1;
}

@media only screen and (min-width: 1200px) {
  .breadcrumb-section .breadcrumb-content ul li {
    font-size: 16px;
  }
}

.breadcrumb-section .breadcrumb-content ul li a {
  color: #f7f8ff80;
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding-right: 12px;
  font-weight: 400;
  transition: var(--Animation-Duration);
  font-family: var(--Font-Primary);
  line-height: 1.1;
}

@media only screen and (min-width: 1200px) {
  .breadcrumb-section .breadcrumb-content ul li a {
    font-size: 16px;
  }
}

.breadcrumb-section .breadcrumb-content ul li a:hover,
.breadcrumb-section .breadcrumb-content ul li a:focus {
  color: var(--Secondary);
}

.breadcrumb-section .breadcrumb-content ul li a:after {
  position: absolute;
  right: -5px;
  top: 55%;
  transform: translateY(-50%);
  font-family: var(--Font-Tabler);
  font-size: 16px;
  color: var(--Secondary);
}

@keyframes breadcrumbGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-8px, 6px, 0) scale(1.02);
  }
}

/* ── Footer Section Heading Underlines ── */
.footer-col h5 {
  display: inline-block;
  width: fit-content;
  padding-bottom: 8px;
  position: relative;
  color: #a8b8ff;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(168, 184, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .breadcrumb-section:before {
    animation: none;
  }
}

.partner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media only screen and (min-width: 768px) {
  .partner-content {
    gap: 1.5rem;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1200px) {
  .partner-content {
    gap: 2rem;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1400px) {
  .partner-content {
    gap: 40px;
  }
}

.partner-content p {
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--Heading);
}

.partner-content a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--White);
  padding: 20px;
  margin: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 120px;
}

.partner-content a img {
  max-height: 70px;
  width: auto;
  filter: none !important;
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 991px) {
  .partner-content a {
    min-height: 100px;
    padding: 20px 15px;
  }
  .partner-content a img {
    max-height: 50px;
  }
}

@media only screen and (min-width: 1400px) {
  .partner-content a img {
    max-height: 85px;
  }
}

.partner-content a:hover,
.partner-content a:focus {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--Primary);
}

.app-feature-section {
  position: relative;
  z-index: 1;
}

.app-feature-section .big-text {
  font-family: var(--Font-Primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(40, 44, 50, 0.5);
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  color: transparent;
}

@media only screen and (min-width: 768px) {
  .app-feature-section .big-text {
    font-size: 150px;
  }
}

@media only screen and (min-width: 1400px) {
  .app-feature-section .big-text {
    font-size: 200px;
  }
}

.app-feature-section .feature-cards {
  gap: 3rem;
}

@media only screen and (min-width: 768px) {
  .app-feature-section .feature-cards {
    gap: 12rem;
  }
}

@media only screen and (min-width: 1400px) {
  .app-feature-section .feature-cards {
    gap: 260px;
  }
}

.app-feature-card {
  transition: var(--Animation-Duration);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.app-feature-card .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background-color: var(--Secondary);
  transition: var(--Animation-Duration);
  margin-bottom: 40px;
  color: var(--Heading);
  font-size: 36px;
}

.app-feature-card .feature-icon i {
  line-height: 0.8;
}

.app-feature-card h2 {
  transition: var(--Animation-Duration);
}

@media only screen and (min-width: 768px) {
  .app-feature-card.text-md-end .feature-icon {
    margin-left: auto;
  }
}

.app-feature-card.active h2,
.app-feature-card:hover h2,
.app-feature-card:focus h2 {
  color: var(--Primary);
}

.app-feature-card.active .feature-icon,
.app-feature-card:hover .feature-icon,
.app-feature-card:focus .feature-icon {
  background-color: var(--Primary);
  color: var(--White);
}

.app-feature-img {
  position: relative;
  z-index: 1;
}

.app-feature-img img {
  transition: var(--Animation-Duration);
  width: 100%;
  display: none;
  opacity: 0;
}

.app-feature-img img.active {
  display: block;
  opacity: 1;
}

.featured-content h2 {
  font-size: clamp(24px, 4.5vw, 36px);
}

.featured-img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 8px 30px #2d364314;
}

.featured-img:after {
  width: calc(100% + 30px);
  height: 100%;
  content: "";
  position: absolute;
  bottom: 30px;
  left: -30px;
  border-radius: 12px;
  background-color: #e3e5fd;
  z-index: 1;
}

.featured-img img {
  border-radius: 12px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.featured-list {
  display: flex;
  gap: 1rem;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .featured-list {
    gap: 1.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .featured-list {
    gap: 30px;
  }
}

.featured-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--Heading);
  flex: 0 0 calc(100% - 15px);
  width: calc(100% - 15px);
  font-weight: 500;
}

.featured-list li svg {
  flex-shrink: 0;
}

@media only screen and (min-width: 992px) {
  .featured-list li {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

.feature-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-color: var(--Secondary);
}

@media only screen and (min-width: 768px) {
  .feature-section {
    background-color: transparent;
  }
}

.feature-card {
  transition: var(--Animation-Duration);
  border-radius: 18px;
  background: var(--White);
  padding: 36px;
  border: 2px solid transparent;
}

.feature-card h2 {
  font-size: clamp(24px, 4vw, 36px);
  transition: var(--Animation-Duration);
}

.feature-card p {
  transition: var(--Animation-Duration);
}

@media only screen and (min-width: 1200px) {
  .feature-card p {
    font-size: 18px;
  }
}

.feature-card:hover,
.feature-card:focus {
  border-color: var(--Primary);
}

.service-card {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
  background: var(--Secondary);
  padding: 40px 30px;
  border-radius: 18px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #3147ff, #7444fd);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.service-card:focus {
  background: var(--White);
  box-shadow: 0 15px 45px rgba(49, 71, 255, 0.15); /* Soft blue shadow */
  transform: translateY(-8px);
}

.service-card .shape {
  transition: var(--Animation-Duration);
  position: absolute;
  z-index: -1;
  bottom: -3px;
  right: -3px;
  opacity: 0.1;
}

.service-card .service-icon {
  transition: var(--Animation-Duration);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--White);
  margin-bottom: 60px;
  font-size: 40px;
  color: var(--Heading);
}

.service-card .service-icon i {
  line-height: 0.7;
}

.service-card h4 {
  transition: var(--Animation-Duration);
}

.service-card:hover .service-icon,
.service-card:focus .service-icon {
  background: var(--Primary);
  color: var(--White);
}

.service-card:hover h4,
.service-card:focus h4 {
  color: var(--Primary);
}

.service-card:hover .shape,
.service-card:focus .shape {
  opacity: 1;
}

.service-card.style-two {
  background: var(--White);
  min-height: 100%;
}

.service-card.style-two .service-icon {
  background: var(--Secondary);
}

.service-card.style-two .btn-service {
  text-align: center;
}

.service-card.style-two .btn-service span {
  transition: var(--Animation-Duration);
  margin: 0 auto 1.5rem;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Primary);
  color: var(--White);
  font-size: 2rem;
  cursor: pointer;
}

.service-card.style-two .btn-service h4 {
  transition: var(--Animation-Duration);
  font-size: clamp(16px, 5vw, 24px);
}

.service-card.style-two .btn-service:hover span,
.service-card.style-two .btn-service:focus span {
  background-color: var(--Heading);
  color: var(--White);
}

.service-card.style-two .btn-service:hover h4,
.service-card.style-two .btn-service:focus h4 {
  color: var(--Primary);
}

.service-card.style-two:hover .service-icon,
.service-card.style-two:focus .service-icon {
  background: var(--Primary);
  color: var(--White);
}

.service-card.style-two:hover h4,
.service-card.style-two:focus h4 {
  color: var(--Primary);
}

.service-swiper {
  width: 150%;
}

.service-pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--Heading);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--Primary);
  width: 30px;
  opacity: 1;
}

/* Service Section Mobile Refinement */
@media only screen and (max-width: 767px) {
  .service-swiper {
    width: 100% !important;
    padding: 0 0 50px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
  }

  .service-swiper .swiper-wrapper {
    display: flex !important;
  }

  .service-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  .service-card {
    padding: 40px 20px;
    margin: 0 10px; /* Give it a small margin so it doesn't touch edges, but stays 1 per view */
    min-height: 480px;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 20px;
  }

  .service-card .service-icon {
    margin-bottom: 40px;
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .service-card h4 {
    margin-bottom: 1.5rem !important;
    font-size: 22px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .service-pagination {
    margin-top: 20px;
    justify-content: center;
  }
}

.service-card-two {
  position: relative;
  z-index: 1;
  transition: all 0.35s;
  background-color: transparent;
  padding: 28px 24px;
  border-radius: 18px;
}

.service-card-two .shape > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.service-card-two .service-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 24px;
  transition: var(--Animation-Duration);
}

.service-card-two .service-thumb .btn {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 100;
  width: 128px;
  height: 22px;
  background-color: var(--Secondary);
  display: flex;
  justify-content: center;
  color: var(--Text);
  font-size: 14px;
  font-weight: 600;
  padding: 0 0 9px;
  transition: all 0.35s;
  border-radius: 0 0 12px 12px;
}

.service-card-two .service-thumb .btn i {
  font-size: 18px;
}

.service-card-two .service-thumb .btn:hover,
.service-card-two .service-thumb .btn:focus {
  color: var(--Primary);
}

.service-card-two .service-thumb img {
  width: 100%;
  border-radius: 18px;
}

.service-card-two .service-content {
  padding-right: 3rem;
}

.service-card-two .service-number {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  color: var(--Heading);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.service-card-two .service-title {
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.35s;
}

.service-card-two:hover .service-thumb,
.service-card-two:focus .service-thumb {
  transform: translateY(-4px) scale(1.02);
}

.service-card-two:hover .service-title,
.service-card-two:hover .service-number,
.service-card-two:hover .btn,
.service-card-two:focus .service-title,
.service-card-two:focus .service-number,
.service-card-two:focus .btn {
  color: var(--Primary);
}

.service-card-two.style-two {
  padding: 0;
}

.service-card-two.style-two .service-thumb .btn {
  top: auto;
  bottom: 0;
  border-radius: 1rem 1rem 0 0;
  height: 45px;
  width: 160px;
}

.service-card-three {
  transition: var(--Animation-Duration);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .service-card-three {
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 992px) {
  .service-card-three {
    gap: 60px;
  }
}

@media only screen and (min-width: 1400px) {
  .service-card-three {
    gap: 120px;
  }
}

@media only screen and (min-width: 768px) {
  .service-card-three h3 {
    flex: 0 0 30%;
  }
}

@media only screen and (min-width: 1400px) {
  .service-card-three h3 {
    flex: 0 0 25%;
  }
}

.service-card-three .service-info {
  position: relative;
  z-index: 1;
}

.service-card-three .service-info p {
  color: var(--White);
  margin-bottom: 0;
  font-size: 18px;
}

.service-card-three .service-info .btn-link {
  border-bottom: 1px solid var(--White);
  transition: var(--Animation-Duration);
  color: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.service-card-three .icon,
.service-card-three h3 {
  flex-shrink: 0;
}

.service-card-three:hover,
.service-card-three:focus {
  padding-bottom: 5rem !important;
}

.service-card-three:hover .service-info .btn-link,
.service-card-three:focus .service-info .btn-link {
  opacity: 1;
  visibility: visible;
  bottom: -2rem !important;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.service-list li {
  list-style: none;
}

.service-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: var(--Secondary);
  color: var(--Heading);
  transition: var(--Animation-Duration);
  font-weight: 400;
}

@media only screen and (min-width: 992px) {
  .service-list li a {
    font-size: 18px;
  }
}

.service-list li a:hover,
.service-list li a:focus {
  background-color: var(--Primary);
  color: var(--White);
  padding-left: 24px;
  padding-right: 24px;
}

.info-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--Animation-Duration);
}

.info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--Text);
  transition: var(--Animation-Duration);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--Heading);
}

.info-card .icon svg {
  transition: var(--Animation-Duration);
}

@media only screen and (min-width: 992px) {
  .info-card .icon {
    width: 60px;
    height: 60px;
  }
}

.info-card h5 {
  transition: var(--Animation-Duration);
}

.info-card:hover .icon,
.info-card:focus .icon {
  border-color: var(--Primary);
}

.info-card:hover .icon svg,
.info-card:focus .icon svg {
  transform: scale(1.2);
}

.info-card:hover h5,
.info-card:focus h5 {
  color: var(--Primary);
}

.service-details-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-details-content h1,
.service-details-content .h1,
.service-details-content h2,
.service-details-content .h2,
.service-details-content h3,
.service-details-content .h3,
.service-details-content h4,
.service-details-content .h4,
.service-details-content h5,
.service-details-content .h5,
.service-details-content h6,
.service-details-content .h6 {
  margin-bottom: 0;
}

.service-details-content p {
  font-size: 16px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .service-details-content p {
    font-size: 18px;
  }
}

.service-details-content img {
  border-radius: 20px;
  width: 100%;
}

.service-details-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-details-content ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media only screen and (min-width: 992px) {
  .service-details-content ul li {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
  .service-section.style-two .row .col-12:nth-child(odd) .service-card-two {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  .service-section.style-three .row .col-12:nth-child(odd) .service-card {
    margin-top: 40px;
  }
}

.service-section.style-four {
  background-color: var(--Primary);
}

.service-section.style-four .container .service-card-three:last-child {
  padding-bottom: 0;
}

.what-we-do-section {
  position: relative;
  z-index: 1;
}

.what-we-do-img {
  width: 100%;
  margin-bottom: 70px;
}

.what-we-do-img img {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .what-we-do-img {
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    width: calc(50% - 40px);
  }
}

@media only screen and (min-width: 1200px) {
  .what-we-do-img {
    width: calc(50% - 50px);
  }
}

@media only screen and (min-width: 1400px) {
  .what-we-do-img {
    width: calc(50% - 80px);
  }
}

.swiper.project-swiper {
  width: 115%;
  left: -7.5%;
}

.swiper.testimonial-swiper-two {
  width: 100%;
}

@media only screen and (min-width: 576px) {
  .swiper.testimonial-swiper-two {
    width: 150%;
  }
}

.project-card {
  transition: var(--Animation-Duration);
}

.project-card img {
  transition: var(--Animation-Duration);
  width: 100%;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.project-card .project-info {
  transition: var(--Animation-Duration);
}

.project-card .project-info p {
  font-size: 1rem;
}

@media only screen and (min-width: 1200px) {
  .project-card .project-info p {
    font-size: 18px;
  }
}

.project-card .project-info h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.project-card-two {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--White);
}

.project-card-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #101010b3;
  opacity: 0;
  transition: var(--Animation-Duration);
}

.project-card-two img {
  transition: var(--Animation-Duration);
  border-radius: 20px;
  width: 100%;
}

.project-card-two .project-info {
  width: calc(100% - 72px);
  position: absolute;
  bottom: 40px;
  left: 36px;
  transition: var(--Animation-Duration);
  visibility: hidden;
  opacity: 0;
}

.project-card-two .project-info p {
  font-size: 18px;
  color: var(--White);
}

.project-card-two .project-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  transition: var(--Animation-Duration);
  color: var(--White);
}

.project-card-two .project-info h2:hover,
.project-card-two .project-info h2:focus {
  text-decoration: underline;
}

.project-card-two:hover:before,
.project-card-two:focus:before {
  opacity: 1;
}

.project-card-two:hover .project-info,
.project-card-two:focus .project-info {
  visibility: visible;
  opacity: 1;
}

.project-card-three {
  position: relative;
  z-index: 1;
  transition: var(--Animation-Duration);
  border-radius: 18px;
  overflow: hidden;
}

.project-card-three:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    var(--Primary) 100%
  );
  opacity: 0;
  transition: var(--Animation-Duration);
  z-index: 1;
}

.project-card-three img {
  transition: var(--Animation-Duration);
  border-radius: 18px;
  width: 100%;
}

.project-card-three .project-info {
  transition: var(--Animation-Duration);
  width: calc(100% - 60px);
  position: absolute;
  bottom: 30px;
  left: 30px;
  visibility: hidden;
  opacity: 0;
  z-index: 20;
}

.project-card-three .project-info p {
  font-size: 18px;
  color: var(--White);
}

.project-card-three .project-info h4 {
  color: var(--White);
  transition: var(--Animation-Duration);
}

.project-card-three .project-info h4:hover,
.project-card-three .project-info h4:focus {
  color: var(--Warning);
}

.project-card-three:hover:before,
.project-card-three:focus:before {
  opacity: 1;
}

.project-card-three:hover .project-info,
.project-card-three:focus .project-info {
  visibility: visible;
  opacity: 1;
}

.project-card-three:hover img,
.project-card-three:focus img {
  transform: scale3d(1.1, 1.1, 1.1);
}

@media only screen and (min-width: 1200px) {
  .project-masonary .g-5,
  .project-masonary .gy-5 {
    --bs-gutter-y: 5rem;
  }

  .project-masonary .g-5,
  .project-masonary .gx-5 {
    --bs-gutter-x: 5rem;
  }
}

.btn-project {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--Animation-Duration);
  background-color: var(--Primary);
  color: var(--White);
  font-size: 1rem;
  font-weight: 600;
}

.btn-project:hover,
.btn-project:focus {
  color: var(--White);
  background-color: var(--Heading);
}

.project-section.theme-two {
  background-color: var(--Background);
}

.project-details-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-details-content h1,
.project-details-content .h1,
.project-details-content h2,
.project-details-content .h2,
.project-details-content h3,
.project-details-content .h3,
.project-details-content h4,
.project-details-content .h4,
.project-details-content h5,
.project-details-content .h5,
.project-details-content h6,
.project-details-content .h6 {
  margin-bottom: 0;
}

.project-details-content h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.project-details-content p {
  font-size: 16px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .project-details-content p {
    font-size: 18px;
  }
}

.project-details-content img {
  border-radius: 20px;
  width: 100%;
}

.project-details-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-details-content ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media only screen and (min-width: 992px) {
  .project-details-content ul li {
    font-size: 18px;
  }
}

.project-details-img {
  border-radius: 20px;
  width: 100%;
}

.project-widget {
  border-radius: 20px;
  background-color: var(--Secondary);
  padding: 32px 24px;
}

@media only screen and (min-width: 992px) {
  .project-widget {
    padding: 40px 36px;
  }
}

.project-widget .widget-title {
  color: var(--Heading);
}

.project-widget .project-meta-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-widget .project-meta-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-widget .project-meta-list li h6 {
  flex: 0 0 84px;
  width: 84px;
}

.project-widget .project-meta-list li a {
  color: var(--Primary);
}

.project-widget .project-meta-list li a:hover,
.project-widget .project-meta-list li a:focus {
  text-decoration: underline;
}

.project-widget .social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-widget .social-nav a {
  transition: var(--Animation-Duration);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--White);
  background-color: var(--Heading);
}

@media only screen and (min-width: 1200px) {
  .project-widget .social-nav a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

.project-widget .social-nav a:hover,
.project-widget .social-nav a:focus {
  background-color: var(--Primary);
  color: var(--White);
  transform: translateY(-5px);
}

.project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 100px;
  border-top: 1px solid rgba(73, 81, 91, 0.2);
  padding-top: 2rem;
}

.project-nav a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  transition: var(--Animation-Duration);
}

.project-nav a .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--Heading);
  transition: var(--Animation-Duration);
  font-size: 20px;
}

@media only screen and (min-width: 1200px) {
  .project-nav a .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.project-nav a:last-child {
  text-align: right;
}

.project-nav a h5 {
  transition: var(--Animation-Duration);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-nav a:last-child {
  text-align: right;
  justify-content: flex-end;
}

.project-nav a:hover .icon,
.project-nav a:focus .icon {
  background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White);
}

.project-nav a:hover h5,
.project-nav a:focus h5 {
  color: var(--Primary);
}

.app-screenshots .swiper-slide:nth-child(2n) {
  padding-top: 50px;
}

.screenshots-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 20px;
}

.screenshots-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Heading);
  animation: var(--Animation-Duration);
  z-index: 1;
  flex-shrink: 0;
}

.screenshots-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--Heading);
  animation: var(--Animation-Duration);
}

.screenshots-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  animation: var(--Animation-Duration);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--Heading);
}

.video-gallery-section {
  position: relative;
  z-index: 1;
}

.video-gallery-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

@media only screen and (min-width: 992px) {
  .video-gallery-card {
    height: 550px;
  }
}

@media only screen and (min-width: 1200px) {
  .video-gallery-card {
    height: 650px;
  }
}

@media only screen and (min-width: 1400px) {
  .video-gallery-card {
    height: 770px;
  }
}

.video-gallery-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010b3;
  z-index: -1;
}

.video-gallery-card .play-video-btn {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--White);
  color: var(--Heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1400px) {
  .video-gallery-card .play-video-btn {
    width: 120px;
    height: 120px;
  }
}

.video-gallery-pagination-wrapper {
  position: absolute;
  width: 80px;
  height: 100%;
  left: 14%;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .video-gallery-pagination-wrapper {
    width: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .video-gallery-pagination-wrapper {
    width: 150px;
  }
}

@media only screen and (min-width: 1200px) {
  .video-gallery-pagination-wrapper {
    width: 200px;
  }
}

@media only screen and (min-width: 1400px) {
  .video-gallery-pagination-wrapper {
    width: 300px;
  }
}

.video-gallery-pagination {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.video-gallery-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  opacity: 1;
  transition: all 0.25s;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 576px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 100px;
  }
}

@media only screen and (min-width: 1200px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 120px;
  }
}

@media only screen and (min-width: 1400px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 160px;
    border-radius: 18px;
  }
}

.video-gallery-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--White);
}

.elixirbooks-filter-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--Secondary);
  border-radius: 1rem;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .elixirbooks-filter-nav {
    border-radius: 12rem;
  }
}

.elixirbooks-filter-nav button {
  transition: var(--Animation-Duration);
  border: 0;
  border-radius: 12rem;
  height: 42px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--Heading);
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .elixirbooks-filter-nav button {
    height: 48px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.elixirbooks-filter-nav button.active {
  color: var(--White);
  background-color: var(--Primary);
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-form .form-control {
  width: 100%;
  border-radius: 40px;
  height: 60px;
  padding: 0 30px;
  border: 0;
  background-color: var(--White);
}

.newsletter-form .btn {
  position: absolute;
  height: 48px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.pricing-card {
  transition: var(--Animation-Duration);
  border-radius: 20px;
  background-color: var(--White);
  padding: 36px 24px;
  height: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .pricing-card {
    padding: 40px 36px;
  }
}

.pricing-card .pricing-header {
  position: relative;
  z-index: 1;
}

.pricing-card .pricing-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  background-color: var(--Secondary);
  padding: 24px;
  border-radius: 10px;
  transition: var(--Animation-Duration);
}

.pricing-card .pricing-header h2 span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--Font-Secondary);
}

@media only screen and (min-width: 992px) {
  .pricing-card .pricing-header h2 span {
    font-size: 18px;
  }
}

.pricing-card .pricing-header .yearly-price {
  display: none;
}

.pricing-card .pricing-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) {
  .pricing-card .pricing-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .pricing-card .pricing-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.pricing-card .pricing-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--Heading);
}

@media only screen and (min-width: 1200px) {
  .pricing-card .pricing-content li {
    font-size: 18px;
  }
}

.pricing-card .pricing-content li span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_1_955)'%3E%3Cpath d='M11.9426 22.9398C18.0162 22.9398 22.9398 18.0162 22.9398 11.9426C22.9398 5.86895 18.0162 0.945312 11.9426 0.945312C5.86895 0.945312 0.945312 5.86895 0.945312 11.9426C0.945312 18.0162 5.86895 22.9398 11.9426 22.9398Z' fill='%233147FF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.55453 11.1681C7.14953 10.8976 6.60852 10.9591 6.27352 11.3131C5.93902 11.6666 5.90752 12.2106 6.20002 12.6001L9.20002 16.6001C9.38102 16.8411 9.66102 16.9881 9.96252 16.9996C10.2635 17.0106 10.554 16.8856 10.7525 16.6586L17.7525 8.65859C18.098 8.26409 18.0795 7.66959 17.7105 7.29659C17.3415 6.92359 16.7475 6.89959 16.349 7.24059L9.92452 12.7476L7.55453 11.1681Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9423 0.445312C5.59662 0.445312 0.445312 5.59662 0.445312 11.9423C0.445312 18.288 5.59662 23.4393 11.9423 23.4393C18.288 23.4393 23.4393 18.288 23.4393 11.9423C23.4393 5.59662 18.288 0.445312 11.9423 0.445312ZM11.9423 1.44477C17.7361 1.44477 22.4398 6.14853 22.4398 11.9423C22.4398 17.7361 17.7361 22.4398 11.9423 22.4398C6.14853 22.4398 1.44477 17.7361 1.44477 11.9423C1.44477 6.14853 6.14853 1.44477 11.9423 1.44477Z' fill='%233147FF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.83207 10.7521C7.22407 10.3466 6.41258 10.4386 5.91058 10.9691C5.40808 11.5001 5.36158 12.3156 5.80008 12.9001L8.80008 16.9001C9.07158 17.2621 9.49157 17.4821 9.94357 17.4991C10.3956 17.5161 10.8311 17.3281 11.1291 16.9881L18.1291 8.98809C18.6471 8.39559 18.6196 7.50409 18.0661 6.94509C17.5126 6.38559 16.6211 6.34908 16.0241 6.86108L9.88658 12.1216L7.83207 10.7521ZM7.27757 11.5841L9.64708 13.1641C9.83358 13.2881 10.0796 13.2731 10.2501 13.1276L16.6746 7.62058C16.8736 7.44958 17.1711 7.46208 17.3556 7.64858C17.5401 7.83458 17.5491 8.13208 17.3766 8.32958L10.3766 16.3296C10.2771 16.4426 10.1321 16.5056 9.98108 16.4996C9.83058 16.4941 9.69058 16.4206 9.60008 16.3001L6.60008 12.3001C6.45408 12.1051 6.46957 11.8336 6.63707 11.6566C6.80407 11.4796 7.07457 11.4491 7.27757 11.5841Z' fill='%233147FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_955'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-card .pricing-content li span.no {
  opacity: 0.5;
}

.pricing-card:hover .pricing-header h2,
.pricing-card:focus .pricing-header h2 {
  background-color: var(--Primary);
  color: var(--White);
}

.pricing-card.style-two {
  background-color: var(--Secondary);
  border-radius: 18px;
}

.pricing-card.style-two .pricing-header {
  transition: var(--Animation-Duration);
  border-radius: 12px 12px 18px 18px;
  background-color: var(--White);
  padding: 24px;
}

.pricing-card.style-two .pricing-header h4,
.pricing-card.style-two .pricing-header p,
.pricing-card.style-two .pricing-header span {
  transition: var(--Animation-Duration);
}

.pricing-card.style-two .pricing-header hr {
  background: #1f1f1f1a;
  margin-top: 24px;
  margin-bottom: 24px;
}

.pricing-card.style-two .pricing-header h2 {
  transition: var(--Animation-Duration);
  font-size: clamp(24px, 4vw, 50px);
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-align: left;
}

.pricing-card.style-two .pricing-header h2 span {
  font-size: 16px;
}

.pricing-card.style-two .pricing-content {
  padding-left: 1rem;
  padding-right: 0;
}

.pricing-card.style-two .pricing-content li span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cg clip-path='url(%23clip0_1_2298)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.81362 13.0307C8.34112 12.7152 7.70994 12.7869 7.31911 13.1999C6.92886 13.6123 6.89211 14.247 7.23336 14.7014L10.7334 19.3681C10.9445 19.6493 11.2712 19.8207 11.6229 19.8342C11.9741 19.847 12.313 19.7012 12.5446 19.4363L20.7113 10.103C21.1144 9.64274 21.0928 8.94916 20.6623 8.51399C20.2318 8.07882 19.5388 8.05082 19.0739 8.44866L11.5786 14.8735L8.81362 13.0307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.9327 0.519531C6.52939 0.519531 0.519531 6.52939 0.519531 13.9327C0.519531 21.336 6.52939 27.3458 13.9327 27.3458C21.336 27.3458 27.3458 21.336 27.3458 13.9327C27.3458 6.52939 21.336 0.519531 13.9327 0.519531ZM13.9327 1.68557C20.6921 1.68557 26.1798 7.17329 26.1798 13.9327C26.1798 20.6921 20.6921 26.1798 13.9327 26.1798C7.17329 26.1798 1.68557 20.6921 1.68557 13.9327C1.68557 7.17329 7.17329 1.68557 13.9327 1.68557Z' fill='%23FA3E5F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.13872 12.5428C8.42939 12.0697 7.48265 12.177 6.89698 12.796C6.31073 13.4155 6.25648 14.3669 6.76806 15.0488L10.2681 19.7155C10.5848 20.1378 11.0748 20.3945 11.6021 20.4143C12.1295 20.4341 12.6376 20.2148 12.9852 19.8181L21.1519 10.4848C21.7562 9.79355 21.7241 8.75347 21.0784 8.1013C20.4326 7.44855 19.3926 7.40595 18.6961 8.00329L11.5356 14.1406L9.13872 12.5428ZM8.4918 13.5135L11.2562 15.3568C11.4738 15.5015 11.7608 15.484 11.9597 15.3142L19.455 8.88938C19.6871 8.68988 20.0342 8.70446 20.2495 8.92204C20.4647 9.13904 20.4752 9.48613 20.274 9.71654L12.1073 19.0499C11.9912 19.1817 11.8221 19.2552 11.6459 19.2482C11.4703 19.2418 11.307 19.156 11.2014 19.0155L7.7014 14.3488C7.53106 14.1213 7.54913 13.8045 7.74455 13.598C7.93938 13.3915 8.25497 13.356 8.4918 13.5135Z' fill='%23FA3E5F'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_2298'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.pricing-card.style-two.active .pricing-header,
.pricing-card.style-two:hover .pricing-header,
.pricing-card.style-two:focus .pricing-header {
  background-color: var(--Primary);
}

.pricing-card.style-two.active .pricing-header hr,
.pricing-card.style-two:hover .pricing-header hr,
.pricing-card.style-two:focus .pricing-header hr {
  border-color: var(--White);
}

.pricing-card.style-two.active .pricing-header h4,
.pricing-card.style-two.active .pricing-header p,
.pricing-card.style-two:hover .pricing-header h4,
.pricing-card.style-two:hover .pricing-header p,
.pricing-card.style-two:focus .pricing-header h4,
.pricing-card.style-two:focus .pricing-header p {
  color: var(--White);
}

.pricing-card.style-two.active .pricing-header h2,
.pricing-card.style-two:hover .pricing-header h2,
.pricing-card.style-two:focus .pricing-header h2 {
  background-color: transparent;
  color: var(--White);
}

.pricing-card.style-two.active .pricing-header h2 span,
.pricing-card.style-two:hover .pricing-header h2 span,
.pricing-card.style-two:focus .pricing-header h2 span {
  color: var(--Secondary);
}

.pricing-card.style-three {
  background-color: var(--Secondary);
}

.pricing-card.style-three .pricing-header h2 {
  font-size: clamp(24px, 5vw, 50px);
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-align: left;
  color: var(--Heading);
}

.pricing-card.style-three .pricing-header h2 span {
  font-size: 16px;
}

.pricing-card.style-three .pricing-content {
  padding: 0 !important;
  margin: 0;
}

.pricing-card.style-three .pricing-footer {
  margin: 40px 0;
}

.price-plan-switch .form-switch {
  padding-left: 0;
}

.price-plan-switch .form-switch .form-check-input {
  width: 70px;
  height: 32px;
  flex-shrink: 0;
  margin-left: 0;
  border-radius: 5rem;
  background-color: var(--Primary);
  border: 0;
}

.price-plan-switch .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.price-plan-switch .form-check .form-check-label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--Font-Primary);
}

.price-plan-switch .form-check .form-check-input {
  float: none;
  margin-left: 0;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e");
}

.pricing-section {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

html[theme="four"] .text-primary {
  background: linear-gradient(
    90deg,
    var(--Primary) 3.44%,
    var(--Secondary) 97.23%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[theme="four"] .btn-primary {
  background: linear-gradient(90deg, var(--Primary) 3.44%, #9e02c0 97.23%);
}

html[theme="four"] .section-heading .subtitle > span {
  background: linear-gradient(90deg, var(--Primary) 3.44%, #9e02c0 97.23%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[theme="four"] .pricing-card .pricing-content li span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='paint0' x1='11.9426' y1='0.945312' x2='11.9426' y2='22.9398' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23601FEB'/%3E%3Cstop offset='1' stop-color='%239E02C0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1' x1='11.9423' y1='0.445312' x2='11.9423' y2='23.4393' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23601FEB'/%3E%3Cstop offset='1' stop-color='%239E02C0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2' x1='12' y1='6.5' x2='12' y2='17.5001' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23601FEB'/%3E%3Cstop offset='1' stop-color='%239E02C0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M11.9426 22.9398C18.0162 22.9398 22.9398 18.0162 22.9398 11.9426C22.9398 5.86895 18.0162 0.945312 11.9426 0.945312C5.86895 0.945312 0.945312 5.86895 0.945312 11.9426C0.945312 18.0162 5.86895 22.9398 11.9426 22.9398Z' fill='url(%23paint0)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.55453 11.1681C7.14953 10.8976 6.60852 10.9591 6.27352 11.3131C5.93902 11.6666 5.90752 12.2106 6.20002 12.6001L9.20002 16.6001C9.38102 16.8411 9.66102 16.9881 9.96252 16.9996C10.2635 17.0106 10.554 16.8856 10.7525 16.6586L17.7525 8.65859C18.098 8.26409 18.0795 7.66959 17.7105 7.29659C17.3415 6.92359 16.7475 6.89959 16.349 7.24059L9.92452 12.7476L7.55453 11.1681Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9423 0.445312C5.59662 0.445312 0.445312 5.59662 0.445312 11.9423C0.445312 18.288 5.59662 23.4393 11.9423 23.4393C18.288 23.4393 23.4393 18.288 23.4393 11.9423C23.4393 5.59662 18.288 0.445312 11.9423 0.445312ZM11.9423 1.44477C17.7361 1.44477 22.4398 6.14853 22.4398 11.9423C22.4398 17.7361 17.7361 22.4398 11.9423 22.4398C6.14853 22.4398 1.44477 17.7361 1.44477 11.9423C1.44477 6.14853 6.14853 1.44477 11.9423 1.44477Z' fill='url(%23paint1)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.83207 10.7521C7.22407 10.3466 6.41258 10.4386 5.91058 10.9691C5.40808 11.5001 5.36158 12.3156 5.80008 12.9001L8.80008 16.9001C9.07158 17.2621 9.49157 17.4821 9.94357 17.4991C10.3956 17.5161 10.8311 17.3281 11.1291 16.9881L18.1291 8.98809C18.6471 8.39559 18.6196 7.50409 18.0661 6.94509C17.5126 6.38559 16.6211 6.34908 16.0241 6.86108L9.88658 12.1216L7.83207 10.7521ZM7.27757 11.5841L9.64708 13.1641C9.83358 13.2881 10.0796 13.2731 10.2501 13.1276L16.6746 7.62058C16.8736 7.44958 17.1711 7.46208 17.3556 7.64858C17.5401 7.83458 17.5491 8.13208 17.3766 8.32958L10.3766 16.3296C10.2771 16.4426 10.1321 16.5056 9.98108 16.4996C9.83058 16.4941 9.69058 16.4206 9.60008 16.3001L6.60008 12.3001C6.45408 12.1051 6.46957 11.8336 6.63707 11.6566C6.80407 11.4796 7.07457 11.4491 7.27757 11.5841Z' fill='url(%23paint2)'/%3E%3C/g%3E%3CclipPath id='clip0'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/svg%3E");
}

html[theme="four"]
  .faq-accordion.theme-two
  .accordion-item
  .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--Primary) 3.44%, #9e02c0 97.23%);
}

html[theme="four"] .footer-card .social-nav a:hover,
html[theme="four"] .footer-card .social-nav a:focus {
  background: linear-gradient(90deg, var(--Primary) 3.44%, #9e02c0 97.23%);
}

.preview-hero-wrap {
  text-align: center;
  overflow: hidden;
  background-color: var(--Secondary);
  padding-top: 160px;
}

.preview-hero-wrap h2 {
  font-size: clamp(36px, 6vw, 90px);
  line-height: 1.2;
  letter-spacing: -1.4px;
}

@media only screen and (min-width: 1200px) {
  .preview-hero-wrap p {
    font-size: 18px;
  }
}

.preview-hero-wrap .hero-img-group {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.preview-hero-wrap .hero-img-group img {
  border-radius: 10px 10px 0 0;
}

.preview-hero-wrap .hero-img-group .img-big {
  flex: 0 0 calc(26% - 10px);
  width: calc(26% - 10px);
  max-width: calc(26% - 10px);
}

.preview-hero-wrap .hero-img-group .img-medium {
  flex: 0 0 calc(21% - 10px);
  width: calc(21% - 10px);
  max-width: calc(21% - 10px);
}

.preview-hero-wrap .hero-img-group .img-small {
  flex: 0 0 calc(16% - 5px);
  width: calc(16% - 5px);
  max-width: calc(16% - 5px);
}

.preview-hero-wrap .container {
  position: relative;
  z-index: 1;
}

.preview-hero-wrap .container .bg-shape1 {
  position: absolute;
  z-index: -10;
  top: 45%;
  left: -10%;
}

@media only screen and (min-width: 480px) {
  .preview-hero-wrap .container .bg-shape1 {
    top: 45%;
  }
}

@media only screen and (min-width: 768px) {
  .preview-hero-wrap .container .bg-shape1 {
    top: 35%;
  }
}

@media only screen and (min-width: 992px) {
  .preview-hero-wrap .container .bg-shape1 {
    top: 25%;
  }
}

@media only screen and (min-width: 1200px) {
  .preview-hero-wrap .container .bg-shape1 {
    top: 25%;
    left: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .preview-hero-wrap .container .bg-shape1 {
    top: 10%;
    left: -5%;
  }
}

.preview-hero-wrap .container .bg-shape2 {
  position: absolute;
  z-index: -10;
  top: 55%;
  left: 30%;
  max-width: 40px;
}

@media only screen and (min-width: 480px) {
  .preview-hero-wrap .container .bg-shape2 {
    top: 48%;
  }
}

@media only screen and (min-width: 768px) {
  .preview-hero-wrap .container .bg-shape2 {
    top: 40%;
  }
}

@media only screen and (min-width: 992px) {
  .preview-hero-wrap .container .bg-shape2 {
    top: 35%;
  }
}

@media only screen and (min-width: 1200px) {
  .preview-hero-wrap .container .bg-shape2 {
    top: 33%;
    max-width: 60px;
    left: 20%;
  }
}

@media only screen and (min-width: 1400px) {
  .preview-hero-wrap .container .bg-shape2 {
    top: 26%;
    left: 12%;
    max-width: 80px;
  }
}

.preview-hero-wrap .container .bg-shape3 {
  position: absolute;
  z-index: -10;
  top: 45%;
  right: 10%;
  animation: updown 3s linear 0s infinite;
  max-width: 100px;
}

@media only screen and (min-width: 480px) {
  .preview-hero-wrap .container .bg-shape3 {
    top: 40%;
    right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .preview-hero-wrap .container .bg-shape3 {
    top: 30%;
  }
}

@media only screen and (min-width: 1200px) {
  .preview-hero-wrap .container .bg-shape3 {
    top: 25%;
    max-width: 150px;
  }
}

@media only screen and (min-width: 1400px) {
  .preview-hero-wrap .container .bg-shape3 {
    top: 20%;
  }
}

.catagory-slide {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--Primary);
}

@media only screen and (min-width: 1200px) {
  .catagory-slide {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.catagory-slide h2 {
  font-size: clamp(24px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--White);
  text-transform: capitalize;
  margin-bottom: 0;
  gap: 2rem;
  padding-left: 2rem;
}

@media only screen and (min-width: 1200px) {
  .catagory-slide h2 {
    gap: 3rem;
    padding-left: 3rem;
  }
}

.homepage-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid var(--Border);
  overflow: hidden;
}

.homepage-card:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--Heading);
  opacity: 0;
  visibility: hidden;
  transition: var(--Animation-Duration);
}

.homepage-card a {
  transition-duration: 0.4s;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--Primary);
  border-radius: 50%;
  color: var(--White);
  font-size: 42px;
  opacity: 0;
  visibility: hidden;
}

.homepage-card:hover:after,
.homepage-card:focus:after {
  opacity: 0.5;
  visibility: visible;
}

.homepage-card:hover a,
.homepage-card:focus a {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.preview-footer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.preview-footer-content h2 {
  text-align: center;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -2.4px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.preview-footer-content p {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) {
  .preview-footer-content p {
    font-size: 18px;
  }
}

.preview-footer-content .curve-arrow {
  position: absolute;
  z-index: -10;
  bottom: 0;
  right: 15%;
  animation: updown 3s linear 0s infinite;
  display: none;
}

@media only screen and (min-width: 768px) {
  .preview-footer-content .curve-arrow {
    display: block;
    max-width: 100px;
  }
}

@media only screen and (min-width: 992px) {
  .preview-footer-content .curve-arrow {
    max-width: 120px;
  }
}

@media only screen and (min-width: 1200px) {
  .preview-footer-content .curve-arrow {
    max-width: 140px;
  }
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  to {
    transform: translateY(0);
  }
}

.client-testimonial-card {
  border-radius: 20px;
  background: var(--Heading);
  padding: 28px;
}

.client-testimonial-card .ratings {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--Warning);
}

.client-testimonial-card .ratings i {
  font-size: 24px;
}

.client-testimonial-card > div {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--Secondary);
}

.client-testimonial-card > div h2 {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--White);
}

.client-testimonial-card p {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--Border);
  color: var(--Secondary);
}

.client-testimonial-card a {
  font-size: 14px;
  display: block;
  color: var(--Secondary);
}

/* Ambient Background Glows for Hero Section */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 120vw;
  /* Soft blue radial gradient matching the reference image */
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(20, 35, 90, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1; /* Sits between the grid and the content */
  pointer-events: none;
}

.hero-section::before {
  top: -20%;
  left: -10%;
  animation: ambientGlowZoom 8s ease-in-out infinite alternate;
}

.hero-section::after {
  bottom: -20%;
  right: -10%;
  animation: ambientGlowZoom 11s ease-in-out infinite alternate-reverse;
}

@media (min-width: 768px) {
  .hero-section::before,
  .hero-section::after {
    width: 70vw;
    height: 70vw;
  }
}

@keyframes ambientGlowZoom {
  0% {
    opacity: 0.4;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Ensure the main container in hero sits above the grid and background glow */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Framer Motion Style Interactive Grid */
.fm-grid-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(var(--columns), 60px);
  grid-template-rows: repeat(var(--rows), 60px);
  overflow: hidden;
}

.fm-grid-cell {
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-color: transparent;
  /* Using will-change for performance since many cells will animate */
  will-change: background-color;
}

/* Custom styles for Hero Image */
.hero-image {
  border-radius: 30px 30px 0 0 !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
  display: block !important;
  width: 100% !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 30px 30px 0 0 !important;
}

/* FAQ Parallax Styles */
.faq-section {
  position: relative !important;
  overflow: hidden !important;
}

.question-mark {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
  will-change: transform;
}

.question-mark-inner {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.question-mark img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

@media (max-width: 991px) {
  .question-mark {
    width: 200px;
    right: -10%;
    top: 5%;
  }
}
