/* Coolvetica Font Family */

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Ultra-Light-Regular.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Extra-Light-Regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Light-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Book-Regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Heavy-Regular.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica/Coolvetica-Bold.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Helvetica Neue Font Family */

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}


@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/Helvetica-Neue/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

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

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul,
li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.main {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.common-heading {
    color: #293275;
    font-family: Coolvetica;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    /* 166.667% */
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.section-label {
    width: fit-content;
    display: flex;
    padding: 12px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 42px;
    border: 1px solid #FE9901;
    color: #FE9901;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

/* Header */
.header {
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.logo img {
    width: 164px;
    height: auto;
    object-fit: cover;
}

.header nav ul {
    display: flex;
    gap: 20px;
    height: 100%;
}

.header nav ul li {
    display: flex;
    align-items: center;
}

.header ul a {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.36px;
    transition: color ease 0.3s;
}

.has-submenu {
    position: relative;
}

.has-submenu>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.has-submenu>a>img {
    width: 10px;
    height: 14px;
    transition: transform 0.3s ease;
}

.has-submenu:hover>a>img {
    transform: rotate(180deg);
}

.submenu {
    min-width: 180px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 99;
    gap: 10px;
    flex-direction: column;
    min-height: fit-content;
}

.submenu li a {
    text-align: left;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    width: 100%;
    display: block;
    padding: 10px 18px;
    color: #000;
    white-space: nowrap;
}

.header ul a:hover {
    color: #FE9901;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-btn img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.language-btn {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.32px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 13px;
    background: #FE9901;
    backdrop-filter: blur(3px);
    transition: all 0.35s ease;
}

.btn svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    transition: transform 0.35s ease;
}

.btn span {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
}

.btn:hover {
    gap: 16px;
    background: #FFAD32;
}

.btn:hover svg {
    transform: rotate(45deg);
}

.btn-gray {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(50px);
}

.btn-gray:hover {
    background: #FE9901;
}

.btn-gray-dark {
    background: rgba(41, 50, 117, 0.06);
    backdrop-filter: blur(50px);
}

.btn-gray-dark span {
    color: #000;
    transition: color ease 0.3s;
}

.btn-gray-dark:hover span {
    color: #fff;
}

.btn-gray-dark svg path {
    transform: ease all 0.3s;
}

.btn-gray-dark:hover svg path {
    fill: #fff;
}

.btn-blue {
    background: #293275;
}

.btn-gray:hover,
.btn-gray-dark:hover,
.btn-blue:hover {
    background: #FE9901;
}

/* Hero */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-slider .splide__track::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.55);
}

.hero-bg-slider .splide__track::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.81) 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-bg-slider,
.hero-bg-slider .splide__track,
.hero-bg-slider .splide__list,
.hero-bg-slider .splide__slide {
    width: 100%;
    height: 100%;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: #071B3A;
}

.hero-bg-slider .splide__slide {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-custom-pagination {
    height: 100%;
    top: 0;
    right: 25px;
    left: unset;
    width: 24px;
    flex-direction: column;
    z-index: 99;
}

.hero-custom-pagination p {
    writing-mode: sideways-lr;
    text-orientation: upright;
    color: rgba(255, 255, 255, 0.39);
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 0.28px;
    order: 4;
}

.hero-custom-pagination .splide__pagination__page {
    width: 2px;
    height: 48px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.24);
}

.hero-custom-pagination .splide__pagination__page.is-active {
    transform: none;
    background: #fff;
}

.hero-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.hero-content h1 {
    color: #FFF;
    font-family: Coolvetica;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    max-width: 530px;
    margin-top: 11vh;
}

.hero-content p {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    max-width: 544px;
    margin: 24px 0 36px;
}

/* About */
.about-section {
    width: 100%;
    padding: 70px 30px;
    display: flex;
    gap: 50px;
    background: #F7F7F7;
}

.about-img {
    width: 47%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-content .common-heading {
    margin: 16px 0 12px;
    line-height: 46px;
}

.about-content h6 {
    color: #293275;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.about-content p {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 0.36px;
    margin: 18px 0 35px;
}

/* Impact */
.impact-section {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-section .common-heading {
    margin: 10px 0 24px;
}

.impact-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.impact-wrapper>div {
    position: relative;
    height: 528px;
    padding: 40px 24px;
    overflow: hidden;
}


.impact-wrapper>div::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.50);
}

.impact-wrapper>div::after {
    content: "";
    position: absolute;
    top: -175px;
    left: 0;
    width: 100%;
    height: 366px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.45) 70%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
    transition: top 0.3s ease;
}

.impact-wrapper>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform ease 0.45s;
}

.impact-wrapper h3 {
    height: 121px;
    padding-left: 31px;
    border-left: 4px solid #FE9901;
    margin-bottom: 44px;
    color: #FFF;
    font-family: Coolvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    letter-spacing: 0.48px;
    text-transform: uppercase;
    max-width: 233px;
    position: relative;
    z-index: 3;
}

.impact-wrapper p {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 0.36px;
    max-width: 279px;
    position: relative;
    z-index: 3;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.impact-wrapper>div:hover::after {
    top: 0;
}

.impact-wrapper>div:hover img {
    transform: scale(1.1);
}

.impact-wrapper>div:hover p {
    opacity: 1;
    visibility: visible;
}


/* Business */
.business-section {
    width: 100%;
    padding: 30px;
}

.business-sec-content {
    padding: 70px 50px 50px;
    border-radius: 30px;
    background: rgba(41, 50, 117, 0.06);
}

.heading-row {
    width: 100%;
    margin-bottom: 40px;
}

.heading-row .common-heading {
    margin: 10px 0 12px;
}

.heading-row p {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    max-width: 1037px;
}

.business-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-card-wrapper {
    border-radius: 30px;
    background: #FFF;
    position: relative;
    overflow: hidden;
    min-height: 442px;
    display: flex;
}

.business-card-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 2;
    pointer-events: none;
}

.business-card-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 190px;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.50) 65%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 3;
}

.business-card-wrapper>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 30px;
    transition: transform 0.65s ease;
}

.business-card-wrapper:hover>img {
    transform: scale(1.12);
}

.business-card {
    width: 100%;
    overflow: hidden;
    padding: 70px 40px 40px;
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    transition: transform 0.65s ease;
}

.business-card-wrapper:hover .business-card {
    transform: translateY(-10px);
}

.business-card>img {
    width: 160px;
    height: auto;
    object-fit: cover;
}

.business-card>div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}


.business-card h3 {
    color: #FFF;
    font-family: Coolvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.business-card p {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 0.32px;
    max-width: 724px;
}

/* Solutions */
.solutions-section {
    width: 100%;
    padding: 40px 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-section .common-heading {
    margin: 20px 0 2px;
    text-align: center;
}

.solutions-section>p {
    color: #000;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    margin-bottom: 35px;
}

.solutions-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.solutions-grid>div {
    width: 100%;
    min-height: 188px;
    border-right: 1px solid rgba(41, 50, 117, 0.12);
    background: #F7F7F7;
    position: relative;
    overflow: hidden;
    padding: 32px 25px;
}

.solutions-grid>div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 3;
    opacity: 0;
    transition: opacity ease 0.5s;
}

.solutions-grid>div:hover::before {
    opacity: 1;
}

.solutions-grid>div:nth-child(4),
.solutions-grid>div:nth-child(8) {
    border-right: none;
}

.solutions-grid>div:nth-child(1),
.solutions-grid>div:nth-child(2),
.solutions-grid>div:nth-child(3),
.solutions-grid>div:nth-child(4) {
    border-bottom: 1px solid rgba(41, 50, 117, 0.12);
}


.solutions-grid>div>img {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity ease 0.5s, transform ease 0.55s;
}

.solutions-grid>div:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.solutions-grid>div>h3 {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    letter-spacing: 0.36px;
    position: relative;
    z-index: 5;
    display: flex;
    padding-top: 6px;
    padding-left: 24px;
    max-width: 200px;
    transition: color ease 0.45s;
}

.solutions-grid>div:hover h3 {
    color: #fff;
}

.solutions-grid>div:nth-child(5)>h3,
.solutions-grid>div:nth-child(6)>h3,
.solutions-grid>div:nth-child(7)>h3 {
    max-width: 214px;
}

.solutions-grid>div>h3::before {
    content: '';
    width: 4px;
    height: 67px;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    background: #FE9901;
    transition: height ease 0.55s;
}

.solutions-grid>div:hover h3::before {
    height: 97px;
}

/* Projects */
.projects-section {
    width: 100%;
    padding: 80px 30px 50px;
    background: #F2F3F7;
}

.project-sec-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.project-sec-top a {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-sec-top a img {
    width: 10px;
    height: 14px;
    aspect-ratio: 5/7;
}

.projects-section>p {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    max-width: 1172px;
}

.projects-section>h6 {
    color: #293275;
    font-family: Coolvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    /* 155% */
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 36px 0 26px;
}

.project-card {
    min-height: 383px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 3;
    pointer-events: none;
}

.project-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 110px;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.40) 60%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 4;
}

.project-card>div {
    position: relative;
    z-index: 5;
}

.project-card span {
    width: fit-content;
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    padding: 10px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 5;
}

.project-card h3 {
    color: #FFF;
    font-family: Coolvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-card p {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    max-width: 541px;
}

.projects-section .splide__arrow {
    width: 50px;
    height: 50px;
    background: #717875;
    color: #fff;
    opacity: 1;
    font-size: 34px;
}

.projects-section .splide__arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.projects-section .splide__arrow--prev {
    left: -18px;
}

.projects-section .splide__arrow--next {
    right: -18px;
}

/* Why */
.why-section {
    width: 100%;
    padding: 70px 60px 50px 0;
    display: flex;
    gap: 60px;
}

.why-img,
.why-content {
    width: 50%;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 4px 4px 0;
}

.why-content .common-heading {
    margin: 16px 0 2px;
    line-height: 48px;
    max-width: 644px;
}

.why-content p {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    max-width: 614px;
}

.why-content h6 {
    color: rgba(0, 0, 0, 0.30);
    font-family: Coolvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    /* 193.75% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 32px 0 14px;
}

.why-content ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.why-content ul li {
    display: flex;
    padding: 10px;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: #F7F7F7;
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: 0.32px;
}

.why-content ul li::before {
    content: "";
    display: block;
    background-image: url('../images/ul-chevron.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 12px;
    height: 24px;
    aspect-ratio: 1/2;
}

/* Investors */
.investors-section {
    width: 100%;
    padding: 50px 30px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    background: #F2F3F7;
}

.investors-content,
.investors-img {
    width: 50%;
}

.investors-content {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.70);
    padding: 48px 36px;
    justify-content: center;
    align-items: flex-start;
}

.investors-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.70);
}

.investors-content .common-heading {
    line-height: 48px;
    margin-top: 36px;
    margin-bottom: 12px;
}

.investors-content>p {
    max-width: 574px;
    color: #000;
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.investors-content>p:first-of-type {
    font-size: 16px;
    letter-spacing: 0.32px;
    margin-bottom: 24px;
}

.investors-content>p:last-of-type {
    font-size: 14px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

/* Media */
.media-section {
    width: 100%;
    padding: 70px 30px;
}

.media-sec-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
}

.media-sec-top .common-heading {
    line-height: normal;
}

.media-more-btn {
    color: #000;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.media-more-btn img {
    width: 10px;
    height: 14px;
    aspect-ratio: 5/7;
}

.news-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card-img {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 16px;
}

.news-card-img img {
    width: 100%;
    display: flex;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    background: #FFF;
    transition: transform 0.54s ease;
}

.news-card-img:hover img {
    transform: scale(1.05);
}

.news-card>div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.news-card>div>span:first-child {
    display: flex;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 42px;
    border: 1px solid #293275;
    color: #293275;
    font-family: "Helvetica Neue";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.24px;
}

.news-card>div>span:nth-child(2) {
    color: rgba(0, 0, 0, 0.30);
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 0.28px;
}

.news-wrapper h3 {
    color: #293275;
    font-family: Coolvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 32px 0 12px;
}

.news-card p {
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    margin-bottom: 36px;
}

.news-card .media-more-btn {
    text-transform: none;
    letter-spacing: 0.32px;
    font-size: 16px;
}

/* Footer */
.footer {
    width: 100%;
    padding: 50px 30px 60px;
    background: #F2F3F7;
}

.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 30px;
}

.footer-content h6 {
    color: #293275;
    font-family: Coolvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-content a {
    display: block;
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    margin-bottom: 12px;
    transition: color ease 0.3s;
}

.footer-content a:hover {
    color: #FE9901;
}

.footer-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 0 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

.footer-logo img {
    width: 170px;
    height: auto;
    object-fit: cover;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-links a {
    display: flex;
    width: 43px;
    height: 43px;
    padding: 9px 8px 8px 9px;
    justify-content: center;
    align-items: center;
    border-radius: 24.5px;
    background: #293275;
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright p,
.copyright p a {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    transition: color ease 0.3s;
}

.copyright p a:hover {
    color: #FE9901;
}