.d-flex {
  display: flex !important;
}

.flex-row {
  display: flex !important;
  flex-direction: row !important;
}

.flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.d-flex-inline {
  display: inline-flex !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-items-start {
  justify-content: flex-start !important;
}

.justify-items-center {
  justify-content: center !important;
}

.justify-items-end {
  justify-content: flex-end !important;
}

.justify-items-between {
  justify-content: space-between !important;
}

.flex-1 {
  flex: 1 !important;
}

/* Center horizontally & vertically */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Space-between horizontally, center vertically */
.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Space-around horizontally, center vertically */
.flex-around-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Column layout, centered both ways */
.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Row layout, centered vertically only */
.flex-row-center-v {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Row layout, centered horizontally only */
.flex-row-center-h {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.g-0 {
  gap: 0 !important;
}

.g-4 {
  gap: 0.25rem;
}

.g-5 {
  gap: 0.3125rem;
}

.g-6 {
  gap: 0.375rem;
}

.g-8 {
  gap: 0.5rem;
}

.g-10 {
  gap: 0.625rem;
}

.g-12 {
  gap: 0.75rem;
}

.g-14 {
  gap: 0.875rem !important;
}

.g-16 {
  gap: 1rem !important;
}

.g-18 {
  gap: 1.125rem !important;
}

.g-20 {
  gap: 1.25rem !important;
}

.g-24 {
  gap: 1.5rem !important;
}

.g-30 {
  gap: 1.875rem !important;
}

.g-40 {
  gap: 2.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.px-0 {
  padding-inline: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-10 {
  margin-bottom: 10px;
}

.border-0 {
  border: none !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.uppercase-text {
  text-transform: uppercase;
}

.lowercase-text {
  text-transform: lowercase;
}

.capitalize-text {
  text-transform: capitalize;
}

.text-nowrap {
  white-space: nowrap;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

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

.w-100 {
  width: 100%;
}

.color-white {
  color: var(--text-white);
}

img {
  max-width: 100%;
}

.header_section {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.header_section .heading_text {
  font-weight: var(--fw-500);
  font-size: 42px;
  line-height: 150%;
  color: var(--text-white);
  font-family: At Aero;
}
.header_section .gradient_heading {
  background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.header_section .sub-heading_text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: var(--fw-400);
  font-size: var(--fs-16-subheading-text);
  line-height: 150%;
  color: var(--text-legal-content);
}
.header_section .sub-heading_text_20 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: var(--fw-400);
  font-size: var(--fs-20-global-subheading);
  line-height: 150%;
  color: var(--text-legal-content);
}
.header_section .sub-heading_text_16 {
  font-weight: var(--fw-400);
  font-size: var(--fs-16-subheading-text);
  line-height: 150%;
  color: var(--text-legal-content);
  inset: 0;
  margin: auto;
  max-width: 800px;
}

.gold-box-bg {
  background: linear-gradient(96.15deg, #CC835A 5.22%, #FCD9B8 31.86%, #F9D4B3 55.03%, #FFEFE2 73.45%, #E6AA80 97.27%);
  border: 1px solid #F4F4F4;
}

.techno-sec .gold-box-bg {
  background: var(--color-button-sescondary-gradient);
}

.silver-box-bg {
  background: var(--gradiant-silver-color);
  border: 1px solid #F4F4F4;
}

.gradient_box {
  padding: 20px 10px;
  background: var(--gradiant-gold-color);
  border-radius: 10px;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  gap: 10px;
  background: var(--gradiant-silver-color);
  border-radius: 4px;
  font-weight: var(--fw-400);
  font-size: var(--fs-18-btn-primary-gradient);
  line-height: 150%;
  text-align: center;
  color: #011A43;
  border: 0;
  cursor: pointer;
}

.btn-schedule-demo {
  min-width: 205px;
}

.get-started-btn {
  font-size: var(--fs-18-btn-primary-gradient);
  min-width: 189px;
  overflow: hidden;
}

.get-started-btn span svg {
  display: inline-block;
  transition: transform 0.4s ease;
}

.get-started-btn .icon-wrapper {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.get-started-btn span:last-child::after {
  content: url("/assets/images/icons/right-arrow-blue.svg");
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.get-started-btn:hover span:first-child {
  transform: scale(1.06);
}

.get-started-btn:hover span svg {
  transform: translateX(65px);
}

.get-started-btn:hover span:last-child::after {
  left: 0;
  opacity: 1;
}

.back-to-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.back-to-btn span svg {
  rotate: 180deg;
  filter: brightness(0) invert(1);
}

.back-to-btn span:last-child::after {
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) invert(1);
}

.back-to-btn:hover span:last-child::after {
  left: -35px;
}

.btn-primary span,
button span {
  transition: all 0.2s ease;
  display: inline-flex;
  font-family: "Poppins";
}

.btn-primary:hover span,
button:hover > span {
  transform: scale(1.06);
}

.gradient-ring--left-top::after,
.gradient-ring--left-bottom::after,
.gradient-ring--right-top::before,
.gradient-ring--right-bottom::before {
  content: "";
  position: absolute;
  width: 242px;
  height: 242px;
  border-radius: 50%;
  background: var(--color-button-sescondary-gradient);
  -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
  mask-image: radial-gradient(circle, transparent 100px, black 101px);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1;
}

.gradient-ring--left-bottom::after {
  top: unset;
  right: unset;
  bottom: 0;
  left: 0;
}

.gradient-ring--left-top::after {
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
}

.gradient-ring--right-top::before {
  top: 0;
  right: 0;
  left: unset;
  bottom: unset;
}

.gradient-ring--right-bottom::before {
  top: unset;
  right: 0;
  left: unset;
  bottom: 0;
}

.restoring-trust-section.gradient-ring--right-top::before {
  top: 0;
  right: 0;
  transform: translate(80%, -10%);
  z-index: 2;
}
.restoring-trust-section.gradient-ring--left-bottom::after {
  left: 0;
  bottom: 0;
  transform: translate(-60%, 50%);
  z-index: 2;
}

@keyframes rotateAnimation1 {
  from {
    transform: translate(-48%, -80%) scale(1) rotate(0deg);
  }
  to {
    transform: translate(-48%, -80%) scale(1) rotate(360deg);
  }
}
@keyframes rotateAnimation2 {
  from {
    transform: translate(35%, 62%) scale(1) rotate(0deg);
  }
  to {
    transform: translate(35%, 62%) scale(1) rotate(360deg);
  }
}
@keyframes scaleDownLeftRing {
  from {
    transform: translate(-48%, -80%) scale(4.25);
    -webkit-mask-image: radial-gradient(circle, transparent 110px, black 101px);
    mask-image: radial-gradient(circle, transparent 110px, black 101px);
  }
  to {
    transform: translate(-48%, -80%) scale(1);
    -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
    mask-image: radial-gradient(circle, transparent 100px, black 101px);
  }
}
@keyframes scaleDownRightRing {
  from {
    transform: translate(35%, 62%) scale(4.25);
    -webkit-mask-image: radial-gradient(circle, transparent 110px, black 101px);
    mask-image: radial-gradient(circle, transparent 110px, black 101px);
  }
  to {
    transform: translate(35%, 62%) scale(1);
    -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
    mask-image: radial-gradient(circle, transparent 100px, black 101px);
  }
}
.contactus-section .gradient-ring--left-top::after {
  transform: translate(-48%, -80%) scale(4.25);
  z-index: 0;
  animation: scaleDownLeftRing 0.45s ease-in forwards, rotateAnimation1 20s linear infinite;
  animation-delay: 0s, 1s;
}
.contactus-section .gradient-ring--right-bottom::before {
  transform: translate(35%, 62%) scale(4.25);
  z-index: 0;
  animation: scaleDownRightRing 0.45s ease-in forwards, rotateAnimation2 20s linear infinite;
  animation-delay: 0s, 1s;
}

.learn-more-btn {
  font-family: "Poppins";
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  text-decoration-line: underline;
  color: var(--text-white);
}

.svg-sprite-container {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.wave-img {
  transform: translate(0, -30%);
  width: 100%;
  max-width: 530px;
  height: 530px;
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  inset: 0;
  margin: auto;
}

@media (max-width: 1024px) {
  .gradient-ring--left-top::after, .gradient-ring--left-bottom::after, .gradient-ring--right-top::before, .gradient-ring--right-bottom::before {
    mask-image: radial-gradient(circle, transparent 108px, black 108px);
  }
  .wave-img {
    transform: translate(0, -14%);
  }
  .btn-primary {
    height: 44px;
    padding: 12px;
  }
  .btn-primary.get-started-btn {
    min-width: 173px;
  }
  .btn-primary.btn-schedule-demo {
    min-width: 184px;
  }
  .header_section .heading_text {
    font-size: 32px;
  }
  .restoring-trust-section.gradient-ring--left-bottom::after {
    transform: translate(-75%, 75%);
  }
  .custom-tab-grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .contactus-section .gradient-ring--left-top::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .wave-img {
    transform: translate(0, -23%);
  }
  .btn-primary {
    padding: 12px;
    height: 40px;
  }
  .btn-primary.get-started-btn {
    min-width: 130px;
    height: 40px;
  }
  .btn-primary.btn-schedule-demo {
    height: 32px;
    min-width: 148px;
  }
  .gradient-ring--right-top::before {
    transform: translate(62%, 0%);
    width: 100px;
    height: 100px;
    transform: translate(70%, 0%);
    mask-image: radial-gradient(circle, transparent 42px, black 42px);
  }
  .gradient-ring--right-top::after {
    transform: translate(62%, 0%);
    width: 100px;
    height: 100px;
    transform: translate(70%, 0%);
    mask-image: radial-gradient(circle, transparent 42px, black 42px);
  }
  .gradient-ring--right-bottom::before {
    content: "";
    right: -12%;
  }
  .header_section {
    gap: 8px;
  }
  .header_section .heading_text {
    font-size: 24px;
  }
  .custom-mob-grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .mob-align {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gradient-ring--left-top::after, .gradient-ring--left-bottom::after, .gradient-ring--right-top::before, .gradient-ring--right-bottom::before {
    mask-image: radial-gradient(circle, transparent 45px, black 45px);
  }
}
@media (max-width: 400px) {
  .contactus-section .gradient-ring--right-bottom::before {
    content: "";
    right: -22%;
    bottom: -20px;
  }
}
.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(0, 24, 61, 0.8) !important;
}

.head_section {
  position: sticky;
  top: 0;
  z-index: 110;
  width: 100%;
  transition: 0.2s ease-in-out;
  margin: 0 auto;
  padding-block: 30px;
  padding-inline: 5%;
  height: 120px;
}
.head_section .header_custom_width {
  min-width: 100%;
}
.head_section .header_custom_width .logo_lg {
  width: 240px;
  height: auto;
}
.head_section .header_custom_width .header_tabs .select-menu {
  display: none;
  top: 55px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: absolute;
  background: var(--bg-secondary);
  z-index: 10;
  border-radius: 6px;
  right: 0;
  overflow: hidden;
  color: var(--text-legal-content);
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text {
  min-width: 150px;
  padding: 12px;
  white-space: nowrap;
  width: 100%;
  display: inline-flex;
  transition: all 0.2s ease;
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text:hover {
  transform: translateX(4px);
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text.active {
  color: var(--text-white);
}
.head_section .header_custom_width .header_tabs .select-menu.open {
  opacity: 1;
  display: block;
  z-index: 9999;
  padding: 0 12px;
}
.head_section .header_custom_width .header_tabs .select-menu.open .option:hover {
  color: var(--color-menu-highlight);
}
.head_section .header_section_drop .header_custom_width {
  gap: 25px;
}
.head_section .header_section_drop .header_sub {
  margin-bottom: auto;
}
.head_section .header_section.header_section_drop {
  min-height: 147px;
}
.head_section .header_sub {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.header_section_drop {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: unset;
}
.header_section_drop .header_sub {
  display: inline-flex;
  gap: 25px;
  margin-top: 0px;
  width: auto;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
  padding: 8px 16px 8px 24px;
}
.header_section_drop .header_sub .logoItem_2 {
  display: none;
}
.header_section_drop .header_sub .logoItem img {
  width: 30px;
}
.header_section_drop .header_sub .getIn span {
  display: none;
}
.header_section_drop .header_sub .getStartBtn {
  padding: 6px 16px;
  border-radius: 48px;
}
.header_section_drop .header_sub .getIn .getStartBtn svg {
  display: none;
}

.header_tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.logoItem {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 2;
}

.nav-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333333;
}
.nav-icon:hover {
  color: #333333;
}
.nav-icon img {
  width: 16px;
  height: auto;
}

.hangBar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 0;
}
.hangBar .hangBar_img {
  width: 48px;
  height: 48px;
  position: relative;
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_actions a {
  font-size: "fs-18";
  font-weight: "semibold";
  color: "menuBlue";
  font-style: normal;
}
.header_actions .getStartBtn {
  border: 1px solid var(--clr-menuBlue);
  font-weight: var(--fw-600);
  border-radius: 10px;
  padding: 12px 18px;
  width: 172px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header_actions .getStartBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--clr-menuBlue);
  color: var(--text-white);
  border-color: var(--clr-darkBlue);
  transition: all 0.2s ease-in-out;
}

.head_section .navbar-expand-lg {
  flex-wrap: nowrap;
}

.menuToggle {
  background: none;
}

.btn-border-right {
  border-right: 1.5px solid rgba(29, 3, 122, 0.2);
  height: 27px;
}

.header_section_drop .getInTouch,
.header_section_drop .btn-border-right {
  display: none;
}

.head_section.header_section_drop .logoItem {
  order: 1;
}
.head_section.header_section_drop .navbar-nav.header_tabs {
  order: 2;
}
.head_section .header_actions {
  order: 3;
  gap: 35px;
}

.navbar-nav .nav-item {
  position: relative;
  padding-block: 16px;
}
.navbar-nav .nav-item .nav_logo_icon_img {
  max-width: 100%;
  flex-shrink: 0;
}
.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .select-menu {
  position: relative;
  display: flex;
  color: var(--text-white);
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.navbar-nav .nav-item .nav-link:hover svg,
.navbar-nav .nav-item .select-menu:hover svg {
  transform: scale(1.1);
}
.navbar-nav .nav-item .nav-link .dropdown-arrow,
.navbar-nav .nav-item .select-menu .dropdown-arrow {
  transition: all 0.25s ease;
}
.navbar-nav .nav-item .nav-link:hover .dropdown-arrow,
.navbar-nav .nav-item .select-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.navbar-nav .nav-item .nav-link span,
.navbar-nav .nav-item .select-menu span {
  color: var(--color-menu-highlight);
  font-size: 16px;
  font-weight: var(--fw-400);
}
.navbar-nav .nav-item .nav-hover-link {
  position: relative;
}
.navbar-nav .nav-item .nav-hover-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 90%;
  height: 0.8px;
  background-color: var(--bg-white);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
}
.navbar-nav .nav-item .nav-hover-link:hover::after, .navbar-nav .nav-item .nav-hover-link.active::after {
  transition: transform 1s ease;
  transform: translateX(-50%) scaleX(1);
}
.navbar-nav .nav-item .nav-hover-link.option-text:hover::after {
  transform: translateX(-50%) scaleX(0) !important;
}

.moreOptions_list li span {
  color: var(--color-menu-highlight);
}
.moreOptions_list li .down-arrow-icon {
  height: 8px;
  transition: all 0.25s ease;
}
.moreOptions_list li .nav-link.active .down-arrow-icon,
.moreOptions_list li .nav-link.rotated .down-arrow-icon {
  transform: rotate(180deg);
}

.mobMenu_open {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  opacity: 0.4;
}

@media (max-width: 1300px) {
  .header_tabs {
    gap: 5px;
  }
}
@media (min-width: 1201px) {
  .menuToggle {
    display: none;
  }
  #mobileMenu {
    display: none !important;
  }
  main,
  footer {
    filter: none !important;
    opacity: 1 !important;
  }
}
@media (max-width: 1200px) {
  .head_section {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 10px 24px;
    transition: 0s ease-in-out;
  }
  .head_section .logo_lg {
    max-width: 180px;
    height: auto;
  }
  .head_section .navbar-nav {
    display: none;
  }
  .head_section .moreOptions {
    position: absolute;
    top: 71px;
    left: 50%;
    width: 100%;
    overflow: auto;
    height: calc(100vh - 71px);
    border-radius: 20px;
    background: var(--primary-bg);
    padding: 24px 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 0);
  }
  .head_section .moreOptions .moreOptions_list {
    padding: 0px 24px;
    padding-inline: 5%;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 16px 0;
    text-decoration: none;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between) {
    display: inline-flex;
    position: relative;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active {
    color: var(--text-white);
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20%;
    width: auto;
    height: 0.8px;
    background-color: var(--bg-white);
    display: inline-block;
    transform: translateY(-50%);
    left: 22px;
    right: 0;
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between):not(.active)::before {
    content: "";
    opacity: 0;
    display: none;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link.justify-items-between {
    justify-content: space-between;
    width: 100%;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link .down-arrow-icon {
    transition: all 0.25s ease;
    transform: rotate(0);
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link .rotated.down-arrow-icon {
    transform: rotate(180deg) !important;
  }
  .head_section .moreOptions .moreOptions_list .select-menu {
    background-color: transparent;
    position: relative;
    display: none;
  }
  .head_section .moreOptions .moreOptions_list .select-menu.open {
    display: block;
  }
  .head_section .moreOptions .moreOptions_list .select-menu.open li {
    padding: 12px 16px;
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text {
    font-weight: var(--fw-400);
    font-size: 14px;
    line-height: 21px;
    color: var(--text-legal-content);
    position: relative;
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 0;
    height: 0.8px;
    background-color: var(--bg-white);
    transition: width 0.3s ease;
    transform: translate(-50%, -50%);
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text:hover, .head_section .moreOptions .moreOptions_list .select-menu .option .option-text.active {
    color: var(--text-white);
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text:hover::after, .head_section .moreOptions .moreOptions_list .select-menu .option .option-text.active::after {
    width: 100%;
  }
  .head_section .moreOptions a {
    padding: 24px 0;
    justify-content: flex-start;
  }
  .head_bg_open .head_section {
    background: var(--bg-secondary);
    transition: 0.001s ease-in-out;
  }
  .head_bg_open .head_section.scrolled {
    background-color: var(--bg-secondary) !important;
  }
  .head_bg_open .head_section .moreOptions {
    background: var(--bg-secondary);
  }
}
@media (max-width: 767px) {
  .head_section {
    padding-inline: 5%;
    height: var(--header-height);
  }
  .head_section .header_custom_width .logo_lg {
    width: 112px;
    height: auto;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link {
    padding: 14px 0;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active::before {
    bottom: 15%;
    left: 16px;
  }
  .hangBar .hangBar_img {
    width: 30px;
    height: 30px;
  }
}
.footer_main {
  padding: 30px 60px;
  position: relative;
  background: url("/assets/images/icons/Ellipse-footer.svg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.footer_main::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  background: #445FA7;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-top: 40px;
  box-shadow: 0px 0px 500px 30px #445FA7;
  -webkit-box-shadow: 0px 0px 500px 30px #445FA7;
  z-index: -1;
}
.footer_main .AssetfooterFinal {
  content: "";
  position: absolute;
  width: 650px;
  height: 603px;
  left: -350px;
  top: 50%;
  z-index: -1;
  opacity: 0.4;
  transform: translateY(-40%) rotate(90deg);
}
.footer_main .AssetfooterFinal.AssetfooterFinal_after {
  top: 0;
  right: -350px;
  left: unset;
  z-index: -1;
  transform: translateY(0) rotate(-90deg);
}
.footer_main .overwrite-section-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer_main .overwrite-section-container .subfooter_left {
  display: none;
}
.footer_main .logo-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer_main .logo-content-wrapper .footer_top {
  text-align: center;
  max-height: 32px;
}
.footer_main .footer_header {
  display: inline-block;
}
.footer_main .footer_img {
  max-width: 167px;
  width: 100%;
  max-height: 32px;
  position: relative;
  z-index: 1;
}
.footer_main .footer_sub {
  font-style: normal;
  font-size: 20px;
  font-weight: var(--fw-400);
  margin: 0;
  color: var(--text-white);
  text-align: center;
  text-wrap-style: pretty;
}
.footer_main .footer_main_head {
  display: flex;
  align-items: center;
  justify-items: center;
}
.footer_main .footer_main_head .footer-nav {
  background: var(--gradiant-gold-color);
  gap: 12px;
  border-radius: 8px;
  border: 1px solid var(--bg-white);
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
}
.footer_main .footer_main_head .footer-nav::before, .footer_main .footer_main_head .footer-nav::after {
  content: "";
  width: 40%;
  height: 1px;
  position: absolute;
  background: linear-gradient(90deg, rgba(205, 221, 255, 0) 0%, #CDDDFF 72.69%);
}
.footer_main .footer_main_head .footer-nav::before {
  left: -45%;
}
.footer_main .footer_main_head .footer-nav::after {
  right: -45%;
  transform: rotate(180deg);
}
.footer_main .footer_main_head .footer-nav a {
  gap: 12px;
  color: var(--primary-text-color) !important;
  padding: 4px 10px;
}
.footer_main .footer_main_head .footer-nav img {
  width: 24px;
  height: 24px;
}
.footer_main .align_mid_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin: auto;
  border-radius: 12px;
  color: var(--text-white);
  align-items: center;
}
.footer_main .align_mid_footer .align_mid_footer_list_items {
  gap: 38px;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature {
  padding: 4px 10px;
  white-space: nowrap;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature.footer-sub-nav-active a {
  text-decoration: underline;
  color: #F1A475;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature:hover a {
  text-decoration: underline;
  transform: scale(1.06);
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature .mail_text_sub {
  font-size: var(--footer-nav-legal-14);
  display: inline-flex;
  transition: all 0.2s ease;
}
.footer_main .align_mid_footer_list {
  border-radius: 12px;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_main .align_mid_footer_list .footer_feature a {
  text-decoration: none;
  color: var(--text-white);
  font-size: var(--footer-nav-main-16);
  font-weight: var(--fw-400);
  display: inline-flex;
  transition: all 0.2s ease;
}
.footer_main .align_mid_footer_list .footer_feature:hover a {
  transform: scale(1.06);
}
.footer_main .animated-line,
.footer_main .animated-line-rgt {
  width: 100%;
  height: 2px;
  border: transparent;
}
.footer_main .animated-line {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #668cff);
}
.footer_main .animated-line-rgt {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #668cff);
}
.footer_main .left_footer_text {
  text-decoration: none;
  font-size: "fs-14";
  font-weight: "regular";
  color: "gray";
  font-style: normal;
}
.footer_main .mid_footer_text {
  margin: 0;
  font-size: "fs-14";
  font-weight: "regular";
  color: "grayblack";
  font-style: normal;
}
.footer_main .ftr-lft-line {
  width: 35vw;
}
.footer_main .ftr-btm-hr {
  width: 100%;
  margin: auto;
}
.footer_main hr {
  color: rgb(206, 216, 241);
}
.footer_main #footer li a:hover,
.footer_main .left_footer_text:hover,
.footer_main .nav-item a:hover,
.footer_main a.getInTouch:hover {
  color: #254fca !important;
}
.footer_main .subfooter_left:hover {
  text-decoration: underline;
}

.sub_footer {
  padding: 23px 60px;
  position: relative;
  background: var(--bg-blue);
}
.sub_footer .mail-wrapper svg {
  width: 24px;
  height: 24px;
}
.sub_footer .mail-wrapper .mail-text {
  line-height: 100%;
  text-align: center;
  color: var(--text-white);
  font-size: 14px;
}
.sub_footer .subfooter_mid {
  font-size: 14px;
  color: var(--text-white);
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap-style: balance;
}
.sub_footer .subfooter_right {
  gap: 16px;
}
.sub_footer .subfooter_right .footer_icon_align {
  display: inline-flex;
  align-items: center;
}
.sub_footer .subfooter_right .footer_icon_align a {
  width: 32px;
  height: 32px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  background: rgba(162, 173, 196, 0.0705882353);
  border-radius: 3px;
  transition: all 0.2s ease;
}
.sub_footer .subfooter_right .footer_icon_align a svg {
  transition: all 0.2s ease;
}
.sub_footer .subfooter_right .footer_icon_align a:hover {
  background: rgba(162, 173, 196, 0.2666666667);
}
.sub_footer .subfooter_right .footer_icon_align a:hover svg {
  scale: 1.06;
}

@media (max-width: 1024px) {
  .footer_main .AssetfooterFinal {
    width: 346px;
    height: 321px;
    left: -213px;
    top: 50%;
    transform: translateY(-35%) rotate(90deg);
  }
  .footer_main .AssetfooterFinal.AssetfooterFinal_after {
    top: 0;
    right: -213px;
    left: unset;
    z-index: -1;
    transform: translateY(0) rotate(-90deg);
  }
  .footer_main .overwrite-section-container {
    gap: 30px;
  }
  .footer_main .footer_img {
    max-width: 123px;
  }
  .footer_main .logo-content-wrapper {
    gap: 17px;
  }
  .footer_main .footer_sub {
    font-size: 14px;
  }
  .footer_main .align_mid_footer_list {
    gap: 8px;
  }
  .footer_main .align_mid_footer_list.align_mid_footer_list_items {
    gap: 20px;
  }
  .footer_main .align_mid_footer_list .footer_feature {
    padding: unset;
  }
  .footer_main .footer_main_head .footer-nav a {
    padding: 2px 5px;
  }
  .sub_footer {
    padding: 23px 15px;
  }
  .sub_footer .subfooter_mid {
    font-size: 12px;
  }
  .sub_footer .subfooter_right {
    gap: 12px;
  }
  .sub_footer .subfooter_right .footer_icon_align a {
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 2px;
  }
  .sub_footer .mail-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .sub_footer .mail-wrapper .mail-text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer_main {
    padding: 24px 16px 0;
  }
  .footer_main .AssetfooterFinal {
    width: 271px;
    height: 275px;
    left: -161px;
    top: 0;
    transform: translateY(-10%) rotate(90deg);
  }
  .footer_main .AssetfooterFinal.AssetfooterFinal_after {
    top: 0;
    right: -181px;
    left: unset;
    z-index: -1;
    transform: translateY(-15px) rotate(-90deg);
  }
  .footer_main .overwrite-section-container {
    gap: 20px;
  }
  .footer_main .footer_sub {
    text-wrap-style: stable;
  }
  .footer_main .footer_main_head .footer-nav::before, .footer_main .footer_main_head .footer-nav::after {
    content: unset;
  }
  .footer_main .overwrite-section-container {
    gap: 20px;
  }
  .footer_main .overwrite-section-container .subfooter_left {
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-block: 8px;
  }
  .footer_main .align_mid_footer_list {
    flex-wrap: wrap;
  }
  .footer_main .align_mid_footer_list.align_mid_footer_list_items {
    gap: 0;
  }
  .mail-wrapper {
    position: relative;
  }
  .mail-wrapper::before {
    content: "";
    width: 100%;
    height: 1px;
    left: calc(100% + 1rem);
    position: absolute;
    background: linear-gradient(90deg, #CDDDFF 0%, rgba(205, 221, 255, 0) 50%);
  }
  .mail-wrapper::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: calc(100% + 1rem);
    background: linear-gradient(-90deg, #CDDDFF 0%, rgba(205, 221, 255, 0) 50%);
  }
  .mail-wrapper svg {
    width: 16px;
    height: 16px;
  }
  .sub_footer {
    flex-direction: column;
    gap: 20px;
    background: var(--primary-bg);
  }
  .sub_footer .subfooter_left {
    display: none;
    order: 3;
  }
  .sub_footer .subfooter_mid {
    order: 2;
    font-size: 10px;
  }
  .sub_footer .subfooter_right {
    order: 1;
  }
}
@media (max-width: 575px) {
  .footer_main .footer_main_head .footer-nav a {
    padding: 2px 0px;
  }
}
@media (max-width: 430px) {
  .footer_main .footer_main_head .footer-nav {
    max-width: 260px;
  }
  .footer_main .footer_main_head .footer-nav::before {
    content: "";
    width: 100%;
    height: 1px;
    inset: 0;
    transform: translateY(2px);
    margin: auto;
    background: linear-gradient(90deg, rgba(12, 31, 69, 0) 0%, #0C1F45 50%, rgba(12, 31, 69, 0) 100%);
  }
}
.contactus-section {
  display: flex;
  justify-content: center;
  padding: 96px 24px;
}
.contactus-section .inner-container {
  height: auto;
  max-width: 1200px;
}
.contactus-section .inner-container .get-in-tch {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  padding: 40px 35px 20px;
  font-family: "Poppins";
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}
.contactus-section .inner-container .message {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-family: "Poppins";
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  gap: 70px;
  padding-block: 20px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt::before {
  content: url("/assets/images/dust-particle-bg.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt::after {
  content: "";
  width: 100px;
  height: 0px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: transparent;
  box-shadow: -69px 41px 270px 240px #182b55;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section .heading_text {
  font-family: "At Aero";
  font-weight: var(--fw-600);
  font-size: 39px;
  line-height: 100%;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section .heading_text .gradient_heading {
  font-weight: var(--fw-500);
  font-size: 42px;
  line-height: 100%;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section.contactus-header-sec .heading_text {
  font-weight: var(--fw-600);
  font-size: 39px;
  line-height: 100%;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-top .get-in-tch-btn {
  font-size: 18px;
  font-weight: var(--fw-400);
  width: 173px;
  height: 51px;
  border-radius: 4px;
  border: none;
  color: var(--primary-text-color);
  background: var(--color-button-primary-gradient);
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm {
  max-width: 566px;
  color: var(--text-white);
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img {
  border-radius: 4px;
  position: relative;
  background: rgba(162, 173, 196, 0.2);
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img.bg_social_media {
  background-color: rgba(162, 173, 196, 0.0705882353);
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img .icon-align {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .email,
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .phone,
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .address {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img {
  width: 32px;
  height: 32px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .head {
  font-size: 20px;
  font-weight: var(--fw-500);
  line-height: 150%;
  margin-bottom: 4px;
}
.contactus-section .inner-container .get-in-tch .qstn-cnt-btm .content {
  font-size: 16px;
  font-weight: var(--fw-400);
  line-height: 150%;
  color: var(--text-legal-content);
}
.contactus-section .inner-container .message .top {
  color: var(--text-white);
}
.contactus-section .inner-container .message .top .header {
  line-height: 150%;
  font-size: 42px;
  font-weight: var(--fw-500);
  margin-bottom: 24px;
}
.contactus-section .inner-container .message .form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactus-section .inner-container .message .form-container .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contactus-section .inner-container .message .form-container .form-group:focus-within .form-label {
  color: var(--text-white);
}
.contactus-section .inner-container .message .form-container .form-group .form-input {
  width: 100%;
  padding: 16px;
  font-size: var(--fs-16-form-input);
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  background: var(--primary-bg);
  border: 1px solid var(--border-default);
  color: var(--text-white);
  font-family: "Poppins";
  line-height: 138%;
  height: 56px;
}
.contactus-section .inner-container .message .form-container .form-group .form-input:focus {
  border-color: var(--bg-white);
}
.contactus-section .inner-container .message .form-container .form-group .form-input::placeholder {
  vertical-align: top;
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  color: var(--text-legal-content);
  font-family: "Poppins", sans-serif;
}
.contactus-section .inner-container .message .form-container .form-group .form-input.form-textarea {
  min-height: 96px;
  height: auto;
}
.contactus-section .inner-container .message .form-container .form-group .form-label {
  font-weight: 300;
  line-height: 150%;
  font-size: var(--fs-14-form-label);
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
  color: var(--text-legal-content);
}
.contactus-section .inner-container .message .bottom {
  margin-top: 36px;
}
.contactus-section .inner-container .message .bottom .send-now {
  font-size: 18px;
  font-weight: var(--fw-400);
  width: 100%;
  height: 51px;
  background: var(--color-button-primary-gradient);
  border-radius: 4px;
  border: none;
}

.social-icon-group {
  display: flex;
  gap: 16px;
}
.social-icon-group .social-icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  background: rgba(162, 173, 196, 0.0705882353);
  border-radius: 3px;
  transition: all 0.2s ease;
}
.social-icon-group .social-icon .social-img {
  transition: all 0.2s ease;
}
.social-icon-group .social-icon:hover {
  background: rgba(162, 173, 196, 0.2666666667);
}
.social-icon-group .social-icon:hover svg,
.social-icon-group .social-icon:hover img {
  scale: 1.06;
}

.golden-gradient {
  padding: 20px 10px;
  height: 136px;
  background: var(--gradiant-gold-color);
  border-radius: 10px;
}

.gradient_heading {
  background: var(--color-primary-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.fmt {
  font-size: 14px;
  font-weight: var(--fw-400);
}

body:has(.why-digitathya-section) .contactus-section .inner-container .get-in-tch {
  padding: 40px 25px 20px;
}

@media (max-width: 1024px) {
  .contactus-section {
    padding: 30px 24px;
  }
  .contactus-section .inner-container .align-contact-us {
    grid-template-columns: minmax(280px, 1024px);
  }
  .contactus-section .inner-container .get-in-tch {
    padding: 24px 42px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt {
    gap: 40px;
    padding-block: 24px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top {
    gap: 24px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section.contactus-header-sec .heading_text {
    font-size: 36px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section .heading_text {
    font-size: 36px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section .heading_text .gradient_heading {
    font-size: 36px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .header_section .sub-heading_text {
    max-width: 700px;
    text-wrap-style: auto;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .get-in-tch-btn {
    width: 127px;
    height: 44px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-top .get-in-tch-btn .get-in-tch-btn-span {
    font-weight: 400;
    font-size: 18px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .email,
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .phone,
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .address {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 14px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .head {
    font-size: 18px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img {
    width: 30px;
    height: 30px;
  }
  .contactus-section .inner-container .get-in-tch .qstn-cnt-btm .contactus-icon-img svg {
    width: 16px;
    height: 16px;
  }
  .contactus-section .inner-container .message .top .header {
    font-size: 32px;
  }
  .contactus-section .inner-container .message .top .form-container .form-group .form-input {
    height: 48px;
  }
  body:has(.why-digitathya-section) .contactus-section .inner-container .get-in-tch {
    padding: 24px 42px;
  }
  .social-icon-group {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  body:has(.why-digitathya-section) .contactus-section .gradient-ring--left-top::after {
    display: block;
  }
}
@media (max-width: 767px) {
  .contactus-section {
    padding: 16px 16px;
    margin-top: 8px;
  }
  .contactus-section .inner-container .align-contact-us {
    gap: 0;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch {
    padding: 16px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt {
    padding-block: 0;
    gap: 24px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt::after {
    box-shadow: 19px 0px 230px 200px #182b55;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .get-in-tch-btn {
    font-size: 14px;
    height: 40px;
    width: 120px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .get-in-tch-btn .get-in-tch-btn-span {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .header_section .heading_text {
    font-size: 20px !important;
    line-height: 130%;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .header_section .heading_text .gradient_heading {
    font-size: 20px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .header_section.contactus-header-sec .heading_text {
    font-size: 20px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-top .header_section.contactus-header-sec .gradient_heading {
    font-size: 20px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm {
    gap: 16px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .email,
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .phone,
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .address {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 12px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .head {
    font-size: 16px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .content {
    font-size: 14px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .contactus-icon-img {
    width: 24px;
    height: 24px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .contactus-icon-img svg {
    width: 14px;
    height: 14px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .get-in-tch .qstn-cnt-btm .who-can-assist-address {
    max-width: 100%;
  }
  .contactus-section .inner-container .cont-us-flx-sec .message {
    padding: 16px 0;
  }
  .contactus-section .inner-container .cont-us-flx-sec .message .bottom {
    margin-top: 24px;
  }
  .contactus-section .inner-container .cont-us-flx-sec .message .bottom .btn-primary {
    font-size: 14px;
    padding: 12px;
  }
  .contactus-section .inner-container .message .top .header {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .contactus-section .inner-container .message .form-container {
    gap: 16px;
  }
  .contactus-section .inner-container .message .form-container .form-group .form-input {
    padding: 12px;
    height: 42px;
  }
  body:has(.why-digitathya-section) .contactus-section .inner-container .get-in-tch {
    padding: 16px 16px;
  }
  body:has(.why-digitathya-section) .contactus-section .inner-container .get-in-tch .qstn-cnt-top {
    gap: 8px;
  }
}
.flatpickr-calendar {
  background: var(--bg-secondary);
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  color: var(--text-white) !important;
}

span.flatpickr-weekday {
  color: #CCCCCC !important;
  text-transform: uppercase !important;
}

.flatpickr-current-month input.cur-year, .flatpickr-current-month .flatpickr-monthDropdown-months {
  color: transparent !important;
  background: linear-gradient(111.16deg, #CC835A -29.55%, #FCD9B8 126%, #F1A475 281.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  fill: var(--bg-highlight);
}

.flatpickr-day.today {
  background: linear-gradient(97.48deg, #CC835A -352.8%, #FCD9B8 37.55%, #F1A475 427.91%) !important;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  background: linear-gradient(97.48deg, rgba(204, 131, 90, 0.6392156863) -352.8%, rgba(252, 217, 184, 0.4901960784) 37.55%, rgba(241, 164, 117, 0.5294117647) 427.91%) !important;
  border-color: #e6e6e6 !important;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: var(--text-white);
}

.press_blog_section {
  padding: 80px 24px 40px 24px;
}
.press_blog_section .inner-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.press_blog_section .inner-container .blog-section .header_section {
  gap: 8px;
}
.press_blog_section .inner-container .blog-section .header_section .heading_text {
  font-size: 64px;
}
.press_blog_section .inner-container .blog-section .blog-card-align {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
  justify-content: space-between;
  overflow: hidden;
  padding: 16px;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(100.2deg, #C3C4BF -5.04%, #DADADA 8.02%, #FFFFFF 23.5%, #E5E5E5 51.62%, #FFFFFF 68.06%, #C1C0C0 93.57%);
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__duration {
  font-size: 14px;
  font-weight: var(--fw-400);
  color: var(--text-blue);
  display: inline-flex;
  align-items: center;
  line-height: 140%;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__duration .read-time {
  margin-inline: 6px;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__duration .read-time::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #455B8A;
  border-radius: 50%;
  margin-right: 4px;
  transform: translateY(-50%);
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__link {
  font-size: var(--fs-16-blog-read-more);
  line-height: 150%;
  font-weight: var(--fw-400);
  color: var(--bg-blue);
  text-decoration: underline;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__link:hover {
  opacity: 0.8;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__image {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  max-height: 210px;
  aspect-ratio: 348/210;
  width: 100%;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__image:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.178) 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__heading {
  font-family: "At Aero";
  font-size: 16px;
  font-weight: var(--fw-500);
  color: var(--color-black);
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press_blog_section .inner-container .blog-section .blog-card-align .blog-card__description {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: var(--fw-400);
  color: var(--bg-blue);
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .press_blog_section {
    padding: 24px 24px 40px 24px;
  }
  .press_blog_section .inner-container .blog-section .header_section .heading_text {
    font-size: 32px;
  }
  .press_blog_section .inner-container .blog-section .blog-card-align {
    gap: 20px;
  }
  .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card {
    height: 100%;
  }
  .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__meta .blog-card__duration {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .press_blog_section .inner-container .blog-section .blog-card-align {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card {
    gap: 12px;
  }
}
@keyframes rotateIcon {
  0% {
    transform-origin: center;
    transform: translate(0%, 0%) rotate(0deg);
  }
  100% {
    transform-origin: center;
    transform: translate(0%, 0%) rotate(360deg);
  }
}
@keyframes scaleIcon {
  0% {
    transform: translate(100%, -50%) scale(1);
  }
  100% {
    transform: translate(100%, -50%) scale(1.2);
  }
}
body:has(.products-section) .contactus-section .header_section .sub-heading_text {
  font-size: var(--fs-20-contact-subheading);
}
body:has(.products-section) .contactus-section .inner-container .right-section.message {
  justify-content: flex-start;
  padding-top: 60px;
}
body:has(.products-section) .contactus-section .inner-container .get-in-tch .qstn-cnt-btm {
  gap: 25px;
}

.products-section {
  position: relative;
  padding: 126px 24px;
  min-height: 620px;
  overflow: hidden;
}
.products-section .tittleImage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.products-section .inner-container {
  max-width: 606px;
  margin: auto;
  position: relative;
}
.products-section .inner-container .products-hero-sec {
  display: flex;
  gap: 24px;
  flex-direction: column;
  position: relative;
  z-index: 99;
}
.products-section .inner-container .products-hero-sec .authentic_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  gap: 6px;
  background: #344365;
  border-radius: 22px;
  max-width: fit-content;
  margin: auto;
  height: 45px;
}
.products-section .inner-container .products-hero-sec .authentic_box .auth-cont {
  font-family: "Poppins";
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 130%;
  color: var(--text-white);
}
.products-section .inner-container .products-hero-sec .header_section .gradient_heading {
  font-size: 48px;
}
.products-section .inner-container .products-hero-sec .header_section .product-sub-heading {
  color: var(--text-legal-content);
}
.products-section .inner-container .products-hero-sec .products_btn_sec {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.products-section .inner-container .products-hero-sec .products_btn_sec .get-started-btn {
  height: 51px;
}

.buy_smart-section {
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
.buy_smart-section::after {
  content: "";
  position: absolute;
  width: 309px;
  height: 309px;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(70, 96, 167, 0.36);
  filter: blur(132px);
  z-index: -1;
}
.buy_smart-section::before {
  content: "";
  position: absolute;
  width: 334px;
  height: 405px;
  background: url("/assets/images/icons/bg-img-overlay.svg") no-repeat;
  background-size: 100% 100%;
  background-position: right;
  top: 40%;
  right: 0%;
  transform: translate(19%, -50%);
  opacity: 0.2;
}
.buy_smart-section .inner-container {
  max-width: 760px;
  margin: auto;
}
.buy_smart-section .inner-container .buy-section-gap {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section {
  position: relative;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .wave-img {
  transform: translate(0, -25%);
  width: 100%;
  max-width: 530px;
  height: 530px;
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  inset: 0;
  rotate: 180deg;
  margin: auto;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .product-smart-img {
  max-width: 100%;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-bottom: 60px;
  position: relative;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section {
  max-width: fit-content;
  padding: 8px;
  background: var(--color-cta-gradient);
  position: relative;
  border-radius: 14px;
  max-height: 360px;
  height: 100%;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section::before {
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(89.29deg, #4B71FF -11.28%, #052A68 39.08%, #031A49 49.44%, #052A68 65.62%, #4B71FF 101.71%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 14px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel {
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 11%, rgb(0, 0, 0) 89%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 11%, rgb(0, 0, 0) 89%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 86px;
  height: 342px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  z-index: 0;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon {
  height: 80px;
  width: 80px;
  border-radius: 14px;
  line-height: 80px;
  text-align: center;
  font-size: 25px;
  user-select: none;
  color: black;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon:hover .buy-smar-icon {
  transition: all 0.1s ease-in-out;
  scale: 1.2;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon .buy-smar-icon {
  max-width: 49px;
  max-height: 49px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon:nth-child(even) {
  background: linear-gradient(100.2deg, #c3c4bf -5.04%, #ffffff 23.5%, #cbcbcb 48.32%, #ffffff 68.06%, #c1c0c0 93.57%);
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon:nth-child(odd) {
  background: linear-gradient(96.15deg, #cc9773 -47.48%, #ffefe2 -1.89%, #f9d4b3 38.9%, #ffefe2 60.5%, #e6aa80 97.27%);
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  gap: 12px;
  max-width: 610px;
  width: 100%;
  min-height: 358px;
  background: var(--color-cta-gradient);
  border-radius: 30px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(89.29deg, #4B71FF -11.28%, #052A68 39.08%, #031A49 49.44%, #052A68 65.62%, #4B71FF 101.71%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 30px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 1;
  width: 100%;
  position: relative;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  background: url("/assets/images/buy-smart-icon2.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 9;
  right: 0%;
  top: 0%;
  transform: translate(100%, -50%);
  animation: scaleIcon 1.5s ease-in-out infinite alternate;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img {
  position: absolute;
  width: 72px;
  height: 72px;
  right: 0%;
  bottom: 0%;
  transform: translate(105%, 80%);
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img .rotate-svg-con .rotate-svg-ico {
  animation: rotateIcon 5s linear infinite;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content {
  min-height: 245px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(85.59deg, #BBBDBF 4.43%, #FFFFFF 28.89%, #F1F1F2 50.17%, #FFFFFF 67.09%, #BBBDBF 88.96%);
  padding: 16px;
  border-radius: 24px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 498px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-header-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-head-wrapper .section-sub-heading {
  font-family: "At Aero";
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary-text-color);
  margin-bottom: 5px;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-head-wrapper .section-main-heading {
  font-family: "Poppins";
  font-size: 1.25rem;
  font-weight: var(--fw-500);
  line-height: 150%;
  color: var(--color-black);
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-description {
  font-family: "Poppins";
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  color: var(--bg-blue);
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #CFD2DB, transparent);
  inset: 0;
  margin: auto;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags .section-tag {
  font-size: 14px;
  max-width: 285px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  gap: 10px;
  height: 64px;
  border-radius: 8px;
  color: var(--text-white);
  background: #092148;
  white-space: nowrap;
}
.buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags .section-tag .icon-status {
  width: 34px;
  height: 34px;
}

.technology-section {
  padding: 60px 24px;
  position: relative;
  min-height: 921px;
  overflow: hidden;
}
.technology-section::after {
  content: "";
  position: absolute;
  width: 309px;
  height: 309px;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(70, 96, 167, 0.36);
  filter: blur(132px);
  z-index: -1;
}
.technology-section::before {
  content: "";
  position: absolute;
  width: 334px;
  height: 405px;
  background: url("/assets/images/icons/bg-img-overlay.svg") no-repeat;
  background-size: 100% 100%;
  background-position: right;
  top: 40%;
  right: 0%;
  transform: translate(19%, -50%);
  opacity: 0.2;
}
.technology-section .inner-container {
  max-width: 1200px;
  margin: auto;
}
.technology-section .inner-container .techno-box-sec {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
.technology-section .inner-container .techno-box-sec .header_section {
  max-width: 752px;
  margin: auto;
}
.technology-section .inner-container .techno-box-sec .header_section .sub-heading_text_16 {
  max-width: 620px;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box {
  padding: 20px;
  gap: 16px;
  min-height: 246px;
  border-radius: 14px;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(1) {
  grid-column: span 2/span 2;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(2) {
  grid-column: span 2/span 2;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(3) {
  grid-column: span 2/span 2;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(4) {
  grid-column: span 3/span 3;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(5) {
  grid-column: span 3/span 3;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--bg-white);
  border: 1px solid #D3D3D3;
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-head {
  font-family: "At Aero";
  font-weight: var(--fw-500);
  font-size: 24px;
  line-height: 120%;
  color: var(--bg-blue);
}
.technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-para {
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  color: var(--bg-blue);
}

.use_case-section {
  position: relative;
  padding: 103px 24px 60px;
}
.use_case-section::after, .use_case-section::before {
  content: "";
  position: absolute;
  background: url("/assets/images/use-case-bg-img.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 173px;
  height: 311px;
}
.use_case-section::after {
  top: 10%;
  right: 0%;
}
.use_case-section::before {
  top: 20%;
  left: 0%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.use_case-section .inner-container {
  max-width: 1204px;
  margin: auto;
}
.use_case-section .inner-container .use_case_layout-sec {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.use_case-section .inner-container .use_case_layout-sec .header_section .sub-heading_text {
  max-width: 620px;
  margin: auto;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section {
  position: relative;
  width: 100%;
  margin: 20px auto;
  perspective: 1200px;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-indicators {
  text-align: center;
  margin-top: 90px;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-indicators .dot {
  display: inline-block;
  width: 42px;
  height: 5px;
  margin: 12px 4px;
  background: #4660A7;
  border-radius: 22px;
  cursor: pointer;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-indicators .dot.active {
  background: var(--bg-white);
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item {
  position: absolute;
  border-radius: 20px;
  padding: 10px;
  width: 569px;
  height: auto;
  background: var(--bg-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.7s ease, background 0.7s ease;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item.active {
  background: var(--bg-white);
  z-index: 10;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card {
  padding: 20px;
  color: #333;
  text-align: center;
  background: var(--color-button-primary-gradient), var(--bg-white);
  border-radius: 14px;
  height: 348px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card.active-bg {
  background: var(--color-button-sescondary-gradient), var(--bg-white) !important;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_icon_sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-black-secondary);
  border: 3px solid var(--bg-white);
  border-radius: 50px;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_icon_sec.active-bg {
  background: rgb(204, 131, 90);
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  text-align: left;
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_head {
  font-weight: var(--fw-400);
  font-family: "At Aero";
  font-size: 44px;
  line-height: 150%;
  max-width: 416px;
  color: var(--color-gray-text);
}
.use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_para {
  font-size: 16px;
  line-height: 150%;
  color: var(--color-gray-text);
}

.why-digitathya-section {
  padding: 77px 24px;
  position: relative;
  background: url("/assets/images/why_choose_digitathya_bg.avif") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  overflow: hidden;
}
.why-digitathya-section::after {
  content: "";
  position: absolute;
  background: url("/assets/images/why-digi-blur-img.svg") no-repeat;
  background-size: 100% 100%;
  background-position: left;
  width: 413px;
  height: 287px;
  rotate: 200deg;
  top: 0%;
  left: 0%;
  transform: translate(0%, -90%);
  z-index: -1;
}
.why-digitathya-section .inner-container {
  max-width: 1200px;
  margin: auto;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .digi-logo-img {
  line-height: 0;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .header_section {
  gap: 12px;
  max-width: 495px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 20%);
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec .left-image {
  max-width: 433px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec {
  max-width: 600px;
  position: relative;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .digi-choose-vector-img {
  position: absolute;
  left: 0%;
  width: calc(100vw - 30%);
  bottom: 0%;
  z-index: -1;
  transform: translate(-3%, 30%);
  height: 808px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap {
  gap: 40px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec.choose-right-box-sec {
  margin-top: 85px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 18px;
  gap: 30px;
  background: var(--color-button-primary-gradient);
  border-radius: 14px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 80px;
  height: 80px;
  background: radial-gradient(67.85% 67.85% at 50% 50%, #607BCA 0%, #254FCA 100%);
  border-radius: 14.4px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-hdng {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 28px;
  line-height: 150%;
  color: var(--color-gray-text);
  margin-bottom: 10px;
}
.why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-para {
  font-weight: var(--fw-400);
  font-size: 20px;
  line-height: 150%;
  color: var(--text-blue);
}

.how-its-works-section {
  padding: 60px 24px;
}
.how-its-works-section .inner-container {
  max-width: 1200px;
  margin: auto;
}
.how-its-works-section .inner-container .works-layout-sec {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.how-its-works-section .inner-container .works-layout-sec .header_section {
  max-width: 620px;
  margin: auto;
}
.how-its-works-section .inner-container .works-layout-sec .header_section .sub-heading_text_16 {
  max-width: 620px;
  margin: auto;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout {
  display: flex;
  margin: 0 auto;
  position: relative;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout #progressSvg {
  display: none;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .bar-wrapper {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  position: absolute;
  inset: 0;
  margin: auto;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .bar-wrapper .bar-container {
  position: relative;
  width: 5px;
  background: #54658A;
  height: 100%;
  margin-top: 0;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .bar-wrapper .bar-container .sticky-bar {
  position: sticky;
  top: var(--header-height);
  height: var(--sticky-height);
  width: 5px;
  background: var(--bg-white);
  margin: 0 auto;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .bar-wrapper .bar-container .step {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #54658A;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s linear;
  border: 2px solid transparent;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .bar-wrapper .bar-container .step.active {
  background: #445FA7;
  border: 2px solid var(--bg-white);
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper {
  display: flex;
  flex-direction: column;
}
@supports (-webkit-touch-callout: none) {
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card {
    height: auto !important;
  }
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  height: auto !important;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card:nth-child(even) {
  flex-direction: row-reverse;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .anim-card {
  flex: 1;
  position: relative;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .anim-card .json-img {
  position: relative;
  height: auto;
  max-height: 350px;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .anim-card .json-img::before {
  content: "";
  position: absolute;
  width: 535px;
  max-width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/assets/images/stepBg.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: -1;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .content-card {
  flex: 1;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-direction: column;
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .content-card .progress-head {
  font-family: "At Aero";
  font-weight: var(--fw-500);
  font-size: 32px;
  line-height: 150%;
  color: var(--text-white);
}
.how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .content-card .progress-para {
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  color: var(--text-legal-content);
  max-width: 535px;
}

@media (max-width: 1260px) {
  .products-section .tittleImage {
    bottom: -20%;
  }
}
@media (max-width: 1024px) {
  body:has(.products-section) .contactus-section .inner-container .right-section.message {
    justify-content: flex-start;
    padding-top: 5px;
  }
  body:has(.products-section) .contactus-section .inner-container .get-in-tch .qstn-cnt-btm {
    gap: 30px;
  }
  .products-section {
    padding: 24px 24px;
  }
  .products-section .inner-container .products-hero-sec .header_section .gradient_heading {
    font-size: 32px;
  }
  .products-section .inner-container .products-hero-sec .header_section .sub-heading_text_20 {
    max-width: 460px;
    margin: auto;
  }
  .buy_smart-section {
    padding: 24px 24px;
    min-height: 526px;
  }
  .buy_smart-section .inner-container .buy-section-gap {
    gap: 40px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section {
    padding-bottom: 15px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper {
    padding-bottom: 0px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel {
    width: 60px;
    height: 254px;
    border-radius: 12px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list {
    gap: 5px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon {
    border-radius: 12px;
    height: 60px !important;
    width: 60px !important;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon .buy-smar-icon {
    max-width: 33px;
    max-height: 33px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec {
    min-height: 270px;
    padding: 12px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper {
    gap: 12px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper::after {
    width: 44px;
    height: 44px;
    transform: translate(100%, -100%);
  }
  @keyframes scaleIcon {
    0% {
      transform: translate(100%, -100%) scale(1);
    }
    100% {
      transform: translate(100%, -100%) scale(1.2);
    }
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper::before {
    width: 44px;
    height: 44px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img {
    width: 44px;
    height: 44px;
    transform: translate(85%, 90%);
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img .rotate-svg-con {
    width: 55px;
    height: auto;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content {
    gap: 12px;
    min-height: 180px;
    border-radius: 20px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-header-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-head-wrapper .section-sub-heading {
    font-size: 14px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-head-wrapper .section-main-heading {
    font-size: 16px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-description {
    font-size: 14px;
    max-width: 500px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags .section-tag {
    height: 54px;
  }
  .technology-section {
    padding: 24px 24px;
    height: auto;
  }
  .technology-section .inner-container .techno-box-sec {
    gap: 40px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec {
    gap: 16px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box {
    gap: 10px;
    min-height: 100%;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(1), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(2), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(3), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(4) {
    grid-column: span 3/span 3;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(5) {
    grid-column: span 6;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-icon-box {
    width: 42px;
    height: 42px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-head {
    font-size: 16px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-para {
    font-size: 14px;
  }
  .why-digitathya-section {
    padding: 24px 24px;
  }
  .why-digitathya-section::before {
    content: "";
    position: absolute;
    background: url("/assets/images/choose-digi-bg.svg") no-repeat;
    background-size: 100% 100%;
    left: 2%;
    top: 7%;
    width: 224px;
    height: 143px;
    transform: translate(-35%, 60%);
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec {
    flex-wrap: wrap;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .header_section .heading_text {
    max-width: 400px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec {
    margin: auto;
    position: relative;
    left: unset;
    right: unset;
    transform: unset;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec .left-image {
    max-width: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec {
    max-width: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .digi-choose-vector-img {
    width: 100vw;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap {
    gap: 23px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec {
    gap: 20px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box {
    gap: 14px;
    padding: 14px 14px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-hdng {
    font-size: 20px;
    line-height: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-para {
    font-size: 16px;
  }
  .use_case-section {
    padding: 24px 24px;
  }
  .use_case-section::after, .use_case-section::before {
    width: 82px;
    height: 147px;
  }
  .use_case-section::before {
    top: 10%;
    left: -2%;
  }
  .use_case-section::after {
    top: 3%;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track {
    height: 260px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item {
    width: 350px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card {
    height: 250px;
    padding: 14px 14px;
    gap: 10px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_icon_sec {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    padding: 5px 5px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec {
    gap: 12px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_head {
    font-size: 24px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_para {
    font-size: 16px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-indicators {
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card {
    padding-block: 30px;
  }
}
@media (max-width: 820px) {
  .how-its-works-section {
    position: relative;
    overflow-x: hidden;
    padding: 24px 24px;
  }
  .how-its-works-section .inner-container .works-layout-sec {
    position: relative;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    will-change: transform;
    width: 100%;
    /* Progress styling */
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .bar-wrapper {
    display: none;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper #progressTrack {
    stroke: var(--text-blue);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper #progressPath {
    transition: all 0.2s ease;
    stroke: var(--bg-white);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper #progressSvg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    flex-shrink: 0;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .step-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--text-blue);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.1s ease-in-out;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card:nth-child(odd), .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100%;
    height: 100%;
    gap: 1rem;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    z-index: 2;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card:nth-child(odd) .content-card, .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card:nth-child(even) .content-card {
    gap: 8px;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .json-img {
    min-height: 260px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .content-card .progress-head {
    font-size: 16px;
  }
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout.roadmap-wrapper .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card .content-card .progress-para {
    font-size: 14px;
  }
}
@media (max-width: 820px) {
  .how-its-works-section .inner-container .works-layout-sec .roadmap-scroll-layout .roadmap-scroll-anim-cards-wrapper .roadmap-scroll-anim-card {
    padding-block: 0;
  }
}
@media (max-width: 767px) {
  body:has(.products-section) .contactus-section .inner-container .right-section.message {
    justify-content: flex-start;
    padding-top: 20px;
  }
  body:has(.products-section) .contactus-section .inner-container .get-in-tch .qstn-cnt-btm {
    gap: 10px;
  }
  .why-digitathya-section {
    padding: 24px 16px;
    background: transparent;
  }
  .why-digitathya-section::before {
    content: "";
    background: url("/assets/images/choose-digi-bg-mob.svg") no-repeat;
    position: absolute;
    width: 105px;
    height: 156px;
    transform: translate(3%, 75%);
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec {
    flex-wrap: wrap;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec {
    flex-direction: column-reverse;
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec {
    margin-top: -10%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .digi-logo-img .logo-img-white {
    height: 40px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .header_section {
    max-width: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec {
    margin: auto;
    position: relative;
    left: unset;
    right: unset;
    transform: unset;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-img-sec .left-image {
    padding-inline: 10%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec {
    width: 100%;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec {
    gap: 12px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec.choose-right-box-sec {
    margin-top: unset;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digit-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    padding: 5px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-hdng {
    font-size: 16px;
  }
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-right-sec .choose-digi-grid-gap .choose-box-sec .choose-digi-box .choose-digi-cnt-sec .choose-digi-para {
    font-size: 12px;
  }
  .products-section {
    min-height: 440px;
    padding: 40px 16px;
  }
  .products-section .inner-container .products-hero-sec {
    margin-top: 60px;
  }
  .products-section .inner-container .products-hero-sec .header_section .gradient_heading {
    font-size: 24px;
  }
  .products-section .tittleImage {
    position: relative;
    max-height: 400px;
    display: none;
  }
  .products-section .tittleImage svg {
    max-height: 450px;
  }
  .buy_smart-section {
    padding: 16px 16px;
  }
  .buy_smart-section .inner-container .buy-section-gap {
    gap: 24px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section {
    rotate: 90deg;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: -116px auto -116px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section::before {
    border-radius: 10px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel {
    width: 40px;
    height: 280px;
    border-radius: 8px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list {
    gap: 10px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel .carousel-list .btn-icon {
    rotate: -90deg;
    width: 40px !important;
    height: 40px !important;
    padding: 8px 7px;
    border-radius: 8px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec {
    padding: 12px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper::after {
    width: 29px;
    height: 29px;
    transform: translate(100%, -50%);
  }
  @keyframes scaleIcon {
    0% {
      transform: translate(100%, -50%) scale(1);
    }
    100% {
      transform: translate(100%, -50%) scale(1.2);
    }
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper::before {
    width: 44px;
    height: 44px;
    transform: translate(65%, 50%);
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img {
    position: absolute;
    width: 44px;
    height: 44px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img .rotate-svg-con {
    min-width: 37px;
    max-width: 100%;
    transform: translate(-55%, 0%);
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .rotate-img .rotate-svg-con .rotate-svg-ico {
    animation: rotateIcon 5s linear infinite;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content {
    gap: 6px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header {
    align-items: start;
    flex-direction: column;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-header .section-head-wrapper .section-main-heading {
    font-size: 14px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .product-info-content .section-description {
    font-size: 12px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags {
    flex-wrap: wrap;
    gap: 7px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags::before {
    display: none;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-info-right-sec .product-info-wrapper .section-tags .section-tag {
    max-width: 100%;
  }
  .technology-section {
    padding: 16px 16px;
  }
  .technology-section .inner-container .techno-box-sec {
    gap: 24px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box {
    padding: 14px 14px;
    gap: 10px;
    min-height: 100%;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(1), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(2), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(3), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(4), .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box:nth-child(5) {
    grid-column: span 6;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-icon-box {
    width: 42px;
    height: 42px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-head {
    font-size: 14px;
  }
  .technology-section .inner-container .techno-box-sec .techno-grid-sec .techno-sec .trust-box .techno-cont-para {
    font-size: 12px;
  }
  .use_case-section {
    padding: 24px 16px;
  }
  .use_case-section::after, .use_case-section::before {
    display: none;
  }
  .use_case-section .inner-container .use_case_layout-sec {
    gap: 24px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section {
    margin: auto auto;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track {
    height: 200px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item {
    max-width: 300px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card {
    height: 100%;
    padding: 8px 8px;
    gap: 8px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_icon_sec {
    width: 30px;
    height: 30px;
    padding: 5px 5px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_head {
    font-size: 16px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-track .item .card .use_case_cont_sec .use_case_para {
    font-size: 12px;
  }
  .use_case-section .inner-container .use_case_layout-sec .use_case_card-section .carousel-indicators {
    margin-top: 24px;
  }
}
@media (max-width: 530px) {
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section {
    margin: -80px auto -80px;
  }
  .buy_smart-section .inner-container .buy-section-gap .buy_smart_img-section .section-content-wrapper .product-carousel-left-section .product-carousel {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .why-digitathya-section .inner-container .choose-digitathya-flx-sec .why-digitathya-left-sec .digitathya-cnt-sec .digi-logo-img .logo-img-white {
    height: 32px;
  }
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.events-home-section .products-section .header_section .heading_text {
  font-size: 48px;
}
.events-home-section .event-home-bg-sec {
  background: url("/assets/images/events/events-home-bg.webp") no-repeat;
  background-size: cover;
  display: flex;
  min-height: 771px;
}
.events-home-section .event-home-bg-sec .event-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
  object-fit: cover;
}
.events-home-section .event-home-bg-sec .inner-container {
  max-width: 100%;
}
.events-home-section .event-home-bg-sec .inner-container .sub-heading_text_20 {
  max-width: 570px;
  margin: auto;
  color: var(--text-white);
}
.events-home-section .event-home-bg-sec .inner-container .products-hero-sec {
  gap: 12px;
}
.events-home-section .event-home-bg-sec .inner-container .products-hero-sec .sub-heading_text {
  color: var(--text-white);
}
.events-home-section .event-home-bg-sec .inner-container .products-hero-sec .products_btn_sec {
  margin-bottom: 12px;
}
.events-home-section .event-home-bg-sec .social-icon-group {
  justify-content: center;
}
.events-home-section .upcoming-events-home {
  padding: 60px 24px;
}
.events-home-section .upcoming-events-home .inner-container {
  max-width: 1200px;
  margin: auto;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .header_section {
  max-width: 100%;
  margin: unset;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box.upcomingEventsSwiper {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box.upcomingEventsSwiper .swiper-wrapper {
  display: flex;
  gap: 0;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .swiper-slide {
  width: auto;
  flex-shrink: 0;
  height: auto;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box {
  padding: 20px;
  gap: 16px;
  border-radius: 14px;
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  height: 100%;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box {
  width: 100%;
  position: relative;
  display: flex;
  gap: 20px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box {
  background: linear-gradient(139.47deg, #C3C4BF 15.83%, #FFFFFF 33.66%, #CBCBCB 49.17%, #FFFFFF 61.5%, #C1C0C0 77.44%);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  height: 100%;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box::before {
  content: "";
  position: absolute;
  border: 0.1px solid var(--bg-blue);
  height: calc(100% - 55px);
  left: 25px;
  top: 0%;
  transform: translate(0%, 35%);
  opacity: 0.2;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box .look-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 45px;
  height: 45px;
  background: var(--bg-blue);
  box-shadow: 0px 1.02273px 2.04545px rgba(67, 71, 197, 0.25);
  border-radius: 50px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec {
  display: flex;
  gap: 24px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec .upcoming-event-box {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  gap: 17px;
  min-width: 144px;
  height: 28px;
  background: rgba(12, 25, 54, 0.11);
  border-radius: 4px;
  font-family: "At Aero";
  font-style: normal;
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 16px;
  color: var(--color-black);
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-head {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 26px;
  line-height: 30px;
  color: var(--color-black);
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-para {
  font-weight: var(--fw-400);
  font-size: 20px;
  line-height: 150%;
  color: var(--color-black);
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-box-time {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 14px;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .know_more_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 159px;
  max-width: 100%;
  height: 51px;
  border: 0.5px solid #7484A7;
  border-radius: 4px;
  font-weight: var(--fw-400);
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--color-black);
  transition: opacity 0.3s ease;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .know_more_btn:hover {
  font-weight: var(--fw-500);
  background: rgba(129, 129, 129, 0.0901960784);
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .look-digitathya-bo > x-sec .digi-look-box {
  opacity: 1;
}
.events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .look-digitathya-bo > x-sec .digi-look-box .upcoming_digi_box {
  display: flex;
  flex-direction: column;
}
.events-home-section .events-home-ongoing-section {
  padding: 60px 24px;
  position: relative;
}
.events-home-section .events-home-ongoing-section::after {
  content: "";
  position: absolute;
  background: url(/assets/images/ongoing-event-home-grid-bg.svg) no-repeat;
  width: 153px;
  height: 405px;
  background-position: left;
  background-size: 100% 100%;
  left: 0%;
  top: 0%;
  transform: translate(0%, -10%);
  z-index: -1;
}
.events-home-section .events-home-ongoing-section .inner-container {
  max-width: 1200px;
  margin: auto;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .ongingEventsSwiper {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .ongingEventsSwiper .swiper-wrapper {
  display: flex;
  gap: 0;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .ongingEventsSwiper .swiper-wrapper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  height: auto;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec {
  background: linear-gradient(89.29deg, #4B71FF -11.28%, #052A68 39.08%, #031A49 49.44%, #052A68 65.62%, #4B71FF 101.71%);
  padding: 2px;
  border-radius: 10px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  background: linear-gradient(186.03deg, #1B407E -61.39%, #0D2549 42.33%, #1B407E 101.39%);
  border-radius: 10px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-home-img-sec {
  position: relative;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-home-img-sec .events-home-img {
  border-radius: 10px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-home-img-sec .events-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-home-img-sec .events-live-btn {
  position: absolute;
  background: var(--color-live-btn);
  text-transform: uppercase;
  height: 20px;
  min-width: 37px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: var(--fw-500);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5%;
  right: 2%;
  animation: pulse 2s infinite;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-location-box {
  min-width: 154px;
  max-width: fit-content;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: rgba(162, 173, 196, 0.2);
  border-radius: 4px;
  padding: 7px 7px;
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 16px;
  color: var(--text-white);
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-location-box .event-img-align {
  display: flex;
  align-items: center;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content .head-events-ongoing {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 32px;
  line-height: 36px;
  color: var(--text-white);
}
.events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .events-home-border-sec .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content .para-events-ongoing {
  font-weight: var(--fw-400);
  font-size: 20px;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: var(--text-legal-content);
}
.events-home-section .home-past-events {
  position: relative;
}
.events-home-section .home-past-events::after {
  content: "";
  position: absolute;
  background: url(/assets/images/past-event-home-grid-bg.svg) no-repeat;
  width: 114px;
  height: 405px;
  background-position: left;
  background-size: 100% 100%;
  right: 0%;
  top: 0%;
  transform: translate(0%, 0%);
  z-index: -1;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap {
  display: flex;
  gap: 16px;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select {
  position: relative;
  min-width: 140px;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-white);
  cursor: pointer;
  padding: 12px 21px;
  gap: 10px;
  height: 51px;
  border: 1px solid var(--text-white);
  border-radius: 4px;
  white-space: nowrap;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-trigger .event-select-name {
  font-weight: var(--fw-500);
  font-size: 18px;
  line-height: 150%;
  color: var(--text-white);
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-trigger .arrow {
  transition: transform 0.3s ease;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select.active .arrow {
  transform: rotate(180deg);
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select.active .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 100%;
  background: var(--primary-bg);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 10;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-options .list-item {
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-white);
  cursor: pointer;
}
.events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-options .list-item:hover {
  background: var(--bg-white);
  color: var(--color-black);
}
.events-home-section .home-past-events .press_blog_section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}
.events-home-section .home-past-events .press_blog_section .inner-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .header_section .heading_text {
  font-size: 42px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align {
  margin-top: 60px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card.visible {
  display: flex;
  opacity: 1;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card.hidden {
  display: none;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card_head .blog-card__duration {
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 24px;
  color: var(--bg-blue);
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card_head .blog-card__link_box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 71px;
  height: 33px;
  border: 1px solid #7484A7;
  border-radius: 8px;
  font-weight: var(--fw-500);
  font-size: 14px;
  line-height: 150%;
  color: var(--color-black);
  padding: 6px 12px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image .event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image .event-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
  flex-direction: column;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image .event-img-placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image .event-img-placeholder .placeholder-inner .placeholder-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  color: #9ca3af;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image .event-img-placeholder .placeholder-inner span {
  font-weight: var(--fw-500);
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__media .blog-card__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 12px;
}
.events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__meta {
  justify-content: flex-end;
  margin-top: auto;
}
.events-home-section .home-past-events .press_blog_section .inner-container .viewMoreWrapper {
  display: none;
}

.event-gallery-section {
  padding: 60px 24px;
}
.event-gallery-section .inner-container {
  max-width: 1200px;
  margin: auto;
}
.event-gallery-section .inner-container .event-gallery-section-align {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.event-gallery-section .inner-container .event-gallery-section-align .event-icon-align {
  display: flex;
  align-items: center;
  gap: var(--gap-icon-head-title);
}
.event-gallery-section .inner-container .event-gallery-section-align .event-icon-align .button-back {
  background: transparent;
}
.event-gallery-section .inner-container .event-gallery-section-align .event-icon-align .button-back .arrow-icon {
  width: var(--back-arrow-width);
  max-height: var(--back-arrow-width);
}
.event-gallery-section .inner-container .event-gallery-section-align .event-icon-align .button-back .arrow-icon:hover {
  opacity: 0.8;
  cursor: pointer;
}
.event-gallery-section .inner-container .event-gallery-section-align:has(.button-back) .sub-heading_text {
  margin-left: calc(var(--back-arrow-width) + var(--gap-icon-head-title));
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  grid-template-areas: "card1 card2 card3 card3" "card4 card5 card3 card3";
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card {
  aspect-ratio: 167/157;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: default;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
  object-fit: cover;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img:not([src=""]) {
  background: none;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card video {
  pointer-events: none;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 31, 70, 0) 24.86%, rgba(12, 31, 70, 0.5) 62.43%, #0C1F46 94.8%);
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(1) {
  grid-area: card1;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(2) {
  grid-area: card2;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(3) {
  grid-area: card5;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(4) {
  grid-area: card4;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(5) {
  grid-area: card3;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 10px 10px;
  z-index: 1;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-head {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 24px;
  line-height: 27px;
  color: var(--text-white);
  margin-bottom: 6px;
}
.event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-para {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 16px;
  color: var(--text-legal-content);
}

.gallery-event-section .event-gallery-section {
  padding: 60px 24px 40px 24px;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .header_section {
  gap: 8px;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .header_section .event-icon-align .heading_text {
  font-size: var(--fs-64-heading-page);
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card {
  cursor: pointer;
  aspect-ratio: 167/157;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
  object-fit: cover;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img:not([src=""]) {
  background: none;
}
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(1),
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(2),
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(3),
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(4),
.gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card:nth-child(5) {
  grid-area: unset;
}

/* Preview Modal */
.event-preview-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2588235294);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.event-preview-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-preview-modal .preview-card {
  width: 90%;
  max-width: 748px;
  background: var(--bg-secondary);
  border-radius: 14px;
  overflow: hidden;
  padding: 30px 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.3019607843);
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.event-preview-modal .preview-card .preview-header-sec {
  position: relative;
}
.event-preview-modal .preview-card .preview-header-sec .preview-head {
  font-family: "At Aero";
  font-weight: var(--fw-500);
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--text-white);
}
.event-preview-modal .preview-card .preview-header-sec .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 1px solid var(--text-white);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  background-color: transparent;
  color: var(--text-white);
  outline: none;
}
.event-preview-modal .preview-card .preview-header-sec .close-btn:hover {
  opacity: 0.8;
}
.event-preview-modal .preview-card .preview-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/8;
  max-height: 315px;
  overflow: hidden;
}
.event-preview-modal .preview-card .preview-body .preview-image {
  max-width: 100%;
  border-radius: 8px;
  width: 560px;
}
.event-preview-modal .preview-card .preview-body .preview-video {
  display: none;
}
.event-preview-modal .preview-card .preview-body .media-placeholder {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 560px;
  z-index: 1;
  background: linear-gradient(110deg, var(--bg-secondary) 25%, #3e5a91 37%, var(--bg-secondary) 63%);
  background-size: 200% 100%;
  animation: mirrorShimmer 1.4s ease infinite;
  border-radius: 12px;
}
@keyframes mirrorShimmer {
  to {
    background-position-x: -200%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-preview-modal .preview-card .preview-body .media-placeholder {
    animation: none;
  }
}
.event-preview-modal .preview-card .preview-body .preview-media {
  position: relative;
  z-index: 2;
}
.event-preview-modal .preview-card .preview-body .preview-image,
.event-preview-modal .preview-card .preview-body .preview-embed {
  max-width: 560px;
  width: 100%;
  height: 100%;
  max-height: 315px;
  object-fit: cover;
  border-radius: 10px;
  border: none;
}
.event-preview-modal .preview-card .preview-body .nav-arrow {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.event-preview-modal .preview-card .preview-body .nav-arrow.visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}
.event-preview-modal .preview-card .preview-body .nav-arrow.disabled {
  opacity: 0.2 !important;
  pointer-events: none !important;
}
.event-preview-modal .preview-card .preview-body .no-media-message {
  color: #aaa;
  text-align: center;
  padding: 40px;
  margin: 0;
  font-size: 1.1rem;
}
@media (prefers-color-scheme: light) {
  .event-preview-modal .preview-card .preview-body .no-media-message {
    color: #666;
  }
}
.event-preview-modal .preview-card .preview-body .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-white);
  width: 24px;
  height: 24px;
  background: var(--text-legal-content);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.event-preview-modal .preview-card .preview-body .nav-arrow.left {
  left: 2%;
}
.event-preview-modal .preview-card .preview-body .nav-arrow.right {
  right: 2%;
}
.event-preview-modal .preview-card .preview-body .nav-arrow:hover {
  background: var(--bg-white);
}
.event-preview-modal .preview-card .preview-footer {
  text-align: center;
}
.event-preview-modal .preview-card .preview-footer .event-title {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: var(--text-white);
  margin-bottom: 6px;
}
.event-preview-modal .preview-card .preview-footer .event-subtitle {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: var(--text-legal-content);
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-navigation.swiper-btn {
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-legal-content);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.swiper-navigation.swiper-btn:hover {
  background: var(--bg-white);
}
.swiper-navigation.swiper-btn.swiper-btn-prev {
  left: 0;
}
.swiper-navigation.swiper-btn.swiper-btn-next {
  left: 45px;
}

@media (max-width: 1024px) {
  .events-home-section .products-section .header_section .heading_text {
    font-size: 42px;
    line-height: 130%;
  }
  .events-home-section .event-home-bg-sec {
    min-height: 453px;
  }
  .events-home-section .event-home-bg-sec .inner-container .products-hero-sec {
    gap: 24px;
  }
  .events-home-section .upcoming-events-home {
    padding: 24px 24px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec {
    gap: 30px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box.upcomingEventsSwiper {
    padding-bottom: 0px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box {
    padding: 12px 12px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box {
    gap: 16px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box::before {
    left: 20px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box .look-icon-box {
    width: 32px;
    height: 32px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec {
    gap: 10px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec .upcoming-event-box {
    min-width: fit-content;
    font-size: 12px;
    padding: 4px 4px;
    gap: 7px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-head {
    font-size: 16px;
    line-height: 120%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-para {
    font-size: 14px;
    line-height: 150%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-box-time {
    font-size: 12px;
    line-height: 100%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .know_more_btn {
    height: 45px;
  }
  .events-home-section .home-past-events::after {
    content: "";
    display: none;
  }
  .events-home-section .events-home-ongoing-section {
    padding: 24px 24px;
    margin-top: 40px;
  }
  .events-home-section .events-home-ongoing-section::after {
    display: none;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec {
    gap: 30px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .ongingEventsSwiper {
    padding-bottom: 0px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec {
    padding: 12px 12px 16px 12px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-home-img-sec .events-home-img {
    min-height: 158px;
    object-fit: cover;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-home-img-sec .events-play-icon .events-play-img {
    width: 40px;
    height: 40px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec {
    gap: 16px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec .events-location-box {
    min-width: 136px;
    font-size: 12px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content {
    gap: 10px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content .head-events-ongoing {
    font-size: 20px;
    line-height: 100%;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .swiper-slide .events-home-box-sec .events-img-content-sec .events-ongoing-align-sec .events-ongoing-content .para-events-ongoing {
    font-size: 14px;
    line-height: 150%;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container {
    gap: 30px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align .header_section .heading_text {
    font-size: 32px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align .filter-select-wrap {
    font-size: 16px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align {
    margin-top: 30px;
    gap: 12px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card .blog-card_head .blog-card__duration {
    font-size: 12px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__card .blog-card_head .blog-card__link_box {
    font-size: 12px;
    padding: 4px 10px;
    height: 26px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .btn-schedule-demo {
    height: 51px;
    font-size: 18px;
  }
  .event-gallery-section {
    padding: 24px 24px 40px 24px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align {
    gap: 30px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .event-icon-align .arrow-icon {
    margin-top: 5px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
    grid-template-areas: "card1 card2" "card4 card5" "card3 card3";
    margin-top: 0px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card {
    aspect-ratio: unset;
    max-height: 252px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-cover-img {
    width: 100%;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-head {
    font-size: 16px;
    line-height: 100%;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-para {
    font-size: 14px;
    line-height: 100%;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .btn-primary {
    height: 51px;
    font-size: 18px;
  }
  .gallery-event-section .event-gallery-section {
    padding: 40px 24px;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align {
    gap: 24px;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    gap: 18px;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card {
    aspect-ratio: 275/262;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-para {
    font-size: 12px;
  }
  .event-preview-modal .preview-card {
    padding: 20px 20px;
    gap: 42px;
  }
  .event-preview-modal .preview-card .preview-header-sec .preview-head {
    font-size: 24px;
  }
  .swiper-navigation.swiper-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .events-home-section .products-section .header_section .heading_text {
    font-size: 24px;
  }
  .events-home-section .event-home-bg-sec .inner-container .products-hero-sec {
    margin-top: 40px;
  }
  .events-home-section .event-home-bg-sec .inner-container .products-hero-sec .authentic_box .auth-cont {
    font-size: 12px;
  }
  .events-home-section .upcoming-events-home {
    padding: 24px 16px !important;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec {
    gap: 24px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .look-icon-outer-box .look-icon-box {
    width: 32px;
    height: 32px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec {
    gap: 10px;
    flex-wrap: wrap;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-date-sec .upcoming-event-box {
    font-size: 12px;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-head {
    font-size: 20px;
    line-height: 100%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-content-para {
    font-size: 14px;
    line-height: 150%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .upcoming-event-content .upcoming-event-box-time {
    font-size: 12px;
    line-height: 100%;
  }
  .events-home-section .upcoming-events-home .inner-container .upcoming-event-sec .upcoming-digitathya-box .upcoming-digi-box .icon_layout-box .upcoming-event-date-content-sec .know_more_btn {
    height: 45px;
    font-size: 14px;
  }
  .events-home-section .events-home-ongoing-section {
    padding: 24px 16px;
    margin-top: 0;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec {
    gap: 24px;
  }
  .events-home-section .events-home-ongoing-section .inner-container .ongoing-home-sec .ongingEventsSwiper .products_btn_sec .get-started-btn {
    height: 45px;
  }
  .events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select {
    min-width: 120px;
  }
  .events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-trigger {
    height: 48px;
    padding: 12px;
  }
  .events-home-section .home-past-events .event-home-select.filter-select-wrap .custom-select .select-trigger .event-select-name {
    font-size: 14px;
  }
  .events-home-section .home-past-events .press_blog_section {
    padding: 24px 16px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container {
    gap: 24px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align .event-home-select {
    height: 48px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align {
    margin-top: 24px;
    gap: 16px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__heading {
    font-size: 14px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .blog-card-align .blog-card__description {
    font-size: 12px;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .btn-schedule-demo {
    font-size: 14px;
    height: 32px;
  }
  .event-gallery-section {
    padding: 24px 16px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align {
    gap: 24px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: auto auto;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-head {
    font-size: 14px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card .event-gallery-content .event-gallery-content-para {
    font-size: 12px;
  }
  .event-gallery-section .inner-container .event-gallery-section-align .btn-schedule-demo {
    font-size: 14px;
    height: 32px;
  }
  .gallery-event-section .event-gallery-section {
    padding: 16px;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: unset;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec .event-gallery-card {
    aspect-ratio: 13/9;
  }
  .swiper-navigation.swiper-btn {
    width: 28px;
    height: 28px;
  }
  .swiper-navigation.swiper-btn.swiper-btn-next {
    left: 40px;
  }
  .event-preview-modal .preview-card .preview-header-sec .close-btn {
    width: 20px;
    height: 20px;
  }
  .event-preview-modal .preview-card .preview-header-sec .preview-head {
    font-size: 14px;
    line-height: 150%;
  }
  .event-preview-modal .preview-card .preview-footer .event-title {
    font-size: 14px;
    line-height: 100%;
  }
  .event-preview-modal .preview-card .preview-footer .event-subtitle {
    font-size: 12px;
    line-height: 100%;
  }
  .event-preview-modal .preview-card .preview-body .preview-image,
  .event-preview-modal .preview-card .preview-body .preview-embed,
  .event-preview-modal .preview-card .preview-body .media-placeholder {
    width: 70%;
    max-width: 410px;
  }
}
@media (max-width: 620px) {
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align {
    flex-direction: column;
    align-items: flex-start;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align .event-home-select {
    width: 100%;
  }
  .events-home-section .home-past-events .press_blog_section .inner-container .blog-section .select-event-align .event-home-select.filter-select-wrap .custom-select {
    flex: 1;
  }
}
@media (max-width: 600px) {
  .preview-body img {
    max-height: 300px;
  }
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: unset;
  }
}
@media (max-width: 419px) {
  .gallery-event-section .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .event-gallery-section .inner-container .event-gallery-section-align .gallery-event-sec {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "card1" "card2" "card3" "card4" "card5";
  }
}

/*# sourceMappingURL=events-home-main.css.map */
