@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --red: #F00000;
    --yellow: #FFC31A;
    --yellowTint1: #FF8D0E;
    --black: #000000;
    --white: #ffffff;
    --blue: #1E5099;
    --blueTint1: #071E62;
    --skyblue: #42cde2;
    --grey: #777777;
    --greyTint1: #D9D9D9;
    --darkBlue: #071931;
    --darkGrey: #222222;
    
    --body-bg-color: #f7f7f7;
    --scroll-color: #FFC31A;
    --scroll--hover-color: #FFC31A;
    --scroll-track-color: #f7f7f7;
}

* {
    scrollbar-color: #FFC31A #f7f7f7;
    scrollbar-width: thin;
}
*::-webkit-scrollbar-track {
    background: linear-gradient(to right, var(--scroll-track-color) 0%, var(--scroll-track-color) 100%, var(--scroll-color) 60%, var(--body-bg-color) 61%, var(--body-bg-color) 100%);
}
*::-webkit-scrollbar {
    width: 4px;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-color);
    border-radius: 0;
}
::-webkit-scrollbar {
    background: transparent;
    width: 5px;
    height: 5px;
    margin-left: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

/* html,body { height: 100%; } */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html, body {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
img,
a,
p {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

a:hover {
    text-decoration: none;
}

blockquote,
figure {
    padding: 0;
    margin: 0;
    border-left: 0;
}

a {
    color: var(--yellow);
}

* :focus {
    outline: none !important;
}

img {
    max-width: 100%;
}

a,
img,
button,
input[type="submit"],
input[type="button"] {
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

p:last-of-type {
    margin-bottom: 0;
}

main,
header,
section,
footer {
    width: 100%;
    float: left;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.blinker {
    opacity: 0;
    animation-name: bounceIn;
    animation-duration: 3.0s;
    animation-timing-function: infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.blinker:nth-child(1) { animation-delay: 0.3s; }
.blinker:nth-child(2) { animation-delay: 0.4s; }
.blinker:nth-child(3) { animation-delay: 0.5s; }
.blinker:nth-child(4) { animation-delay: 0.6s; }
.blinker:nth-child(5) { animation-delay: 0.8s; }
.blinker:nth-child(6) { animation-delay: 1.0s; }
.blinker:nth-child(7) { animation-delay: 1.2s; }
.blinker:nth-child(8) { animation-delay: 1.8s; }
.blinker:nth-child(9) { animation-delay: 2.1s; }
.blinker:nth-child(10) { animation-delay: 2.6s; }
.blinker:nth-child(11) { animation-delay: 2.8s; }
.blinker:nth-child(12) { animation-delay: 3.1s; }
.blinker:nth-child(13) { animation-delay: 3.6s; }
.blinker:nth-child(14) { animation-delay: 3.8s; }
.blinker:nth-child(15) { animation-delay: 4.1s; }

@keyframes bounceIn {
   0% {
      opacity: 0.1;
      transform: scale(0.3) translate3d(0,0,0);
   }
   50% {
      opacity: 0.3;
      transform: scale(1.1);
   }
   80% {
      opacity: 0.4;
      transform: scale(0.89);
   }
   100% {
      opacity: 0.5;
      transform: scale(1) translate3d(0,0,0);
   }
}

:root {
    --tooltip-color: #FFC31A;
}
.tooltip-inner {
    background-color: var(--tooltip-color);
    min-width: inherit;
    color: #2E2E2E;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    padding: 10px 15px;
}

.bs-tooltip-bottom>.tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom]>.tooltip-arrow::before {
    border-color: transparent transparent var(--tooltip-color);
}

.bs-tooltip-top>.tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top]>.tooltip-arrow::before {
    border-color: var(--tooltip-color) transparent transparent;
}

.bs-tooltip-start>.tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left]>.tooltip-arrow::before {
    border-color: transparent transparent transparent var(--tooltip-color);
}

.bs-tooltip-end>.tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right]>.tooltip-arrow::before {
    border-color: transparent var(--tooltip-color) transparent transparent;
}

.betaText {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--yellowTint1);
    font-weight: 700;
    z-index: 2;
}

.mainImg,
.starsAnimation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.earthImg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 1340px;
    max-width: 1340px;
    right: 0;
    margin: 0 auto;
}

.blinkingStars {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 1340px;
    max-width: 1340px;
    height: 285px;
    right: 0;
    margin: 0 auto;
}

.blink {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    animation: pulse 2s infinite;
    /* animation: blink 1s linear infinite; */
}

.blink.extraSmall {
    width: 8px;
    height: 8px;
}

.blink.small {
    width: 10px;
    height: 10px;
}

.blink.medium {
    width: 15px;
    height: 15px;
}

.blink.large {
    width: 20px;
    height: 20px;
}

.blink.one {
    left: 415px;
    top: 13px;
}

.blink.two {
    left: 430px;
    bottom: 125px;
}

.blink.three {
    left: 460px;
    top: -30px;
}

.blink.four {
    left: 528px;
    top: 80px;
}

.blink.five {
    right: 520px;
    top: -8px;
}

.blink.six {
    right: 215px;
    bottom: 70px;
}

.blink.seven {
    bottom: 64px;
    left: -54px;
    right: 0;
    margin: 0 auto;
}

@media only screen and (max-width: 1600px) {
    .earthImg {
        width: 1200px;
        max-width: 1200px;
    }

    .blinkingStars {
        width: 1200px;
        max-width: 1200px;
        height: 260px;
    }

    .blink.one {
        left: 370px;
        top: 15px;
    }

    .blink.two {
        left: 382px;
        bottom: 110px;
    }

    .blink.three {
        left: 410px;
        top: -22px;
    }

    .blink.four {
        left: 470px;
        top: 75px;
    }

    .blink.five {
        right: 468px;
        top: 0;
    }

    .blink.six {
        right: 190px;
        bottom: 62px;
    }

    .blink.seven {
        bottom: 57px;
        left: -48px;
    }
}

@media only screen and (max-width: 1275px) {
    .earthImg {
        width: 900px;
        max-width: 900px;
    }

    .blinkingStars {
        width: 900px;
        max-width: 900px;
        height: 220px;
    }

    .blink.one {
        left: 275px;
        top: 34px;
    }

    .blink.two {
        left: 285px;
        bottom: 82px;
    }

    .blink.three {
        left: 306px;
        top: 6px;
    }

    .blink.four {
        left: 350px;
        top: 80px;
    }

    .blink.five {
        right: 350px;
        top: 22px;
    }

    .blink.six {
        right: 142px;
        bottom: 46px;
    }

    .blink.seven {
        bottom: 42px;
        left: -36px;
    }
}

@media only screen and (max-width: 991px) {
    .earthImg {
        width: 700px;
        max-width: 700px;
    }

    .blinkingStars {
        width: 700px;
        max-width: 700px;
        height: 220px;
    }

    .blink.one {
        left: 210px;
        top: 75px;
    }

    .blink.two {
        left: 218px;
        bottom: 62px;
    }

    .blink.three {
        left: 237px;
        top: 52px;
    }

    .blink.four {
        left: 270px;
        top: 108px;
    }

    .blink.five {
        right: 270px;
        top: 65px;
    }

    .blink.six {
        right: 110px;
        bottom: 35px;
    }

    .blink.seven {
        bottom: 30px;
        left: -28px;
    }
}

@media only screen and (max-width: 767px) {
    .earthImg {
        width: 530px;
        max-width: 530px;
    }

    .blinkingStars {
        width: 530px;
        max-width: 530px;
        height: 180px;
    }

    .blink.small {
        width: 5px;
        height: 5px;
    }

    .blink.medium {
        width: 7px;
        height: 7px;
    }

    .blink.large {
        width: 10px;
        height: 10px;
    }

    .blink.one {
        left: 162px;
        top: 70px;
    }

    .blink.two {
        left: 168px;
        bottom: 48px;
    }

    .blink.three {
        left: 182px;
        top: 55px;
    }

    .blink.four {
        left: 208px;
        top: 98px;
    }

    .blink.five {
        right: 205px;
        top: 65px;
    }

    .blink.six {
        right: 85px;
        bottom: 28px;
    }

    .blink.seven {
        bottom: 22px;
        left: -20px;
    }
}

@media only screen and (max-width: 575px) {
    .earthImg {
        width: 400px;
        max-width: 400px;
    }

    .blinkingStars {
        width: 400px;
        max-width: 400px;
        height: 150px;
    }

    .blink.one {
        left: 122px;
        top: 66px;
    }

    .blink.two {
        left: 126px;
        bottom: 36px;
    }

    .blink.three {
        left: 136px;
        top: 55px;
    }

    .blink.four {
        left: 156px;
        top: 88px;
    }

    .blink.five {
        right: 155px;
        top: 62px;
    }

    .blink.six {
        right: 62px;
        bottom: 20px;
    }

    .blink.seven {
        bottom: 17px;
        left: -16px;
    }
}

@media only screen and (max-width: 360px) {
    .earthImg {
        width: 300px;
        max-width: 300px;
    }

    .blinkingStars {
        width: 300px;
        max-width: 300px;
        height: 100px;
    }

    .blink.one {
        left: 90px;
        top: 36px;
    }

    .blink.two {
        left: 94px;
        bottom: 26px;
    }

    .blink.three {
        left: 102px;
        top: 27px;
    }

    .blink.four {
        left: 116px;
        top: 52px;
    }

    .blink.five {
        right: 115px;
        top: 32px;
    }

    .blink.six {
        right: 47px;
        bottom: 15px;
    }

    .blink.seven {
        bottom: 12px;
        left: -12px;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(38, 224, 236, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(38, 224, 236, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(38, 224, 236, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(38, 224, 236, 0.4);
        box-shadow: 0 0 0 0 rgba(38, 224, 236, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(38, 224, 236, 0);
        box-shadow: 0 0 0 20px rgba(38, 224, 236, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(38, 224, 236, 0);
        box-shadow: 0 0 0 0 rgba(38, 224, 236, 0);
    }
}


#main {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 2;
}

/*Tooltip*/
.tooltipElement {
    position: relative;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    /* webkit text rendering fix */
}

.tooltipElement .tooltip {
    background-color: var(--white);
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    top: 100%;
    margin-top: 15px;
    padding: 8px 15px;
    opacity: 0;
    border-radius: 5px;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.tooltipElement .tooltip.customTooltip {
	width: 100%;
	min-width: 300px;
    left: -80px;
    display: block;
    padding: 15px;
}

.customTooltip form {
    margin: 10px 0 0;
    text-align: center;
}

.customTooltip form .commonButton {
    margin-top: 10px;
    font-size: 13px;
    padding: 7px 20px;
}

.tooltipElement .tooltip p {
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
}

.tooltipElement .tooltip img {
    width: 40px;
    margin-right: 10px;
}

.tooltipElement .tooltip span {
    font-weight: 700;
}

.tooltipElement .tooltip:before {
    content: "";
    width: 100%;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: -20px;
}

.tooltipElement .tooltip:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-bottom: solid var(--white) 10px;
    margin-left: -13px;
}

.tooltipElement:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}



/*Header*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.header.sticky {
    background-color: var(--darkBlue);
}

.header.sticky .headerTop {
    display: none;
}

.header.sticky .mainLogo {
    display: none;
}

.header.sticky .miniLogo {
    display: block;
    max-width: 60px;
}

.header.sticky .navPills > ul > li > a,
.header.sticky .navPills > ul > li .dropdown-toggle {
    font-size: 14px;
}

.header.sticky .searchElement .dropdown-toggle {
    font-size: 16px;
}

.header.sticky .commonButton {
    font-size: 13px;
    padding: 8px 20px;
}
.header.sticky .headerInner {
    padding-top: 10px;
}

.headerTop {
    background-color: var(--darkBlue);
    display: flex;
    align-items: center;
    padding: 10px 5%;
}
.headerTop > span {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}
.headerTop > span a {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid;
    line-height: 100%;
}
.headerTop > span a:hover {
    color: var(--yellow);
}

.bookDemoButton {
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow);
    border: 0;
    margin-left: auto;
    margin-right: 20px;
    padding: 0;
}


/*Select Country Language*/

/* .selectCountryLanguage {
    margin-left: auto;
} */
.selectCountryLanguage .dropdown-toggle {
    background-color: transparent;
    border: 0;
}
.selectCountryLanguage .dropdown-toggle img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
.selectCountryLanguage .dropdown-menu li a img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 5px;
}

.headerInner {
    display: flex;
    align-items: center;
    padding: 0 5% 20px;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.logo a {
    display: block;
}

.logo img {
    max-width: 180px;
}
.logo .mainLogoNew {
    max-width: 160px;
}

.miniLogo {
    display: none;
}

.navbar {
	margin-left: auto;
	padding: 0;
}

.navigationInner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navPills > ul > li   {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.navPills > ul > li + li {
    margin-left: 20px;
}

.navPills > ul > li > a,
.navPills > ul > li .dropdown-toggle {
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: 0;
}
.navPills > ul > li > a.active,
.navPills > ul > li .dropdown-toggle.active {
    color: var(--yellow);
}
.navPills > ul > li > ul {
    width: 180px;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.navPills > ul > li > ul li {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.navPills > ul > li > ul li + li {
    border-top: 1px solid rgba(0,0,0,0.1);
}
.navPills > ul > li > ul li a {
    display: block;
    color: var(--darkBlue);
    padding: 8px 10px;
}
.navPills > ul > li > ul::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-bottom: solid var(--white) 10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navPills > ul > li > ul li a:hover {
    color: var(--yellowTint1);
}
.navPills > ul > li:hover > ul,
.navPills > ul > li:hover > .tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}

.navPills > ul > li > a .tooltip,
.navPills > ul > li .dropdown-toggle .tooltip {
    z-index: 2;
}

.navPills > ul > li > a:hover,
.navPills > ul > li .dropdown-toggle:hover {
    color: var(--yellow);
}

.headButton .dropdown-toggle::after {
    display: none;
}

/*Search Element*/
.navbarElements {
    display: flex;
    align-items: center;
    gap: 20px;
}

.searchElement {
    position: relative;
    display: none;
}

.searchElement .dropdown-toggle {
    background-color: transparent;
    font-size: 18px;
    color: var(--white);
    padding: 0;
    border: 0;
}

.searchElement .dropdown-toggle::after {
    display: none;
}

.searchElement form {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.searchElement .searchField {
    width: 220px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.07);
    padding: 2px 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.searchBtn {
    background-color: var(--yellow);
    height: 40px;
    display: inline-block;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    padding: 5px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--yellow);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.searchBtn:hover {
    background-color: transparent;
    color: var(--yellow);
}

/*Dropdown Menu*/
.dropdown-toggle::after {
    border-top-color: var(--yellow);
    border-width: 0.4em;
    border-radius: 3px 3px 0 0;
    vertical-align: middle;
    margin-left: 3px;
}

.dropdown-menu {
    padding: 0;
    border-width: 3px 0 0 0;
    border-style: solid;
    border-color: var(--yellow);
    border-radius: 0;
}

.dropdown-menu li {
    font-size: 14px;
    display: block;
    margin: 0;
}

.dropdown-menu li a > * {
    display: inline-block;
    vertical-align: middle;
}
.dropdown-menu li a i {
	font-size: 17px;
	margin-right: 5px;
}

.dropdown-menu li+li {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.dropdown-menu li a {
    display: block;
    color: var(--darkGrey);
    padding: 6px 10px;
}

.dropdown-menu li a:hover {
    background-color: var(--yellow);
    color: var(--white);
}


/*Common Padding*/
.commonPY {
    padding-top: 60px;
    padding-bottom: 60px;
}
.commonPT {
    padding-top: 60px;
}
.commonPB {
    padding-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
    .commonPY {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .commonPT {
        padding-top: 40px;
    }
    .commonPB {
        padding-bottom: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .commonPY {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .commonPT {
        padding-top: 30px;
    }
    .commonPB {
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .commonPY {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .commonPT {
        padding-top: 20px;
    }
    .commonPB {
        padding-bottom: 20px;
    }
}

/*Common Button*/
.commonButton {
    background-color: var(--yellow);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--yellow);
}
.commonButton--wide {
    min-width: 150px;
}
@media only screen and (max-width: 767px) {
    .commonButton--wide {
        min-width: 120px;
    }
}
.commonButton:hover {
    background-color: transparent;
    color: var(--yellow);
}
.commonButton--grey {
    background-color: var(--greyTint1);
    border-color: var(--greyTint1);
}
.commonButton--grey:hover {
    color: var(--greyTint1);
    border-color: var(--greyTint1);
}


/*Body*/
.wrapper {
    padding-top: 220px;
    height: calc(100vh - 50px);
}
.wrapper.auto-height {
    height: auto;
    padding-bottom: 50px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin: 50px 0;
}
h2 {
    font-size: 50px;
    margin-bottom: 0;
}
h3 {
    font-size: 40px;
    margin-bottom: 0;
}
h4 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}


.homeLanding {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.gridsOuter {
    padding: 50px 100px;
}

.grid a:hover .gridInner {
    box-shadow: 0 3px 8px 0 rgba(255,255,255,0.5);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.gridInner {
    background-color: rgba(255, 255, 255, 0.88);
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    height: 100%;
    min-height: 320px;
    border-radius: 10px;
    text-align: center;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.gridImgOuter {
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gridImg {
    max-width: 200px;
    max-height: 120px;
}
.gridInner h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin: 20px 0;
}
.gridInner h4 a {
    color: var(--blue);
}
.gridInner h4 a:hover {
    color: var(--yellowTint1);
}
.gridInner p {
    font-size: 15px;
    color: var(--black);
}
.gridInner p span {
    color: var(--yellowTint1);
    font-weight: 700;
}

/*Meet The Team*/
.teamWrapper  .gridsOuter {
    padding: 50px 30px;
}
.gridTeam {
    /* background-color: var(--white); */
    height: 100%;
    min-height: 290px;
    padding: 20px;
}
.gridTeam .gridImgOuter img {
    width: 100px;
    height: 100px;
    border: 4px solid var(--yellowTint1);
    border-radius: 50%;
    object-fit: cover;
}
.bottomContent {
    margin-top: 50px;
}
.gridInner h4 {
    color: var(--yellowTint1);
    margin: 20px 0 10px;
}
.gridInner p,
.gridInner p a,
.gridInner p a span {
    color: var(--darkBlue);
}
.contactInfo {
    text-align: center;
}
.contactInfoIcon {
    width: 100px;
    height: 100px;
    font-size: 45px;
    display: inline-block;
    color: var(--yellowTint1);
    line-height: 100px;
    border: 2px solid var(--yellowTint1);
    border-radius: 50%;
}

.bottomContent p {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}
.bottomContent p + p {
    margin-top: 10px;
}
.bottomContent p a,
.bottomContent p i,
.bottomContent p span {
    color: var(--yellowTint1);
}
.bottomContent p i {
    margin-right: 5px;
}
.bottomContent p a:hover {
    text-decoration: underline;
}

.bottomContentInner {
    margin-top: 10px;
}
.bottomContentInner p {
    font-size: 16px;
}
.bottomContentInner p + p {
    margin-top: 0;
}

/*Landing Page*/
.landingPage .headerTop {
    background-color: transparent;
}
.landingPage .wrapper {
    position: relative;
	height: 100vh;
	padding-top: 0;
}



    .landingPage .wrapper {
    
        height: auto;

    }

.landingPage .logo {
    text-align: left;
    padding: 30px;
}
.landingPage .logo a {
    display: inline-block;
}
.landingPage h2 {
    font-size: 60px;
    margin-top: 0;
}
.headingText p {
    width: 100%;
    max-width: 68%;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin: 30px auto 0;
}
.headingText p span {
    color: var(--yellowTint1);
}

/*Inner Content*/
.middleElements {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.innerContentWrap {
    margin-top: auto;
    margin-bottom: auto;
}
.innerContent {
    padding-left: 20px;
	padding-right: 20px;
}
.innerContent__content {
    position: relative;
}
.innerContent__image {
    text-align: right;
}
.innerContent__multiLinks {
    padding-top: 15px;
}
.innerContent__multiLinks a {
    display: flex;
    flex-direction: column;    
}
.innerContent__image > a {
    display: inline-block;
}
.innerContent__image img {
	width: 100%;
	max-width: 450px;
    max-height: 380px;
}
.innerContent__content .contentLogo {
    width: 100%;
    max-width: 210px;
    max-height: 130px;
    margin-bottom: 30px;
    -o-object-fit: contain;
	object-fit: contain;
}
.innerContent p,
.innerContent li {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
}
.innerContent p span {
    color: var(--yellowTint1);
}
.innerContent li span,
.innerContent p span {
    font-weight: 700;
}
.innerContent p + p,
.innerContent li + li {
    margin-top: 30px;
}
.innerContent .pennyBulletSection p + p {
    margin-top: 10px;
}
.innerContent li:last-child > span {
    margin-bottom: auto;
}
.innerContent li a {
    color: var(--white);
}
.innerContent li a:hover {
    text-decoration: underline;
}
.innerContent li,
.innerContent li > span {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}
.innerContent li > span {
	margin-right: 30px;
} 
.innerContent li > span img {
	margin-right: 20px;
}
.innerContent li > span strong {
    font-weight: 700;
} 

.innerContentInner + .innerContentInner {
    margin-top: 50px;
}
.innerContent {
    counter-reset: number;
}
.innerContent--img p,
.innerContent--step p {
    padding-left: 90px;
}
.innerContent--img .paragraphImg {
    max-width: 72px;
    position: absolute;
    top: 0;
    left: 12px;
}

.innerContent--step p::after {
    content: "";
    width: 60px;
    height: 62px;
    background-image: url("../../images/icons/step-img1.svg");
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 12px;
}
.innerContent--step p:nth-child(2):after {
    background-image: url("../../images/icons/step-img2.svg");
}
.innerContent--step p:nth-child(3):after {
    background-image: url("../../images/icons/step-img3.svg");
}
.innerContent--step p::before {
    counter-increment: number;
    content: "" counter(number)" ";
    position: absolute;
    top: 18px;
    left: 32px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}
.innerContentInner:nth-child(-n+9) .innerContent--step p::before {
    content: "0" counter(number)" ";
}
.innerContentInner:nth-of-type(2n) .row {
    flex-direction: row-reverse;    
}
.innerContentInner:nth-of-type(2n) .innerContent__image {
    text-align: left;
}

/*Slick Slider*/
.stepSlider .slick-arrow {
	position: absolute;
	top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    width: 35px;
    height: 35px;
    font-size: 20px;
    color: var(--white);
    border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}
.stepSlider .slick-prev {
    left: 20px;
}
.stepSlider .slick-next {
    right: 20px;
}
.stepSlider .slick-arrow.slick-disabled {
    opacity: 0.2;
    pointer-events: none;
}

.stepSlider .betaText {
    position: absolute;
}
.stepSlider .logo {
	text-align: left;
	padding-bottom: 0;
}
.stepSlider .logo img,
.stepSlider .innerContent__image img,
.innerContent__content .contentLogo {
    display: inline-block;
}

/*Step 1*/
.step1 .betaText {
    top: 20px;
    left: 20px;
    right: inherit;
    bottom: inherit;
}
.step1 .middleElements {
    position: relative;
    z-index: 1;
}
.step1 .earthImg,
.step1 .blinkingStars {
    position: absolute;
	bottom: -140px;
}
.step1 .innerContent__content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin-top: 20px;
    text-align: left;
    line-height: 55px;
}
.step3 .innerContent--step p::after {
	background-image: url("../../images/icons/step-img2.svg");
}
.step3 .innerContent__content.innerContent--step p::before {
	content: "02";
}
.step4 .innerContent--step p::after {
	background-image: url("../../images/icons/step-img3.svg");
}
.step4 .innerContent__content.innerContent--step p::before {
	content: "03";
}

/*Data Vault*/
.dataVault {
    position: relative;
    display: flex;
    align-items: center;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.dataVault::before {
    content: "";
    /* background-color: var(--skyblue); */
    border-right: 1px solid var(--skyblue);
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
@media only screen and (max-width: 1600px) {
    .dataVault::before {
        width: 55%;
    }
}

/*Data Vault Animation*/
.dataVaultAnimation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.dataVaultBg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.dataVaultIcon {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
}
.dataVaultIcon.one {
	top: 0vh;
	right: 23vw;
}
.dataVaultIcon.two {
	top: 3vh;
	right: 11vw;
}
.dataVaultIcon.three {
	top: 0vh;
	right: 42vw;
}
.dataVaultIcon.four {
	top: 12vh;
	right: 25vw;
}
.dataVaultIcon.five {
	top: 27vh;
	right: 23vw;
}
.dataVaultIcon.six {
	top: 29vh;
	right: 45vw;
}
.dataVaultIcon.seven {
	top: 45vh;
	right: 11vw;
}
.dataVaultIcon.eight {
	top: 54vh;
	right: 11vw;
}
.dataVaultIcon.nine {
	bottom: 44vh;
	right: 41vw;
}
.dataVaultIcon.ten {
	bottom: 30vh;
	right: 45vw;
}
.dataVaultIcon.eleven {
	bottom: 2vh;
	right: 33vw;
}
.dataVaultIcon.twelve {
	bottom: 8.5vh;
	right: 20vw;
}
.dataVaultIcon.thirteen {
	bottom: 0vh;
	right: 10vw;
}

/*Media*/
@media only screen and (max-width: 1800px) {
    .dataVaultIcon.one {
        top: 3vh;
    }
    .dataVaultIcon.two {
        top: 6vh;
    }
    .dataVaultIcon.four {
        top: 14vh;
    }
    .dataVaultIcon.five {
        top: 28vh;
    }
    .dataVaultIcon.eleven {
        bottom: 5vh;
    }
    .dataVaultIcon.twelve {
        bottom: 12vh;
    }
}
@media only screen and (max-width: 1600px) {
    .dataVaultIcon.one {
        top: 5vh;
        right: 14vw;
    }
    .dataVaultIcon.two {
        right: 0vw;
    }
    .dataVaultIcon.three {
        top: 2vh;
        right: 38vw;
    }
    .dataVaultIcon.four {
        top: 16vh;
        right: 17vw;
    }
    .dataVaultIcon.five {
        top: 29vh;
        right: 14vw;
    }
    .dataVaultIcon.seven {
        right: 0vw;
    }
    .dataVaultIcon.eight {
        right: 0vw;
    }
    .dataVaultIcon.nine {
        right: 38vw;
    }
    .dataVaultIcon.ten {
        bottom: 32vh;
        right: 43vw;
    }
    .dataVaultIcon.eleven {
        bottom: 7vh;
        right: 28vw;
    }
    .dataVaultIcon.twelve {
        right: 12vw;
    }
    .dataVaultIcon.thirteen {
        right: 7vw;
    }
}
@media only screen and (max-width: 1199px) {
    .dataVaultIcon.one {
        right: 6vw;
    }
    .dataVaultIcon.two,
    .dataVaultIcon.seven,
    .dataVaultIcon.eight {
        display: none;
    }
    .dataVaultIcon.three {
        right: 35vw;
    }
    .dataVaultIcon.four {
        right: 10vw;
    }
    .dataVaultIcon.five {
        right: 8vw;
    }
    .dataVaultIcon.nine {
        right: 35vw;
    }
    .dataVaultIcon.eleven {
        right: 24vw;
    }
    .dataVaultIcon.twelve {
        right: 3vw;
    }
}
@media only screen and (max-width: 991px) {
    .dataVaultBg {
        -o-object-position: 75%;
        object-position: 75%;
    }
    .dataVaultIcon.six,
    .dataVaultIcon.ten {
        display: none;
    }
    .dataVaultIcon.one {
        right: 20vw;
    }
    .dataVaultIcon.three {
        right: 55vw;
    }
    .dataVaultIcon.four {
        right: 22vw;
    }
    .dataVaultIcon.five {
        right: 22vw;
    }
    .dataVaultIcon.nine {
        bottom: 46vh;
    }
    .dataVaultIcon.eleven {
        right: 42vw;
    }
    .dataVaultIcon.twelve {
        right: 15vw;
    }
    .dataVaultIcon.thirteen {
        right: 10vw;
    }
}


.dataVaultInner {
    position: relative;
    z-index: 2;
}
.dataVault .backToHome {
    position: absolute;
    top: 30px;
    left: 30px;
    width: auto;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffc31a;
}
.dataVault .backToHome > i {
    margin-right: 5px;
}
.dataVault .backToHome:hover {
    color: var(--yellow);
}

.dataVault > * {
    position: relative;
    width: 100%;
    z-index: 1;
}
.dataVaultContent {
    position: relative;
	padding: 0 10%;
}
.dataVaultLogo {
    text-align: left;
}
.dataVaultLogo img {
	width: 100%;
	max-width: 380px;
}
.dataVaultList {
	margin: 50px 0;
}
.dataVaultList li {
    background-image: url("../../images/direction-arrow-right-icon.svg");
    background-position: left 6px;
    background-repeat: no-repeat;
    background-size: 20px;
    position: relative;
	font-size: 22px;
	font-weight: 700;
    color: var(--black);
    padding-left: 35px;
    color: #fff;
}
.dataVaultList li + li {
    margin-top: 20px;
}
.dataVaultCompanyLogos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.dataVaultCompanyLogos > a {
	display: inline-block;
}
.dataVaultCompanyLogos img {
	width: 100%;
	max-width: 150px;
	max-height: 40px;
}

.bottomButtons {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 2;
}
.bottomButtons li + li {
    margin-top: 10px;
}
.bottomButtons li a {
    background: rgb(16,30,101); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(16,30,101,1) 0%, rgba(133,26,139,1) 62%, rgba(208,24,164,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(16,30,101,1) 0%,rgba(133,26,139,1) 62%,rgba(208,24,164,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(16,30,101,1) 0%,rgba(133,26,139,1) 62%,rgba(208,24,164,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#101e65', endColorstr='#d018a4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,0.8);
	border-radius: 50%;
    overflow: hidden;
}
.bottomButtons li a img {
	width: 35px;
}

.bottomText {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	color: var(--white);
	text-align: center;
	margin: 0 auto;
}


/*Modal*/
.modal-backdrop {
	background-color: var(--blueTint1);
} 
.modal-backdrop.show {
	opacity: 0.9;
}
.commonModal .modal-content {
	border: 0;
	border-radius: 8px;
	padding: 50px;
}
.commonModal .modal-header,
.commonModal .modal-body,
.commonModal .modal-footer {
	border: 0;
	padding: 0;
}
.commonModal .modal-header {
	display: block;
	text-align: center;
}
.commonModal .btn-close {
	position: absolute;
	right: 25px;
	top: 25px;
	border-radius: 50%;
	font-size: 11px;
	padding: 5px;
	border: 2px solid var(--black);
	opacity: 0.8;
}
.commonModal .modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--darkGrey);
    margin: 0;
}
.commonModal .modal-header .sub-title {
    width: 100%;
    max-width: 60%;
    display: block;
    margin: 10px auto 0;
}
@media only screen and (max-width: 767px) {
    .commonModal .modal-header .sub-title {
        max-width: 100%;
    }
}
.commonModal .modal-body,
.commonModal .modal-footer {
    padding-top: 50px;
}

/*Form*/
form .form-control {
    width: 100%;
    background-color: transparent;
    height: 38px;
    font-weight: 400;
    color: var(--grey);
    padding: 3px 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 5px;
}
form .form-control:focus {
    background-color: transparent;
    border-color: rgba(0,0,0,0.2);
    color: var(--grey);
    box-shadow: none;
}
.commonForm .form-control {
    height: 45px;
}
.commonForm .form-group + .form-group {
    margin-top: 20px;
}
.commonForm label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

/*Footer*/
.footer {
    background-color: rgba(0,0,0,0.4);
    margin-top: auto;
}
.footer__logos ul {
    display: flex;
    flex-wrap: wrap;
}
.footer__logos li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 50px;
}
.footer__logos li a {
    display: inline-block;
}
.footer__logos img {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 85px;
    -o-object-fit: contain;
    object-fit: contain;
}
.footer--dots li {
    position: relative;
    padding-left: 20px;
}
.footer--dots li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.footer__links li + li {
    margin-top: 15px;
}
.footer__links li a {
    display: inline;
}
.footer__links li a:hover {
    color: var(--yellowTint1);
}
.footer__links li span {
    display: block;
    font-weight: 700;
    color: var(--yellowTint1);
}
.footer__links li,
.footer__links li a {
    color: var(--white);
}

/*Privacy Terms*/
.privacyTermsInnerContent h2 {
    margin-bottom: 50px;
}
.privacyTermsInnerContent .separate {
    margin-top: 50px;
}
.privacyTermsInnerContent h4 {
    font-size: 25px;
    text-align: left;
}
.privacyTermsInnerContent p,
.privacyTermsInnerContent li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}
.privacyTermsInnerContent li {
    padding-left: 20px;
}
.privacyTermsInnerContent li + li {
    margin-top: 5px;
}
.privacyTermsInnerContent li::before {
    content: "";
    background-color: var(--white);
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.privacyTermsInnerContent .table {
	margin-bottom: 40px;
}
.privacyTermsInnerContent .table.horizontal {
    margin-top: 15px;
}
.privacyTermsInnerContent .table th,
.privacyTermsInnerContent .table td {
    border-color: rgba(255,255,255,0.3);
    padding: 15px;
}
.privacyTermsInnerContent .table tr:nth-child(odd) th,
.privacyTermsInnerContent .table tr:nth-child(odd) td {
    background-color: rgba(255,255,255,0.1);
}
.privacyTermsInnerContent .table tr:last-child th,
.privacyTermsInnerContent .table tr:last-child td {
    border-bottom: 0;
}
.privacyTermsInnerContent .horizontal th {
    width: 20%;
}
.privacyTermsInnerContent .horizontal td {
    width: 80%;
}
.privacyTermsInnerContent p {
    margin-top: 20px;
}
.privacyTermsInnerContent .subTitle {
    color: var(--yellow);
    font-weight: 500;
    margin-bottom: 5px;
}
.privacyTermsInnerContent a:hover {
    color: var(--yellowTint1);
    text-decoration: underline;
}

.privacyTermsInnerContent table th,
.privacyTermsInnerContent table td {
    color: var(--white);
}

.bottomFooterContent {
    position: relative;
	top: 45px;
	text-align: center;
    margin-top: 10px;
	padding: 0 20%;
}
@media only screen and (max-width: 1199px) {
    .bottomFooterContent {
        top: 25px;
        padding: 0 15%;
    }
}
@media only screen and (max-width: 991px) {
    .bottomFooterContent {
        padding: 0 10%;
    }
}
@media only screen and (max-width: 767px) {
    .bottomFooterContent {
        top: 20px;
        padding: 0 5%;
    }
}
@media only screen and (max-width: 575px) {
    .bottomFooterContent {
        top: 10px;
        margin-top: 20px;
        padding: 0;
    }
    .bottomFooterContent small {
        font-size: 11px;
    }
}

.bottomFooterContent small {
    display: block;
    font-size: 12px;
    color: var(--white);
}
.bottomFooterContent small + small {
    margin-top: 15px;
}
.bottomFooterContent small a {
    color: var(--yellowTint1);
}
.bottomFooterContent small a:hover {
    color: var(--yellow);
    text-decoration: underline;
}
.homepageListing {
    margin-top: 30px !important;
    margin-left: 33px !important;
}
.homepageListing li {
    list-style-type: disc;
    margin-bottom: 10px;
}
.fintechInnerLogo {
    width: 100%;
    max-width: 200px;
}
.teamdesc{
    margin: 20px 0px;
}

.teamdesc p{
    margin: 18px 0px;
    text-align: left;
}
.teamWrapper .carousel .carousel-control-prev, .teamWrapper .carousel .carousel-control-next {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--yellow);
    opacity: 1;
    border-radius: 50%;
}
.teamWrapper .carousel .carousel-control-prev {
    left: 20px;
}
.teamWrapper .carousel .carousel-control-next {
    right: 20px;
}
.teamWrapper .carousel .gridTeam .teamdesc p {
    text-align: center;
}
.teamWrapper .carousel .gridTeam.gridInner {
    height: 435px;
}