@charset "UTF-8";
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2023 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: 'Satoshi-Variable';
  src: url("./assets/fonts/Satoshi-Variable.woff2") format("woff2"), url("./assets/fonts/Satoshi-Variable.woff") format("woff"), url("./assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

/**
  * This is a variable font
  * You can controll variable axes as shown below:
  * font-variation-settings: 'wght' 900.0;
  *
  * available axes:
  
  * 'wght' (range from 300.0 to 900.0)
  
  */
@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url("./assets/fonts/Satoshi-VariableItalic.woff2") format("woff2"), url("./assets/fonts/Satoshi-VariableItalic.woff") format("woff"), url("./assets/fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Light';
  src: url("./assets/fonts/Satoshi-Light.woff2") format("woff2"), url("./assets/fonts/Satoshi-Light.woff") format("woff"), url("./assets/fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-LightItalic';
  src: url("./assets/fonts/Satoshi-LightItalic.woff2") format("woff2"), url("./assets/fonts/Satoshi-LightItalic.woff") format("woff"), url("./assets/fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Regular';
  src: url("./assets/fonts/Satoshi-Regular.woff2") format("woff2"), url("./assets/fonts/Satoshi-Regular.woff") format("woff"), url("./assets/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-Italic';
  src: url("./assets/fonts/Satoshi-Italic.woff2") format("woff2"), url("./assets/fonts/Satoshi-Italic.woff") format("woff"), url("./assets/fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Medium';
  src: url("./assets/fonts/Satoshi-Medium.woff2") format("woff2"), url("./assets/fonts/Satoshi-Medium.woff") format("woff"), url("./assets/fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-MediumItalic';
  src: url("./assets/fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("./assets/fonts/Satoshi-MediumItalic.woff") format("woff"), url("./assets/fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Bold';
  src: url("./assets/fonts/Satoshi-Bold.woff2") format("woff2"), url("./assets/fonts/Satoshi-Bold.woff") format("woff"), url("./assets/fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-BoldItalic';
  src: url("./assets/fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("./assets/fonts/Satoshi-BoldItalic.woff") format("woff"), url("./assets/fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Black';
  src: url("./assets/fonts/Satoshi-Black.woff2") format("woff2"), url("./assets/fonts/Satoshi-Black.woff") format("woff"), url("./assets/fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-BlackItalic';
  src: url("./assets/fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("./assets/fonts/Satoshi-BlackItalic.woff") format("woff"), url("./assets/fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}

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

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden !important;
  font-family: "Satoshi-Variable", sans-serif !important;
  background-color: #FFFFF0;
}

body h1, body h2, body h3, body h4, body h5, body p {
  padding: 0;
  margin: 0;
}

.navigationContainer {
  background-color: #16154D;
}

.navigationContainer .mobileNavigationContainer {
  width: 90%;
  margin-inline: auto;
  padding: .5rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navigationContainer .mobileNavigationContainer .logoContainer {
  height: 4rem;
  width: 4rem;
  overflow-y: hidden;
}

.navigationContainer .mobileNavigationContainer .logoContainer img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.navigationContainer .mobileNavigationContainer .hamburgerNavigationContainer {
  height: 2rem;
  width: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footerMainContainer {
  margin-top: 3rem;
  background-color: #16154D;
}

.footerMainContainer .bottomFooterContainer {
  background-color: #0d0d2e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 0;
}

.footerMainContainer .bottomFooterContainer .tcsContainer {
  margin-top: 1rem;
  padding: .5rem;
}

.footerMainContainer .bottomFooterContainer .tcsContainer p {
  width: 90%;
  margin-inline: auto;
  text-align: center;
  font-size: .8rem;
  font-family: 'Satoshi-Medium';
  color: #FFFF;
  opacity: .8;
}

.footerMainContainer .bottomFooterContainer .socialMediaContainer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerMainContainer .bottomFooterContainer .socialMediaContainer a {
  min-width: 2rem;
  min-height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerMainContainer .topFooterContainer {
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper, .footerMainContainer .topFooterContainer .partnersWrapper, .footerMainContainer .topFooterContainer .solutionsWrapper {
  margin-top: 2rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper .heading, .footerMainContainer .topFooterContainer .partnersWrapper .heading, .footerMainContainer .topFooterContainer .solutionsWrapper .heading {
  font-family: 'Satoshi-Bold';
  color: #F09000;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li {
  width: 100%;
  text-align: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li span, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li span, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1rem;
  min-width: 2rem;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li a, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li a, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li a {
  color: #FFFF;
  opacity: .8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: .8rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li p, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li p, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li p {
  margin-top: .5rem;
  font-size: .8rem;
  color: #FFFF;
}

.mobileFooterTopContainer {
  position: relative;
}

.mobileFooterContainer {
  position: relative;
}

.mobileFooterContainer .logoContainer {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 2rem;
}

.mobileFooterContainer .topWrapperBanner {
  height: 45dvh;
  width: 100%;
  position: relative;
}

.mobileFooterContainer .topWrapperBanner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobileFooterContainer .topContainerContactInfo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 0 !important;
  z-index: 4;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-decoration: none;
  gap: .5rem;
  font-size: .75rem;
  font-family: 'Satoshi-Bold';
  color: #1a1a1a;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a p {
  width: 15rem;
  text-align: right;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1rem;
}

.mobileFooterContainer .topContainerContactInfo .footerHeading {
  color: #16154D;
  font-family: 'Satoshi-Black';
  font-size: 1.6rem;
  text-align: right;
}

.mainFooterLinks > div {
  width: 100%;
}

.mainFooterLinks {
  width: 90%;
  margin-inline: auto;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainFooterLinks .footerItems {
  width: 80%;
  margin-inline: auto;
  max-width: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .8rem;
  list-style: none;
  padding: 0;
}

.mainFooterLinks .footerItems li {
  width: 60%;
  margin-inline: auto;
  text-align: center;
}

.mainFooterLinks .footerItems li a {
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  opacity: .8;
}

.mainFooterLinks .heading {
  font-size: 1.3rem;
  text-align: center;
  font-family: 'Satoshi-Bold';
  color: #F09000;
}

.newsletterEmailContainer {
  width: 90%;
  max-width: 500px;
  margin-inline: auto;
  margin-top: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsletterEmailContainer .emailInputWrapper {
  margin-top: 1.5rem;
  width: 100%;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin-inline: auto;
  position: relative;
}

.newsletterEmailContainer .emailInputWrapper ::-webkit-input-placeholder {
  font-size: .7rem;
  font-family: 'Satoshi-MediumItalic';
}

.newsletterEmailContainer .emailInputWrapper :-ms-input-placeholder {
  font-size: .7rem;
  font-family: 'Satoshi-MediumItalic';
}

.newsletterEmailContainer .emailInputWrapper ::-ms-input-placeholder {
  font-size: .7rem;
  font-family: 'Satoshi-MediumItalic';
}

.newsletterEmailContainer .emailInputWrapper ::placeholder {
  font-size: .7rem;
  font-family: 'Satoshi-MediumItalic';
}

.newsletterEmailContainer .emailInputWrapper input {
  padding-left: .5rem;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  outline: none;
  border: none;
  font-family: 'Satoshi-Medium';
}

.newsletterEmailContainer .emailInputWrapper .signUpBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F09000;
  color: #fff;
  font-size: .8rem;
  font-family: 'Satoshi-Bold';
  gap: .5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  border-radius: 4px;
  text-decoration: none;
  right: .2rem;
  position: absolute;
}

.newsletterEmailContainer .mainWrapper {
  width: 90%;
}

.newsletterEmailContainer .mainWrapper .heading {
  font-family: 'Satoshi-Bold';
  color: #FFFFF0;
  margin-inline: auto;
  text-align: center;
  font-size: 1.1rem;
  max-width: 80%;
}

.newsletterEmailContainer .mainWrapper .subheading {
  margin-top: 1rem;
  font-size: .8rem;
  max-width: 70%;
  margin-inline: auto;
  text-align: center;
  color: #fff;
  opacity: .8;
}

.socialMediaIconsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  gap: 1rem;
  width: 90%;
  margin-inline: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socialMediaIconsWrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #fff;
  font-family: 'Satoshi-Medium';
}

.socialMediaIconsWrapper a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: .9rem;
  max-width: .9rem;
}

.bottomFooterContainer {
  margin-top: 2rem;
}

.bottomFooterContainer .footerDescription {
  width: 90%;
  position: relative;
  margin-inline: auto;
}

.bottomFooterContainer .footerDescription p {
  text-align: center;
  font-family: 'Satoshi-Medium';
  color: #FFFFF0;
  font-size: .85rem;
  width: 90%;
  margin-inline: auto;
}

.mobileFooterTopContainer {
  position: relative;
}

.mobileFooterContainer {
  position: relative;
}

.mobileFooterContainer .logoContainer {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 2rem;
}

.mobileFooterContainer .topWrapperBanner {
  height: 45dvh;
  width: 100%;
  position: relative;
}

.mobileFooterContainer .topWrapperBanner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobileFooterContainer .topContainerContactInfo {
  right: 2rem;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-decoration: none;
  gap: .5rem;
  font-size: .75rem;
  font-family: 'Satoshi-Bold';
  color: #1a1a1a;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a p {
  width: 15rem;
  text-align: right;
}

.mobileFooterContainer .topContainerContactInfo .contactInformation li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1rem;
}

.mobileFooterContainer .topContainerContactInfo .footerHeading {
  color: #16154D;
  font-family: 'Satoshi-Black';
  font-size: 1.6rem;
  text-align: right;
}

.desktopFooterContainer {
  display: none;
}

.bannerMainContainer {
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

.bannerMainContainer .btnsContainer {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bannerMainContainer .btnsContainer .watchVideoBtn {
  color: #FFFF;
  font-family: 'Satoshi-Bold';
  border-radius: 4px;
  background-color: #F09000;
}

.bannerMainContainer .btnsContainer .enquiriesBtn {
  background: #ffffff4d;
  border: 1.2px solid #fff;
  color: #FFFF;
  font-weight: 700;
  border-radius: 4px;
}

.bannerMainContainer .btnsContainer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: .8rem;
  height: 2.5rem !important;
  padding: 0 1rem;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 8rem;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bannerMainContainer .btnsContainer a span {
  display: none;
}

.bannerVideoContainer::before {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 10, 35, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(11, 10, 35, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  display: block;
  overflow-y: hidden;
}

.bannerVideoContainer {
  height: 75dvh;
  width: 100%;
  overflow-y: hidden !important;
  position: relative;
}

.bannerVideoContainer img {
  -o-object-fit: contain;
     object-fit: contain;
  overflow-x: hidden;
}

.contentWrapper {
  position: absolute;
  top: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#16154D), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #16154D 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 1rem 0;
}

.contentWrapper .mainHeading {
  text-align: center;
  font-family: 'Satoshi-Black';
  color: #fff;
  font-weight: 900;
}

.contentWrapper .mainDescription {
  text-align: center;
  width: 60%;
  margin-inline: auto;
  color: #fff;
  margin-top: .5rem;
  font-size: .8rem;
}

.chat {
  display: none;
}

.companyBriefWrapper {
  width: 90%;
  margin-inline: auto;
}

.companyBriefWrapper .topBandContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: .5rem;
  height: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 .8rem;
  background-color: #F09000;
  color: #FFFF;
  font-family: 'Satoshi-Bold';
  font-size: 1.2rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.companyBriefWrapper .briefContainer .mainHeading {
  font-size: 1.3rem;
  color: #16154D;
  text-align: center;
  font-family: 'Satoshi-Medium';
  width: 90%;
  margin-inline: auto;
}

.companyBriefWrapper .briefContainer .description {
  margin-top: 1rem;
  font-size: .8rem;
  font-family: 'Satoshi-Medium';
  color: #1a1a1a;
  text-align: center;
  width: 90%;
  margin-inline: auto;
}

.companyBriefWrapper .downloadBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #16154D;
  color: #FFFF;
  text-decoration: none;
  margin-top: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: .8rem;
  font-family: 'Satoshi-Bold';
  height: 2.5rem;
  width: fit-content;
  padding: 0 1rem;
  border-radius: 4px;
  gap: .3rem;
  align-items: center;
}

.companyBriefWrapper .downloadBtn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.companyBriefWrapper .visualsContainer {
  height: 30rem;
  width: 100%;
  margin-top: 2rem;
  overflow-y: hidden;
  position: relative;
}

.companyBriefWrapper .visualsContainer img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.companyBriefWrapper .visualsContainer::before {
  position: absolute;
  display: block;
  height: 100%;
  width: 6rem;
  content: '';
  background: rgba(240, 144, 0, 0.3);
}

.coreValuesContainer {
  position: relative !important;
}

.coreValuesContainer .topBandContainer {
  min-width: 10rem;
  border-bottom-right-radius: 20rem;
  height: 2.5rem !important;
  background-color: #16154D !important;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  font-family: 'Satoshi-Bold';
}

.coreValuesContainer .coreValuesWrapper {
  position: relative;
}

.coreValuesContainer .coreValuesWrapper .wrapperMain {
  position: relative;
  top: 0;
}

.coreValuesContainer .topDisplayIcon {
  background-color: #F09000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  padding: 0 1rem;
  border-bottom-right-radius: 4px;
  position: relative;
  z-index: 3;
}

.coreValuesContainer .topDisplayIcon p {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.coreValuesContainer .contentContainer {
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 4;
}

.coreValuesContainer .contentContainer .itemsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.coreValuesContainer .contentContainer .heading {
  font-size: 1.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #F09000;
  font-family: 'Satoshi-Bold';
}

.coreValuesContainer .contentContainer p {
  font-size: .8rem;
  font-family: 'Satoshi-Medium';
  color: #1a1a1a;
  text-align: center;
  margin-top: .5rem;
  width: 100%;
  margin-inline: auto;
}

.coreValuesContainer .visualsContainer {
  height: 26rem !important;
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  position: relative;
}

.coreValuesContainer .visualsContainer .imageContainer {
  height: 35rem;
  overflow-y: hidden;
}

.coreValuesContainer .visualsContainer img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.coreValuesContainer .visualsContainer::before {
  position: absolute;
  display: block;
  height: 100%;
  width: 10rem;
  top: 0;
  z-index: -2;
  content: '';
  background: rgba(22, 21, 77, 0.5);
}

.ourServicesContainer .topBandContainer {
  min-width: 10rem;
  border-bottom-right-radius: 20rem;
  height: 2.5rem !important;
  background-color: #16154D !important;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  font-family: 'Satoshi-Bold';
}

.ourServicesContainer .cardWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin-inline: auto;
  margin-top: 1.5rem;
}

.ourServicesContainer .cardWrapper .serviceCardContainer {
  background-color: #16154D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100% !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1.5rem;
  border-radius: 10px;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .topIconContainer {
  height: 10rem;
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .topIconContainer img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .cardHeading {
  margin-top: 1.5rem;
  width: 85%;
  font-size: 1.1rem;
  text-align: center;
  color: #f09000;
  font-family: 'Satoshi-Medium';
}

.ourServicesContainer .cardWrapper .serviceCardContainer .listedPoints {
  list-style: none;
  margin-top: 1.5rem;
  width: 95%;
  padding: 0;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .listedPoints li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .listedPoints li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1rem !important;
  min-width: 1rem !important;
  background-color: #fff;
  border-radius: 50%;
}

.ourServicesContainer .cardWrapper .serviceCardContainer .listedPoints p {
  font-size: .8rem;
  font-family: 'Satoshi-Medium';
  color: #FFFF;
}

.ourSupportContainer {
  margin-top: 3rem;
}

.ourSupportContainer .topBandContainer {
  min-width: 10rem;
  border-bottom-right-radius: 20rem;
  height: 2.5rem !important;
  background-color: #16154D !important;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  margin-left: 9.5rem !important;
  font-family: 'Satoshi-Bold';
}

.ourSupportContainer .topHeadingContainer {
  background-color: #16154D;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ourSupportContainer .topHeadingContainer h1 {
  font-size: 1rem;
  color: #fff;
  padding-left: 5vw;
}

.ourSupportContainer .mainDescription p {
  font-size: .9rem;
  font-family: 'Satoshi-Medium';
  margin-top: 1.5rem;
  margin-inline: auto;
  width: 60%;
  text-align: center;
  color: #16154D;
}

.supportCardsWrapper {
  margin-top: 2rem;
  width: 90%;
  gap: 2rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.supportCardsWrapper .supportCard {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 2rem;
  border-radius: 0.57281rem;
  border: 1.833px solid rgba(240, 144, 0, 0.2);
  background: rgba(240, 144, 0, 0.17);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 25%;
  position: relative;
  margin-inline: auto;
}

.supportCardsWrapper .supportCard .listedItems {
  list-style: none;
}

.supportCardsWrapper .supportCard .getInTouchBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: .5rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F09000;
  color: #1a1a1a;
  text-decoration: none;
  font-size: .8rem;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  text-transform: capitalize;
  height: 2.3rem;
  padding: 0 1rem;
  gap: .3rem;
  border-radius: 4px;
}

.supportCardsWrapper .supportCard .getInTouchBtn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 1rem;
  width: 1rem;
}

.supportCardsWrapper .supportCard .cardImageTop {
  height: 16rem;
  width: 100%;
  overflow: hidden;
}

.supportCardsWrapper .supportCard .cardImageTop img {
  height: 100% !important;
  width: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.supportCardsWrapper .supportCard .cardHeading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-family: 'Satoshi-Bold';
  color: #16154D;
}

.supportCardsWrapper .supportCard .listedItems {
  width: 70%;
  margin-inline: auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
  text-align: center;
}

.supportCardsWrapper .supportCard .listedItems li {
  font-size: .8rem;
  text-align: center;
  margin-left: -1.5rem;
  padding: 0;
  font-family: 'Satoshi-Medium';
  color: #16154D;
}

.uk-margin-small-right {
  color: #FFFF;
  font-family: 'Satoshi-Bold';
}

.mobile-navigation {
  position: relative;
  z-index: 1000;
}

.mobileFooter {
  margin-top: 4rem;
  background-color: #16154D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileFooter .footerWrapper {
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

.mobileFooter .footerWrapper .logo {
  height: 6rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobileFooter .footerWrapper .logo img {
  height: 100%;
  width: 100%;
}

.mobileFooter .footerWrapper .navigationLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  list-style: none;
  width: 100%;
  text-align: center;
}

.mobileFooter .footerWrapper .navigationLinks h2 {
  font-family: 'Satoshi-Bold';
  color: #F09000;
  font-size: 1.2rem;
}

.mobileFooter .footerWrapper .navigationLinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  gap: 1rem;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileFooter .footerWrapper .navigationLinks ul li {
  padding: 0;
  margin: 0;
  font-family: 'Satoshi-Medium';
  font-size: .8rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -2rem;
  color: #FFFF;
  opacity: .8;
}

.dekstopNavigation {
  display: none;
}

.footerMainContainer {
  background-color: #16154D;
  margin-top: 3rem;
}

.footerMainContainer .bottomFooterContainer {
  background-color: #0d0d2e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 0;
}

.footerMainContainer .bottomFooterContainer .tcsContainer {
  margin-top: 1rem;
  padding: .5rem;
}

.footerMainContainer .bottomFooterContainer .tcsContainer p {
  width: 90%;
  margin-inline: auto;
  text-align: center;
  font-size: .8rem;
  font-family: 'Satoshi-Medium';
  color: #FFFF;
  opacity: .8;
}

.footerMainContainer .bottomFooterContainer .socialMediaContainer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerMainContainer .bottomFooterContainer .socialMediaContainer a {
  min-width: 2rem;
  min-height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerMainContainer .topFooterContainer {
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper, .footerMainContainer .topFooterContainer .partnersWrapper, .footerMainContainer .topFooterContainer .solutionsWrapper {
  margin-top: 2rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper .heading, .footerMainContainer .topFooterContainer .partnersWrapper .heading, .footerMainContainer .topFooterContainer .solutionsWrapper .heading {
  font-family: 'Satoshi-Bold';
  color: #F09000;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li {
  width: 100%;
  text-align: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li span, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li span, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1rem;
  min-width: 2rem;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li a, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li a, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li a {
  color: #FFFF;
  opacity: .8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: .8rem;
}

.footerMainContainer .topFooterContainer .industriesWrapper .listedItemsFooter li p, .footerMainContainer .topFooterContainer .partnersWrapper .listedItemsFooter li p, .footerMainContainer .topFooterContainer .solutionsWrapper .listedItemsFooter li p {
  margin-top: .5rem;
  font-size: .8rem;
  color: #FFFF;
}

.ourSupportContainer .mainDescription p {
  font-size: .9rem;
  text-align: left !important;
  margin-inline: unset;
  width: 30%;
  color: #333;
}

.supportCardsWrapper .supportCard .cardHeading {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-family: "Satoshi-Bold";
  color: #16154D;
}

.headingWrapper h1 {
  font-family: 'Satoshi-Bold';
  color: #FFFF;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .footerMainContainer {
    margin-top: 3rem;
    background-color: #16154D;
  }
  .footerMainContainer .listedItemsFooter li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset !important;
        -ms-flex-align: unset !important;
            align-items: unset !important;
    -webkit-box-pack: unset !important;
        -ms-flex-pack: unset !important;
            justify-content: unset !important;
    text-align: left;
    gap: .5rem;
    max-width: 15rem;
  }
  .footerMainContainer .listedItemsFooter li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: unset !important;
    width: 10rem !important;
  }
  .footerMainContainer .topFooterContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    width: 95%;
    max-width: 1210px;
    margin-inline: auto;
  }
  .footerMainContainer .topFooterContainer .logoContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footerMainContainer .topFooterContainer .logoContainer img {
    height: 100%;
    width: 100%;
  }
  .footerMainContainer .topFooterContainer .industriesWrapper .heading, .footerMainContainer .topFooterContainer .partnersWrapper .heading, .footerMainContainer .topFooterContainer .solutionsWrapper .heading {
    text-align: left;
  }
  .footerMainContainer .topFooterContainer .importantLinksWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 60%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
  }
  .footerMainContainer .topFooterContainer .importantLinksWrapper > div .heading {
    font-size: 1.1rem;
    font-family: 'Satoshi-Bold';
    color: #F09000;
  }
  .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter li {
    text-align: left;
  }
  .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter a {
    text-align: left;
    text-decoration: none;
    font-size: .8rem;
    font-family: 'Satoshi-Medium';
    color: #FFFF;
    text-decoration: none;
  }
  .footerMainContainer .topFooterContainer .logoContainer {
    height: 8rem;
    width: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footerMainContainer .bottomFooterContainer {
    background-color: unset;
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    max-width: 1210px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-inline: auto;
    padding: unset !important;
    position: relative !important;
  }
  .footerMainContainer .bottomFooterContainer .socialMediaContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    position: absolute;
    right: 0;
  }
  .footerMainContainer .bottomFooterContainer .socialMediaContainer a {
    height: 1.5rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footerMainContainer .bottomFooterContainer .socialMediaContainer a img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footerMainContainer .bottomFooterContainer .tcsContainer p {
    font-size: .75rem;
    font-family: 'Satoshi-Bold';
    color: #fff;
    text-align: unset !important;
    width: 100%;
  }
  .mobile-navigation {
    display: none;
  }
  .activeLink {
    position: relative;
  }
  .activeLink a {
    opacity: 1 !important;
  }
  .nav-item {
    opacity: .8;
    font-family: 'Satoshi-Regular';
    font-weight: 400 !important;
  }
  .nav-item {
    text-decoration: none !important;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
  }
  .nav-item:hover {
    color: #ffb649 !important;
  }
  .navigationBtns .contactExpertBtn {
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
  }
  .navigationBtns .contactExpertBtn:hover {
    background-color: #b66d00 !important;
  }
  .navigationBtns a {
    text-decoration: none !important;
  }
  .navigationBtns .loginBtn {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .navigationBtns .loginBtn .loginSVg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .navigationBtns .loginBtn:hover {
    background: #fff;
    color: #16154D;
  }
  .navigationBtns .loginBtn:hover .loginSVg path {
    fill: #16154D;
  }
  .dekstopNavigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 83%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .dekstopNavigation .dekstopNavWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .dekstopNavigation .countryDesktop {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50%;
  }
  .dekstopNavigation .countryDesktop .countryDrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .2rem;
    opacity: .8;
    color: #FFFFF0;
    font-size: .8rem;
    text-decoration: none;
    font-weight: 700;
  }
  .dekstopNavigation .countryDesktop .countryDrop img {
    height: 2rem;
    width: 2rem;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions {
    background-color: #FFFFF0;
    border-radius: 4px;
    gap: .5rem;
    width: unset !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .optionWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    padding: .5rem;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption:hover .countryName {
    color: #16154D;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption:hover .countryFlag img {
    opacity: 1;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 .2rem;
    text-decoration: none;
    height: 2.2rem;
    width: 10rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: 4px;
    border: 1.2px solid #dedede;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption .countryFlag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    width: 1rem;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption .countryFlag img {
    height: 100%;
    width: 100%;
    opacity: .3;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption .countryName {
    font-size: .8rem;
    font-family: 'Satoshi-Bold';
    color: #3333;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
  }
  .dekstopNavigation .countryDesktop .countryDesktopOptions .countryOption span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 1.5rem;
    min-width: 1.5rem;
    background-color: #dedede;
    border-radius: 50%;
  }
  .dekstopNavigation .navigationBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    gap: .5rem;
  }
  .dekstopNavigation .navigationBtns a {
    font-size: .75rem;
    font-family: 'Satoshi-Bold';
    color: #FFFF;
    height: 2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 .6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .3rem;
  }
  .dekstopNavigation .navigationBtns a span {
    height: .8rem;
    width: .8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dekstopNavigation .navigationBtns .loginBtn {
    border: 1.2px solid #FFFFF0;
    border-radius: 10rem;
  }
  .dekstopNavigation .navigationBtns .contactExpertBtn {
    background-color: #F09000;
    border-radius: 10rem;
  }
  .dekstopNavigation .navItems {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }
  .dekstopNavigation .navItems a {
    font-size: .75rem;
    font-family: 'Satoshi-Medium';
    color: #FFFF;
  }
  .countryDesktop {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50%;
  }
  .countryDesktop .countryDrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .2rem;
    opacity: .8;
    color: #FFFFF0;
    font-size: .8rem;
    text-decoration: none;
    font-weight: 700;
  }
  .countryDesktop .countryDrop img {
    height: 2rem;
    width: 2rem;
  }
  .countryDesktop .countryDesktopOptions {
    background-color: #FFFFF0;
    border-radius: 4px;
    gap: .5rem;
    width: unset !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .countryDesktop .countryDesktopOptions .optionWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    padding: .5rem;
  }
  .countryDesktop .countryDesktopOptions .countryOption:hover .countryName {
    color: #16154D;
  }
  .countryDesktop .countryDesktopOptions .countryOption:hover .countryFlag img {
    opacity: 1;
  }
  .countryDesktop .countryDesktopOptions .countryOption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 .2rem;
    text-decoration: none;
    height: 2.2rem;
    width: 10rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: 4px;
    border: 1.2px solid #dedede;
  }
  .countryDesktop .countryDesktopOptions .countryOption .countryFlag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    width: 1rem;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .countryDesktop .countryDesktopOptions .countryOption .countryFlag img {
    height: 100%;
    width: 100%;
    opacity: .3;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
  }
  .countryDesktop .countryDesktopOptions .countryOption .countryName {
    font-size: .8rem;
    font-family: 'Satoshi-Bold';
    color: #3333;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
  }
  .countryDesktop .countryDesktopOptions .countryOption span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 1.5rem;
    min-width: 1.5rem;
    background-color: #dedede;
    border-radius: 50%;
  }
  body .wrapperMain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .wrapperMain .itemPoint {
    width: 90%;
  }
  body .wrapperMain .itemPoint .heading {
    text-align: left;
    margin-inline: unset;
    color: #F09000;
  }
  body .wrapperMain .itemPoint p {
    text-align: left;
    margin-inline: unset;
    font-size: .8rem;
    width: 95%;
    text-align: justify;
    color: #FFFFF0;
  }
  body .wrapperMain .visualsContainer {
    height: 35rem;
  }
  body .wrapperMain .visualsContainer .imageContainer {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: -4;
  }
  body .topBandContainer {
    margin-inline: unset !important;
  }
  body .companyBriefWrapper {
    max-width: 1210px;
    margin-inline: auto;
  }
  body .coreValuesContainer {
    background-color: rgba(22, 21, 76, 0.816);
    margin-top: 2rem;
    margin-inline: auto;
  }
  body .coreValuesContainer .topDisplayIcon {
    margin-inline: unset !important;
  }
  body .briefContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1210px;
    margin-inline: auto;
  }
  body .briefContainer .briefWrapperMain .mainHeading {
    text-align: left;
    max-width: 30rem;
    font-size: 1.2rem;
    margin-inline: unset !important;
  }
  body .briefContainer .briefWrapperMain .mainHeading .quotes {
    scale: 2.5;
    padding-right: .2rem;
    font-weight: 900;
    font-family: 'Satoshi-Black';
  }
  body .briefContainer .briefWrapperMain .description {
    margin-inline: unset !important;
    font-size: .8rem !important;
    text-align: left !important;
  }
  body .briefContainer .briefWrapperMain .downloadBtn {
    margin-inline: unset !important;
  }
  body .briefContainer > div {
    width: 50% !important;
  }
  body .topHeadingContainer {
    padding: 2rem 0 !important;
  }
  body .topHeadingContainer .headingWrapper h1 {
    font-family: 'Satoshi-Bold';
    font-size: 1.5rem;
  }
  body .ourServicesContainer .cardWrapper {
    width: 100% !important;
    margin-top: 4rem !important;
  }
  body .ourServicesContainer .cardWrapper .listedPoints {
    margin-top: 2rem !important;
  }
  body .ourServicesContainer .cardWrapper .listedPoints p {
    font-family: 'Satoshi-Medium';
  }
  body .ourServicesContainer .ourServicesWrapper {
    width: 90%;
    max-width: 1210px;
    margin-inline: auto;
  }
  body .ourServicesContainer .topDisplayIcon {
    margin-inline: unset;
  }
  body .footerMainContainer {
    background-color: #16154D;
    padding-bottom: .5rem;
  }
  body .footerMainContainer .listedItemsFooter li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset !important;
        -ms-flex-align: unset !important;
            align-items: unset !important;
    -webkit-box-pack: unset !important;
        -ms-flex-pack: unset !important;
            justify-content: unset !important;
    text-align: left;
    gap: .5rem;
    max-width: 15rem;
  }
  body .footerMainContainer .listedItemsFooter li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: unset !important;
    width: 10rem !important;
  }
  body .footerMainContainer .topFooterContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    width: 95%;
    max-width: 1210px;
    margin-inline: auto;
  }
  body .footerMainContainer .topFooterContainer .logoContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .footerMainContainer .topFooterContainer .logoContainer img {
    height: 100%;
    width: 100%;
  }
  body .footerMainContainer .topFooterContainer .industriesWrapper .heading, body .footerMainContainer .topFooterContainer .partnersWrapper .heading, body .footerMainContainer .topFooterContainer .solutionsWrapper .heading {
    text-align: left;
  }
  body .footerMainContainer .topFooterContainer .importantLinksWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 60%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
  }
  body .footerMainContainer .topFooterContainer .importantLinksWrapper > div .heading {
    font-size: 1.1rem;
    font-family: 'Satoshi-Bold';
    color: #F09000;
  }
  body .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  body .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter li {
    text-align: left;
  }
  body .footerMainContainer .topFooterContainer .importantLinksWrapper > div .listedItemsFooter a {
    text-align: left;
    text-decoration: none;
    font-size: .8rem;
    font-family: 'Satoshi-Medium';
    color: #FFFF;
    text-decoration: none;
  }
  body .footerMainContainer .topFooterContainer .logoContainer {
    height: 8rem;
    width: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .footerMainContainer .bottomFooterContainer {
    background-color: unset;
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    max-width: 1210px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-inline: auto;
    padding: unset !important;
    position: relative !important;
  }
  body .footerMainContainer .bottomFooterContainer .socialMediaContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    position: absolute;
    right: 0;
  }
  body .footerMainContainer .bottomFooterContainer .socialMediaContainer a {
    height: 1.5rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .footerMainContainer .bottomFooterContainer .socialMediaContainer a img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body .footerMainContainer .bottomFooterContainer .tcsContainer p {
    font-size: .75rem;
    font-family: 'Satoshi-Bold';
    color: #fff;
    text-align: unset !important;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .mobileFooterContainer {
    display: none;
  }
  .desktopFooterContainer {
    display: block;
  }
  .bottomFooterContainer {
    display: none !important;
  }
  .desktopFooterContainer {
    position: relative;
  }
  .desktopFooterContainer .footerDescription {
    position: absolute;
    bottom: .5rem;
    right: 2rem;
    padding: 0 2rem;
    width: 100%;
    z-index: 3;
  }
  .desktopFooterContainer .footerDescription span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: .8rem;
    position: relative;
    right: 0;
    font-size: .75rem;
    opacity: .7;
  }
  .desktopFooterContainer .socialMediaIcons {
    margin-top: 2rem;
  }
  .desktopFooterContainer .socialMediaIcons .socialIcons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
  }
  .desktopFooterContainer .socialMediaIcons .socialIcons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: .5rem;
  }
  .desktopFooterContainer .socialMediaIcons .socialIcons a p {
    font-size: .75rem;
    font-family: 'Satoshi-Medium';
    color: #fff;
  }
  .desktopFooterContainer .socialMediaIcons .socialIcons a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .desktopFooterContainer .topContainerContactInfo {
    position: absolute;
    height: unset !important;
    height: 13rem !important;
    right: 1rem;
    bottom: 1rem;
  }
  .desktopFooterContainer .topContainerContactInfo .footerHeading {
    font-size: 1.7rem;
    font-family: 'Satoshi-black';
    color: #16154D;
  }
  .desktopFooterContainer .topContainerContactInfo .contactInformation {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  .desktopFooterContainer .topContainerContactInfo .contactInformation li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #16154D;
  }
  .desktopFooterContainer .topContainerContactInfo .contactInformation li p {
    font-size: .8rem;
    font-family: 'Satoshi-Bold';
    width: 15rem;
  }
  .desktopFooterContainer .topContainerContactInfo .contactInformation li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .desktopFooterContainer .rightDisplayContainer {
    width: 60%;
    height: 30rem;
    position: relative;
  }
  .desktopFooterContainer .rightDisplayContainer .logoContainer {
    position: absolute;
    z-index: 3;
    top: 2.5rem;
    right: 2rem;
    height: 6rem;
    width: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .desktopFooterContainer .rightDisplayContainer .logoContainer span {
    height: 100%;
    width: 100%;
  }
  .desktopFooterContainer .rightDisplayContainer .logoContainer span img {
    height: 100%;
    width: 100%;
  }
  .desktopFooterContainer .rightDisplayContainer .footerBannerWrapper {
    position: relative;
    height: 100%;
    width: 100%;
  }
  .desktopFooterContainer .rightDisplayContainer .footerBannerWrapper .footerBannerWrapperImage {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .desktopFooterContainer .rightDisplayContainer .footerBannerWrapper .footerBannerWrapperImage img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .desktopFooterContainer .newsletterWrapper {
    position: relative;
    margin-inline: unset !important;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer {
    margin-inline: unset !important;
    max-width: unset !important;
    width: 90% !important;
    height: 13rem;
    position: relative;
    padding: unset !important;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .footerStripes {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 25%;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .footerStripes span {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .footerStripes span img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    scale: 1.2;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .heading {
    text-align: left;
    margin-inline: unset;
    width: 70%;
    max-width: 20rem;
    margin-left: 2rem;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .mainWrapper {
    position: relative;
    width: unset;
    width: 100%;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .subheading {
    text-align: left;
    margin-inline: unset;
    width: 70%;
    margin-left: 2rem;
    max-width: 20rem;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .emailInputWrapper {
    margin-inline: unset;
    width: 70%;
    height: 3rem;
    margin-left: 2rem;
    max-width: 20rem;
  }
  .desktopFooterContainer .newsletterWrapper .newsletterEmailContainer .emailInputWrapper .signUpBtn {
    height: unset !important;
    height: 2.6rem !important;
  }
  .desktopFooterContainer .footerlinksWrapper {
    width: 40%;
    padding-top: 2rem;
    position: relative;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    list-style: none;
    gap: 2rem;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div .footerItems {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .2rem;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div .footerItems a {
    font-size: .85rem;
    font-family: 'Satoshi-Medium';
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    position: relative;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div .footerItems a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 100%;
    opacity: 0;
    -webkit-transition: left .2s ease-in-out;
    transition: left .2s ease-in-out;
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div .footerItems a:hover span {
    left: 120%;
    opacity: 1;
    background-color: #fff;
    padding: .1rem;
    border-radius: 50%;
  }
  .desktopFooterContainer .footerlinksWrapper .topLinksWrapper > div .heading {
    font-size: 1.2rem;
    font-family: 'Satoshi-Bold';
    color: #F09000;
  }
  .desktopFooterContainer .desktopFooterWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
  .mobileNavigationContainer {
    max-width: 1210px;
  }
  .navItems {
    width: 28rem !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navItems a {
    font-size: .9rem !important;
  }
  .industiresDrop {
    background-color: #FFFFF0 !important;
    padding: .5rem;
    width: 10rem;
    border-radius: 4px;
  }
  .industiresDrop .wrapperContainer {
    padding-top: .5rem;
    padding-left: .3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: .5rem;
  }
  .industiresDrop .wrapperContainer a {
    color: #16154D !important;
    font-size: unset !important;
    font-size: .75rem !important;
    font-family: 'Satoshi-Medium';
    text-decoration: none !important;
  }
  .navigationBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem !important;
    height: 2.5rem;
  }
  .navigationBtns a {
    height: unset !important;
    font-size: .8rem !important;
    padding: 0 1rem !important;
    gap: .5rem !important;
  }
  .itemPoint .heading {
    font-size: 1rem !important;
  }
  .wrapperMain .visualsContainer {
    width: unset !important;
    width: 100% !important;
  }
  .wrapperMain .visualsContainer::before {
    position: absolute;
    left: -4rem;
  }
  .coreValuesContainer .wrapperMain .visualsContainer::before {
    position: absolute;
    left: -5rem;
  }
  .companyBriefWrapper {
    position: relative;
  }
  .companyBriefWrapper .visualsContainer {
    height: unset;
    height: 35rem;
    position: absolute;
    right: 0;
  }
  .ourServicesContainer .cardWrapper {
    max-width: 1210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .ourSupportContainer .topHeadingContainer {
    position: relative;
  }
  .ourSupportContainer .topHeadingContainer .headingWrapper {
    width: 90%;
    max-width: 1210px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    position: relative;
  }
  .ourSupportContainer .topHeadingContainer .headingWrapper h1 {
    padding: 0;
    margin: 0;
  }
  .ourSupportContainer .mainDescription {
    width: 90%;
    max-width: 1210px;
    margin-inline: auto;
    text-align: left !important;
  }
  .ourSupportContainer .mainDescription p {
    font-size: 1rem;
    text-align: left !important;
    margin-inline: unset;
    width: 30%;
  }
  .ourSupportContainer .supportCardsWrapper {
    max-width: 1210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .bannerContent .mainHeading {
    width: 90%;
    max-width: 1210px;
    position: relative;
    left: 50%;
    text-align: left;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 3rem;
  }
  .bannerContent .mainDescription {
    width: 90%;
    max-width: 1210px;
    text-align: left;
    margin-top: 1rem;
    font-size: 1rem;
  }
  .contentWrapper {
    padding: 2rem 0;
  }
  .btnsContainer {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 1210px !important;
    display: unset !important;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .btnsContainer a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: unset !important;
    height: 2.5rem !important;
  }
}

.uk-navbar-dropdown {
  --uk-position-offset: 15px;
  --uk-position-shift-offset: 0;
  --uk-position-viewport-offset: 15px;
  width: 200px;
  padding: 1rem !important;
  background: white important;
  color: #666;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.uk-navbar-dropdown a {
  font-family: 'Satoshi-Medium';
}

.uk-navbar-dropdown .uk-active a {
  color: unset !important;
  color: #16154D !important;
  font-family: 'Satoshi-Bold';
}

/* CSS Inspector (https://investorhosting.com) */
.topBrakerSectionAbout {
  /* background-color: red; */
  position: relative;
}

.topBrakerSectionAbout .topBandContainer {
  position: absolute;
  left: 9rem;
  background: #f09000;
  height: 2.5rem;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  font-family: "Satoshi-Bold";
  color: #fff;
}

.coreValuesWrapper {
  /* background-color: red; */
  margin-left: 9.5rem;
}

.coreValuesContainer .coreValuesWrapper .wrapperMain {
  position: relative;
  top: 0;
  margin-top: -2.5rem !important;
}

.coreValuesContainer .coreValuesWrapper .wrapperMain .contentContainer {
  margin-top: 2rem !important;
}

@media (max-width: 600px) {
  .bannerMainContainer {
    height: 60vh !important;
  }
  .bannerMainContainer .bandMainContainer {
    padding: 0 1rem !important;
  }
  .topBrakerSectionAbout {
    margin-top: 1rem !important;
  }
  .topBrakerSectionAbout .topBandContainer {
    left: 0 !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin-inline: auto !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    border-bottom-right-radius: 20rem !important;
    height: 2.5rem !important;
    background-color: #16154D !important;
    padding-right: 3rem !important;
  }
  .topBrakerSectionAbout .topContentWrapper .description {
    padding: 3rem 1rem .5rem 1rem !important;
  }
  .topBrakerSectionAbout .visualWrapper::before {
    width: 100vw;
    top: 0;
    left: unset !important;
  }
  .companyBriefWrapper {
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    max-width: unset !important;
    margin: 0 !important;
  }
  .missionStatVisionStatement {
    margin-top: 1rem !important;
  }
  .missionStatVisionStatement .topBandContainer {
    border-bottom-right-radius: 20rem !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
    margin: unset !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    background-color: #dd9335 !important;
  }
  .missionStatVisionStatement .briefContainer .mainHeading {
    margin-top: 1rem !important;
    text-align: start !important;
    padding: 0 1rem !important;
  }
  .coreValuesContainer .coreValuesWrapper {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
    margin: unset !important;
    margin-top: 2rem !important;
  }
  .coreValuesContainer .coreValuesWrapper .wrapperMain {
    margin-top: 2.5rem !important;
  }
  .coreValuesContainer .coreValuesWrapper .wrapperMain .contentContainer {
    margin-top: 1rem !important;
  }
  .coreValuesContainer .coreValuesWrapper .wrapperMain .contentContainer .itemsWrapper {
    margin-bottom: 2rem !important;
  }
  .coreValuesContainer .coreValuesWrapper .wrapperMain .visualsContainer {
    position: absolute !important;
  }
  .ourServicesContainer {
    z-index: 5 !important;
    position: absolute !important;
  }
  .ourSupportContainer {
    margin-top: 118rem !important;
  }
  .ourSupportContainer .topBandContainer {
    margin-left: unset !important;
  }
  .ourSupportContainer .supportWrapper .mainDescription {
    width: 100% !important;
    margin-inline: auto !important;
    max-width: unset !important;
    text-align: start !important;
  }
  .ourSupportContainer .supportWrapper .mainDescription p {
    width: 100% !important;
    padding: 0 1rem !important;
  }
  .ourSupportContainer .supportWrapper .supportCard {
    width: 100% !important;
  }
}
/*# sourceMappingURL=aboutMobile.css.map */