@import url(../global.css);

.main-hero {
    height: 100vh;
    padding: 128px 50px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/banners/careers-banner-min.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    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: 50%;
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 55%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    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/careers-banner-min.png");
        background-position: center;
        padding: 40px;
        align-items: center;
    }

    .hero-header>h1 {
        width: 90%;
        font-size: 2.617rem;
        font-weight: 700;
    }

    .hero-header>p {
        width: 90%;
        font-size: 1rem;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
        align-items: center;
    }

    .hero-header>h1 {
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        font-size: 1rem;
        width: 100%;
    }
}

.careers-intro-container {
    padding: 128px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.careers-intro-container-row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.careers-intro-container-col {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.careers-intro-container-col>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.618;
    color: #000;
}

.careers-intro-container-col>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.careers-intro-container-col>a {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    /* line-height: 1.618; */
    color: #000;
    text-decoration: none;
}

.careers-intro-container-col-video {
    width: 60%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.careers-intro-container-col-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Center Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.play-button.hide {
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width:1024px) {
    .careers-intro-container-col>h3 {
        font-size: 1.618rem;
    }
}

@media screen and (max-width:430px) {
    .careers-intro-container {
        padding: 64px 0;
    }

    .careers-intro-container-row {
        flex-direction: column;
        gap: 32px;
    }

    .careers-intro-container-col,
    .careers-intro-container-col-video {
        width: 100%;
    }

    .careers-intro-container-col>h3 {
        font-size: 1.618rem;
    }
}


/* Main USPs */
.company-usps {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    padding: 50px 0;
}

.company-usp-image,
.company-usp-content {
    width: 50%;
    position: relative;
    padding: 0;
}

.company-usp-image>img {
    border-radius: 26px;
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
    display: block;
}

.serve-image-content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 26px;
    border-radius: 48px 0 0 0;
    background-color: #fff;
    display: flex;
    gap: 4px;
    align-items: center;
}

.serve-image-content::before {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background: transparent;
    top: -50px;
    right: 0;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.serve-image-content::after {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    left: -50px;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.serve-image-content-left>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.serve-image-content-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.serve-image-content-right>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.serve-image-content-right>span {
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.company-usp-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-usp-content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-usp-content-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    color: #000;
}

.company-usp-content-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: left;
    color: #000;
}

.main-usps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-icon-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.usp-icon-box>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

@media screen and (max-width:1024px) {
    .company-usps {
        width: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .company-usp-image,
    .company-usp-content {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .company-usp-content-header>h2 {
        font-size: 2.617rem;
    }

    .company-usp-content-header>p {
        font-size: 1rem;
    }

    .serve-image-content-left>h2 {
        font-family: Urbanist, sans-serif;
        font-size: 2.617rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .serve-image-content-right>h3 {
        font-family: Urbanist, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .serve-image-content-right>span {
        font-family: Urbanist, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.2;
    }
}








.about-intro-container-main {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}


.about-intro-container-main-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-intro-container-main-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.about-intro-container-main-header>p {
    width: 70%;
    margin: 0 auto;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: center;
}

.about-intro-container-main-body {
    display: flex;
    gap: 64px;

}

.about-intro-container-main-body-row {
    display: flex;
    gap: 64px;
}

.about-intro-container-main-body-col{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-intro-container-main-body-col>img {
    width: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.about-intro-container-main-body-col>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-intro-container-main-body-col > p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
}


.navigation-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.618;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #003366;
}








/* Values section */

.values-container {
    max-width: 1440px;
    margin: 0 auto;
}

.values-container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.values-container-header>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #141E47;
}

.values-container-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0 auto;
    padding-top: 8px;
}

.values-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 64px 0;
}

.values {
    border-radius: 24px;
    width: 30%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1 1 30%;
    gap: 32px;
    height: 600px;
    padding: 0 20px 32px 20px;
}

.value-1 {
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/people-investment.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.value-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.value-content>h3 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.value-content>p {
    font-family: Urbanist;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.view-button {
    height: 48px;
    padding: 16px 16px 16px 24px;
    display: flex;
    align-items: center;
    gap: 64px;
    border-radius: 24px;
    opacity: 0px;
    background-color: var(--white-text);
    font-family: Plus Jakarta Sans;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration: none;
    color: var(--heading);
}

.value-2 {
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/strategic-development.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.value-3 {
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/teamwork.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

@media screen and (max-width:768px) {
    .values {
        width: 50%;
    }
}

/* Company culture starts */

.video-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 0 0 0;
    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 */
.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;
}

.company-culture-footer {
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .video-container {
        flex-direction: column;
    }

    .video,
    .video-description {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .video-container {
        padding: 24px 0;
    }
}

.company-culture-content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.company-culture-content-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.company-culture-content-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.author-box {
    padding: 64px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image-container {
    width: 96px;
    height: 96px;
}

.author-image-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    display: block;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-details>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.author-details>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

@media screen and (max-width:768px) {
    .author-box {
        padding: 32px 0;
        gap: 8px;
    }

    .author-image-container {
        width: 64px;
        height: 64px;
    }

    .author-details>h3 {
        font-size: 1.2rem;
    }

    .author-details>p {
        font-size: 0.9rem;
    }
}

.company-culture-metrics {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
    flex-wrap: wrap;
    width: auto;
    width: auto;
    gap: 32px;
}

.metric {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px;
    flex: 1 1 20%;
}

.metric-number {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.metric-description {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

@media screen and (max-width:1024px) {
    .company-culture-header>h2 {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .company-culture {
        background: linear-gradient(to bottom, #141E47 40%, #ffffff 40%);
    }

    .company-culture-header>h2 {
        font-size: 2.617rem;
        width: 100%;
    }

    .company-culture-content-header>p {
        font-size: 1rem;
    }

    .company-culture-metrics {
        padding: 40px 0;
    }
}

@media screen and (max-width:430px) {
    .company-culture {
        background: linear-gradient(to bottom, #141E47 30%, #ffffff 30%);
        padding: 64px 20px;
        gap: 32px;
    }
}

/* Catylst connect */
.catalyst-connect {
    padding: 50px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/catalyst-connect.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 32px;
}

.catalyst-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.catalyst-content>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.catalyst-content>p {
    width: 70%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 12px 8px 24px;
    border-radius: 80px;
    background-color: #fff;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.618;
    text-decoration: none;
    color: #000;
}

.inline-svg-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    background-color: #212121;
    border-radius: 80px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inline-svg-icon>svg {
    width: 24px;
    height: 24px;
    transform: scale(2.5);
    transform-origin: center;
}

@media screen and (max-width:768px) {}

@media screen and (max-width:430px) {
    .catalyst-connect {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/catalyst-connect.png");
        background-position: center;
        background-size: cover;
        padding: 20px;
        height: 80vh;
        gap: 32px;
    }

    .catalyst-content>h2 {
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.03em;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .catalyst-content>p {
        width: 100%;
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.618;
        letter-spacing: -0.03em;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

}

.open-roles-container {
    padding: 128px 50px;
    background: #f0f2f4;
}

.open-roles-container-main {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.open-roles-container-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.618;
    color: #000;
    text-transform: uppercase;
}

.open-roles-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.open-roles-container-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    padding-top: 8px;
}

.open-roles-container-body {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.open-roles-container-body-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.open-roles-container-body-section>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.open-roles-container-body-row {
    border-top: 1px solid #b2ba9b80;
    padding: 32px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-roles-container-body-row:last-child {
    border-bottom: 1px solid #b2ba9b80;
}

.body-roles-heading>h4,
.body-roles-location>p {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.view-cta-button>a {
    border: 1px solid #000000;
    padding: 12px;
    border-radius: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

@media screen and (max-width:768px) {

    .open-roles-container-header>p {
        width: 100%;
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.618;
        text-align: left;
        padding-top: 8px;
    }

    .open-roles-container-body-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media screen and (max-width:430px) {
    .open-roles-container {
        padding: 64px 20px;
    }
}

.stories-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.stories-container-header>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
}

.stories-container-body {
    position: relative;
}

.swiper-slide {
    width: 1080px !important;
}

.story-container-main {
    display: flex;
}

.story-image-container {
    width: 50%;
    overflow: hidden;
}

.story-image-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.story-content-container {
    width: 50%;
    padding: 32px 32px 64px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #f0f2f4;
}

.story-content-header>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
}

.story-author {
    display: flex;
    flex-direction: column;
}

.story-author>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
}

.story-author>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: #000;
}

.story-author>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: #000;
}


.custom-buttons {
    display: flex;
    padding: 64px 0px 0 0;
    justify-content: flex-end;
    gap: 24px;
}

@media screen and (max-width:1024px) {
    .swiper-slide {
        width: 90% !important;
    }

    .story-content-header>h4 {
        font-size: 1.618rem;
    }
}

@media screen and (max-width:768px) {
    .swiper-slide {
        width: 80% !important;
    }

    .story-content-header>h4 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:430px) {
    .swiper-slide {
        width: 100% !important;
    }

    .story-container-main {
        flex-direction: column;
        gap: 0;
    }

    .story-image-container,
    .story-content-container {
        width: 100%;
    }

    .custom-buttons {
        padding: 32px 0px;
    }
}