:root {
  --primary: #1E355E;
  --primary-light: #F4F4F5;
  --black: #000000;
  --white: #ffffff;
  --body-text:#333333;
  --text-dark: #0B001A;
  --bg-light: #E9ECF2;
  --label-color: #66797f;
  --bg-dark: #0B001A;
  --border-color: #D8DCDE;
}

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

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1Q.ttf) format("truetype");
}
body {
  -webkit-tap-highlight-color: transparent;
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 960px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 1060px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1360px;
  }
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 0 15px 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
  height: 45px;
}

.desktop-none {
  display: none !important;
}

.btn-primary:hover {
  opacity: 0.7;
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--bg-light);
}

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

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

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

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

.d-block {
  display: block;
}

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

.lable-color {
  color: var(--label-color);
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 20px;
}

.gap-50 {
  gap: 50px;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.minh120 {
  min-height: 120px;
}

.d-flex {
  display: flex;
}

.column-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

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

.flex-justify-end {
  display: flex;
  justify-content: flex-end;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

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

.flex-align-start {
  display: flex;
  align-items: flex-start;
}

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

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

.flex-column {
  flex-direction: column;
}

.justify-self-end {
  justify-self: flex-end;
}

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

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

.align-baseline {
  display: flex;
  align-items: baseline;
}

.grid2fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid4fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid5fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

p {
  line-height: 1.5;
  font-weight: 400;
}

.fs-50 {
  font-size: 50px;
}

.fs-32 {
  font-size: 32px;
  font-weight: 500;
}

.fs-40 {
  font-size: 40px;
  font-weight: 500;
}

.fs-28 {
  font-size: 28px;
  font-weight: 500;
}

.fs-22 {
  font-size: 22px;
  font-weight: 500;
}

.fs-12 {
  font-size: 12px;
}

.fs-24 {
  font-size: 24px;
  font-weight: 500;
}

p.fs-20,
li {
  font-size: 20px;
}

h5.fs-20 {
  font-size: 20px;
  font-weight: 500;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

a {
  text-decoration: none;
}

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

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.opacity7 {
  opacity: 0.7;
}

.br-24 {
  border-radius: 24px;
}

.br-15 {
  border-radius: 15px;
}

.pos-relative {
  position: relative;
}

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

.common-section {
  align-items: center;
}

.case-study-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.border-black {
  border: 1px solid var(--border-color);
}

.border-black-bottom {
  border-bottom: 1px solid var(--border-color);
}

.boxshedow-inner {
  box-shadow: inset 5px 6px 4px 0 rgba(0, 0, 0, 0.25);
}

.boxshedow-outer {
  box-shadow: 5px 6px 4px 0 rgba(0, 0, 0, 0.25);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background-color: var(--primary-light);
  border-radius: 15px;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
}

.benefit-card__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px 18px 16px;
  border-radius: 15px;
  border-left: 5px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.feature-item:hover {
  background-color: var(--primary-light);
  border-left-color: var(--primary);
}
.feature-item:hover .lable-color {
  color: var(--primary);
}

.retail-service-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.retail-service-row .benefit-card {
  width: calc((100% - 60px) / 3);
}

.h-100 {
  height: 100%;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 14px;
  border-radius: 48px;
  background-color: var(--bg-light);
  color: var(--label-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.field-label {
  display: block;
}

.field-input,
.field-textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--white);
  outline: none;
}

.field-input {
  height: 48px;
  padding: 0 16px;
}

.justify-start {
  justify-content: flex-start;
}

.field-textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.field-input::-moz-placeholder, .field-textarea::-moz-placeholder {
  color: var(--label-color);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--label-color);
}

.field-input:focus,
.field-textarea:focus {
  border-color: var(--primary);
}

@media screen and (max-width: 768px) {
  .p-40 {
    padding: 20px 15px;
  }
  p.fs-20,
  li {
    font-size: 16px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .pt-60 {
    padding-top: 0;
  }
  .p-bottom-none {
    padding-bottom: 0 !important;
  }
  .m-gap-30 {
    gap: 30px !important;
  }
  .case-study-header .fs-32 {
    font-size: 22px;
  }
  .case-study-header .text-center {
    text-align: left;
    grid-row-start: 1;
  }
  .case-study-header {
    gap: 20px;
  }
  .case-study-header ~ .gap-30 {
    gap: 15px;
  }
}
@media screen and (min-width: 761px) {
  p.fs-20,
  li {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .mobile-svg svg {
    width: 300px;
    height: 167px;
  }
  .client-mobile-hide {
    display: none !important;
  }
  .mt-30 {
    margin-top: 30px;
  }
  .m-mt-50 {
    margin-top: 50px;
  }
  .grid2fr,
  .grid3fr,
  .grid4fr,
  .grid5fr,
  .benefit-grid,
  .case-study-header {
    grid-template-columns: 1fr !important;
  }
  .retail-service-row, .m-flex-column {
    flex-direction: column;
  }
  .m-flex-column-reverse {
    display: flex !important;
    flex-direction: column-reverse;
  }
  .retail-service-row .benefit-card {
    width: 100%;
  }
  .flex-direction-column {
    flex-direction: column-reverse;
  }
  .fs-28 {
    font-size: 18px;
  }
  .flightLogin_Wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    margin: 20px 0 0 0 !important;
  }
  .br-24 {
    border-radius: 14px;
  }
  .p-30 {
    padding: 15px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .py-60 {
    padding-top: 40px;
  }
  .py-60, .py-80, .pb-80 {
    padding-bottom: 40px !important;
  }
  .py-80 {
    padding-top: 40px;
  }
  .border-bottom-none {
    border-bottom: none !important;
  }
  .w-100 {
    width: 100%;
  }
  .w-70 {
    width: 100%;
  }
  .w-65 {
    width: 100%;
    padding: 0 15px;
  }
  .mb-30 {
    margin-bottom: 20px !important;
  }
  .gap-30 {
    gap: 20px !important;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .h-auto {
    height: auto !important;
  }
  .btn-primary {
    width: 100%;
  }
  .common-section.gap-50 {
    gap: 20px;
  }
  .fs-32 {
    font-size: 24px !important;
  }
  .d-flex {
    display: block;
  }
  .pt-40 {
    padding-top: 0;
  }
  .mb-50 {
    margin-bottom: 30px !important;
  }
  .justify-self-end {
    width: 100%;
  }
  .fs-50 {
    font-size: 30px;
  }
  .m-w-100 {
    width: 100%;
  }
  .fs-24 {
    font-size: 20px;
  }
  .m-mt-30 {
    margin-top: 30px;
  }
  .desktop-none {
    display: block !important;
  }
}
@media screen and (min-width: 1200px) {
  .word-break {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline-end: 18px !important;
    padding-inline-start: 18px !important;
  }
}
.top-bar {
  position: relative;
  z-index: 0;
  background: var(--primary);
  overflow: hidden;
}

.nav-barWrapper {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.top-bar__item img {
  display: block;
  flex-shrink: 0;
}

.top-bar__social {
  position: absolute;
  top: 0;
  right: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.top-bar__social::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80px;
  right: -100vw;
  background: #809abd;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 16px;
  transform: skewX(-22deg);
  transform-origin: bottom left;
  z-index: -1;
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-size: 10px;
}

@media screen and (max-width: 960px) {
  .top-bar__social {
    right: 30px;
  }
  .top-bar > .container {
    flex-direction: column;
  }
  .top-bar__contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding: 10px 0;
  }
  .top-bar__social {
    position: relative;
    right: auto;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }
  .top-bar__social::before {
    left: -100vw;
    transform: none;
    border-radius: 0;
  }
}
.main-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.main-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-header .menu-logo,
.main-header .menu-click {
  display: none;
}

.main-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-header__nav a,
.main-header__nav .nav-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  text-decoration: none;
  white-space: nowrap;
}

.main-header__nav span.nav-item {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.main-header__nav a i {
  font-size: 10px;
}

.main-header__dropdown {
  position: relative;
}

.main-header__dropdown > .nav-item svg {
  flex-shrink: 0;
}

.main-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  padding: 20px;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(11, 0, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.main-header__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.main-header__dropdown:hover .main-header__dropdown-menu,
.main-header__dropdown:focus-within .main-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-header__dropdown-menu li + li {
  margin-top: 15px;
}

.main-header__dropdown-menu {
  flex-direction: column;
  gap: 10px !important;
  align-items: flex-start !important;
}

.main-header__dropdown-menu a {
  color: var(--body-text);
}

.main-header__dropdown-menu a:hover {
  color: var(--primary);
}

.main-header__nav > ul > li > a.active {
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 960px) {
  .nav-barWrapper {
    display: none;
  }
  body.menu-open {
    overflow: hidden;
  }
  .main-header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .main-header .logo > a img {
    width: 180px;
    height: auto;
  }
  .main-header .menu-click {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .main-header .menu {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    top: 0;
    bottom: 0;
  }
  .main-header .menu.open {
    right: 0 !important;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    overflow-y: auto;
    background-color: var(--white);
  }
  .main-header .menu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
  }
  .main-header .menu-logo img {
    display: block;
    width: 170px;
    height: auto;
  }
  .main-header__nav {
    display: block;
    flex: none;
  }
  .main-header__nav ul {
    display: block;
    gap: 0;
  }
  .main-header__nav a,
  .main-header__nav .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 18px;
    color: var(--body-text);
    text-transform: uppercase;
    white-space: normal;
  }
  .main-header__dropdown::after {
    display: none;
  }
  .main-header__dropdown > .nav-item svg {
    transition: transform 0.3s ease;
  }
  .main-header__dropdown.active-nav > .nav-item {
    color: var(--primary);
  }
  .main-header__dropdown.active-nav > .nav-item svg {
    transform: rotate(180deg);
  }
  .main-header__dropdown-menu,
  .main-header__dropdown:hover .main-header__dropdown-menu,
  .main-header__dropdown:focus-within .main-header__dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    max-height: 0;
    margin-left: 4px;
    padding: 0 0 0 20px;
    overflow: hidden;
    background: transparent;
    border-left: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease;
  }
  .main-header__dropdown.active-nav > .main-header__dropdown-menu {
    max-height: 500px;
  }
  .main-header__dropdown-menu li + li {
    margin-top: 0;
  }
  .main-header__dropdown-menu a {
    padding: 8px 12px;
    font-size: 15px;
    text-transform: none;
  }
  .main-header .contact-me {
    margin: 30px 0 50px 0;
    width: 100%;
  }
  .main-header .contact-me a {
    font-size: 18px;
  }
  .main-header__btn {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    font-size: 15px;
    text-transform: uppercase;
  }
}
.heroSection {
  position: relative;
  width: 100%;
  height: 63vh;
  overflow: visible;
}

.heroSection .mySwiper {
  width: 100%;
  height: 100%;
}

.text-underline {
  text-decoration: underline;
}

.whatsaap-Image {
  position: fixed;
  top: 70%;
  z-index: 99;
  inset-inline-end: 2rem;
  cursor: pointer;
}

.Name-Hyperlink a {
  text-decoration: underline !important;
  color: var(--body-text);
}

.go-to-top {
  position: fixed;
  left: 5%;
  bottom: 2rem;
  inset-inline-end: 2rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.go-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-to-top:hover {
  background-color: var(--primary);
}

.heroSection swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.heroSection swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.heroSection__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.heroSection__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heroSection__video-toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 2;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-image {
  background-image: url("../assets/images/aboutus/about-image6.png");
  height: 54vh;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  position: relative;
}

.video-section {
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: var(--primary);
}

.video-section__player {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-section__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: none;
  background: rgba(30, 53, 94, 0.15);
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-section__play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-section__play-ring {
  width: 100px;
  height: 100px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
}

.video-section__play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--primary);
}

.video-section__play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.heroSection swiper-container::part(button-prev),
.heroSection swiper-container::part(button-next),
.heroSection swiper-container::part(pagination),
.heroSection .swiper-pagination {
  display: none !important;
}

.nutshell-stats {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.nutshell-stats--animate .nutshell-stat,
.nutshell-stats--animate .nutshell-stat__divider {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.nutshell-stats--animate .nutshell-stat.is-visible,
.nutshell-stats--animate .nutshell-stat__divider.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nutshell-stats__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.nutshell-stat h3 {
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.nutshell-stat__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-height: 90px;
}

.nutshell-stat__divider img {
  display: block;
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nutshell-stats--animate .nutshell-stat__divider img {
  transform: scale(0.85);
  transition: transform 0.8s ease;
}

.nutshell-stats--animate .nutshell-stat__divider.is-visible img {
  transform: scale(1);
}

.comon-banerImage {
  width: 100%;
  height: 63vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.comon-banerOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.37);
  z-index: 1;
  height: 65vh;
}

.comon-banerTitle {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  line-height: 1;
  font-size: 60px;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .nutshell-stats--animate .nutshell-stat,
  .nutshell-stats--animate .nutshell-stat__divider {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nutshell-stat__divider img {
    transform: none;
    transition: none;
  }
}
.stats-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.stats-item {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.stats-item h3 {
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.stats-item p {
  color: var(--grey-text);
  line-height: 1.4;
}

.stats-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 100px;
  flex-shrink: 0;
}

.stats-separator-line {
  display: block;
  width: 1px;
  flex: 1;
  background-color: #d9d9d9;
}

.stats-separator img {
  display: block;
  margin: 8px 0;
}

.service-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  background-color: #f2f0f0;
}

.content-list {
  list-style-type: square;
  padding-left: 24px;
}
.content-list li + li {
  margin-top: 12px;
}

.content-list li {
  text-transform: capitalize;
}

.mainContainer aside h3.fs-22 {
  padding-left: 12px;
  border-left: 3px solid var(--primary);
  line-height: 1.2;
}
.mainContainer aside input[type=search] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  color: var(--text-dark);
}
.mainContainer aside input[type=search]::-moz-placeholder {
  color: var(--label-color);
}
.mainContainer aside input[type=search]::placeholder {
  color: var(--label-color);
}
.mainContainer aside a img[width][height] {
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 0, 26, 0.12);
}

.service-card:hover .primary-content,
.service-card:hover .white-content {
  top: 45%;
}

.service-card:hover .service-card-image {
  height: 45%;
}

.service-card:hover .primary-content {
  background: var(--primary);
  color: var(--white);
}

.service-card:hover .white-content {
  background: var(--white);
  color: var(--primary);
}

.service-card-image {
  height: 100%;
  padding: 15px 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
}

.service-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px 15px 0 0;
}

.service-card-image-plane img {
  -o-object-position: 80% center;
     object-position: 80% center;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 80%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  background: var(--white);
  color: var(--primary);
  overflow: hidden;
  transition: top 0.4s ease-in-out, background-color 0.3s ease, color 0.3s ease;
}

.location-card__icon {
  margin-top: 3px;
}

.location-card__text {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.5;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-shrink: 0;
}

.service-card-header h3 {
  line-height: 1.3;
  margin: 0;
}

.service-card-desc {
  margin: 12px 0 20px 0;
  font-size: 14px;
  line-height: 1.4;
}

.service-card-dark .service-card-content {
  background: var(--primary);
  color: var(--white);
}

.timeline-list {
  list-style: none;
}

.timeline-list li {
  position: relative;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 97px;
  width: 1px;
  background: #d3d7de;
}

.section-divider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.location-Wrap {
  position: relative;
}

.location-wrapSvg {
  position: absolute;
  top: -50px;
  left: 40%;
}

.section-divider__diamond {
  position: relative;
  width: 15px;
  height: 15px;
  background: var(--primary);
  transform: rotate(45deg);
}

.feature-divider-item {
  border-right: 1px solid var(--primary);
}
.feature-divider-item:last-child {
  border-right: none;
}

.why-choose-item {
  cursor: default;
}
.why-choose-item svg path {
  fill: #cccccc;
  transition: fill 0.3s ease;
}
.why-choose-item:hover svg path {
  fill: var(--primary);
}

.timeline-list li:first-child::before {
  top: 50%;
}

.timeline-list li:last-child::before {
  bottom: 50%;
}

.timeline-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.timeline-item {
  display: flex;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-dark);
  text-align: left;
  padding: 10px 20px;
}

.timeline-year {
  width: 50px;
  flex-shrink: 0;
  text-align: right;
  opacity: 0.7;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.timeline-input:checked + .timeline-item {
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 100px;
}

.timeline-input:checked + .timeline-item .timeline-year,
.timeline-input:checked + .timeline-item .timeline-label {
  font-weight: 600;
  opacity: 1;
}

.timeline-input:checked + .timeline-item .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--white);
}

.timeline-panels .timeline-card {
  display: none;
}

.timeline:has(#timeline-tab-1:checked) .timeline-panels .timeline-card:nth-child(1),
.timeline:has(#timeline-tab-2:checked) .timeline-panels .timeline-card:nth-child(2),
.timeline:has(#timeline-tab-3:checked) .timeline-panels .timeline-card:nth-child(3),
.timeline:has(#timeline-tab-4:checked) .timeline-panels .timeline-card:nth-child(4),
.timeline:has(#timeline-tab-5:checked) .timeline-panels .timeline-card:nth-child(5),
.timeline:has(#timeline-tab-6:checked) .timeline-panels .timeline-card:nth-child(6),
.timeline:has(#timeline-tab-7:checked) .timeline-panels .timeline-card:nth-child(7),
.timeline:has(#timeline-tab-8:checked) .timeline-panels .timeline-card:nth-child(8),
.timeline:has(#timeline-tab-9:checked) .timeline-panels .timeline-card:nth-child(9),
.timeline:has(#timeline-tab-10:checked) .timeline-panels .timeline-card:nth-child(10),
.timeline:has(#timeline-tab-11:checked) .timeline-panels .timeline-card:nth-child(11) {
  display: block;
}

.Name-Hyperlink a {
  text-decoration: underline !important;
  color: var(--body-text);
}

.timeline-card__image {
  display: block;
}

.journey-card {
  flex-direction: column;
  align-items: flex-start;
}
.journey-card__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.journey-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.journey-card__line {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 20px;
}
.journey-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}

.brand-logo-swiper {
  width: 100%;
  overflow: hidden;
  --swiper-wrapper-transition-timing-function: linear !important;
}

.brand-logo-swiper swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.brand-logo-swiper swiper-slide img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.brand-logo-swiper::part(button-prev),
.brand-logo-swiper::part(button-next),
.brand-logo-swiper::part(pagination) {
  display: none !important;
}

.aboutUsSwiper {
  display: block;
  width: 100%;
  min-width: 0;
}

.aboutUsSwiper swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.aboutUsSwiper::part(button-prev),
.aboutUsSwiper::part(button-next),
.aboutUsSwiper::part(pagination) {
  display: none !important;
}

.testimonial-swiper {
  width: 100%;
}

.testimonial-swiper swiper-slide {
  height: auto;
  padding-top: 40px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
  min-height: 290px;
  padding-top: 50px;
  box-shadow: 0 4px 20px 0 rgba(30, 53, 94, 0.08);
}

.testimonial-card__avatar {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 5px solid var(--bg-light);
  color: var(--white);
  text-transform: uppercase;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light) 20%, rgba(233, 236, 242, 0));
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light) 20%, rgba(233, 236, 242, 0));
}

.testimonial-nav {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.3s;
}

.testimonial-nav-prev {
  left: -20px;
}

.testimonial-nav-next {
  right: -20px;
}

.testimonial-nav.is-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.accordion-list {
  max-width: 900px;
}

.accordion-item {
  overflow: hidden;
}

.accordion {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  color: inherit;
}

.accordion-icon {
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease;
}

.accordion.is-open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  margin: 0;
  padding: 0 20px 20px;
}

.dedicated-expertise {
  width: 40%;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.team-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 0;
}

.team-col--offset {
  padding-top: 160px;
}

.team-card {
  width: 100%;
  position: relative;
  border-radius: 12px;
  background-color: transparent;
  box-shadow: 10px 10px 0 0 transparent;
  transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.team-card img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: filter 0.4s ease-in-out, border-radius 0.4s ease-in-out;
}
.team-card .team-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0;
  transition: padding 0.4s ease-in-out;
  padding: 16px 20px 20px;
}
.team-card .team-card-content h3,
.team-card .team-card-content p {
  margin: 0;
  line-height: 1.35;
}
.team-card:hover {
  background-color: #fff;
  box-shadow: 10px 10px 0 0 var(--primary);
  transform: translate(-4px, -4px);
}
.team-card:hover img {
  filter: grayscale(0%);
  border-radius: 12px 12px 0 0;
}

.team-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 30px;
  align-items: center;
}

.team-summary {
  background-color: #e8e8e8;
  text-align: left;
  width: 100%;
}
.team-summary p {
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.flightLogin_Wrap > div img {
  transition: filter 0.25s ease;
}
.flightLogin_Wrap > div:hover img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(35%) saturate(1126%) hue-rotate(182deg) brightness(95%) contrast(90%);
}

@media screen and (max-width: 960px) {
  .service-card {
    height: 360px;
  }
  .service-card-content {
    top: 40%;
  }
  .service-card-image {
    height: 40%;
  }
  .service-card:hover .service-card-content,
  .service-card:hover .primary-content,
  .service-card:hover .white-content {
    top: 40%;
  }
  .service-card:hover .service-card-image {
    height: 40%;
  }
  .comon-banerImage {
    height: 320px;
  }
  .nutshell-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
    width: 100%;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-col {
    gap: 20px;
  }
  .team-col--offset {
    padding-top: 0;
  }
  .team-card img {
    width: 100%;
  }
  .nutshell-stats__row {
    display: contents;
  }
  .nutshell-stat p {
    font-size: 16px;
    margin-top: 18px;
  }
  .stats-row {
    flex-direction: column;
    gap: 30px;
  }
  .stats-separator {
    flex-direction: row;
    min-height: auto;
    width: 100%;
    max-width: 200px;
  }
  .stats-separator-line {
    width: auto;
    height: 1px;
    flex: 1;
  }
  .stats-item {
    max-width: 100%;
  }
  .heroSection {
    height: 300px;
  }
  .comon-banerTitle {
    left: 5%;
  }
  .whatsaap-Image {
    height: 80px;
    width: 100px;
  }
  .timeline-dot, .timeline-list li::before {
    display: none;
  }
  .timeline-label {
    font-size: 16px !important;
  }
  .timeline-year {
    text-align: center;
  }
  .timeline-list {
    display: flex;
    white-space: nowrap;
    overflow: auto;
    gap: 30px;
  }
  .go-to-top__label {
    font-size: 9px;
  }
  .brand-logo-swiper swiper-slide img {
    width: 150px;
    height: 65px;
  }
  .timeline-item {
    flex-direction: column;
    padding: 0;
    gap: 5px !important;
  }
  .timeline-input:checked + .timeline-item {
    background: transparent;
  }
  .m-align-start {
    align-items: flex-start !important;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 30px;
  }
  .testimonial-nav-prev {
    left: -10px;
  }
  .testimonial-nav-next {
    right: -10px;
  }
  .hero-image {
    background-size: cover;
    height: 350px;
  }
  .feature-divider-item {
    border-right: unset;
  }
  .feature-item {
    align-items: flex-start;
    padding: 0;
  }
  .accordion-content p {
    padding: 0 18px 16px;
  }
  .team-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .feature-item .lable-color {
    text-align: left;
  }
}
.footer-mainWrap {
  display: flex;
  gap: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex: 1;
  min-width: 0;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--label-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}

.footer-title:hover,
.footer-links a:hover {
  color: var(--primary);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 16px;
  color: var(--label-color);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-line {
  width: 32%;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-mainWrap {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 30px 40px;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links a {
    white-space: normal;
  }
  .footer-linktravel {
    grid-template-columns: 1fr;
  }
  .footer-mainWrap .m-mt-30 {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .grid-area {
    grid-area: 5;
  }
  .footer-grid svg {
    width: 32px;
    height: 32px;
  }
  .footer-linktravel {
    grid-template-columns: 1fr 1fr;
  }
  .footer-mainWrap {
    display: flex !important;
    flex-direction: column-reverse;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1Q.ttf) format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1Q.ttf) format("truetype");
}
body {
  -webkit-tap-highlight-color: transparent;
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 0 15px 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
  height: 45px;
}

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

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.bg-gradient {
  background: linear-gradient(180deg, rgba(48, 18, 90, 0) 0%, rgba(48, 18, 90, 0.5) 100%);
}

.bg-dark {
  background-color: var(--border-color);
}

.bg-purple {
  background-color: var(--bg-purple);
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--bg-light);
}

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

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

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

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 20px;
}

.gap-50 {
  gap: 50px;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.minh180 {
  min-height: 180px;
}

.d-flex {
  display: flex;
}

.column-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

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

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

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

.flex-column {
  flex-direction: column;
}

.justify-self-end {
  justify-self: flex-end;
}

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

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

.grid2fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid4fr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

p {
  line-height: 1.5;
  font-weight: 400;
}

.fs-60 {
  font-size: 60px;
  font-weight: 600;
}

.fs-32 {
  font-size: 32px;
  font-weight: 500;
}

.fs-40 {
  font-size: 40px;
  font-weight: 500;
}

.fs-28 {
  font-size: 28px;
  font-weight: 500;
}

.fs-22 {
  font-size: 22px;
  font-weight: 500;
}

.fs-24 {
  font-size: 24px;
  font-weight: 500;
}

p.fs-20,
li {
  font-size: 20px;
}

h5.fs-20 {
  font-size: 20px;
  font-weight: 500;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

a {
  text-decoration: none;
}

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

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.opacity7 {
  opacity: 0.7;
}

.br-24 {
  border-radius: 24px;
}

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

.pos-relative {
  position: relative;
}

.d-none {
  display: none;
}

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

.form-control {
  position: relative;
  height: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.form-label {
  position: absolute;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.5;
  top: 0.5rem;
  width: 100%;
  color: var(--white);
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  resize: none;
  border: none;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: all 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.form-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.form-input:not(:-moz-placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:not(:-moz-placeholder).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.75rem;
  left: 0;
  font-size: 0.875rem;
  z-index: 9;
  transition: all 0.2s ease;
}

.form-button button {
  width: 250px;
  justify-content: center;
}

.validation-msg {
  display: inline-block;
  font-size: 11px;
  font-weight: normal;
  left: -3px;
  margin: 0 auto;
  padding: 4px;
  position: relative;
  top: 48px;
}

.error-message {
  color: red;
}

.common-section {
  align-items: center;
}

.com-star-section {
  text-align: center;
}

.client-desktop-hide {
  display: none !important;
}

.case-study-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.case-study-stats, .case-study-challenges {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
}

.case-study-stats svg {
  margin-top: 8px;
}

.case-study-challenges svg {
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .client-section.gap-30,
  .client-section .gap-30 {
    gap: 10px;
  }
  .form-card .container {
    padding: 0;
  }
  .form-card .br-24 {
    border-radius: 0;
  }
  .p-40 {
    padding: 20px 15px;
  }
  .form-card .p-40 {
    padding: 20px 15px;
  }
  p.fs-20,
  li {
    font-size: 16px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .pt-60 {
    padding-top: 0;
  }
  .py-30 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .com-star-section {
    text-align: left;
  }
  .collaborators.gap-50 {
    gap: 30px;
  }
  .case-study-header .fs-32, .case-study-stats .fs-32 {
    font-size: 22px;
  }
  .case-study-header .text-center {
    text-align: left;
    grid-row-start: 1;
  }
  .case-study-header {
    gap: 20px;
  }
  .case-study-header ~ .gap-30 {
    gap: 15px;
  }
  .case-study-chall .gap-50 {
    gap: 30px;
  }
  .case-study-solution .gap-30 {
    gap: 15px;
  }
}
@media screen and (min-width: 761px) {
  p.fs-20,
  li {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .client-desktop-hide {
    display: grid !important;
  }
  .client-mobile-hide {
    display: none !important;
  }
  .mt-100 {
    margin-top: 30px;
  }
  .grid2fr,
  .grid3fr,
  .grid4fr {
    grid-template-columns: 1fr;
  }
  .fs-55 {
    font-size: 45px;
  }
  .fs-28 {
    font-size: 18px;
  }
  .br-24 {
    border-radius: 14px;
  }
  .p-30,
  .pxy-30 {
    padding: 15px;
  }
  .p-50 {
    padding: 15px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .minh180 {
    min-height: 90px;
  }
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .w-60,
  .w-70 {
    width: 100%;
  }
  .w-65 {
    width: 100%;
    padding: 0 15px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .mt-60 {
    margin-top: 40px;
  }
  .h-300,
  .h-350,
  .h-400,
  .h-500 {
    height: unset;
    width: 100%;
  }
  .column-mobile {
    justify-content: flex-start !important;
    flex-direction: row !important;
  }
  .btn-primary {
    width: 100%;
  }
  .common-section.gap-50 {
    gap: 20px;
  }
  .common-section .mb-30 {
    margin-bottom: 15px;
  }
  .common-reverse {
    flex-direction: column-reverse;
    display: flex;
  }
  .justify-self-end {
    width: 100%;
  }
  .fs-60 {
    font-size: 35px;
    font-weight: 600;
  }
  .fs-24 {
    font-size: 20px;
  }
}
@media screen and (min-width: 961px) {
  .h-300 {
    height: 250px;
  }
  .h-350 {
    height: 300px;
  }
  .h-400 {
    height: 350px;
  }
  .h-500 {
    height: 350px;
  }
  .column1-3 {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .column3-3 {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
  }
}
@media screen and (min-width: 1200px) {
  .word-break {
    display: block;
  }
  .h-300 {
    height: 300px;
  }
  .h-350 {
    height: 350px;
  }
  .h-400 {
    height: 370px;
  }
  .h-500 {
    height: 480px;
  }
}
@media screen and (min-width: 1400px) {
  .h-300 {
    height: 350px;
  }
  .h-350 {
    height: 400px;
  }
  .h-400 {
    height: 500px;
  }
  .h-500 {
    height: 500px;
  }
}/*# sourceMappingURL=app.css.map */