@import url(../../global.css);

.main-hero {
    height: 100vh;
    padding: 128px 50px;
    background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.6) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%), url("../../../assets/banners/capital-markets-banner-min.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
}

.hero-header>h1 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../../assets/banners/capital-markets-banner-min.png");
        background-position: right;
        padding: 40px;
        /* align-items: center; */
    }

    .hero-header>h1 {
        width: 100%;
    }

    .hero-header>p {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        /* align-items: center; */
        padding: 20px 20px 128px 20px;
    }

    .hero-header>h1 {
        font-size: 2.617rem;
    }

    .hero-header>p {
        font-size: 1rem;
        width: 100%;
    }
}


.service-section-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.service-image,
.service-main-content {
    width: 50%;
}

.service-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-main-content>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.service-main-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
}

.service-main-cta {
    margin-top: 16px;
    background-color: #111111;
    align-self: flex-start;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    transition: all 0.3s ease;
}

.service-section-main-metrics {
    padding: 64px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e9ebed;
    flex: 1;
}

.service-metric:last-child {
    border-right: none;
}

.service-metric>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.service-metric>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: center;
}


@media screen and (max-width:768px) {
    .service-section-main {
        flex-direction: column;
    }

    .service-metric>h2 {
        font-size: 2.617rem;
        line-height: 1.2;
    }

    .service-metric>p {
        font-size: 1rem;
        line-height: 1.618;
    }

    .service-image,
    .service-main-content {
        width: 100%;
    }

    .service-section-main-metrics {
        padding: 20px;
    }
}

@media screen and (max-width:430px) {
    .service-section-main {
        gap: 24px;
    }

    .service-main-content>h2 {
        font-size: 2.617rem;
    }

    .service-main-content>p {
        font-size: 1rem;
    }

    .service-section-main-metrics {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .service-metric {
        border-right: none;
        margin-bottom: 16px;
    }
}

.service-metrics-container-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.service-metrics-container-col {
    /* background-color: #f0f2f4; */
    padding: 0px 50px 0 0;
    /* flex: 1 1 25%; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-right: 1px solid #e9ebed;
}

.service-metrics-container-col:last-child {
    border-right: none;
}

.service-metrics-container-col>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.service-metrics-container-col>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
}

@media screen and (max-width:1024px) {
    .service-metrics-container-main {
        padding: 64px 20px;
        gap: 48px;
    }

    .service-metrics-container-col {
        flex: 1 1 45%;
        padding: 0 20px;
    }
}

@media screen and (max-width:768px) {
    .service-metrics-container-col {
        flex: 1 1 100%;
        padding: 0;
        align-items: flex-start;
        text-align: left;
        border-right: none;
    }

    .service-metrics-container-col>h3 {
        font-size: 2.617rem;
    }
}

@media screen and (max-width:430px) {
    .service-metrics-container-main {
        padding: 48px 0;
        gap: 48px;
    }
}


/* .service-metrics-container {
    background-color: #f0f2f4;
}

.service-metrics-container-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 128px 50px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.service-metrics-container-inner-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03rem;
}

.service-metrics-container-inner-row {
    display: flex;
    justify-content: flex-start;
    gap: 164px;
}

.service-metrics-container-inner-col>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03rem;
}

.service-metrics-container-inner-col>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03rem;
}

.service-metrics-container-inner-footer>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.03rem;
}

@media screen and (max-width:768px) {
    .service-metrics-container-inner-col>h3 {
        font-size: 3.14rem;
    }

    .service-metrics-container-inner-col>p {
        font-size: 1.2rem;
    }
}


@media screen and (max-width:430px) {
    .service-metrics-container-inner {
        padding: 64px 20px;
    }

    .service-metrics-container-inner-row {
        flex-direction: column;
        gap: 48px;
    }

    .service-metrics-container-inner-col>h3 {
        font-size: 4.235rem;
    }
} */


.service-usps-container {
    background-color: #000;
    padding: 128px 50px;
}

.service-usps-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-usps-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-usps-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.618;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    color: #fff;
}

.service-usps-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.03rem;
    color: #fff;
}

.service-usps-row {
    display: flex;
    gap: 128px;
}

.service-usps-col {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-usps-col:last-child {
    width: 45%;
    padding-top: 12px;
}

.service-usps-col>img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.service-usp-col-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-usp-col-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.service-usp-col-content>p {
    width: 80%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    color: #fff;
}

@media screen and (max-width:1024px) {
    .service-usps-row {
        gap: 32px;
    }

    .service-usps-col {
        width: 50%;
    }

    .service-usp-col-content>p {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .service-usps-row {
        flex-direction: column;
    }

    .service-usps-col,
    .service-usps-col:last-child {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .service-usps-container {
        padding: 96px 20px;
    }
}


.services-container-main {
    background: #f0f2f4;
    padding: 50px;
}

.services-main {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.services-main-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* gap: 24px; */
    padding: 32px 0;
    border-bottom: 1px solid #e6e6e6;
}

.services-main-header>h2 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}

.services-main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-main-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.services-container {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-image>img {
    width: 100%;
    margin: 0 auto;
}

.services-container-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.services-container-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.services-container-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    color: #000;
    margin-top: 16px;
}

.services-custom-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 0 24px 0 0;
}

.service-button-prev, .service-button-next{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 16px;
}

.service-button-prev:hover, .service-button-next:hover {
    cursor: pointer;
}


@media screen and (max-width:768px) {
    .services-main-header>h2 {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .services-container-main {
        padding: 64px 20px;
    }

    .services-main-header>h2 {
        font-size: 2.617rem;
    }

    .services-container {
        width: 100%;
        flex: 1 1 100%;
    }

    .service-button-prev, .service-button-next{
        padding: 12px;
    }
    
    .service-button-prev svg, .service-button-next svg{
        width: 24px;
        height: 24px;
    }


}


.what-we-do-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.what-we-do-main-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.what-we-do-main-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}

.what-we-do-main-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.what-we-do-main-col {
    width: 45%;
    flex: 1 1 45%;
}

.what-we-do-main-banner {
    background: linear-gradient(0.52deg, rgba(0, 0, 0, .57) 41.62%, rgba(0, 0, 0, 0) 53.84%), url("../../../assets/capital-markets-min.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.what-we-do-main-banner>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.what-we-do-main-banner>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin-top: 16px;
}


@media screen and (max-width:768px) {
    .what-we-do-main-col {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* .video-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    height: auto;
    min-height: 100%;
}

.video {
    width: 70%;
    display: flex;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}


.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.custom-play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.video>video {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-description {
    width: 30%;
    background-color: #000;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video-description>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.video-description>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}

.video-description>a {
    width: fit-content;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.video-description>a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .video-container {
        flex-direction: column;
    }

    .video,
    .video-description {
        width: 100%;
    }
} */



/* insights */

.internal-insights-container {
    padding: 50px 0;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.internal-insights-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.blog-row-layout {
    display: flex;
    gap: 32px;
}

.blog-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-col-large {
    flex: 2;
}

.blog-col-small {
    flex: 1;
}

.blog-col-image {
    width: 100%;
    overflow: hidden;
}

.blog-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-col-large .blog-col-image img {
    height: 380px;
}

.blog-col-small .blog-col-image img {
    height: 220px;
}

.blog-col-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-col-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
}

.blog-col-content>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    color: #000;
}

.blog-col-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    color: #000;
}

.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-category {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.618;
    text-align: left;
    color: #000;
}

.blog-date {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.618;
    text-align: left;
    color: #000;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .blog-row-layout {
        flex-direction: column;
    }

    .blog-col-large .blog-col-image img {
        height: auto;
    }

    .blog-col-small .blog-col-image img {
        height: auto;
    }

    .blog-col-small {
        display: flex;
        flex-direction: row;
    }

}


@media screen and (max-width: 430px) {
    .internal-insights-container {
        gap: 32px;
    }

    .blog-row-layout {
        display: flex;
        gap: 48px;
    }

    .blog-col-small .blog-col-image {
        width: 45%;
    }

    .blog-col-small .blog-col-image img {
        aspect-ratio: 1/1;
    }

    .blog-col-content {
        justify-content: center;
    }

    .blog-meta-small .blog-category,
    .blog-meta-small .blog-date {
        font-size: 0.625rem;
    }

    .blog-col-small-header {
        font-size: 1rem !important;
    }

}




/* FAQ Section */

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.faq-header {
    padding: 64px 0;
}

.faq-header>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.faqs {
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-col {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px 4px;
    border-bottom: 1px solid #a0a9cf;
}

.faq-item.open .faq-answer {
    opacity: 1;
    padding: 10px;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.faq-question>h2 {
    font-family: Urbanist;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 250ms ease;
    padding: 0 10px;
}

.faq-answer>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    color: var(--body-text);
}

.faq-answer ul {
    list-style-type: disc;
    padding: 10px 20px;
    /* padding-left: 20px; */
}

.faq-answer ul li {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: var(--body-text);
}

@media screen and (max-width: 768px) {
    .faqs {
        padding: 20px 0;
        flex-direction: column;
    }

    .faq-col {
        width: 100%;
    }

    .faq-question>h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {

    .faq-header {
        padding: 48px 0;
    }

    .faq-item {
        padding: 24px 4px;
    }

    .faq-question>svg {
        width: 24px;
        height: 24px;

    }

    .faq-question>h2 {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .faq-answer>p {
        font-size: 1rem;
    }
}