/* About Us Page Styles - Brand96 */

.about-page .navbar,
.opportunity-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Active nav link on About page and Opportunity page */
.about-page .nav-link.active,
.opportunity-page .nav-link.active {
    font-weight: 600;
}

/* About Banner Section - Bootstrap col-8 + col-4 */
.about-banner {
    margin: 0;
    padding: 0;
    overflow: visible;
    background: #000;
}

.about-banner .row {
    margin: 0;
    overflow: visible;
}

.about-banner-image-wrap {
    position: relative;
    background: #000;
}

.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-banner-mobile {
    width: 100%;
    height: auto;
    display: none;
    object-fit: cover;
}

/* Up to 576: show mobile, hide desktop */
@media (max-width: 576px) {
    .about-banner-img {
        display: none;
    }

    .about-banner-mobile {
        display: block;
        padding-right: 30%;
    }
}

.about-banner-text-col {
    background-color: #000000;
    position: relative;
    padding: 60px 100px 60px 0;
    overflow: visible;
}

/* Titles wrapper - positioned left, extends onto image */
.about-banner-titles {
    position: absolute;
    left: -180px;
    right: 100px;
    bottom: 60px;
    z-index: 2;
}

.about-banner-title {
    display: block;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Up to 768 - remove absolute, remove right */
@media (max-width: 768px) {
    .about-banner-text-col {
        padding-top: 0;
    }

    .about-banner-titles {
        position: relative;
        left: 0;
        right: auto;
        bottom: auto;
        padding-left: 15%;
        padding-right: 25px;
        margin-top: -100px;
    }
}

/* 768 to 991 */
@media (min-width: 768px) and (max-width: 991px) {
    .about-banner-titles {
        left: -120px;
        right: 50px;
    }
}

/* About Intro Section */
.about-intro {
    padding: 125px 150px;
    background-color: #000000;
}

.about-intro .container-fluid {
    max-width: 100%;
    padding: 0;
}

.about-intro-text p {
    color: #ffffff;
    margin: 0 0 35px 0;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-intro-text {
        margin-bottom: 40px;
    }
}

/* About intro padding by breakpoint */
@media (max-width: 576px) {
    .about-intro {
        padding: 60px 25px;
    }

    .about-intro .row {
        flex-direction: column-reverse;
    }

    .about-intro-text {
        margin-top: 40px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .about-intro {
        padding: 100px 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-intro {
        padding: 100px 50px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .about-intro {
        padding: 100px 100px;
    }
}

@media (min-width: 1281px) {
    .about-intro {
        padding: 125px 150px;
    }
}

@media (min-width: 1024px) {
    .about-intro-text {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* Founder Section */
.about-founder {
    padding: 0 100px;
    margin: 0;
    background-color: #000;
}

.about-founder .container-fluid {
    max-width: 100%;
    padding: 0;
}

.about-founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-founder-content {
    background-color: #000000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.about-founder-name {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.about-founder-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 45px 0;
    font-size: 28px;
    line-height: 1.3;
}

.about-founder-title.tertiary-title {
    font-size: 21px;
    line-height: 29px;
}

.about-founder-text {
    color: #ffffff;
    margin: 0 0 35px 0;
}

.about-founder-text:last-of-type {
    margin-bottom: 0;
}

.about-founder-linkedin {
    margin-top: 60px;
    padding-top: 30px;
    position: relative;
    z-index: 20;
}

/* Director Section (variant of founder) */
.about-director {
    padding-top: 125px;
}

.about-director .row,
.about-director .row.align-items-stretch {
    align-items: center;
}

.about-founder .row,
.about-founder .row.align-items-stretch {
    align-items: center;
}

.about-founder:not(.about-director) .about-founder-content {
    justify-content: center; /* vertical centering for founder only */
}

.about-director .about-founder-content {
    justify-content: center;
    text-align: right;
    align-items: flex-end;
}

@media (max-width: 767px) {
    /* On small screens, show image above and left-align director text */
    .about-director .row,
    .about-director .row.align-items-stretch {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .about-director .about-founder-content {
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .about-founder {
        padding: 0 50px;
    }

    .about-founder-content {
        padding: 40px;
    }

    .about-founder-image {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .about-founder {
        padding: 0 25px;
    }

    .about-founder-content {
        padding: 40px 15px;
    }

    .about-founder-title {
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 1.3;
    }

    .about-founder-title.tertiary-title {
        font-size: 21px;
        line-height: 29px;
    }
}

/* Full-width image section (no Bootstrap) */
.about-full-image-section,
.opportunity-full-image-section {
    margin: 0;
    padding: 0;
}

@media (max-width: 991px) {
    .about-full-image-section,
    .opportunity-full-image-section {
        display: none;
    }
}

.about-full-image-wrap {
    width: 100%;
    background-color: #000;
}

.about-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    vertical-align: top;
}

@media (min-width: 992px) {
    .about-full-image {
        margin-top: -15%;
        z-index: 10;
        position: relative;
    }
}

@media (min-width: 992px) {
    .opportunity-full-image-section .about-full-image {
        margin-top: -12%;
    }
}

/* Why India / Why Now / Why Us Section */
.about-why-india {
    background-color: #000000;
}

/* Scroll-triggered section: wheel-based content swap */
.about-why-scroll-section {
    position: relative;
}

.about-why-sticky-wrap {
    display: flex;
    align-items: center;
    padding: 125px 150px;
}

@media (min-width: 1281px) {
    .about-why-scroll-section {
        min-height: 180vh;
    }

    .about-why-sticky-wrap {
        position: sticky;
        top: 0;
        padding: 125px 20%;
    }
}

@media (min-width: 992px) {
    .about-why-sticky-wrap {
        margin-top: -10%;
        z-index: 20;
    }

    .about-why-title {
        margin-top: 35px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .about-why-scroll-section {
        min-height: 180vh;
    }

    .about-why-sticky-wrap {
        position: sticky;
        top: 0;
        padding: 100px 7%;
    }
}

.about-why-scroll-section .container-fluid {
    max-width: 100%;
    padding: 0;
    position: relative;
    width: 100%;
}

.about-why-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.about-why-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.about-why-slide .row {
    flex-wrap: nowrap;
}

/* Slide indicator dots - visible */
.about-why-dots {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 32px;
    padding: 0;
    list-style: none;
}

.about-why-dot {
    width: 48px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, height 0.2s ease;
}

.about-why-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.about-why-dot.is-active {
    background: #ffffff;
    height: 3px;
}

.about-why-india .container-fluid {
    max-width: 100%;
}

.about-why-india .row {
    flex-wrap: nowrap;
}

.about-why-title {
    font-family: 'Lora', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 80px; /* 8px extra */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.about-why-col-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 400px;
}

.about-why-col-1 .about-why-title {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: end;
    width: 100%;
}

.why-collage-img-2 {
    position: absolute;
    bottom: 0;
    left: auto;
    max-width: 230px;
    margin-right: -20%;
    z-index: 3;
    right: 0;
}

.why-collage-img-2 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-why-col-2 {
    position: relative;
    min-height: 400px;
}

.why-collage-img-center {
    width: 100%;
    padding-bottom: 50px;
    z-index: 2;
}

.why-collage-img-center img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-why-col-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.about-why-col-3 .about-why-text {
    margin-top: auto;
}

.why-collage-img-3 {
    position: absolute;
    bottom: auto;
    left: 0;
    max-width: 220px;
    margin-left: -25%;
    z-index: 3;
    top: 40px;
    right: 15px;
}

.why-collage-img-3 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-why-text {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; /* 8px extra */
    color: #ffffff;
    margin: 0;
}

/* Mobile-only title row (visible below 992px) */
.about-why-title-row-mobile {
    margin-bottom: 24px;
}

.about-why-title-mobile {
    margin: 0;
}

/* Mobile-only description row (visible below 992px) */
.about-why-desc-row-mobile {
    margin-top: 24px;
}

.about-why-text-mobile {
    margin: 0;
}

@media (max-width: 991px) {
    .about-why-col-2 {
        min-height: 300px;
    }
    .about-why-col-1{
        min-height: 300px;
    }
    .why-collage-img-2 {
        position: absolute;
        bottom: 30px;
        left: 50px;
        max-width: 200px;
        margin-right: -50px;
        z-index: 3;
        right: 0;
    }
}

@media (max-width: 576px) {
    .about-why-title {
        font-size: 36px;
        line-height: 44px; /* 8px extra */
    }

    .about-why-desc-row-mobile {
        margin-top: 64px;
    }

    .about-why-text {
        font-size: 16px;
        line-height: 24px; /* 8px extra */
    }

    .why-collage-img-2 {
        max-width: 200px;
        margin-right: -25px;
        left: 16px;
        bottom: -40px;
    }

    /* Center image extends half into col-1 and half into col-3 */
    .about-why-india .row {
        overflow: visible;
    }

    .about-why-col-2 {
        overflow: visible;
    }

    .about-why-col-2 .why-collage-img-center {
        width: 150%;
        margin-left: -25%;
        position: relative;
        padding-bottom: 0;
    }

    .why-collage-img-center {
        padding-bottom: 0;
    }
}

/* About why india padding by breakpoint - same as .about-intro */
@media (max-width: 576px) {
    .about-why-sticky-wrap {
        padding: 60px 25px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .about-why-sticky-wrap {
        padding: 100px 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-why-sticky-wrap {
        padding: 100px 50px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .about-why-sticky-wrap {
        padding: 100px 7%;
    }
}

@media (min-width: 1281px) {
    .about-why-sticky-wrap {
        padding: 125px 20%;
    }
}

/* Opportunity WIM Section - same as careers-working, 6-6 columns, no column reverse on mobile */
.opportunity-wim {
    padding: 125px 150px;
    margin: 0;
    background-color: #000;
}

.opportunity-wim .container-fluid {
    max-width: 100%;
    padding: 0;
}

.opportunity-wim-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opportunity-wim .fs-content {
    background-color: #000000;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.opportunity-wim .sf-big-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 45px 0;
}

@media (max-width: 576px) {
    .opportunity-wim {
        padding: 60px 25px;
    }

    .opportunity-wim .row {
        flex-direction: column-reverse;
    }

    .opportunity-wim .sf-big-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .opportunity-wim {
        padding: 100px 50px;
    }

    .opportunity-wim .sf-big-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .opportunity-wim {
        padding: 100px 50px;
    }

    .opportunity-wim .sf-big-title {
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .opportunity-wim {
        padding: 100px 100px;
    }

    .opportunity-wim .sf-big-title {
    }
}

@media (min-width: 1281px) {
    .opportunity-wim {
        padding: 125px 150px;
    }

    .opportunity-wim .sf-big-title {
    }
}

@media (min-width: 1024px) {
    .opportunity-wim .fs-content {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* Opportunity Retail Section - same as about-partner, standalone */
.opportunity-retail {
    padding: 0 100px;
    margin: 0;
    background-color: #000;
}

.opportunity-retail .container-fluid {
    max-width: 100%;
    padding: 0;
}

.opportunity-retail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opportunity-retail .sf-content {
    background-color: #000000;
    padding: 56px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.opportunity-retail .sf-big-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 45px 0;
}

@media (max-width: 576px) {
    .opportunity-retail {
        padding: 0 25px;
    }

    .opportunity-retail .sf-content {
        padding: 40px 0;
    }

    .opportunity-retail .sf-big-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .opportunity-retail {
        padding: 0 50px;
    }

    .opportunity-retail .sf-content {
        padding: 40px 0;
    }

    .opportunity-retail .sf-big-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .opportunity-retail {
        padding: 0 50px;
    }

    .opportunity-retail .sf-content {
        padding: 40px;
    }

    .opportunity-retail .sf-big-title {
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .opportunity-retail {
        padding: 0 100px;
    }

    .opportunity-retail .sf-content {
        padding: 48px 0;
    }

    .opportunity-retail .sf-big-title {
    }
}

@media (min-width: 1281px) {
    .opportunity-retail {
        padding: 0 100px;
    }

    .opportunity-retail .sf-content {
        padding: 56px;
    }

    .opportunity-retail .sf-big-title {
    }
}

/* Opportunity Offer Section - same as about-work, standalone */
.opportunity-offer {
    padding: 125px 150px;
    margin: 0;
    background-color: #000;
}

.opportunity-offer .container-fluid {
    max-width: 100%;
    padding: 0;
}

.opportunity-offer-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opportunity-offer .fs-content {
    background-color: #000000;
    padding: 56px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.opportunity-offer .sf-big-title {
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 45px 0;
}

@media (max-width: 576px) {
    .opportunity-offer {
        padding: 60px 25px;
    }

    .opportunity-offer .fs-content {
        padding: 40px 0;
    }

    .opportunity-offer .sf-big-title {
        margin-bottom: 24px;
    }

    .opportunity-offer .row {
        flex-direction: column-reverse;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .opportunity-offer {
        padding: 100px 50px;
    }

    .opportunity-offer .fs-content {
        padding: 40px 0;
    }

    .opportunity-offer .sf-big-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .opportunity-offer {
        padding: 100px 50px;
    }

    .opportunity-offer .fs-content {
        padding: 40px;
    }

    .opportunity-offer .sf-big-title {
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .opportunity-offer {
        padding: 100px 100px;
    }

    .opportunity-offer .fs-content {
        padding: 48px 0;
    }

    .opportunity-offer .sf-big-title {
    }
}

@media (min-width: 1281px) {
    .opportunity-offer {
        padding: 125px 150px;
    }

    .opportunity-offer .fs-content {
        padding: 56px;
    }

    .opportunity-offer .sf-big-title {
    }
}

/* On small screens, keep opportunity sections' titles and images static (no scroll animation) */
@media (max-width: 767px) {
    .opportunity-offer .sf-big-title,
    .opportunity-offer .opportunity-offer-image img,
    .opportunity-wim .sf-big-title,
    .opportunity-wim .opportunity-wim-image img {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Why Partners Choose Us Section */
.opportunity-why-partners {
    padding: 0px 100px 100px 100px;
    background-color: #000;
}

@media (min-width: 992px) {
    .opportunity-why-partners {
        margin-top: -50px;
        z-index: 12;
    }
}

.opportunity-why-partners .container-fluid {
    max-width: 100%;
    padding: 0;
}

.opportunity-why-title {
    text-align: right;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 40px 0;
}

.opportunity-why-title-mobile {
    display: none;
}

.opportunity-why-title-desktop {
    display: block;
}

.opportunity-why-feature {
    margin-bottom: 30px;
}

.opportunity-why-feature-first .opportunity-why-dummy {
    margin-top: 90px;
}

.opportunity-why-feature-text-first .opportunity-why-dummy {
    margin-top: 30px;
    margin-bottom: 0;
}

.opportunity-why-feature-margin-top {
    margin-top: 60px;
}

.opportunity-why-dummy {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.opportunity-why-dummy img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opportunity-why-feature-title {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.opportunity-why-text-block {
    width: 100%;
    margin-top: 40px;
    text-align: right;
    padding-left: 50%;
}

.opportunity-why-text-block p {
    color: #ffffff;
    margin: 0 0 20px 0;
}

.opportunity-why-text-block p:last-child {
    margin-bottom: 0;
}

/* Slider layout: image 40%, titles 60% */
.opportunity-why-slider-row {
    margin-top: 0;
    align-items: stretch;
}

.opportunity-why-slider-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.opportunity-why-slider-image {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain; /* show full image, allow blank space */
    object-position: bottom; /* bottom-align slide images */
}

.opportunity-why-slider-image.is-active {
    display: block;
}

.opportunity-why-slider-image-mobile {
    display: none;
}

.opportunity-why-slider-titles-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.opportunity-why-slider-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.opportunity-why-slider-list li {
    margin-bottom: 24px;
}

.opportunity-why-slider-list li:last-child {
    margin-bottom: 0;
}

.opportunity-why-dots {
    display: none;
    justify-content: center;
    margin-top: 24px;
    gap: 0;
}

.opportunity-why-dot {
    width: 48px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, height 0.2s ease;
}

.opportunity-why-dot.is-active {
    background: #ffffff;
    height: 3px;
}

.opportunity-why-slider-list a {
    color: #656360;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.opportunity-why-slider-list a:hover {
    color: #ffffff;
}

.opportunity-why-slider-list li.is-active a {
    color: #ffffff;
}

@media (max-width: 991px) {
    .opportunity-why-partners {
        padding: 0 40px 60px 40px;
    }

    .opportunity-why-text-block {
        text-align: left;
        padding-left: 0;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .opportunity-why-title-mobile {
        display: block;
        text-align: left;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .opportunity-why-title-desktop {
        display: none;
    }

    .opportunity-why-text-block {
        display: none;
    }
}

@media (max-width: 576px) {
    .opportunity-why-partners {
        padding: 0 24px 40px 24px;
    }

    .opportunity-why-text-block {
        margin-top: 40px;
    }

    .opportunity-why-title {
        text-align: left;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .opportunity-why-slider-list {
        text-align: left;
    }

    .opportunity-why-slider-list li {
        min-height: 64px;
    }

    .opportunity-why-dots {
        display: flex;
    }
}

@media (max-width: 767px) {
    .opportunity-why-slider-image-wrap {
        aspect-ratio: auto;
    }

    .opportunity-why-slider-image-desktop {
        display: none !important;
    }

    .opportunity-why-slider-image-mobile.is-active {
        display: block !important;
    }

    .opportunity-why-slider-row {
        margin-top: 40px;
    }

    .opportunity-why-slider-list {
        margin-top: 40px;
    }

    .opportunity-why-slider-list li {
        display: none;
    }

    .opportunity-why-slider-list li.is-active {
        display: block;
    }
}

/* Partner Section */
.about-partner {
    padding: 0 100px;
    margin: 0;
    background-color: #000;
}

.about-partner .container-fluid {
    max-width: 100%;
    padding: 0;
}

.about-partner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-partner .row {
    align-items: stretch;
}

.about-partner .row > div:not(.about-partner-image) {
    display: flex;
    flex-direction: column;
}

.about-partner .sf-content {
    background-color: #000000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
}

.about-partner .theme-btn {
    margin-top: auto;
    padding-top: 50px;
}

.about-partner .sf-big-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 45px 0;
}

.about-partner-text {
    color: #ffffff;
    margin: 0 0 35px 0;
}

.about-partner-text:last-of-type {
    margin-bottom: 0;
}

/* Work With Us Section */
.about-work {
    padding: 125px 150px;
    margin: 0;
    background-color: #000;
}

.about-work .container-fluid {
    max-width: 100%;
    padding: 0;
}

.about-work-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-work .row {
    align-items: stretch;
}

.about-work .row > div:not(.about-work-image) {
    display: flex;
    flex-direction: column;
}

.about-work .fs-content {
    background-color: #000000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
}

.about-work .theme-btn {
    margin-top: auto;
    padding-top: 50px;
}

.about-work .sf-big-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: auto 0 45px 0;
}

.about-work-text {
    color: #ffffff;
    margin: 0 0 35px 0;
}

.about-work-text:last-of-type {
    margin-bottom: 0;
}

/* About partner padding and typography by breakpoint */
@media (max-width: 576px) {
    .about-partner {
        padding: 0 25px;
    }

    .about-work {
        padding: 60px 25px;
    }

    .about-partner .sf-content,
    .about-work .fs-content {
        padding: 40px 0;
    }

    .about-work .sf-big-title {
        margin-bottom: 24px;
    }

    /* On small phones, show image first, then text */
    .about-work .row {
        flex-direction: column-reverse;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .about-partner {
        padding: 0 50px;
    }

    .about-work {
        padding: 100px 50px;
    }

    .about-partner .sf-content,
    .about-work .fs-content {
        padding: 40px 0;
    }

    .about-work .sf-big-title {
        margin-bottom: 24px;
    }

    /* On small tablets, also show image first, then text */
    .about-work .row {
        flex-direction: column-reverse;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-partner {
        padding: 0 50px;
    }

    .about-work {
        padding: 100px 50px;
    }

    .about-partner .sf-content,
    .about-work .fs-content {
        padding: 40px;
    }

    .about-work .sf-big-title {
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .about-partner {
        padding: 0 100px;
    }

    .about-work {
        padding: 100px 100px;
    }

    .about-work .sf-big-title {
    }
}

@media (min-width: 1281px) {
    .about-partner {
        padding: 0 100px;
    }

    .about-work {
        padding: 125px 150px;
    }

    .about-work .sf-big-title {
    }
}
