:root {
  --primary: #6928d9;
  --primary-light: #F6F4FF;
  --secondary: #30125A;
  --black: #000000;
  --white: #ffffff;
  --text-grey: #4B5563;
  --text-dark: #101010;
}

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

body {
  -webkit-tap-highlight-color: transparent;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
}

body.test {
  overflow: hidden;
}

button,
input {
  font-family: "Figtree", sans-serif;
}

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

@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: 1170px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
.bg-white {
  background-color: var(--white);
}

.bg-dark {
  background-color: #101024;
}

.bg-primary {
  background-color: #583593;
}

.bg-purple {
  background-color: #8D54ED;
}

.bg-light {
  background-color: #EEEAFF;
}

.bg-gradient {
  background: linear-gradient(180deg, #FFFFFF 0%, #E0DEFE 100%);
}

.bg-primary-gradient {
  background-color: #361077;
}

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

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

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

button {
  cursor: pointer;
}

.btn {
  padding: 0 25px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 48px;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
  height: 50px;
}

.btn-link {
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  gap: 10px;
  color: #7465FF;
  font-size: 18px;
  font-weight: 600;
}

.btn-primary {
  background-color: #7465FF;
  color: var(--white);
  border: 1px solid #7465FF;
}

.btn-white {
  background-color: var(--white);
  color: #7465FF;
  border: 1px solid var(--white);
}

.btn-white-light {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-primary:hover {
  background-color: #7465FF;
}

.btn-primary-light {
  background-color: var(--primary-light);
  color: #7465FF;
  border: 1px solid var(--primary-light);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

a {
  text-decoration: none;
}

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

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

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

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

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

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

.pos-relative {
  position: relative;
}

.d-none {
  display: none;
}

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

.opacity6 {
  opacity: 0.6;
}

.opacity8 {
  opacity: 0.8;
}

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

.h-100 {
  height: 100%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 70%;
}

.grid2fr {
  display: grid;
  grid-template-columns: 49% 49%;
}

.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;
}

@media screen and (min-width: 1200px) {
  .word-break {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .grid4fr,
  .grid3fr,
  .grid2fr {
    grid-template-columns: 100%;
  }
  .grid5fr {
    grid-template-columns: 1fr 1fr;
  }
  .w-90 {
    width: 100%;
  }
  .br-24 {
    border-radius: 14px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1400px) {
  .fs-60 {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fs-60 {
    font-size: 30px;
  }
  .fs-50 {
    font-size: 28px;
  }
  .fs-40 {
    font-size: 24px;
  }
  .fs-24 {
    font-size: 20px;
  }
  .fs-22 {
    font-size: 18px;
  }
  .fs-20 {
    font-size: 18px;
  }
  .fs-18 {
    font-size: 16px;
  }
}
.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.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;
}

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

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

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

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .w-80,
  .w-70,
  .w-60 {
    width: 100%;
  }
  .p-30 {
    padding: 20px;
  }
  .pb-60 {
    padding-bottom: 30px;
  }
  .py-60 {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .my-40 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .my-60 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .mt-100 {
    margin-top: 10px;
  }
  .btn {
    font-size: 16px;
  }
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

header {
  background: var(--white);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0588235294);
  height: 65px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo {
  cursor: pointer;
}

.logo a:focus-visible {
  outline: 0;
}

.btn-header {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  height: 35px;
}

.header-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

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

.header-secondary {
  background-color: #ffffff;
  color: #2E1065;
  border: 1px solid #2E1065;
}

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

.nav-contact {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-wrapper ul.nav-list {
  list-style: none;
  margin: 0 auto;
  height: 65px;
  display: flex;
  gap: 25px;
}

.header-wrapper ul.nav-list li {
  cursor: pointer;
}

.header-wrapper ul.nav-list li .nav-item {
  color: var(--text-dark);
  display: block;
  text-decoration: none;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
}

.header-wrapper ul.nav-list li .nav-item.active {
  color: var(--primary);
}

.header-wrapper ul li:hover > .header-dropdown {
  display: block;
}

.header-wrapper ul .header-dropdown {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 0;
  display: none;
  width: 100%;
  position: absolute;
  top: 65px;
  left: 0px;
  z-index: 99;
}

.dropdown-wrapper {
  display: grid;
  grid-template-columns: 25% auto 30%;
  gap: 50px;
  padding: 50px 0;
}

.dropdown-wrapper ul {
  list-style-type: none;
}
.dropdown-wrapper ul li a {
  color: var(--text-dark);
}

.dropdown-wrapper ul li a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.contact-me a {
  padding: 12px 15px;
}

.com-HeaderSpace {
  padding-top: 65px;
}

ul.nav-list li.active a {
  color: var(--primary);
}

ul.nav-list li a:hover,
ul.nav-list li a:focus {
  box-shadow: none;
  outline: none;
  text-decoration: none;
}

ul.nav-list li .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  z-index: 1;
}

ul.nav-list li .sub-menu li a {
  padding: 0;
  color: #222;
  text-transform: none;
  -moz-text-align-last: left;
       text-align-last: left;
}

ul.nav-list li .sub-menu li:hover {
  background-color: var(--primary-light);
}

ul.nav-list li .sub-menu li a {
  padding: 0 20px !important;
  line-height: 43px;
  color: var(--text-dark);
  text-transform: none;
  font-size: 16px;
  display: block;
}

@media screen and (min-width: 1024px) {
  ul.nav-list li .sub-menu {
    display: none;
    width: 330px;
    position: absolute;
    transition: all 0.4s ease-in-out;
  }
  ul.nav-list li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .has-menu.active-nav .sub-menu {
    grid-template-columns: 1fr;
    padding: 0 0 0 20px;
    border-left: 1px solid #bfbfbf;
    margin-top: 20px;
  }
  ul.nav-list .has-menu.active-nav .sub-menu li {
    margin-bottom: 0;
  }
  ul.nav-list .has-menu.active-nav .sub-menu li a {
    padding: 0 !important;
  }
  ul.nav-list li .sub-menu {
    display: none;
  }
  ul.nav-list li.active-nav .sub-menu {
    display: block;
  }
  .menu-open {
    overflow: hidden;
  }
  .menu-open header {
    height: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
  .menu-click,
  .menu-logo {
    display: block;
  }
  .menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
  }
  .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;
  }
  .open {
    background-color: #ffffff;
    right: 0 !important;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    overflow-y: auto;
  }
  .header-wrapper ul .header-dropdown {
    position: unset;
    background-color: transparent;
    color: var(--white);
  }
  .dropdown-wrapper ul li a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
  }
  .dropdown-wrapper {
    grid-template-columns: 1fr;
    padding: 0 0 0 20px;
    border-left: 1px solid #bfbfbf;
    margin-top: 20px;
  }
  .header-wrapper ul.nav-list li .nav-item {
    font-size: 18px;
  }
  .dropdown-wrapper div:first-child,
  .dropdown-wrapper div:nth-child(3) {
    display: none;
  }
  .header-wrapper ul.nav-list {
    margin: 50px 0;
  }
  .header-wrapper ul.nav-list {
    flex-direction: column;
    height: unset;
    gap: 0;
  }
  .header-wrapper ul.nav-list li .nav-item {
    justify-content: flex-start;
    height: unset;
  }
  .header-wrapper ul.nav-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .header-wrapper ul li:hover > .header-dropdown {
    display: none;
  }
  .header-wrapper ul li.active-nav > .header-dropdown {
    display: block !important;
  }
  .contact-me {
    width: 100%;
  }
  .contact-me a {
    display: block;
    text-align: center;
    height: 50px;
    font-size: 16px;
    line-height: unset;
  }
  .btn-header {
    padding: 0 25px;
    height: 40px;
  }
}
footer {
  padding: 80px 0;
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-left p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.social-icons a {
  display: inline-block;
  height: 32px;
}

.footer-bottom {
  margin-top: 20px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2D9CDB;
}

.footer-bottom p {
  font-size: 16px;
}

.footer-bottom .container,
.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  gap: 50px;
}

.footer-links {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
}

.new-link {
  background-color: var(--primary);
  padding: 4px 8px;
  font-size: 12px;
  display: inline-block;
  border-radius: 25px;
  color: #fff;
  opacity: 1 !important;
}

.footer-text-desc {
  padding-right: 70px;
}
.footer-text-desc h1 {
  font-size: 80px;
  font-weight: 500;
  font-style: italic;
  text-align: right;
}

@media screen and (min-width: 1300px) {
  .footer-text-desc h1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media screen and (min-width: 961px) {
  .footer-container {
    display: grid;
    grid-template-columns: 18% 20% auto;
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .footer-container {
    display: grid;
    grid-template-columns: 38% auto;
    gap: 10px;
    margin-bottom: 30px;
  }
  footer {
    padding: 30px 0 60px;
  }
  .footer-links {
    display: none;
  }
  .footer-bottom {
    padding: 10px 0 0;
  }
  .footer-copyright.space-between {
    flex-direction: column;
    gap: 10px;
  }
  .footer-logo.gap-40 {
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-logo.gap-40 .social-icons a {
    height: 24px;
  }
  .footer-logo.gap-40 .social-icons a img {
    height: 24px;
  }
  .footer-text-desc {
    display: none;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    padding: 0 35px;
  }
  .social-icons {
    margin-bottom: 20px;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright p:first-child {
    margin-bottom: 5px;
  }
  .footer-copyright .d-flex {
    justify-content: center;
  }
}
.section2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}

.section2-card {
  background: linear-gradient(90deg, #EDE9FE 0%, #F7F6FF 100%);
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.section2-card.active {
  background: var(--primary);
}
.section2-card.active h4 {
  color: var(--white);
}

.section2-icon {
  background-color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
}

.bg-section3 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner2.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.heroBottomTabs {
  margin-top: 30px;
}

.bg-section4 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner3.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 30px;
}

.section4-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bg-section5 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner5.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 60px;
}

.bg-section5-image {
  display: flex;
  align-items: flex-end;
}

.bg-section6 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner6.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 30px 0;
}

.bg-section6-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.bg-section6-image img {
  height: 400px;
}

.bg-section7 {
  background: linear-gradient(180deg, #FFFFFF 0%, #E0DEFE 100%);
}

.bg-section8 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner8.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-section8 .grid4fr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.bg-section8 .section8-card {
  padding: 20px;
  color: white;
}
.bg-section8 .section8-card:nth-child(2),
.bg-section8 .section8-card:nth-child(3),
.bg-section8 .section8-card:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-section9 {
  background: linear-gradient(180deg, #FFFFFF 0%, #E0DEFE 100%);
  width: 100%;
}

.section9-circle {
  position: relative;
}

.section9-count {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  display: grid;
  place-items: center;
  color: #ffffff;
  position: absolute;
  bottom: -23px;
  left: 41%;
}

.section9-card {
  border-radius: 0 0 24px 24px;
  margin-top: -5px;
  min-height: 158px;
  padding: 45px 15px 20px;
}

.bg-section10 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner10.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 20px;
}
.bg-section10 .grid4fr {
  gap: 20px;
}

.section10-card {
  border-radius: 0 0 24px 24px;
  padding: 20px;
  margin-top: -1px;
}

.section10-circle {
  position: relative;
}
.section10-circle .section10-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-section11 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/banner6.png");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px 0 0 30px;
}

.section12-card {
  border-radius: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 450px;
  position: relative;
}
.section12-card .section12-content {
  position: absolute;
  bottom: 20px;
  color: #ffffff;
  padding: 20px;
  width: 90%;
}

.review1 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/testimonials/review1.jpg");
}

.review2 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/testimonials/review2.jpg");
}

.review3 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/testimonials/review3.jpg");
}

.about-section1 {
  background-color: #583593;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 40% 60%;
  border-radius: 24px;
  overflow: hidden;
}

.about-section1-heading {
  padding: 30px;
}

.about-section1-card {
  background-color: #8D54ED;
  border-radius: 24px;
  width: 100%;
}

.about-section1-content {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 20px;
}

.about-section1-item {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-section1-image {
  padding: 30px 30px 0 20px;
  margin-bottom: -5px;
}

.about-section5-image {
  padding: 30px 20px 0 30px;
  margin-bottom: -5px;
}
.about-section5-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.section11-image img {
  height: 500px;
}

.about-section5-image img {
  height: 490px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.com-Section .mainHeading {
  margin: 60px auto;
}

.com-Section {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/comBanner.png");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.com-SectionImage {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.com-SectionImage .d-flex {
  position: absolute;
  justify-content: center;
  width: 100%;
  top: -22px;
}
.com-SectionImage img {
  height: 300px;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -3px;
}

.api-image {
  margin: 10px 0;
  display: grid;
  place-items: center;
}
.api-image img {
  height: 200px;
}

.com-Product {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/frame1.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}

.com-Product3 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/frame3.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}

.com-ProductSpace {
  padding: 30px;
}

.com-ProductSpace2 {
  padding: 30px 0 30px 30px;
}

.com-ProductImg {
  margin: 30px 0;
  display: flex;
  justify-content: flex-end;
}

.com-ProductImg2 {
  margin: 30px 0;
}

.com-Product2 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/frame2.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 30px 0 0 30px;
}
.com-Product2 .column-between {
  padding-bottom: 30px;
}

.com-ProductImg2,
.com-ProductImg3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.com-ProductImg3 {
  margin-bottom: 30px;
}

.enterprise-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 30px 0 0 20px;
}
.enterprise-image img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.common-sectionPadding {
  padding: 40px 40px 0;
}

.maxHeight-400 {
  max-height: 420px;
}

.maxHeight-540 {
  max-height: 540px;
}

.home-agents {
  background-color: var(--primary-light);
  border-radius: 24px;
  padding: 20px 0 60px;
  position: relative;
}
.home-agents .w-80 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-agents-button {
  position: absolute;
  bottom: -25px;
}

.tab-content {
  display: none;
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .platform-grid.grid5fr {
    grid-template-columns: 100%;
  }
  .heroImage,
  .bg-section4-switch {
    display: none;
  }
  .bg-section4 .column-between {
    gap: 20px;
  }
  .heroSection {
    height: 400px;
  }
  .section2 {
    display: flex;
    overflow: auto;
  }
  .section2 .p-30 {
    min-width: 200px;
    border-radius: 24px;
  }
  .section2::-webkit-scrollbar {
    display: none;
  }
  .bg-section6 img {
    height: unset;
  }
  .bg-section6 .column-between {
    gap: 20px;
  }
  .bg-section8 .mb-40 {
    margin-bottom: 0;
    padding: 20px 15px;
  }
  .bg-section8 .section8-card {
    padding: 20px 15px;
  }
  .section8-card.mb-20 {
    margin-bottom: 0;
  }
  .section8-card .mb-20 {
    margin-bottom: 10px;
  }
  .section8-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .bg-section10 {
    padding: 20px 15px;
  }
  .bg-section10 .grid4fr {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .section10-card {
    padding: 15px;
    height: 180px;
  }
  .bg-section11 {
    display: block;
  }
  .bg-section11 .section11-image {
    display: none;
  }
  .bg-section11 {
    padding: 30px 20px 0;
  }
  .section12-card {
    height: 450px;
  }
  .section12-card .section12-content {
    width: 100%;
  }
  .section2-card {
    min-width: 230px;
    padding: 15px;
  }
  .bg-section4 {
    padding: 20px 15px;
  }
  .section4-grid {
    gap: 10px;
  }
  .section4-grid .p-20 {
    padding: 10px;
  }
  .bg-section5 {
    padding-top: 40px;
  }
  .bg-section6 {
    display: block;
    padding: 30px 20px 0;
  }
  .bg-section6-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
  }
  .bg-section6-image img {
    height: 200px;
  }
  .about-section1 {
    grid-template-columns: 100%;
  }
  .about-section1-heading {
    padding: 20px;
  }
  .about-section1-heading .mb-40 {
    margin-bottom: 20px;
  }
  .about-section1-image,
  .about-section5-image {
    padding: 10px 20px 0;
    margin-bottom: 0;
  }
  .about-section1-item {
    font-size: 16px;
  }
  .about-section5-image img {
    height: 250px;
  }
  .com-ProductImg {
    margin: 20px 0;
  }
  .com-ProductSpace,
  .com-Product2 {
    padding: 20px;
  }
  .com-Product2 .column-between {
    padding-bottom: 0;
  }
  .com-Product2 .column-between p {
    margin-top: 10px;
  }
  .grid2fr.platform-packaging {
    grid-template-columns: 60% 40%;
  }
  .grid2fr.platform-packaging svg {
    height: 100px;
  }
  .com-Section .container {
    padding: 0;
  }
  .com-SectionImage {
    width: 100%;
  }
  .com-Section .mainHeading {
    margin: 30px auto;
    padding: 15px;
  }
  .enterprise-image {
    display: block;
    padding: 0 20px 20px;
  }
  .enterprise-image img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
  .bg-tabs-header {
    margin: 0 auto 10px;
    width: 100%;
    display: flex;
    overflow: scroll;
  }
  .bg-tabs-header button {
    padding: 8px 10px;
    font-size: 14px;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .bg-tabs-header::-webkit-scrollbar {
    display: none;
  }
  .bg-section9 .grid3fr {
    display: flex;
    overflow: scroll;
    gap: 15px;
  }
  .bg-section9 .grid3fr::-webkit-scrollbar {
    display: none;
  }
  .bg-section9 .travelGiants {
    min-width: 280px;
  }
  .bg-section9 .travelGiants .section9-card {
    min-height: 190px;
  }
  .section-testimonials {
    display: flex;
    gap: 15px;
    overflow: scroll;
  }
  .section-testimonials .section12-card {
    min-width: 280px;
  }
  .section-testimonials::-webkit-scrollbar {
    display: none;
  }
  .section10-icon svg {
    height: 40px;
    width: 40px;
  }
}
.heroSection2 {
  background-size: cover;
  background-position: bottom left;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  padding-top: 65px;
  background-repeat: no-repeat;
}

.gradient-img {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/images/heros/gradient-banner.png");
}

.textureGradient-img {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/assets/images/banner/comBanner.png");
}

.lightTexture-img {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/images/light-texture.png");
}

.com-banner1 {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/com-banner1.png");
}

.Texturegradient-img {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/images/light-texture.png");
}

.banner-independent {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/banner-independent.png");
}

.dmc {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/banner-dmc.png");
}

.heroSection1 {
  margin: 0 auto;
  padding: 60px 0;
}

.heroSection1-img {
  width: 85%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.heroSection1-img .d-flex {
  position: absolute;
  justify-content: center;
  width: 100%;
  align-items: flex-end;
  top: -20px;
}
.heroSection1-img img {
  height: 250px;
  border-radius: 24px 24px 0 0;
}

.com-section1 {
  padding: 40px 40px 0;
}

.com-section1-img img {
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: flex-end;
  height: 250px;
}

.card1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.card1 button {
  width: -moz-fit-content;
  width: fit-content;
}
.card1 button svg {
  margin-bottom: -4px;
}

.more-cardOverlay {
  position: absolute;
  bottom: -34px;
  width: 100%;
  display: none;
}

.more-cardBtn {
  z-index: 1;
  position: relative;
  display: none;
}

.com-sideSectionRight {
  padding: 40px 40px 0;
  display: grid;
  grid-template-columns: calc((100% - 40px) / 2) calc((100% - 40px) / 2);
  gap: 40px;
}

.com-sideSectionRight.align-center {
  align-items: center;
}

.com-rightContent {
  padding-bottom: 40px;
}

.OTA-RightImg img {
  border-radius: 24px !important;
}

.SectionRight-image {
  display: flex;
  justify-content: center;
}

.SectionRight-image img {
  height: 450px;
  border-radius: 24px 24px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.borderGrey {
  border: 1px solid #bfbfbf;
}

.checkBoxWrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.form-check {
  display: flex;
  gap: 15px;
}

.redClear {
  cursor: pointer;
}

.form-check-input {
  display: none;
}

.form-check-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 5px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.form-check-input:checked + .form-check-label::before {
  background-color: var(--primary);
  /* Example: Bootstrap primary blue */
  border-color: var(--primary);
}

/* Example: Add a checkmark using ::after on the label */
.form-check-input:checked + .form-check-label::after {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: white;
  position: absolute;
  left: 14.1%;
  padding: 0 2px;
}

.form-check-label {
  font-weight: 500;
  font-size: 18px;
}

.search-box {
  max-width: 60%;
  margin: 50px auto;
}

.search-input {
  border-radius: 50px;
  padding-left: 3rem;
  border: 1px solid #bfbfbf;
  box-shadow: none;
  height: 50px;
  width: 100%;
  font-size: 18px;
  background-color: transparent;
}

.bgColorTab {
  background-color: #F3F4F6;
  padding: 8px 15px;
}
.bgColorTab svg {
  cursor: pointer;
}

.search-input:focus {
  border: 2px solid var(--primary);
  outline: 0;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 53%;
  transform: translateY(-50%);
  color: #888;
}

.label-color {
  color: #888;
}

.tabWrap.active {
  border-bottom: 2px solid #6928d9 !important;
  color: #6928d9;
}

.p-custom {
  padding: 15px;
  cursor: pointer;
}

.tabHead {
  background-color: #fff;
  padding: 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.customBtn {
  background-color: #F3F4F6;
  padding: 10px 20px;
  border: 0;
  outline: 0;
}

.tabWrap div {
  border-bottom: 2px solid transparent;
}

.sectionScreenshot {
  padding: 40px 40px 0;
}
.sectionScreenshot img {
  height: 450px;
  border-radius: 24px 24px 0 0;
}

.grid4Custom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.grid4Custom img {
  height: 150px;
  border-radius: 24px;
}

.steps {
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
.steps::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  border-width: 1px;
  height: 100%;
  border-style: dashed;
  background: transparent;
  border-color: #bfbfbf;
}

.step {
  position: relative;
  padding-bottom: 30px;
}

/* Number circle */
.step-number {
  position: absolute;
  left: -50px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ede8fe;
  color: #6b4efc;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid #d5cbfd;
}

.step-title {
  margin-bottom: 5px;
  font-size: 20px;
}

.step-text {
  line-height: 1.5;
}

.border-bottom {
  border-bottom: 1px dashed #bfbfbf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.bgIcon {
  background-color: #F6F4FF;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
}

@media screen and (min-width: 1300px) {
  .heroSection2 {
    height: 90vh;
  }
}
@media screen and (max-width: 768px) {
  .heroSection2 {
    height: 400px;
  }
  .gradient-img .container,
  .textureGradient-img .container,
  .Texturegradient-img .container {
    padding: 0;
  }
  .heroSection1 {
    margin: 30px auto;
    padding: 0 15px;
  }
  .heroSection1-img {
    width: 100%;
  }
  .heroSection1-img img {
    height: 245px;
  }
  .heroSection1-img .gap-20 {
    gap: 10px;
  }
  .com-section1 {
    padding: 30px 15px 0;
  }
  .com-section1 .d-flex {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  .com-section1-img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .com-sideSectionRight {
    grid-template-columns: 100%;
    padding: 30px 15px 0;
    gap: 20px;
  }
  .com-rightContent {
    padding-bottom: 0;
    grid-row-start: 1;
  }
  .com-rightContent h2 {
    margin-bottom: 15px;
  }
  .SectionRight-image img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .enterprise-companies .about-section1-heading {
    padding: 20px 20px 10px;
  }
  .enterprise-companies .about-section1-heading .mb-20 {
    margin-bottom: 10px;
  }
}
.slider1 .bg-light {
  height: 240px;
}

.slider2 .bg-light {
  height: 350px;
}

.owl-dots {
  display: none;
}

.owl-nav {
  transform: translateY(-50%);
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 50%;
}
.owl-nav button {
  background-color: var(--white) !important;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.owl-nav button span {
  font-size: 30px;
}
.owl-nav .owl-prev {
  margin-left: -18px;
}
.owl-nav .owl-next {
  margin-right: -18px;
}

@media screen and (max-width: 768px) {
  .slider1 .bg-light {
    height: 220px;
    padding: 15px;
  }
  .owl-nav {
    display: none;
  }
}
.bg-contact {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch-V2/images/contact-banner.png");
}

.form-control {
  position: relative;
  height: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--text-dark);
}

.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(--text-dark);
  transition: all 0.2s ease;
  font-family: "Figtree", 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(--text-grey);
  background: transparent;
  transition: all 0.2s ease;
  font-family: "Figtree", 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: 300px;
  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;
}

.bg-image {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-banner {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/home.png");
}

.ai-banner {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/hero/banner-ai.png");
}

.com-heroBanner1 {
  background-image: url(https://edgeftp.b-cdn.net/TravelSwitch/images/banner/banner-hero1.png);
}

.com-heroBanner2 {
  background-image: url(https://edgeftp.b-cdn.net/TravelSwitch/images/banner/com-banner2.png);
}

.com-heroBanner3 {
  background-image: url(https://edgeftp.b-cdn.net/TravelSwitch/images/banner/com-banner3.png);
}

.banner-about {
  background-image: url(https://edgeftp.b-cdn.net/TravelSwitch/images/banner/banner-about.png);
}

.heroSection-card {
  background-position: bottom;
  height: 600px;
}

.heroSection-badge {
  border: 1px solid #ffffff;
  border-radius: 24px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
}

.heroSection-content {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.heroSection-heading {
  margin-bottom: 40px;
}

.heroBanner1-heading h2 {
  padding: 60px 0;
}

.heroBanner1-content {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.heroBanner1-content img {
  height: 350px;
  -o-object-position: center;
     object-position: center;
}

.heroBanner1-button {
  position: absolute;
  justify-content: center;
  width: 100%;
  align-items: flex-end;
  top: -20px;
  display: flex;
}

.heroBottomCont {
  position: relative;
  width: 100%;
  margin: -150px auto 0;
  display: flex;
  z-index: 1;
  justify-content: center;
}

.heroBottomMobile {
  display: none;
}

.section-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-logos img {
  width: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-hero1 {
  background-image: url(https://edgeftp.b-cdn.net/TravelSwitch/images/banner/main-hero1.png);
  height: 100vh;
  position: relative;
}
.main-hero1 .container {
  height: 100%;
}

.main-heroGrid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  height: 100%;
  align-items: center;
}

.main-heroImage {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.main-heroImage img {
  height: calc(100vh - 120px);
}

.section-com1 {
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 40px 0;
}

.section-com1.section-com1-space {
  padding: 40px;
}

.section-grid1 {
  display: grid;
  gap: 30px;
  grid-template-columns: calc((100% - 30px) / 2) calc((100% - 30px) / 2);
}

.section-grid2 {
  display: grid;
  gap: 30px;
  grid-template-columns: calc((100% - 30px) * 0.4) calc((100% - 30px) * 0.6);
}

.section-com1-content {
  padding-bottom: 40px;
}

.section-com1-space .section-com1-content {
  padding-bottom: 0;
}

.section-com1-image,
.section-com2-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.section-com1-image img {
  height: 450px;
  border-radius: 24px 24px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-com2-image img {
  height: 520px;
  border-radius: 24px 24px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-list {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 10px;
  align-items: center;
  font-size: 20px;
}

.card-list:not(:last-child) {
  margin-bottom: 10px;
}

.add-to-call {
  background-image: url("https://edgeftp.b-cdn.net/TravelSwitch/images/banner/banner-cta.png");
  padding: 60px 0;
  border-radius: 24px;
}

.bg-tabs-header {
  background-color: var(--primary-light);
  padding: 8px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.bg-tabs-header button {
  background-color: var(--primary-light);
  border: 0;
  padding: 8px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bg-tabs-header button.active {
  background-color: var(--primary);
  border-radius: 5px;
  color: var(--white);
}

.switchIcon {
  display: none;
}

.ai-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 24px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.ai-card p {
  text-align: right;
}

.ai-dark {
  background-image: linear-gradient(#0f0f1a, #0f0f1a), linear-gradient(90deg, #7465FF 0%, #A19DC9 100%);
}

.ai-primary {
  background-image: linear-gradient(#361077, #361077), linear-gradient(90deg, #7465FF 0%, #A19DC9 100%);
}

@media screen and (min-width: 1300px) {
  .heroSection-card {
    height: 85vh;
  }
  .main-hero1 {
    height: 85vh;
  }
  .main-heroImage img {
    height: calc(85vh - 120px);
  }
}
@media screen and (max-width: 768px) {
  .heroSection-card {
    height: 400px;
  }
  .heroSection-content {
    margin-top: 30px;
  }
  .heroSection-content h2 img {
    display: none;
  }
  .heroSection-heading {
    margin-bottom: 10px;
  }
  .heroBottomCont {
    display: none;
  }
  .main-hero1 {
    height: 350px;
  }
  .main-heroGrid {
    grid-template-columns: 100%;
  }
  .main-heroImage {
    display: none;
  }
  .switchIcon {
    margin-bottom: 20px;
    display: block;
  }
  .heroBottomMobile {
    display: flex;
    overflow: scroll;
    gap: 15px;
    padding: 3px 15px;
    margin-top: -70px;
  }
  .heroBottomMobile .mobileCard {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    min-width: 250px;
    padding: 15px;
    border-radius: 14px;
    background-color: #ffffff;
  }
  .heroBottomMobile .mobileCard img {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .heroBottomMobile .mobileCard h4 {
    margin-bottom: 5px;
  }
  .heroBottomMobile::-webkit-scrollbar {
    display: none;
  }
  .section-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .section-grid2,
  .section-grid1 {
    grid-template-columns: 100%;
  }
  .section-com1.section-com1-space,
  .section-com1 {
    padding: 20px 15px;
  }
  .section-com1-image img,
  .section-com2-image img {
    height: 250px;
    -o-object-fit: unset;
       object-fit: unset;
  }
  .section-com1-content {
    padding-bottom: 0;
    gap: 20px;
    grid-row-start: 1;
  }
  .section-com1-content.gap0 {
    gap: 0;
  }
  .bg-tabs-header {
    width: unset;
    margin-bottom: 15px;
  }
  .heroBanner1-heading h2 {
    padding: 30px 0;
  }
  .heroBanner1-content img {
    height: 200px;
  }
  .add-to-call {
    padding: 40px 15px;
  }
}
.meet-myTeamCard img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  z-index: 99;
  display: flex;
  justify-content: center;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
  position: absolute;
  background-color: white;
  width: 80%;
  border-radius: 24px;
  margin: 40px auto;
}
.modal-content .bg-contact {
  height: calc(100vh - 80px);
  overflow-x: hidden;
  overflow-y: scroll;
}
.modal-content .bg-contact::-webkit-scrollbar {
  display: none;
}

.close-button {
  position: absolute;
  right: 17px;
  top: 3px;
  font-size: 30px;
  cursor: pointer;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

@media screen and (min-width: 1300px) {
  .modal-content {
    width: 60%;
  }
  .modal-content .bg-contact {
    height: 640px;
  }
}
@media screen and (min-width: 960px) {
  .meet-myTeam {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 60px) / 4));
    grid-template-rows: 37% 20% 37%;
    gap: 20px;
  }
  .meet-myTeamCard:nth-child(1) {
    grid-row: 1/3;
  }
  .meet-myTeamCard:nth-child(4) {
    grid-row: 1/3;
    grid-column-start: 4;
  }
  .meet-myTeamCard:nth-child(5) {
    grid-column-start: 1;
  }
  .meet-myTeamCard:nth-child(6) {
    grid-row: 2/4;
    grid-column: 2/4;
  }
}
@media screen and (max-width: 960px) {
  .modal-content {
    width: 95%;
  }
  .heroSectionBottom {
    display: flex;
    overflow: scroll;
    padding-bottom: 5px;
    padding-left: 15px;
  }
  .heroSectionBottom::-webkit-scrollbar {
    display: none;
  }
  .heroBoxshadowMini {
    height: unset;
    min-width: 250px;
  }
  .heroBoxshadowMini:last-child {
    margin-right: 15px;
  }
  .modal-content .bg-contact {
    height: calc(100vh - 160px);
  }
  .meet-myTeam {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .meet-myTeamCard img {
    height: 300px;
  }
}/*# sourceMappingURL=app.css.map */