/* English Fonts */
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-ExtraBold.otf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-SemiBold.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Light.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Arabic Fonts */
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic65Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/frutigerltarabic75black.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 500; /* Medium */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 400; /* Regular */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic45Light.ttf") format("truetype");
  font-weight: 300; /* Light */
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_SemiBold.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Light.ttf") format("truetype");
  font-weight: 300;
}
.font-ar {
  font-family: "Brando", sans-serif;
}

.font-en {
  font-family: "Ninetea", sans-serif;
}

.w-fit {
  width: fit-content !important;
}

.cursor-pointer {
  cursor: pointer;
}

.required {
  color: red;
}

.custom-select {
  cursor: pointer;
}

.tab-btn {
  user-select: none;
}

.hover-tab:hover {
  transition: all 200ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer;
}

.hover-icon:hover svg {
  cursor: pointer;
}

.hover-icon:hover svg path {
  transition: all 200ms ease-in-out;
  filter: brightness(40%);
  cursor: pointer;
}

.hover-icon-primary:hover svg {
  cursor: pointer;
}

.hover-icon-primary:hover svg path {
  transition: all 200ms ease-in-out;
  stroke: var(--primary) !important;
}

.hover-icon-secondary:hover svg {
  cursor: pointer;
}

.hover-icon-secondary:hover svg path {
  /* fill: var(--secondary) !important; */
  transition: all 200ms ease-in-out;
  stroke: var(--secondary) !important;
}

.text-ellipsis {
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}
.loader-wrapper img {
  width: 300px;
  margin-bottom: 10px;
}
.loader-wrapper .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #00b4d8, #0077b6, #90e0ef);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.loader-wrapper .loading-text {
  color: lightgrey;
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
}
.loader-wrapper .loading-text .dots::after {
  content: "";
  display: inline-block;
  width: 1ch;
  text-align: left;
  animation: dots 1.5s steps(4, end) infinite;
}
.loader-wrapper.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.link-primary {
  color: #001e43;
}
.link-primary:hover, .link-primary:focus {
  color: #001e43;
  text-decoration: underline;
}

.primary-btn {
  padding: 14px 32px;
  border-radius: 20px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #001e43;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.primary-btn:not(.advance-btn).btn-border {
  border: 1px solid #d2e5ec;
}
.primary-btn:not(.advance-btn):hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #001e43;
}
.primary-btn.advance-btn {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #001e43;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.primary-btn.advance-btn.learn-more-btn {
  background-color: #eef1ff;
}
.primary-btn.advance-btn.learn-more-btn:hover {
  color: #001e43;
}
.primary-btn.advance-btn.card-btn {
  background-color: #eef1ff;
  border: 1px solid #d2e5ec;
}
.primary-btn.advance-btn.card-btn span {
  border-color: transparent;
}
.primary-btn.advance-btn.card-btn:hover {
  width: 100%;
  justify-content: flex-start;
  color: #001e43;
}
.primary-btn.advance-btn span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff !important;
  border: 1px solid #d2e5ec;
  z-index: -1;
  transition: all 0.4s ease;
}
.primary-btn.advance-btn span img {
  opacity: 0;
  width: 18px;
  height: 18px;
  transition: opacity 0.3s ease;
}
.primary-btn.advance-btn:hover {
  color: #fff;
  padding-right: 62px;
}
.primary-btn.advance-btn:hover span {
  width: 48px;
  transition: all 0.4s ease;
}
.primary-btn.advance-btn:hover span img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.secondary-btn {
  padding: 14px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 250ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001e43;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.secondary-btn.btn-border {
  border: 1px solid rgba(210, 229, 236, 0.1);
}
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: all 250ms ease-in-out;
}
.back-to-top-btn.active {
  display: block;
  animation: fadein 0.3s ease-in-out;
}
.back-to-top-btn p {
  color: #f5f5f5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin: 0;
}
.back-to-top-btn:hover {
  bottom: 5.5%;
}

.main-form label {
  color: #141414;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.main-form input,
.main-form select,
.main-form textarea {
  min-height: 48px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  caret-color: #001e43;
  background: rgba(240, 242, 255, 0.2);
  color: #141414;
  border: 1px solid #d2e5ec;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}
.main-form input:hover, .main-form input:focus,
.main-form select:hover,
.main-form select:focus,
.main-form textarea:hover,
.main-form textarea:focus {
  border-color: #141414;
}
.main-form input.secondary-variant,
.main-form select.secondary-variant,
.main-form textarea.secondary-variant {
  color: #fff;
  caret-color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
}
.main-form .select-wrapper {
  position: relative;
}
.main-form .select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  z-index: 1;
  background: rgba(240, 242, 255, 0.2);
  color: #fff;
  text-transform: lowercase;
}
.main-form .select-wrapper::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 60%;
  transform: translateY(-60%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1.60372 0.555285C1.7256 0.716659 2.08951 1.1984 2.30624 1.47611C2.74031 2.03233 3.33342 2.77142 3.97323 3.50831C4.61627 4.24893 5.29178 4.97022 5.89189 5.50046C6.19281 5.76634 6.45714 5.96837 6.67527 6.09987C6.88042 6.22355 7.00161 6.24927 7.00161 6.24927C7.00161 6.24927 7.11923 6.22355 7.32437 6.09988C7.5425 5.96838 7.80684 5.76635 8.10775 5.50047C8.70786 4.97022 9.38337 4.24892 10.0264 3.5083C10.6662 2.7714 11.2593 2.0323 11.6934 1.47608C11.9101 1.19837 12.2735 0.717304 12.3954 0.555928C12.6411 0.222405 13.1111 0.150469 13.4446 0.396102C13.7781 0.641734 13.8494 1.11123 13.6037 1.44476L13.6018 1.4473C13.474 1.61655 13.0971 2.11556 12.8759 2.39892C12.4321 2.9677 11.8216 3.72861 11.1591 4.49171C10.4997 5.25109 9.77408 6.02979 9.10096 6.62454C8.76526 6.92116 8.42497 7.18788 8.0988 7.3845C7.79322 7.56872 7.40633 7.75 6.99982 7.75C6.59331 7.75 6.20642 7.56871 5.90084 7.3845C5.57468 7.18787 5.23439 6.92116 4.89869 6.62454C4.22557 6.02979 3.4999 5.2511 2.84058 4.49173C2.17803 3.72863 1.5676 2.96774 1.12372 2.39896C0.902432 2.11541 0.525506 1.61637 0.397929 1.44747L0.396279 1.44528C0.150645 1.11176 0.22154 0.641787 0.555062 0.396152C0.888572 0.150526 1.35808 0.221792 1.60372 0.555285Z' fill='white'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

.cs-toast {
  background: #fff !important;
  color: #141414 !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.social-links-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links-container a img,
.social-links-container a svg {
  transition: all 250ms ease-in-out;
}
.social-links-container a img:hover,
.social-links-container a svg:hover {
  transform: translateY(-10%);
}

.counter {
  font-family: "Ninetea", sans-serif;
}

.primary-color {
  color: #001e43;
}

.secondary-color {
  color: #001e43;
}

.section-heading-wrapper .section-subheading {
  color: #001e43;
  font-size: 32px;
  line-height: 44px;
  margin: 0;
}
.section-heading-wrapper .section-heading {
  color: #001e43;
  font-size: 72px;
  font-weight: 700;
  margin: 0;
}
.section-heading-wrapper .section-description {
  color: #495057;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.section-heading-wrapper.white-variant .section-heading,
.section-heading-wrapper.white-variant .section-subheading,
.section-heading-wrapper.white-variant .section-description {
  color: #fff;
}

.ar-flip {
  transform: scaleX(-1);
}

html.dark .section-heading-wrapper .section-heading,
html.dark .section-heading-wrapper .section-subheading,
html.dark .section-heading-wrapper .section-description {
  color: #fff;
}

html.ar .primary-btn.advance-btn span {
  left: 0;
  right: auto;
  transform: scaleX(-1);
}
html.ar .primary-btn.advance-btn:hover {
  padding-right: 32px;
  padding-left: 62px;
}

@media (min-width: 766px) and (max-width: 1600px) {
  .section-heading-wrapper .section-heading {
    font-size: 62px;
    font-weight: 700;
    margin: 0;
  }
}
@media (max-width: 765px) {
  .loader-wrapper img {
    width: 200px;
  }
  .section-heading-wrapper .section-subheading {
    font-size: 18px;
    line-height: normal;
  }
  .section-heading-wrapper .section-heading {
    font-size: 32px;
    line-height: normal;
  }
  .section-heading-wrapper .section-description {
    font-size: 16px;
    line-height: normal;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes translateleft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes translateright {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadein-translateleft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein-translateright {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrolldown {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marqueeAr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes logo-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}
@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
/* English Fonts */
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-ExtraBold.otf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-SemiBold.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Light.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Arabic Fonts */
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic65Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/frutigerltarabic75black.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 500; /* Medium */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 400; /* Regular */
}
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic45Light.ttf") format("truetype");
  font-weight: 300; /* Light */
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_SemiBold.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Brando";
  src: url("../fonts/Brando_Arabic_Light.ttf") format("truetype");
  font-weight: 300;
}
.font-ar {
  font-family: "Brando", sans-serif;
}

.font-en {
  font-family: "Ninetea", sans-serif;
}

*,
*::after,
*::before {
  border: 0;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
}

body {
  height: 100%;
  scroll-behavior: smooth;
  background-color: #fff;
  direction: rtl !important;
  font-family: "Brando", sans-serif;
}

html.en body {
  direction: ltr !important;
  font-family: "Ninetea", sans-serif;
}

::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #495057;
  border-radius: 26px;
}

.ltr {
  direction: ltr;
}

a {
  color: #191920;
}

a:hover,
a:focus {
  color: #3941d1;
}

a,
a:hover,
a:focus,
button,
label {
  cursor: pointer;
  text-decoration: none;
}

button {
  background: transparent;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

label {
  margin-bottom: 0.325rem;
}

::selection {
  color: #fff;
  background: #3941d1;
}

::-moz-selection {
  color: #fff;
  background: #3941d1;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #888;
}

::-moz-placeholder {
  opacity: 1;
  color: #888;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #888;
}

:-moz-placeholder {
  opacity: 1;
  color: #888;
}

.h3,
h3 {
  font-size: 1.5rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 6px 14px;
  border-radius: 20px;
}

textarea {
  resize: none;
  height: 150px;
}

ul,
ol {
  list-style-position: inside;
}

a[href=""] {
  display: none;
}

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

.iti {
  width: 100%;
}
.iti .iti__flag-container {
  margin-left: 10px;
}
.iti .iti__flag-container .iti__selected-flag {
  background-color: transparent !important;
}
.iti .iti__flag-container .iti__selected-dial-code {
  caret-color: #001e43;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.iti .iti__flag-container .iti__arrow {
  display: none;
}

.modal-backdrop.show {
  background: rgba(4, 0, 0, 0.4) !important;
  backdrop-filter: blur(10px);
  opacity: 1;
}

html.dark ::-webkit-scrollbar-track {
  background-color: #141414;
}
html.dark .iti .iti__selected-dial-code {
  color: #212529 !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@media screen and (max-width: 765px) {
  .container {
    padding: 0 16px !important;
    gap: 24px !important;
  }
}
.navbar-wrapper {
  z-index: 998;
  padding: 32px 0;
}
.navbar-wrapper.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(19, 20, 68, 0.9);
  backdrop-filter: blur(15px);
  padding: 16px 0;
}
.navbar-wrapper .navbar-links {
  display: flex;
  gap: 36px;
}
.navbar-wrapper .navbar-links a {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  height: fit-content;
  max-height: fit-content;
  width: fit-content;
  max-width: fit-content;
}
.navbar-wrapper .navbar-links a.active {
  font-weight: 700;
}
.navbar-wrapper .navbar-links a.active::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 32px;
  background: #fff;
  width: 24px;
  height: 2px;
}
.navbar-wrapper .navbar-links .language-switch {
  position: relative;
  gap: 10px;
  width: fit-content;
  padding: 16px 36px;
}
.navbar-wrapper .navbar-links .theme-switch {
  position: relative;
  gap: 10px;
  width: fit-content;
  padding: 16px 36px;
}
.navbar-wrapper .hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 10px;
  border-radius: 4px;
  background: #fff;
  font-size: 24px;
  color: #001e43;
  height: 100%;
}
.navbar-wrapper .hamburger-btn i {
  height: 28px;
}

.hamburger-menu {
  display: none;
  position: fixed;
  height: 100dvh;
  width: 100vw;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  z-index: 999;
}
.hamburger-menu.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popup 0.3s ease-in-out;
}
.hamburger-menu .navbar-wrapper .close-btn {
  position: absolute;
  top: 28px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #fff;
  font-size: 24px;
  color: #001e43;
  border-radius: 4px;
}
.hamburger-menu .navbar-wrapper .close-btn i {
  height: 28px;
}
.hamburger-menu .navbar-wrapper .navbar-brand img {
  padding-left: 25px;
  height: 50px;
}
.hamburger-menu .navbar-wrapper .navbar-links a {
  width: 200px !important;
}
.hamburger-menu .navbar-wrapper .navbar-links a svg {
  height: 24px !important;
  width: 24px !important;
}

html.ar .navbar-wrapper .navbar-links a.active::before {
  left: auto;
  right: 0;
}

@media (min-width: 766px) and (max-width: 1022px) {
  .navbar-wrapper .navbar-brand {
    margin: 0;
  }
  .navbar-wrapper .navbar-brand img {
    height: 36px !important;
  }
  .hamburger-menu .navbar-wrapper .close-btn {
    font-size: 24px;
  }
  .hamburger-menu .navbar-wrapper .close-btn i {
    height: 28px;
  }
  html.ar .hamburger-menu .navbar-wrapper .close-btn {
    left: 24px;
    right: auto;
  }
  html.ar .hamburger-menu .navbar-wrapper .close-btn,
  html.ar .hamburger-menu .navbar-wrapper .hamburger-btn {
    font-family: "Ninetea", sans-serif;
  }
}
@media screen and (max-width: 765px) {
  .navbar-wrapper {
    padding: 24px 0;
  }
  .navbar-wrapper .navbar-brand {
    margin: 0;
  }
  .navbar-wrapper .navbar-brand img {
    height: 24px !important;
  }
  .navbar-wrapper .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 24px;
  }
  .navbar-wrapper .hamburger-btn i {
    height: 24px;
  }
  .hamburger-menu .navbar-wrapper .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 24px;
    top: 20px;
    right: 16px;
  }
  .hamburger-menu .navbar-wrapper .close-btn i {
    height: 24px;
  }
  html.ar .navbar-wrapper .close-btn {
    left: 16px;
    right: auto;
  }
  html.ar .navbar-wrapper .hamburger-btn,
  html.ar .navbar-wrapper .close-btn {
    font-family: "Ninetea", sans-serif;
  }
}
.footer-wrapper {
  position: relative;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  padding-top: 162px;
  padding-bottom: 88px;
  z-index: 0;
}
.footer-wrapper .bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.4;
  z-index: -1;
}
.footer-wrapper .bg-video-container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 20, 68, 0.9);
  mix-blend-mode: multiply;
}
.footer-wrapper .bg-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-wrapper .footer-content-container {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(32, 32, 65, 0.8) 19.33%, rgba(6, 6, 13, 0.8) 100%);
  padding-top: 200px;
  padding: 60px;
}
.footer-wrapper .footer-content-container .footer-brand {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 159px;
  height: 159px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 30, 67, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-wrapper .footer-links-container {
  display: flex;
  gap: 32px;
  margin-top: 60px;
}
.footer-wrapper .footer-links-container .links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 24px;
}
.footer-wrapper .footer-links-container .links-container:first-child {
  padding-left: 0;
}
.footer-wrapper .footer-links-container .links-container:last-child {
  border-right: none;
}
.footer-wrapper .footer-links-container .list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-wrapper .footer-links-container .list-unstyled a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
.footer-wrapper .footer-links-container .list-unstyled a:hover {
  text-decoration: underline;
}
.footer-wrapper .footer-links-container .link-heading {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}
.footer-wrapper .footer-links-container .link-item {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
.footer-wrapper .footer-partners-text {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}
.footer-wrapper .footer-partners-logo {
  width: 107px;
  height: 29.69px;
}
.footer-wrapper .privacy-policy-text {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 48px;
  margin: 0;
}

html.ar .footer-wrapper .footer-links-container .links-container {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
html.ar .footer-wrapper .footer-links-container .links-container:first-child {
  padding-right: 0;
}
html.ar .footer-wrapper .footer-links-container .links-container:last-child {
  border-left: none;
}

@media (min-width: 766px) and (max-width: 1022px) {
  .footer-wrapper .footer-content-container {
    padding-top: 200px;
    padding: 40px;
  }
  .footer-wrapper .footer-content-container .links-container {
    border: 0 !important;
    padding: 0;
  }
}
@media screen and (max-width: 765px) {
  .footer-wrapper {
    padding-top: 88px;
    padding-bottom: 40px;
  }
  .footer-wrapper .footer-content-container {
    padding-top: 200px;
    padding: 24px;
    padding-bottom: 16px;
  }
  .footer-wrapper .footer-content-container .links-container {
    border: 0 !important;
    padding: 0;
  }
  .footer-wrapper .footer-content-container .footer-brand {
    top: -60px;
    left: 50%;
    width: 120px;
    height: 120px;
  }
  .footer-wrapper .footer-content-container .footer-brand img {
    height: 40px;
  }
  .footer-wrapper .footer-partners-text {
    text-align: center;
  }
}
.hero-section-wrapper {
  position: relative;
  background: rgb(19, 20, 68);
  z-index: 998;
  min-height: 100dvh;
}
.hero-section-wrapper .bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-section-wrapper .bg-video-container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 20, 68, 0.9);
  mix-blend-mode: multiply;
}
.hero-section-wrapper .bg-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-wrapper .navbar-wrapper {
  flex-shrink: 0;
}
.hero-section-wrapper .hero-section-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  padding-top: 5%;
  padding-bottom: 24px;
}
.hero-section-wrapper .hero-section-body .hero-section-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-subtitle {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-title {
  color: #fff;
  font-size: 112px;
  font-weight: 400;
  text-align: center;
  line-height: 110px;
  margin: 0;
}
.hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-title span {
  font-weight: 700;
}
.hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-description {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.hero-section-wrapper .hero-section-body .scroll-down-btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 96px;
  height: 96px;
  aspect-ratio: 1/1;
  border-radius: 200px;
  border: 1px solid rgba(210, 229, 236, 0.1);
  background: rgba(255, 255, 255, 0.01);
}
.hero-section-wrapper .hero-section-body .scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hero-section-wrapper .hero-section-body .scroll-down-btn .scroll-down-icon {
  animation: jump 2s ease-in-out infinite;
}
@keyframes jump {
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.hero-section-wrapper .hero-section-body .scroll-down-btn .scroll-down-label {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.hero-section-wrapper .hero-section-body .hero-section-social-links-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-section-wrapper .hero-section-body .hero-section-social-links-wrapper .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-section-wrapper .hero-section-body .hero-section-social-links-wrapper .social-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 37px;
  margin: 0;
}
.hero-section-wrapper .hero-section-body .hero-section-social-links-wrapper a {
  transition: all 250ms ease-in-out;
}
.hero-section-wrapper .hero-section-body .hero-section-social-links-wrapper a:hover {
  transform: translateY(-10%);
}

.about-us-section-wrapper {
  background: #fff url("/assets/images/about-us-section-bg.png") no-repeat;
  background-size: cover;
  padding: 88px 0;
}
.about-us-section-wrapper .section-heading {
  font-size: 40px;
}

.advice-section-wrapper {
  z-index: 0;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  padding-top: 88px;
  overflow: hidden;
}
.advice-section-wrapper .user-advice {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
  z-index: 999;
}
.advice-section-wrapper .user-name {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
.advice-section-wrapper .user-image-container {
  position: relative;
  z-index: 0;
}
.advice-section-wrapper .user-image-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 560px;
  width: 538px;
  border-radius: 300px 300px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #202041 19.33%, #06060d 100%);
  z-index: -1;
}
.advice-section-wrapper .user-image-container img {
  width: 537px;
  height: 634px;
  aspect-ratio: 537/634;
  z-index: 1;
}

.our-services-section-wrapper {
  background: #fff url("/assets/images/service-section-bg.svg") no-repeat;
  background-size: cover;
  padding: 88px 0;
}
.our-services-section-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.our-services-section-wrapper .our-services-swiper {
  height: 100%;
  width: 100%;
  border-radius: 32px;
}
.our-services-section-wrapper .our-services-swiper .swiper-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  padding: 0;
}
.our-services-section-wrapper .our-services-swiper .swiper-pagination-bullet {
  flex: 1;
  height: 100%;
  margin: 0 !important;
  opacity: 1;
  border-radius: 32px;
  background: #e4e8f7;
  transition: all 0.4s ease;
}
.our-services-section-wrapper .our-services-swiper .swiper-pagination-bullet:not(:last-child) {
  margin-right: 4px !important;
}
.our-services-section-wrapper .our-services-swiper .swiper-pagination-bullet-active {
  background: #d3dbff;
}

.service-card {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  padding-bottom: 32px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  transition: all 250ms ease-in-out;
  position: relative;
}
.service-card .card-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  transition: all 250ms ease-in-out;
}
.service-card .card-heading {
  color: #001e43;
  font-size: 32px;
  font-weight: 700;
  margin-top: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
  transition: all 250ms ease-in-out;
}
.service-card .card-description {
  color: #495057;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  max-height: calc(6 * 1.6em);
  transition: all 250ms ease-in-out;
}
.service-card .primary-btn {
  display: none;
  width: fit-content;
}
.service-card:hover {
  border-radius: 32px;
  border-color: #d2e5ec;
  background: #eef1ff;
}
.service-card:hover .card-icon {
  opacity: 0;
}
.service-card:hover .card-heading {
  margin-top: 0;
}
.service-card:hover .primary-btn {
  display: flex;
  animation: fadein 250ms ease-in;
}

.contact-us-section-wrapper {
  position: relative;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  padding-top: 48px;
  z-index: 0;
}
.contact-us-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/contact-us-bg.svg") no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.contact-us-section-wrapper .image-container {
  position: relative;
  z-index: 0;
}
.contact-us-section-wrapper .image-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 560px;
  width: 538px;
  border-radius: 300px 300px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #202041 19.33%, #06060d 100%);
  z-index: -1;
}
.contact-us-section-wrapper .image-container img {
  width: 537px;
  height: 634px;
  aspect-ratio: 537/634;
  z-index: 1;
}

.our-projects-section-wrapper {
  background: #fff url("/assets/images/about-us-section-bg.png") no-repeat;
  background-size: cover;
  padding: 88px 0;
}
.our-projects-section-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.our-projects-section-wrapper .our-projects-swiper {
  height: 100%;
  width: 100%;
  border-radius: 32px;
}
.our-projects-section-wrapper .our-projects-swiper .swiper-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  padding: 0;
}
.our-projects-section-wrapper .our-projects-swiper .swiper-pagination-bullet {
  flex: 1;
  height: 100%;
  margin: 0 !important;
  opacity: 1;
  border-radius: 32px;
  background: #e4e8f7;
  transition: all 0.4s ease;
}
.our-projects-section-wrapper .our-projects-swiper .swiper-pagination-bullet:not(:last-child) {
  margin-right: 4px !important;
}
.our-projects-section-wrapper .our-projects-swiper .swiper-pagination-bullet-active {
  background: #d3dbff;
}

.project-card {
  height: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  transition: all 250ms ease-in-out;
  position: relative;
}
.project-card:hover {
  border-color: #d2e5ec;
  background: #eef1ff;
}
.project-card .card-logo img {
  max-width: 250px;
  width: auto;
  height: 64px;
  object-fit: contain;
  object-position: center;
}
.project-card .card-subheading {
  color: #001e43;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
  transition: all 250ms ease-in-out;
}
.project-card .card-heading {
  color: #001e43;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
  transition: all 250ms ease-in-out;
}
.project-card .card-description {
  color: #495057;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: calc(4 * 1.6em);
  transition: all 250ms ease-in-out;
}

.growth-milestones-section-wrapper {
  position: relative;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  padding: 88px 0;
  z-index: 0;
}
.growth-milestones-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/growth-milestone-section-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: overlay;
  opacity: 0.4;
  z-index: -1;
}
.growth-milestones-section-wrapper .milestones-list-container {
  position: relative;
  overflow-x: auto;
  margin-top: 24px;
}
.growth-milestones-section-wrapper .milestones-list-container::-webkit-scrollbar {
  display: none;
}
.growth-milestones-section-wrapper .milestones-list-container .top-row {
  display: flex;
  margin-left: 200px;
  align-items: end;
}
.growth-milestones-section-wrapper .milestones-list-container .bottom-row {
  display: flex;
  margin-top: -10px;
  align-items: start;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card {
  position: relative;
  min-width: 450px;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card.card-top::before {
  bottom: 4px;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card.card-bottom::before {
  top: 4px;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card .bullet-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-year {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 72px;
  width: 24px;
  margin: 10px 0;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-year p {
  transform: rotate(-90deg);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-heading {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-description {
  color: #adb5bd;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(3 * 1.6em);
  width: 70%;
  margin: 0;
}

.trusted-organizations-section-wrapper {
  background: #fff url("/assets/images/about-us-section-bg.png") no-repeat;
  background-size: cover;
  padding: 88px 0;
}
.trusted-organizations-section-wrapper .logo-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.trusted-organizations-section-wrapper .logo-slider .logo-track {
  display: flex;
  gap: 24px;
  animation: scroll 60s linear infinite;
  width: max-content;
}
.trusted-organizations-section-wrapper .logo-slider .logo-track.reverse {
  animation-direction: reverse;
}
.trusted-organizations-section-wrapper .logo-slider .logo-track .logo-card {
  height: 110px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}
.trusted-organizations-section-wrapper .logo-slider .logo-track .logo-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@keyframes scroll {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(-50%);
  }
}

html.ar .service-card .card-icon {
  left: auto;
  right: 24px;
}
html.ar .project-card .card-heading {
  line-height: 46px;
}
html.ar .growth-milestones-section-wrapper .milestones-list-container .top-row {
  margin-left: 0;
  margin-right: 200px;
}
html.ar .growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-heading {
  line-height: 32px;
}
html.ar .trusted-organizations-section-wrapper .logo-slider .logo-track {
  animation: scroll-ar 60s linear infinite;
}
html.ar .trusted-organizations-section-wrapper .logo-slider .logo-track.reverse {
  animation-direction: reverse;
}
@keyframes scroll-ar {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(50%);
  }
}

html.dark .about-us-section-wrapper {
  background-color: #0d0d1b;
  background-image: url("/assets/images/about-us-section-bg-dark.png");
}
html.dark .our-services-section-wrapper {
  background: #080811 url("/assets/images/service-section-bg-dark.svg") no-repeat;
}
html.dark .our-services-section-wrapper .our-services-swiper .swiper-pagination-bullet {
  background: #202041;
}
html.dark .our-services-section-wrapper .our-services-swiper .swiper-pagination-bullet-active {
  background: #447;
}
html.dark .service-card {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .service-card .card-icon svg path {
  fill: #ffffff;
}
html.dark .service-card .card-heading {
  color: #fff;
}
html.dark .service-card .card-description {
  color: #fff;
}
html.dark .service-card:hover {
  background: #447;
}
html.dark .our-projects-section-wrapper {
  background-color: #0d0d1b;
}
html.dark .our-projects-section-wrapper .our-projects-swiper .swiper-pagination-bullet {
  background: #202041;
}
html.dark .our-projects-section-wrapper .our-projects-swiper .swiper-pagination-bullet-active {
  background: #447;
}
html.dark .project-card {
  position: relative;
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .project-card:hover {
  border-radius: 32px;
  background: #447;
}
html.dark .project-card .card-subheading {
  color: #fff;
}
html.dark .project-card .card-heading {
  color: #fff;
}
html.dark .project-card .card-description {
  color: #fff;
}
html.dark .trusted-organizations-section-wrapper {
  background-color: #0d0d1b;
  background-image: url("/assets/images/about-us-section-bg-dark.png");
}
html.dark .trusted-organizations-section-wrapper .logo-slider .logo-track .logo-card {
  border-color: rgba(230, 233, 236, 0.08);
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}

@media (min-width: 2000px) {
  .hero-section-wrapper {
    min-height: unset;
  }
}
@media (min-width: 1023px) and (max-width: 1200px) {
  .hero-section-wrapper .container {
    min-height: unset;
  }
  .advice-section-wrapper {
    padding: 88px 0;
    position: relative;
    z-index: 0;
  }
  .advice-section-wrapper .user-image-container {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
  }
  .service-card {
    height: auto;
  }
  .service-card .card-icon {
    position: static;
    opacity: 1 !important;
  }
  .service-card .card-heading {
    margin-top: 10px;
  }
  .service-card .primary-btn {
    display: flex;
  }
  .service-card:hover .card-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    max-height: calc(6 * 1.6em);
  }
  .contact-us-section-wrapper {
    padding: 88px 0;
    overflow: hidden;
  }
  html.ar .advice-section-wrapper .user-image-container {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
}
@media (min-width: 766px) and (max-width: 1022px) {
  .hero-section-wrapper .hero-section-body {
    padding-top: 20%;
    padding-bottom: 24px;
  }
  .hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-title {
    font-size: 87px;
    line-height: 85px;
  }
  .advice-section-wrapper {
    padding: 88px 0;
    position: relative;
    z-index: 0;
  }
  .advice-section-wrapper .user-image-container {
    position: absolute;
    top: 88px;
    right: 0;
    opacity: 0.2;
    z-index: -1;
  }
  .service-card {
    height: auto;
  }
  .service-card .card-icon {
    position: static;
    opacity: 1 !important;
  }
  .service-card .card-heading {
    margin-top: 10px;
  }
  .service-card .primary-btn {
    display: flex;
  }
  .service-card:hover .card-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    max-height: calc(6 * 1.6em);
  }
  .contact-us-section-wrapper {
    padding: 88px 0;
    overflow: hidden;
  }
  html.ar .advice-section-wrapper .user-image-container {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 765px) {
  .hero-section-wrapper .hero-section-body {
    padding-top: 20%;
    padding-bottom: 24px;
  }
  .hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-subtitle {
    line-height: 36px;
  }
  .hero-section-wrapper .hero-section-body .hero-section-info-wrapper .hero-section-title {
    font-size: 62px;
    line-height: 60px;
  }
  .about-us-section-wrapper {
    padding: 44px 0;
  }
  .about-us-section-wrapper .section-heading {
    font-size: 24px;
  }
  .advice-section-wrapper {
    padding: 0;
    padding-bottom: 44px;
  }
  .advice-section-wrapper .card-icon img {
    height: 72px;
    width: 72px;
  }
  .advice-section-wrapper .user-advice {
    font-size: 18px;
    line-height: normal;
  }
  .advice-section-wrapper .user-name {
    font-size: 16px;
    line-height: normal;
  }
  .our-services-section-wrapper {
    padding: 44px 0;
  }
  .service-card {
    height: auto;
    padding: 18px;
    min-height: 400px;
    gap: 10px;
  }
  .service-card .card-icon {
    position: static;
    opacity: 1 !important;
  }
  .service-card .card-icon svg {
    height: 48px;
    width: 48px;
  }
  .service-card .card-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
  }
  .service-card .primary-btn {
    display: flex;
  }
  .service-card:hover .card-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    max-height: calc(6 * 1.6em);
  }
  .contact-us-section-wrapper {
    padding: 44px 0;
    overflow: hidden;
  }
  .our-projects-section-wrapper {
    padding: 44px 0;
  }
  .project-card {
    min-height: unset;
    height: 100%;
    padding: 18px;
  }
  .project-card .card-logo img {
    height: 48px;
  }
  .project-card .card-subheading {
    font-size: 18px;
    line-height: normal;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(2 * 1.6em);
    transition: all 250ms ease-in-out;
  }
  .project-card .card-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .project-card .card-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: calc(3 * 1.6em);
  }
  .project-card .image-container img {
    height: 240px;
  }
  .growth-milestones-section-wrapper {
    padding: 44px 0;
  }
  .growth-milestones-section-wrapper .milestones-list-container {
    margin-top: 18px;
  }
  .growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-year {
    min-height: 60px;
  }
  .growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-year p {
    font-size: 24px;
  }
  .growth-milestones-section-wrapper .milestones-list-container .milestone-card .milestone-card-heading {
    font-size: 24px;
  }
  .trusted-organizations-section-wrapper {
    padding: 44px 0;
  }
  .trusted-organizations-section-wrapper .logo-slider {
    gap: 16px;
  }
  .trusted-organizations-section-wrapper .logo-slider .logo-track {
    gap: 16px;
  }
  html.ar .service-card .card-heading {
    margin-top: 10px;
  }
  html.ar .project-card .card-subheading {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: calc(1 * 1.6em);
  }
  html.ar .project-card .card-heading {
    margin: 6px 0;
    line-height: 36px;
  }
}
.hero-section-wrapper.about-us-page {
  padding-bottom: 24px;
}
.hero-section-wrapper.about-us-page .bg-video-container::before {
  background-color: rgba(32, 33, 66, 0.9);
}

.vision-mission-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 32px 24px;
  gap: 12px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}
.vision-mission-card .card-icon svg {
  height: 51px;
  width: 57px;
}
.vision-mission-card .card-title {
  color: #001e43;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.vision-mission-card .card-description {
  color: #495057;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.core-values-section-wrapper {
  padding: 88px 0;
  position: relative;
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  z-index: 0;
}
.core-values-section-wrapper .bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.core-values-section-wrapper .bg-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.core-values-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 32px 24px;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 30, 67, 0);
}
.core-values-card .card-icon img {
  width: 48px;
  height: 80px;
}
.core-values-card .card-title {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.core-values-card .card-description {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.our-leaders-section-wrapper {
  background: #fff url("/assets/images/service-section-bg.svg") no-repeat;
  background-size: cover;
  padding: 88px 0;
}
.our-leaders-section-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.our-leaders-section-wrapper .our-leaders-swiper {
  height: 100%;
  width: 100%;
  border-radius: 32px;
}
.our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  padding: 0;
}
.our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination-bullet {
  flex: 1;
  height: 100%;
  margin: 0 !important;
  opacity: 1;
  border-radius: 32px;
  background: #e4e8f7;
  transition: all 0.4s ease;
}
.our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination-bullet:not(:last-child) {
  margin-right: 4px !important;
}
.our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination-bullet-active {
  background: #d3dbff;
}

.leader-card {
  height: 596px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 32px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}
.leader-card .card-image {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 24px 24px 300px 300px;
  overflow: hidden;
  transition: width 0.6s ease, height 0.6s ease;
}
.leader-card .card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #f0f2ff 19.33%, #f0f2ff 100%);
  z-index: 1;
  transform-origin: bottom center;
  transform: scaleY(1);
  transition: transform 0.8s ease;
}
.leader-card .card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  transition: width 0.6s ease, height 0.6s ease;
}
.leader-card .card-user-name {
  color: #001e43;
  font-size: 24px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
  margin: 0;
  margin-top: 16px;
}
.leader-card .card-user-position {
  color: #001e43;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
}
.leader-card .card-description {
  color: #495057;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(3 * 1.6em);
  transition: all 0.6s ease;
}
.leader-card .social-links {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  transition: gap 0.3s ease;
}
.leader-card .social-links a {
  flex-grow: 0;
  flex-basis: auto;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  text-align: center;
  transition: flex-grow 1.2s ease, padding 0.8s ease, background 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-card:hover .card-image {
  width: 163px;
  height: 174px;
}
.leader-card:hover .card-image::before {
  transform: scaleY(0.5);
}
.leader-card:hover .card-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  max-height: calc(8 * 1.6em);
}
.leader-card:hover .social-links {
  gap: 16px;
}
.leader-card:hover .social-links a {
  flex-grow: 1;
  background: #f0f2ff;
  padding: 12px 16px;
}

html.dark .vision-mission-card {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .vision-mission-card .card-icon svg path {
  fill: #ffffff;
}
html.dark .vision-mission-card .card-title {
  color: #fff;
}
html.dark .vision-mission-card .card-description {
  color: #fff;
}
html.dark .our-leaders-section-wrapper {
  background: #080811 url("/assets/images/service-section-bg-dark.svg") no-repeat;
}
html.dark .our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination-bullet {
  background: #202041;
}
html.dark .our-leaders-section-wrapper .our-leaders-swiper .swiper-pagination-bullet-active {
  background: #447;
}
html.dark .leader-card {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .leader-card .card-image::before {
  background: #447;
}
html.dark .leader-card .card-user-name {
  color: #fff;
}
html.dark .leader-card .card-user-position {
  color: #fff;
}
html.dark .leader-card .card-description {
  color: #fff;
}
html.dark .leader-card .social-links a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(12%) hue-rotate(264deg) brightness(109%) contrast(100%);
}
html.dark .leader-card:hover .social-links a {
  background: #447;
}

@media (min-width: 1500px) {
  .hero-section-wrapper.about-us-page {
    min-height: unset;
  }
}
@media (min-width: 766px) and (max-width: 1025px) {
  .hero-section-wrapper.about-us-page {
    min-height: unset;
  }
  .hero-section-wrapper.about-us-page .hero-section-body {
    padding-top: 44px;
  }
}
@media screen and (max-width: 765px) {
  .hero-section-wrapper.about-us-page {
    min-height: unset;
  }
  .core-values-section-wrapper,
  .our-leaders-section-wrapper {
    padding: 44px 0;
  }
  .vision-mission-card {
    padding: 20px;
    gap: 8px;
  }
  .vision-mission-card .card-icon svg {
    height: 41px;
    width: 47px;
  }
  .vision-mission-card .card-title {
    font-size: 24px;
  }
  .vision-mission-card .card-description {
    font-size: 16px;
  }
  .core-values-card {
    padding: 20px;
    gap: 8px;
  }
  .core-values-card .card-icon img {
    height: 62px;
  }
  .core-values-card .card-title {
    font-size: 24px;
  }
  .leader-card {
    height: 550px;
    padding: 20px;
  }
  .leader-card .card-image {
    width: 100%;
    height: 280px;
  }
}
.services-tabs {
  position: relative;
  padding-top: 44px;
}
.services-tabs .tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  padding: 24px 24px 32px;
  border-radius: 24px;
  border: 1px solid #e6e9ec;
  background: #fff;
  transition: all 250ms ease-in-out;
}
.services-tabs .tab-btn .card-icon svg {
  width: 48px;
  height: 48px;
}
.services-tabs .tab-btn .card-heading {
  color: #001e43;
  font-size: 20px;
  font-weight: 700;
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2 * 1.6em);
  transition: all 250ms ease-in-out;
}
.services-tabs .tab-btn:not(.active-btn):hover {
  border-color: #d2e5ec;
  background: #eef1ff;
}
.services-tabs .tab-btn.active-btn {
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
}
.services-tabs .tab-btn.active-btn .card-icon svg path {
  fill: #fff;
}
.services-tabs .tab-btn.active-btn .card-heading {
  color: #fff;
}
.services-tabs .tab-btn-row.fixed-row {
  background: #fff url("/assets/images/about-us-section-bg.png") no-repeat;
  background-size: cover;
  padding: 24px 0;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 10;
}
.services-tabs .tab-btn-row.fixed-row .tab-btn {
  flex-direction: row;
  padding: 24px;
}
.services-tabs .tab-btn-row.fixed-row .tab-btn .card-icon svg {
  height: 32px;
  width: 32px;
}
.services-tabs .tab-btn-row.fixed-row .tab-btn .card-heading {
  font-size: 18px;
  margin: 0;
}
.services-tabs .tab-body {
  display: none;
  width: 100%;
  padding: 24px 24px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid #e6e9ec;
  background: #fff;
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}
.services-tabs .tab-body.active-tab {
  display: flex;
}
.services-tabs .tab-body .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  border-radius: 32px;
  border: 1px solid #d2e5ec;
  background: #eef1ff;
}
.services-tabs .tab-body .card-icon svg {
  width: 40px;
  height: 40px;
}
.services-tabs .tab-body .card-heading {
  color: #001e43;
  font-size: 20px;
  font-weight: 700;
  transition: all 250ms ease-in-out;
}
.services-tabs .tab-body .card-description {
  color: #495057;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 250ms ease-in-out;
}

.services-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.primary-service-accordion {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #d2e5ec;
  background: rgba(240, 242, 255, 0.2);
}
.primary-service-accordion .primary-accordion-header {
  padding: 24px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.primary-service-accordion .primary-accordion-header h4 {
  text-align: start;
  color: #001e43;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.primary-service-accordion .primary-accordion-header i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 32px;
  border: 1px solid #d2e5ec;
  transition: transform 0.3s ease;
}
.primary-service-accordion .primary-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  width: 100%;
  opacity: 0;
}
.primary-service-accordion .primary-accordion-body .card-tag {
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(210, 229, 236, 0.1);
  background: rgba(240, 242, 255, 0.07);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.primary-service-accordion.active {
  background: linear-gradient(180deg, #07080f 0%, #222245 100%);
  padding: 24px;
}
.primary-service-accordion.active .primary-accordion-body {
  padding-right: 10px;
  padding-top: 24px;
  display: flex !important;
  max-height: 2000px;
  opacity: 1;
}
.primary-service-accordion.active .primary-accordion-header {
  border-color: rgba(255, 255, 255, 0.14);
  padding: 0;
  padding-bottom: 16px;
}
.primary-service-accordion.active .primary-accordion-header h4 {
  color: #fff;
}
.primary-service-accordion.active .primary-accordion-header i {
  border-color: rgba(210, 229, 236, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(201deg) brightness(112%) contrast(104%);
}

.secondary-service-accordion {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border-radius: 24px;
  border-radius: 20px;
  border: 1px solid rgba(210, 229, 236, 0.1);
  background: rgba(240, 242, 255, 0.07);
}
.secondary-service-accordion .secondary-accordion-header {
  padding: 24px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.secondary-service-accordion .secondary-accordion-header h4 {
  text-align: start;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.secondary-service-accordion .secondary-accordion-header i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 32px;
  transition: transform 0.3s ease;
  border-color: rgba(210, 229, 236, 0.08);
  background: rgba(255, 255, 255, 0.03);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(201deg) brightness(112%) contrast(104%);
}
.secondary-service-accordion .secondary-accordion-body {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: max-height 0.4s ease;
}
.secondary-service-accordion .secondary-accordion-body .card-tag {
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(210, 229, 236, 0.1);
  background: rgba(240, 242, 255, 0.07);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.secondary-service-accordion.active {
  padding: 24px;
}
.secondary-service-accordion.active .secondary-accordion-body {
  display: flex !important;
  max-height: 2000px;
  padding-top: 24px;
  opacity: 1;
}
.secondary-service-accordion.active .secondary-accordion-header {
  border-color: rgba(255, 255, 255, 0.14);
  padding: 0;
  padding-bottom: 16px;
}
.secondary-service-accordion.active .secondary-accordion-header i {
  transform: rotate(180deg);
}

.et-card-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #d2e5ec;
  background: rgba(240, 242, 255, 0.2);
}
.et-card-tag .et-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: 32px;
  background: #eef1ff;
}
.et-card-tag .et-card-icon svg {
  width: 24px;
  height: 24px;
}
.et-card-tag .card-label {
  color: #1f3c7b;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

html.ar .services-tabs .tab-btn-row.fixed-row .tab-btn {
  align-items: center;
}
html.ar .services-tabs .tab-btn-row .tab-btn {
  min-height: 100%;
}

html.dark .services-tabs .tab-btn-row.fixed-row {
  background-color: #0d0d1b;
  background-image: url("/assets/images/about-us-section-bg-dark.png");
}
html.dark .services-tabs .tab-btn {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .services-tabs .tab-btn .card-icon svg path {
  fill: #ffffff;
}
html.dark .services-tabs .tab-btn .card-heading {
  color: #fff;
}
html.dark .services-tabs .tab-btn .card-description {
  color: #fff;
}
html.dark .services-tabs .tab-btn.active-btn {
  background: #447;
}
html.dark .services-tabs .tab-btn:hover {
  background: #447;
  border-color: rgba(230, 233, 236, 0.08);
}
html.dark .tab-body {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .tab-body .card-icon {
  background: #eef1ff;
}
html.dark .tab-body .card-heading {
  color: #fff;
}
html.dark .tab-body .card-description {
  color: #fff;
}
html.dark .tab-body .primary-service-accordion {
  border-color: rgba(230, 233, 236, 0.08);
}
html.dark .tab-body .primary-service-accordion .primary-accordion-header h4 {
  color: #fff;
}
html.dark .tab-body .primary-service-accordion .primary-accordion-header i {
  border-color: rgba(210, 229, 236, 0.08);
  background: rgba(255, 255, 255, 0.03);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(201deg) brightness(112%) contrast(104%);
}
html.dark .tab-body .et-card-tag {
  border-color: rgba(230, 233, 236, 0.08);
}
html.dark .tab-body .et-card-tag .card-label {
  color: #fff;
}

@media screen and (max-width: 765px) {
  .services-tabs .tab-btn-row.fixed-row {
    top: 60px;
  }
  .services-tabs .tab-btn-row .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 0 !important;
    margin: 0 !important;
    padding-bottom: 10px !important;
  }
  .services-tabs .tab-btn-row .row > [class*=col-] {
    padding: 0 !important;
    margin: 0 !important;
  }
  .services-tabs .tab-btn {
    align-items: center;
    flex-direction: row;
    padding: 24px 16px !important;
  }
  .services-tabs .tab-btn .card-icon svg {
    height: 36px;
    width: 36px;
  }
  .services-tabs .tab-btn .card-heading {
    font-size: 16px !important;
    margin: 0;
  }
  .services-tabs .tab-body {
    padding: 0;
    padding: 24px 16px;
    gap: 0px !important;
  }
  .services-tabs .tab-body .card-icon {
    height: 48px;
    min-width: 48px;
  }
  .services-tabs .tab-body .card-icon svg {
    height: 36px;
    width: 36px;
  }
  .services-tabs .tab-body .card-icon {
    margin-bottom: 16px;
  }
  .services-tabs .services-container {
    gap: 16px;
  }
  .services-tabs .primary-service-accordion h4 {
    font-size: 16px;
  }
  .services-tabs .primary-service-accordion .card-tag {
    font-size: 14px;
  }
  .services-tabs .primary-service-accordion.active {
    padding: 24px 16px;
  }
  .services-tabs .secondary-service-accordion.active {
    padding: 24px 16px;
  }
}
.project-list-container .project-card {
  min-height: 400px;
  height: 100%;
}
.project-list-container .project-card .card-heading {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  max-height: calc(10 * 1.6em);
}
.project-list-container .project-card .card-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  max-height: calc(10 * 1.6em);
}
.project-list-container .project-card:hover {
  background-color: #fff;
}

video html.dark .project-list-container .project-card:hover {
  background: #1a1a34;
}

.main-form.contact-us {
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}
.main-form.contact-us textarea {
  padding: 16px !important;
  height: 178px !important;
}
.main-form.contact-us .submit-btn {
  padding: 14px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #001e43;
  backdrop-filter: blur(20px);
  color: #fff;
}
.main-form.contact-us .submit-btn:hover {
  filter: brightness(95%);
}

.contact-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid #e6e9ec;
  background: #fff;
  box-shadow: 0 4px 36px 8px rgba(0, 13, 39, 0.04);
}
.contact-info .contact-description {
  color: #6c757d;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.contact-info .contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #d2e5ec;
  background: rgba(240, 242, 255, 0.2);
}
.contact-info .contact-card .user-name {
  color: #141414;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}
.contact-info .contact-card .user-email,
.contact-info .contact-card .user-phone {
  color: #6c757d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
.contact-info .contact-card .user-email:hover,
.contact-info .contact-card .user-phone:hover {
  text-decoration: underline;
}
.contact-info .map-container .map-heading {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.contact-info .social-info .social-heading {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

html.ar .main-form.contact-us textarea {
  height: 158px !important;
}

html.dark .main-form.contact-us,
html.dark .contact-info {
  border-color: rgba(230, 233, 236, 0.08) !important;
  background: rgba(26, 26, 52, 0.7254901961);
}
html.dark .main-form.contact-us label {
  color: #fff;
}
html.dark .main-form.contact-us input,
html.dark .main-form.contact-us select,
html.dark .main-form.contact-us textarea {
  color: #fff;
  caret-color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
}
html.dark .main-form.contact-us input:hover,
html.dark .main-form.contact-us select:hover,
html.dark .main-form.contact-us textarea:hover {
  border-color: #fff;
}
html.dark .main-form.contact-us .submit-btn {
  background-color: #fff;
  color: #001e43;
}
html.dark .contact-info .contact-description {
  color: #fff;
}
html.dark .contact-info .contact-card {
  border-color: rgba(230, 233, 236, 0.08);
  background: #1a1a34;
}
html.dark .contact-info .contact-card .user-name,
html.dark .contact-info .contact-card .user-email,
html.dark .contact-info .contact-card .user-phone {
  color: #fff;
}
html.dark .contact-info .map-container .map-heading {
  color: #fff;
}
html.dark .contact-info .social-heading {
  color: #fff;
}
html.dark .contact-info .social-links-container a svg path {
  fill: #fff;
}

@media screen and (max-width: 765px) {
  .main-form.contact-us,
  .contact-info {
    padding: 24px 16px;
  }
}

/*# sourceMappingURL=style.css.map */
