/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by multiple components and pages.
 * File         : common.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Global Styles
----------------------------------------------------*/
:root {
  --primary-font: "Poppins", sans-serif;
  --brand: 34, 197, 94;
  --font-base: 16px;
  --brand-secondary: 134, 255, 178;
  --white: 255, 255, 255;
  --black: 2, 6, 23;
  --blue: 0, 132, 255;
  --warning: 249, 79, 64;
  --yellow: 255, 217, 0;
  --neon: 149, 255, 0;
  --orange: 255, 76, 0;
  --indigo: 83, 122, 214;
  --purple: 153, 0, 255;
  --section-gap-base: 120px;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  background-color: rgb(var(--black));
  font-size: var(--font-base);
  font-weight: 400;
  padding-top: 100px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 100px
  );
  background-size: 200px 100%;
  animation: moveLine 4s linear infinite;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: rgba(var(--white), 1);
}
.bg-white-4 {
  background: rgba(var(--white), 0.04);
}
.bg-white-5 {
  background-color: rgba(var(--white), 0.05);
}
.bg-white-10 {
  background-color: rgba(var(--white), 0.1);
}
.bg-brand {
  background-color: rgba(var(--brand), 1);
}
.bg-brand-5 {
  background-color: rgba(var(--brand), 0.05);
}
.bg-brand-10 {
  background-color: rgba(var(--brand), 0.1);
}
.bg-brand-20 {
  background-color: rgba(var(--brand), 0.2);
}
.bg-brand-40 {
  background-color: rgba(var(--brand), 0.4);
}
.bg-gradient {
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 0.5) 46.08%,
    rgba(var(--brand), 0.4) 105.57%
  ) !important;
}
.bg-indigo-10 {
  background-color: rgba(var(--indigo), 0.1);
}
.text-brand {
  color: rgba(var(--brand), 1);
}
.text-brand-80 {
  color: rgba(var(--brand), 0.8);
}
.text-white-80 {
  color: rgba(var(--white), 0.8);
}
.hover-text-brand:hover {
  color: rgba(var(--brand), 1) !important;
}
.hover-text-white:hover {
  color: rgba(var(--white), 1) !important;
}
.hover-bg-brand:hover {
  background: rgba(var(--brand), 1) !important;
}
.hover-bg-white-20:hover {
  background: rgba(var(--white), 0.2) !important;
}
.hover-text-brand,
.hover-bg-white-20,
.hover-text-white {
  transition: 0.5s;
}
.bg-filter-20 {
  backdrop-filter: blur(20px);
}
.border-brand {
  border-color: rgba(var(--brand), 1) !important;
}
.border-brand-40 {
  border-color: rgba(var(--brand), 0.4) !important;
}
.border-brand-30 {
  border-color: rgba(var(--brand), 0.3) !important;
}
.border-brand-20 {
  border-color: rgba(var(--brand), 0.2) !important;
}
.border-brand-60 {
  border-color: rgba(var(--brand), 0.6) !important;
}
.inner-shadow {
  box-shadow: 0px 0px 20px 0px rgba(var(--brand), 0.2) inset;
  transition: 0.5s;
}
.inner-shadow:hover {
  box-shadow: 0px 0px 20px 0px rgba(var(--white), 0.3) inset;
}
.profile-md {
  height: 80px;
  width: 80px;
  object-fit: contain;
}
.max-width-md {
  max-width: 115px;
}
.color-picker-demo {
  position: fixed;
  right: 10px;
  top: 30%;
}
.gradient-border {
  position: relative;
  border-radius: 12px;
  padding: 1rem;
  z-index: 0;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    134.5deg,
    rgba(var(--brand), 1) -12.56%,
    rgba(var(--white), 0.1) 41.56%
  );
  background-size: 100% 100%;
  -webkit-mask: linear-gradient(rgba(var(--white), 1) 0 0) content-box,
    linear-gradient(rgba(var(--white), 1) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: 0.5s;
}
.gradient-border:hover::before {
  background-size: 350% 350%;
}
.shape-effect {
  height: 500px;
  width: 280px;
  filter: blur(100px);
  z-index: -1;
  position: absolute;
}
p {
  margin: 0;
  padding: 0;
  color: rgba(var(--white), 0.8);
}
.section-lg-mt {
  margin-top: var(--section-gap-base);
}
.section-lg-pt {
  padding-top: var(--section-gap-base);
}
.section-lg-ptb {
  padding-top: var(--section-gap-base);
  padding-bottom: var(--section-gap-base);
}
.section-md-mt {
  margin-top: calc(var(--section-gap-base) - 50px);
}
.md-p {
  font-size: var(--font-base);
  font-weight: 400;
}
.sm-p {
  font-size: calc(var(--font-base) - 2px);
  font-weight: 400;
  line-height: 26px;
}
.xm-p {
  font-size: calc(var(--font-base) - 5px);
  line-height: 16px;
}
.has-aos {
  overflow-x: hidden !important;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input,
button,
button:focus,
button:active {
  outline: none;
  border: none;
  box-shadow: 0 0 0 transparent !important;
}

a {
  text-decoration: none;
}
.container {
  max-width: 1320px;
}
h1 {
  font-size: calc(var(--font-base) + 44px);
  font-weight: 700;
  line-height: 70px;
}
h3 {
  font-size: calc(var(--font-base) + 24px);
  line-height: 46px;
}
h4 {
  font-size: calc(var(--font-base) + 16px);
  line-height: 36px;
  font-weight: 500;
}
h5 {
  font-size: calc(var(--font-base) + 10px);

  line-height: 42px;
  font-weight: 500;
}
h6 {
  font-size: calc(var(--font-base) + 4px);
  font-weight: 500;
  line-height: 28px;
}
.primary-btn {
  position: relative;
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 1) 35.08%,
    rgba(var(--brand-secondary), 1) 105.57%
  );
  color: rgba(var(--black), 1);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 400;
  font-size: var(--font-base);
  min-width: 175px;
  border: 1px solid var(--black-80);
  transition: 0.5s;
}
.primary-btn-sm {
  padding: 4px 10px;
  font-size: calc(var(--font-base) - 4px);
  min-width: 100px;
}
.primary-btn::before,
.primary-btn::after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
  animation: confetti 1s ease-out forwards;
}
.primary-btn:hover {
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 1) 35.08%,
    rgba(var(--brand), 1) 105.57%
  );
}
.secondary-btn:hover,
.secondary-btn-sm:hover {
  background: rgba(var(--brand), 0.8);
}
.primary-btn:hover::after,
.secondary-btn:hover::after {
  animation: confetti 1s ease-out 0.2s forwards;
}
@keyframes confetti {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white,
      0 0 white, 0 0 white;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
    box-shadow: -30px -40px white, 40px -35px white, -45px 25px white,
      35px 30px white, -25px 45px white, 30px 45px white, -35px -20px white,
      25px -30px white;
  }
}
.secondary-btn {
  position: relative;
  background: rgba(var(--white), 0.1);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid rgba(var(--white), 0.6);
  font-weight: 400;
  font-size: var(--font-base);
  min-width: 175px;
  transition: 0.5s;
  color: rgba(var(--white), 1);
  backdrop-filter: blur(8px);
}
.secondary-btn-sm {
  padding: 4px 10px;
  font-size: calc(var(--font-base) - 4px);
  min-width: 100px;
  transition: 0.5s;
}
.outline-btn-md {
  padding: 8px 12px;
  font-weight: 500;
  font-size: calc(var(--font-base) - 2px);
  border-radius: 40px;
  backdrop-filter: blur(14px);
}
.border-1 {
  border: 1px solid rgba(var(--white), 0.05);
}
.border-2 {
  border: 1px solid rgba(var(--white), 0.1);
}
.card-hover-translate {
  transition: 0.5s;
  cursor: pointer;
}
.card-hover-translate:hover {
  transform: translateY(-10px);
}
.card-hover-zooming-img img {
  transition: 0.5s;
}
.card-hover-zooming:hover .card-hover-zooming-img img {
  transform: scale(1.05);
}
.stars {
  position: absolute;
  overflow: hidden;
  z-index: -1;
}
.star {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 2s infinite ease-in-out;
  background-color: rgba(var(--white), 0.5);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/*----------------------------------------------------
  02. Lighting Shape Style
----------------------------------------------------*/
.header-shape {
  position: absolute;
  top: -200px;
  right: 190px;
  width: 120px;
  height: 772px;
  background: linear-gradient(
    to bottom,
    rgba(var(--brand), 1) 0%,
    rgba(var(--black), 0.7) 100%
  );
  border-radius: 50px;
  transform: rotate(38deg);
  filter: blur(32px);
  z-index: -2;
}
.header-shape-container {
  overflow-x: clip;
  z-index: -2;
}
.header-shape-container:after {
  content: "";
  position: absolute;
  right: -200px;
  top: -315px;
  background-image: url("../images/shape/line-shape.webp");
  height: 780px;
  width: 620px;
  background-size: 100% 100%;
}
.header-shape-2-container {
  position: absolute;
  top: 15px;
  right: 170px;
  filter: blur(42px);
  z-index: -2;
}
.header-shape-2 {
  width: 171px;
  height: 563px;
  background: linear-gradient(
    145deg,
    rgba(var(--brand), 1) 0%,
    rgba(var(--white), 0.1) 70%,
    rgba(var(--white), 0.05) 100%
  );
  z-index: -2;
  position: relative;
  transform: rotate(45deg) skewY(-10deg);
  filter: blur(135px);
  left: -70px;
}

.header-shape-2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(100px);
  opacity: 0.8;
  background: linear-gradient(
    145deg,
    rgba(var(--brand), 1) 0%,
    rgba(var(--brand), 0.1) 70%,
    rgba(var(--brand), 0.05) 100%
  );
}
.header-shape-2::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: inherit;
  filter: blur(80px);
  opacity: 0.4;
  background: linear-gradient(
    145deg,
    rgba(var(--brand), 1) 0%,
    rgba(var(--brand), 0.1) 70%,
    rgba(var(--brand), 0.05) 100%
  );
}
.circle-shape-left,
.circle-shape-right {
  position: relative;
}
.circle-shape-left:after {
  content: "";
  position: absolute;
  left: -180px;
  height: 500px;
  width: 400px;
  border-radius: 50%;
  filter: blur(140px);
  background: rgba(var(--brand), 1);
  opacity: 0.4;
  z-index: -1;
  top: -60px;
}
.circle-shape-right:after {
  content: "";
  position: absolute;
  right: -100px;
  height: 500px;
  width: 400px;
  border-radius: 50%;
  filter: blur(140px);
  background: rgba(var(--brand), 1);
  opacity: 0.4;
  z-index: -1;
  top: -60px;
}
.potential-return-section .circle-shape-right:after {
  top: -120px;
  right: -80px;
}
.glow-circle {
  animation: pulseGlow 6s ease-in-out infinite;
}
/*----------------------------------------------------
  03. Header  Style
----------------------------------------------------*/
.navbar {
  padding: 0.75rem 1rem;
}
.navbar-brand img {
  max-width: 240px;
  width: 100%;
}
.navbar-nav .nav-link {
  font-weight: 400;
  padding: 0.5rem 20px !important;
  font-size: var(--font-base);
  color: rgba(var(--white), 0.8);
  cursor: pointer;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: rgba(var(--brand), 1);
}
.offcanvas {
  background-color: rgba(var(--black), 0.95);
  height: 100vh;
}
.offcanvas:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 100%;
  background-color: rgba(var(--brand), 0.9);
  z-index: -1;
  filter: blur(120px);
  transform: rotate(20deg);
}
.rtl .offcanvas-end {
  right: auto !important;
  left: 0 !important;
  transform: translateX(-100%);
}
.rtl .offcanvas-end.show {
  transform: translateX(0);
}
.navbar-toggler {
  border: none;
}
/* Custom white toggler icon for dark navbar */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.header-container {
  border-radius: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 16px;
  border: 1px solid rgba(var(--white), 0.1);
  background-color: rgba(var(--white), 0.05);
}
.header-area .fixed-top {
  transition: all 0.8s ease;
}
.header-area.scrolled .fixed-top {
  transform: translateY(-12px);
}
.header-area.scrolled .header-container {
  box-shadow: 0 0 20px rgba(var(--brand), 0.4);
}

/*----------------------------------------------------
  06. Language Select Styles
----------------------------------------------------*/

.country-select-dropdown .dropdown-menu.show {
  animation: dropdownShow 0.5s forwards;
}
.country-select-dropdown .dropdown-menu.hiding {
  animation: dropdownHide 2s forwards;
}
.country-select-dropdown .dropdown-menu .dropdown-item {
  color: rgba(var(--white), 0.5);
  padding: 8px 12px;
}
.country-select-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(var(--brand), 0.6);
}
.country-select-dropdown .dropdown-menu {
  background-color: rgba(var(--black), 1);
  border: 1px solid rgba(var(--white), 0.1);
  min-width: 200px;
  box-shadow: 0 0 20px rgba(var(--brand), 0.3);
}
/* Show animation */
@keyframes dropdownShow {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}

/* Hide animation */
@keyframes dropdownHide {
  0% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}
.country-select-dropdown button,
.country-select-dropdown button span {
  border: none !important;
  color: white !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: rgba(var(--brand), 1);
}
.country-select-dropdown .dropdown-item img,
.country-select-dropdown button img {
  height: 22px;
  width: 22px;
  border-radius: 50%;
}
/*----------------------------------------------------
  04. Form Utility Styles
----------------------------------------------------*/
.form-label {
  color: rgba(var(--white), 1);
  font-size: calc(var(--font-base) - 2px);
  font-weight: 500;
}
.is-invalid {
  border-color: rgba(var(--warning), 0.5) !important;
  background-color: rgba(var(--warning), 0.1) !important;
}
.invalid-feedback {
  color: rgb(225, 71, 71) !important;
}
.is-valid {
  border-color: rgba(var(--brand), 0.8) !important;
  background-color: rgba(var(--brand), 0.08) !important;
}
.valid-feedback {
  color: rgba(var(--brand), 1) !important;
}
.transition {
  transition: all 0.5s ease;
}
.rtl input,
.rtl input::placeholder {
  direction: rtl !important;
  text-align: right !important;
}
.form-control,
textarea {
  border: 1px solid rgba(var(--white), 0.05);
  background: rgba(var(--white), 0.05);
  backdrop-filter: blur(94px);
  padding: 10px 15px;
  color: rgba(var(--white), 0.8);
  border-radius: 999px;
}
textarea {
  min-height: 100px !important;
  border-radius: 10px !important;
}
.form-control::placeholder {
  opacity: 1;
  color: rgba(var(--white), 0.4);
  font-weight: 400;
  font-size: 14px;
}
.form-control:focus,
textarea:focus select:focus {
  background: rgba(var(--brand), 0.05);
  border-color: rgba(var(--brand), 0.15);
  color: rgba(var(--white), 0.8);
  box-shadow: 0 0 0 transparent !important;
}
.form-control.is-valid,
.form-control.is-invalid {
  background-image: none !important;
  background-repeat: no-repeat;
}
.rtl .toggle-password {
  right: auto !important;
  left: 0 !important;
  margin-right: 0 !important;
  margin-left: 0.75rem !important;
}
/*----------------------------------------------------
  05. Cookie  Styles
----------------------------------------------------*/
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  z-index: 1079;
  transition: all 0.6s ease;
}
/* Show overlay */
.cookie-overlay.show {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(6px);
}
/* Hide overlay */
.cookie-overlay.hide {
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0px);
}
/* Cookie banner box */
.cookie-banner {
  position: fixed;
  bottom: 2%;
  left: 2%;
  transform: translate(-50%, 20px);
  width: 95%;
  max-width: 580px;
  background: rgba(var(--white), 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 1080;
  transition: all 0.6s ease;
  backdrop-filter: blur(30px);
}
/* Show animation */
.cookie-banner.show {
  transform: translate(0%, 20px);
  opacity: 1;
  visibility: visible;
}
/* Hide animation */
.cookie-banner.hide {
  transform: translate(-50%, 100px);
  opacity: 0;
  visibility: hidden;
}
/* Blur body when active */
body.blurred {
  overflow: hidden;
}
/* Button animation */
.cookie-banner button {
  transition: all 0.3s ease;
}
.cookie-icon {
  height: 55px;
  max-width: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: rgba(var(--black), 0.8);
  display: flex;
  justify-content: center;
  padding: 10px;
  align-items: center;
}
.cookie-icon img {
  max-width: 40px;
  width: 100%;
}
/*----------------------------------------------------
  06. Common Card
----------------------------------------------------*/
.features-sm-icon {
  width: 20px;
  height: 20px;
  background-color: rgba(var(--brand), 1);
  mask-size: contain;
  -webkit-mask-size: contain;
}
.features-sm-icon-box div:nth-child(1) .features-sm-icon {
  mask: url("../images/icon/verified.svg") no-repeat center;
  -webkit-mask: url("../images/icon/verified.svg") no-repeat center;
  width: 20px;
  height: 20px;
  background-color: rgba(var(--brand), 1);
  mask-size: contain;
  -webkit-mask-size: contain;
}
.features-sm-icon-box div:nth-child(2) .features-sm-icon {
  mask: url("../images/icon/secure.svg") no-repeat center;
  -webkit-mask: url("../images/icon/secure.svg") no-repeat center;
}
.features-sm-icon-box div:nth-child(3) .features-sm-icon {
  mask: url("../images/icon/screenshot.svg") no-repeat center;
  -webkit-mask: url("../images/icon/screenshot.svg") no-repeat center;
}
/*----------------------------------------------------
  07. Footer Styles
----------------------------------------------------*/
.footer-nav ul li a {
  font-size: calc(var(--font-base) - 2px);
  color: rgba(var(--white), 0.8);
  transition: 0.5s;
  font-weight: 500;
}
.footer-nav ul li a:hover {
  color: rgba(var(--brand), 1) !important;
}
.social-menu ul li a img {
  max-width: 20px;
  width: 100%;
}
.social-menu ul li a {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.social-menu ul li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(228, 228, 228, 0.6);
}
.footer-section {
  overflow: hidden;
}
.footer-description a img {
  max-width: 200px;
  width: auto;
}
.footer-bottom {
  border-top: 1px solid rgba(var(--white), 0.1);
}
.glow-circle {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 646px;
  max-height: 862px;
  height: 100%;
  bottom: -130px;
  width: 100%;
  z-index: -2;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--brand), 1) 0%,
    rgba(var(--brand), 0.4) 40%,
    rgba(var(--black), 1) 40%,
    70%,
    transparent 100%
  );
  filter: blur(74px);
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes moveLine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 0;
  }
}

/*----------------------------------------------------
  08. Global Responsive  Styles
----------------------------------------------------*/
@media all and (max-width: 1550px) {
  .header-after-shape:after {
    opacity: 0.6;
    width: 60%;
  }
}
@media all and (max-width: 1199px) {
  h1 {
    font-size: calc(var(--font-base) + 32px);
    line-height: 58px;
  }
  .header-shape-container {
    position: relative;
    opacity: 0.5;
  }
}
@media (min-width: 992px) {
  .h-lg-100 {
    height: 100%;
  }
}
@media all and (max-width: 991px) {
  h1 {
    font-size: calc(var(--font-base) + 20px);
    line-height: 46px;
  }
  h3 {
    font-size: calc(var(--font-base) + 16px);
    line-height: 40px;
  }
  h4 {
    font-size: calc(var(--font-base) + 8px);
    line-height: 30px;
  }
  h5 {
    font-size: calc(var(--font-base) + 4px);

    line-height: 38px;
    font-weight: 600;
  }
  h6 {
    font-size: calc(var(--font-base) + 2px);
    line-height: 24px;
  }
  .section-lg-mt {
    margin-top: calc(var(--section-gap-base) - 20px);
  }
  .section-lg-pt {
    padding-top: calc(var(--section-gap-base) - 20px);
  }
  .section-lg-ptb {
    padding-top: calc(var(--section-gap-base) - 20px);
    padding-bottom: calc(var(--section-gap-base) - 20px);
  }
  .navbar-brand img {
    max-width: 180px;
  }
  .header-after-shape:after {
    width: 100%;
  }
  .primary-btn,
  .secondary-btn {
    padding: 8px 20px;
    font-size: var(--font-base);
    min-width: 170px;
  }
  .primary-btn-sm,
  .secondary-btn-sm {
    padding: 2px 8px;
    font-size: calc(var(--font-base) - 5px);
    min-width: 90px;
  }
  .footer-nav ul li a {
    font-size: calc(var(--font-base) - 4px);
  }
}
@media all and (max-width: 767px) {
  .section-lg-mt {
    margin-top: calc(var(--section-gap-base) - 30px);
  }
  .section-lg-pt {
    padding-top: calc(var(--section-gap-base) - 30px);
  }
  .section-lg-ptb {
    padding-top: calc(var(--section-gap-base) - 30px);
    padding-bottom: calc(var(--section-gap-base) - 30px);
  }
  h1 {
    font-size: calc(var(--font-base) + 16px);
    line-height: 42px;
    font-weight: 500;
  }
  h3 {
    font-size: calc(var(--font-base) + 12px);
    line-height: 38px;
  }
  h4 {
    font-size: calc(var(--font-base) + 8px);
    line-height: 30px;
  }
  h5 {
    font-size: calc(var(--font-base) + 10px);
    line-height: 36px;
  }
  .md-p,
  p {
    font-size: calc(var(--font-base) - 2px);
  }
  .glow-circle {
    max-width: 346px;
    max-height: 462px;
  }
}
@media all and (max-width: 557px) {
  h1 {
    font-size: calc(var(--font-base) + 14px);
    line-height: 34px;
  }
  h3 {
    font-size: calc(var(--font-base) + 8px);
    line-height: 34px;
  }
  h4 {
    font-size: calc(var(--font-base) + 4px);
    line-height: 30px;
  }
  h5 {
    font-size: calc(var(--font-base) + 3px);
    line-height: 30px;
  }
  .section-lg-mt {
    margin-top: calc(var(--section-gap-base) - 40px);
  }
  .section-lg-pt {
    padding-top: calc(var(--section-gap-base) - 40px);
  }
  .section-lg-ptb {
    padding-top: calc(var(--section-gap-base) - 40px);
    padding-bottom: calc(var(--section-gap-base) - 40px);
  }
}
