@charset "UTF-8";

/* CSS Document */
:root {
    --color-primary: #ffe368;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-grey-100: #f5f5f5;
    --color-grey-200: #a9a9a9;
    --color-grey-300: #767676;
    --color-grey-400: #2f2f2f;
    --color-grey-500: #292929;
    --color-grey-600: #171717;
    --font-sans-serif: 'Inter', -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans',
        Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --body-line-height: 1.2;
    --font-base: 20px;
    --gutter-x: 32px;
    --font-h1: 64px;
    --font-h2: 40px;
    --font-h3: 32px;
    --font-h4: 28px;
    --font-h5: 14px;
    --transition: all 0.3s ease-in-out;
}

/*==============================================================
    Common Styles Initials
==============================================================*/

html {
    -webkit-text-size-adjust: none;
    /* Prevent font scaling in landscape */
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: inherit !important;
}

input[type='submit'] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    width: 4px;
    height: 4px;
    background: var(--color-grey-500);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 4px;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    font-family: var(--font-sans-serif);
    font-size: var(--font-base);
    line-height: var(--body-line-height);
    color: var(--color-grey-200);
    background: var(--color-grey-500);
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-grey-200);
    font-family: var(--font-sans-serif);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

input,
textarea,
select {
    outline: none;
    resize: none;
    font-family: var(--font-sans-serif);
}

a,
input,
button {
    outline: none !important;
    font-family: var(--font-sans-serif);
}

button::-moz-focus-inner {
    border: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans-serif);
    margin: 0;
    padding: 0;
    font-weight: 700;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
    padding-bottom: 24px;
}

/*==============================================================
    Custom Style
==============================================================*/
.h1 {
    font-size: var(--font-h1);
    line-height: 0.9;
    text-transform: uppercase;
}
.h2 {
    font-size: var(--font-h2);
    line-height: 0.9;
    text-transform: uppercase;
}
.h3 {
    font-size: var(--font-h3);
    line-height: 0.9;
    text-transform: uppercase;
}
.h4 {
    font-size: var(--font-h4);
    line-height: 0.9;
    text-transform: uppercase;
}
.h5 {
    font-size: var(--font-h5);
    line-height: 1;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: var(--font-sans-serif);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-primary);
    background: transparent;
    padding: 8px 26px;
    border-radius: 6px;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}
.btn:hover {
    background: var(--color-primary);
    color: var(--color-grey-600);
}
.btn-secondary {
    background: var(--color-grey-500);
    border-color: var(--color-grey-500);
    color: var(--color-grey-100);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-grey-500);
}

/* Start of header style */
.header-wrap {
    position: relative;
}
.header-wrap header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 1234;
}
.header-wrap header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    background: var(--color-primary);
    width: calc(100% - 40px);
    max-width: 1080px;
    transition: var(--transition);
}
.header-wrap .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 62px 0 54px;
    transition: var(--transition);
}
.header-wrap .logo a {
    display: block;
}

.header-wrap .menu {
    display: flex;
    align-items: center;
    gap: 39px;
}
.header-wrap .menu > li > a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    padding: 6px 0;
}
.header-wrap .menu > li > a.active:after,
.header-wrap .menu > li > a:hover:after {
    width: 100%;
    left: 0;
    right: inherit;
}
.header-wrap .menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: var(--color-primary);
    transition: var(--transition);
}
.mobile-menu-header {
    padding: 73px 20px 51px;
    display: none;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    outline: 0;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
}
.menu-toggle:hover {
    color: var(--color-white);
}

.header-wrap.is-sticky header {
    background: var(--color-grey-500);
}
.header-wrap.is-sticky header:after {
    width: 100%;
    max-width: 100%;
}
.header-wrap.is-sticky .header-inner {
    padding: 20px 0;
}
.header-wrap.is-sticky .mobile-menu-header {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* End of header style */

/* Start of footer style */
.footer-wrap {
    background-color: var(--color-grey-400);
    position: relative;
    z-index: 1;
}
.footer-top {
    padding: 67px 0 58px;
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    gap: 33px;
}
.footer-top .f-logo {
    width: 46px;
    flex-shrink: 0;
}
.footer-top .f-logo a {
    display: block;
}
.f-menu ul {
    display: flex;
    flex-direction: column;
}
.f-menu ul li {
    display: flex;
}
.f-menu ul li a {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: var(--transition);
}
.f-menu ul li a:hover {
    color: var(--color-grey-100);
}
.footer-bottom {
    padding: 42px 0 49px;
}
.footer-bottom ul {
    display: flex;
    justify-content: flex-end;
    gap: 38px;
}
.footer-bottom ul li {
    display: flex;
}
.footer-bottom ul li a {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    color: #555555;
    transition: var(--transition);
}
.footer-bottom ul li a:hover {
    color: var(--color-grey-100);
}
/* End of footer style */

/* Start of banner style */
.banner-section {
    position: relative;
    padding: 406px 0 40px;
    min-height: 720px;
}
.banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 720px;
}
.banner-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #292929;
    background: linear-gradient(180deg, rgba(41, 41, 41, 1) 0%, rgba(41, 41, 41, 0) 62%, rgba(41, 41, 41, 1) 100%);
}
.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
.banner-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.banner-content {
    max-width: 710px;
    color: var(--color-grey-100);
}
.banner-content .blockquote {
    color: var(--color-grey-100);
    max-width: 470px;
}
.banner-content.we-deliver-banner-content {
    max-width: 810px;
}
.banner-content.who-we-are-banner-content .h1,
.banner-content.partner-banner-content .h1 {
    padding-bottom: 26px;
}
.banner-content.who-we-are-banner-content .banner-content-text {
    max-width: 666px;
}
.banner-content.who-we-are-banner-content,
.banner-content.partner-banner-content {
    max-width: 810px;
}
.banner-content.who-we-are-banner-content .cta {
    padding-bottom: 55px;
}
.banner-content.partner-banner-content {
    padding-bottom: 15px;
}
.banner-content.who-we-are-banner-content .cta {
    padding-top: 20px;
}

.banner-content.capital-banner-content .cta {
    padding-top: 40px;
    padding-bottom: 55px;
}
.banner-content.capital-banner-content .banner-content-text {
    max-width: 610px;
    padding-bottom: 16px;
}
.banner-content.capital-banner-content .h1 {
    padding-bottom: 31px;
}

.banner-content .h1 {
    padding-bottom: 11px;
}
.banner-content .banner-content-text {
    max-width: 580px;
    padding-bottom: 6px;
    font-weight: 500;
}
.banner-arrow {
    align-self: flex-end;
    padding-bottom: 40px;
}

.animated-arrow span {
    display: block;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
    margin: -10px;
    animation: arrowAnimate 2s infinite;
}
.animated-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.animated-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes arrowAnimate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* End of banner style */

/* Start of about section style */
.about-section {
    padding: 25px 0 50px;
    position: relative;
    z-index: 1;
}
.white-box {
    border-radius: 6px;
    background: linear-gradient(253.82deg, #f5f5f5 0.5%, #fffff4 66.18%, #d5d5d5 99.5%);
    border: 1px solid #ffffff;
    padding: 50px 73px 57px 40px;
}

.about-intro-row {
    display: flex;
    gap: 59px;
}
.about-intro-row .about-intro-title {
    width: 306px;
    flex-shrink: 0;
    color: var(--color-grey-500);
}
.about-intro-row .about-intro-text {
    width: 100%;
    padding-top: 33px;
}
.about-intro-row .about-intro-content {
    padding-right: 22px;
    color: var(--color-grey-300);
    font-weight: 500;
    border-top: 1px solid #d7d7d7;
    padding-top: 36px;
}
.about-intro-row .about-intro-content strong {
    color: var(--color-grey-500);
}
.about-intro-row.quote-row {
    padding-top: 9px;
}
.about-intro-row.quote-row .about-intro-text {
    padding-top: 88px;
}
.about-intro-row.quote-row .about-intro-content {
    border-top: 0;
    padding-top: 0px;
}
.blockquote {
    padding: 6px 0 6px 14px;
    border-left: 2px solid var(--color-primary);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-grey-500);
    text-transform: uppercase;
}
.about-intro-cta {
    padding-top: 21px;
    text-align: right;
}
/* End of about section style */

/* Start of Vision Model section style */
.vision-model-section {
    padding: 50px 0 108px;
}
.vision-model-row {
    display: flex;
}
.vision-model-row .vision-model-col {
    padding: 0 15px;
    width: 50%;
}
.vision-model-content {
    max-width: 420px;
    margin: 0 auto;
}
.vision-model-content .h2 {
    color: var(--color-grey-100);
    padding-bottom: 29px;
}
.vision-model-content .blockquote {
    color: var(--color-grey-100);
    margin-bottom: 29px;
    max-width: 306px;
}
.vision-model-content .cta {
    padding-top: 6px;
}
.vision-model-line-box {
    position: relative;
    padding: 0px 0 2px 5px;
    margin-bottom: 29px;
    color: var(--color-grey-100);
}
.vision-model-line-box:before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-primary);
}
.vision-model-line-box > p {
    padding-bottom: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
.vision-model-line-box ul {
    list-style-type: disc;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.25;
    max-width: 292px;
}
/* End of Vision Model section style */

/* Start of Region section style */
.region-section {
    padding: 121px 0 92px;
    background: var(--color-grey-600);
    position: relative;
}
.region-section .container {
    position: relative;
    z-index: 1;
}
.region-section-title {
    max-width: 422px;
    padding-left: 32px;
}
.region-section-title .h2 {
    color: var(--color-grey-100);
    padding-bottom: 25px;
}
.region-section-action {
    max-width: 354px;
    padding-left: 32px;
}
.regions-map {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.region-list-wrap {
    padding: 89px 0 98px;
}
.region-list {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 292px;
    gap: 61px;
    margin-left: 52.87%;
}
.region-list li {
    position: relative;
    padding-left: 42px;
}
.region-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 100%;
}
.region-list li strong {
    color: var(--color-white);
}
.region-list li:nth-child(2) {
    position: absolute;
    left: -100%;
    top: 50%;
    margin-left: -55px;
    max-width: 290px;
    transform: translate(0, -50%);
}
/* End of Region section style */

.contact-cta {
    padding: 83px 0 92px;
    background: var(--color-grey-600);
}
.contact-cta-content p {
    max-width: 330px;
}
.contact-cta.lead-cta .contact-cta-content p {
    max-width: 240px;
}
.contact-cta.partner-cta {
    background: transparent;
}
.contact-cta.partner-cta .contact-cta-content p {
    max-width: 225px;
}

/* Start of Key section style */
.key-section {
    padding: 53px 0 65px;
    position: relative;
    z-index: 1;
}
.key-section .h2 {
    color: var(--color-grey-100);
    padding-bottom: 75px;
    max-width: 634px;
}

.key-list {
    display: flex;
    flex-direction: column;
    gap: 51px;
}
.key-list li .h5 {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-grey-100);
    padding-bottom: 16px;
}
.key-list li .h5:before {
    content: '';
    display: block;
    width: 41px;
    height: 2px;
    background: var(--color-primary);
}
.key-list li p {
    padding-bottom: 0;
    padding-left: 43px;
    max-width: 463px;
}
.key-list li:nth-child(2) {
    margin-left: 28.88%;
    padding-top: 27px;
}
.key-list li:nth-child(3) {
    margin-left: 54.35%;
}
/* End of Key section style */
/* Start of Transformation section style */
.transformation-section {
    padding: 65px 0 94px;
}
.transformation-box {
    border-radius: 6px;
    background: linear-gradient(253.82deg, #f5f5f5 0.5%, #fffff4 66.18%, #d5d5d5 99.5%);
    border: 1px solid #ffffff;
    padding: 50px 100px 66px 44px;
}
.transformation-box .h2 {
    max-width: 403px;
    color: var(--color-grey-500);
    padding-bottom: 56px;
}
.transformation-box ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 652px;
    width: 100%;
    margin-left: auto;
}
.transformation-box ol li {
    display: flex;
    align-items: center;
    gap: 29px;
    font-weight: 700;
    color: var(--color-grey-500);
    counter-increment: my-awesome-counter;
}
.transformation-box ol li:before {
    content: counter(my-awesome-counter);
    width: 43px;
    height: 43px;
    border-radius: 100%;
    border: 1px solid var(--color-grey-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-grey-500);
    flex-shrink: 0;
}
/* Start of Transformation section style */

.backed-by-section {
    background: var(--color-grey-600);
    padding: 118px 0 103px;
    position: relative;
    z-index: 1;
}
.backed-by-section .h2 {
    max-width: 306px;
    padding-bottom: 23px;
    color: var(--color-grey-100);
}
.backed-by-section .blockquote {
    max-width: 424px;
    color: var(--color-grey-100);
    margin-bottom: 25px;
}
.backed-by-section p {
    max-width: 946px;
}
.backed-by-section p a {
    text-decoration: underline;
    transition: var(--transition);
}
.backed-by-section p a:hover {
    color: var(--color-primary);
}
.backed-by-section .cta {
    padding-top: 19px;
}

.leaders-section {
    padding: 90px 0 54px;
}
.leaders-section-title {
    display: flex;
    gap: 40px;
    padding-bottom: 100px;
}
.leaders-section-title .leaders-title-left {
    width: 280px;
    flex-shrink: 0;
    padding: 10px 10px 5px 0;
    border-right: 2px solid var(--color-primary);
    color: var(--color-grey-100);
}
.leaders-section-title .leaders-title-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-grey-100);
    font-weight: 700;
}
.leaders-section-title .leaders-title-right p {
    padding-bottom: 0;
    max-width: 580px;
}

.advisors-section {
    padding: 54px 0 100px;
}
.advisors-box {
    border-radius: 6px;
    background: linear-gradient(253.82deg, #f5f5f5 0.5%, #fffff4 66.18%, #d5d5d5 99.5%);
    border: 1px solid #ffffff;
    padding: 50px 50px 31px 50px;
    color: var(--color-grey-300);
    font-size: 16px;
}
.advisors-box .h2 {
    padding-bottom: 24px;
    color: var(--color-grey-500);
}
.advisors-box .blockquote {
    max-width: 512px;
    margin-bottom: 38px;
}
.advisors-box p {
    max-width: 500px;
}

.leaders-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.leaders-item {
    display: flex;
    gap: 40px;
}
.leaders-item .leaders-item-img {
    width: 280px;
    flex-shrink: 0;
}
.leaders-item .leaders-item-img img {
    width: 100%;
    border-right: 2px solid var(--color-white);
}
.leaders-item .leaders-item-content {
    width: 100%;
    border-top: 2px solid #484848;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.leaders-item .leaders-item-content .h3 {
    color: var(--color-grey-100);
    padding-bottom: 11px;
}
.leaders-item .leaders-item-content .h5 {
    color: var(--color-grey-100);
}
.leaders-item .leaders-item-content p {
    max-width: 650px;
    padding-bottom: 0;
}

.partners-info-section {
    padding: 90px 0 100px;
    background: var(--color-grey-600);
    position: relative;
    z-index: 1;
}
.partners-info-section .blockquote {
    max-width: 334px;
    color: var(--color-grey-100);
    margin-bottom: 92px;
}
.partners-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 90px;
    grid-row-gap: 76px;
    padding-right: 90px;
}
.partners-info-item .partners-info-item-title {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-grey-100);
}
.partners-info-item .partners-info-item-title .h2 {
    max-width: 306px;
}
