:root {

    --black: #000000;
    --color-0f3478: #0f3478;
    --color-1a4fa0: #1a4fa0;
    --color-444: #444;
    --color-e7bb2d: #e7bb2d;
    --color-f9f3e8: #f9f3e8;
    --white: #ffffff;
}

/* careers.css */
:root {

    --blue: #1a4fa0;
    --blue-dark: #0f3478;
    --gold: #E7BB2D;
    --cream: #f9f3e8;
    --white: #ffffff;
    --text: #000000;
    --font-body: "Lato", sans-serif;
    --font-head: "Allomira Black", "Allomira", serif;
}

@font-face {
    font-family: 'Allomira';
    src: url("../fonts/Allomira-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Allomira';
    src: url("../fonts/Allomira-Black.ttf") format('truetype');
    font-weight: 900;
    font-style: normal;
}

.app-pre-title {

    margin-left: 2% !important;
    color: var(--color-444) !important;
}

.desktop-br {

    display: block;
}

/* Visibility Utilities */
.desktop-only {

    display: block !important;
}

.mobile-only {

    display: none !important;
}

@media (max-width: 1024px) {

    .desktop-only {

        display: none !important;
    }

    .mobile-only {

        display: block !important;
    }
}

html,
body {

    margin: 0;
    padding: 0;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

/* Global Title Styles for Desktop Standard (1920x1080) */

/* Global Body Text Styles for Desktop Standard (1920x1080) */

.container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION 
   ========================================= */
.careers-hero {

    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;

    z-index: 20;
}

.hero-bg-img {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    z-index: -1;
}

@keyframes bannerZoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.hero-bg-img {

    animation: bannerZoomOut 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.careers-hero-content {

    max-width: 600px;
    color: var(--white);
    z-index: 20;
}

.careers-hero-content h1 {

    margin: 0 0 20px 0;
    color: var(--gold);
}

.hero-desc p {

    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-desc .highlight {

    color: var(--gold);
    font-weight: 700;
}

.hero-wave {

    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

@media (min-width: 1025px) {

    .hero-wave {

        display: none;
    }

    .careers-hero {

        min-height: 70vh !important;
        margin-top: -2px;
    }
}

.hero-wave svg {

    width: 100%;
    height: auto;
}

/* =========================================
   WORK WITH PURPOSE
   ========================================= */
.work-purpose {

    padding: 100px 0;
    background-image: url("../images/careers/Purpose_BG.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    margin-top: -100px;
    z-index: 1;
}

.section-title {

    color: var(--blue);
    margin-bottom: 20px;
}

.section-subtitle {

    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.purpose-circles-container {

    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

.purpose-slider-wrap {

    width: 100%;
    overflow: hidden;
}

.purpose-slider-track {

    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {

    .purpose-slider-track {

        display: flex;
        width: 500%;
    }
}

.purpose-composite-img {

    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 40px auto;
    display: block;
}

.purpose-slider-nav {

    display: none;
}

@media (max-width: 1024px) {

    .purpose-slider-nav {

        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 30px;
        width: 100%;
    }

    .slider-arrow {

        background: var(--blue);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .slider-arrow:active {

        transform: scale(0.9);
    }

    .slider-arrow svg {

        width: 24px;
        height: 24px;
        fill: white;
    }

    .slider-dots {

        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }

    .dot {

        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(26, 79, 160, 0.2);
        /* Faded blue */
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid var(--blue);
    }

    .dot.active {

        background-color: var(--blue);
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(26, 79, 160, 0.4);
    }
}

.purpose-slide {

    flex: 0 0 20%;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.purpose-slide img {

    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.purpose-footer-text {

    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: black;
}

.res-desc,
.res-pre-title,
.app-promo-desc {

    color: black !important;
}

/* =========================================
   RESPONSIBILITY SECTION
   ========================================= */
.responsibility-section {

    background-image: url("../images/careers/Responsibility_BG.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    margin-top: -1% !important;
}

.res-content-wrapper {

    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;

    margin-top: 10% !important;
}

.res-left {

    flex: 1;
    padding-left: 150px;
    max-width: 600px;
}

.res-right {

    flex: 1;
    display: flex;
    justify-content: center;
}

.res-pre-title {

    margin-bottom: 0px !important;
    letter-spacing: 1px;
    font-weight: 600;
    margin-left: 10%;
}

.res-title {

    color: var(--blue);
    margin-bottom: 25px;
    margin-top: 0 !important;
}

.res-desc p {

    line-height: 1.7;
    color: black;
}

.res-image-container {

    overflow: hidden;
}

.res-img {

    width: 100%;
    max-width: 350px;
    display: block;
}

/* =========================================
   WHO THRIVES SECTION
   ========================================= */
.who-thrives {

    position: relative;
    padding: 150px 0 100px;
    color: var(--white);
    background-image: url("../images/careers/Thrive_BG.png");
    background-size: 100% 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.thrives-wrapper {

    display: flex;
    align-items: center;
    gap: 80px;
}

.thrives-left {

    flex: 1.2;
}

.thrives-right {

    flex: 1;
}

.thrives-title {

    color: var(--gold);
    margin-bottom: 40px;
}

.thrives-composite-img {

    width: 150%;
    margin-left: -65%;
    display: block;
    margin-top: -7%;
}

.thrives-intro {

    margin-bottom: 30px;
}

.thrives-list {

    list-style: none;
    padding: 0;
}

.thrives-list li {

    margin-bottom: 10px !important;
    line-height: 1.6 !important;
    padding-left: 30px;
    position: relative;
}

.thrives-list li::before {

    content: "○";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* =========================================
   APP PROMO SECTION
   ========================================= */
.app-promo-section {

    padding: 30px 0 0 !important;
    background: var(--white);
}

.app-promo-content {

    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: -140px;
}

.app-phones-wrapper {

    flex: 1;
    display: flex;
    justify-content: center;
}

.app-promo-text {

    margin-top: -5%;
}

.phones-container {

    display: flex;
    align-items: flex-end;
    margin-bottom: -160px;
}

.phone-img-left img {

    height: 450px;
    width: auto;
    margin-left: 40%;
}

.phone-img-right img {

    height: 500px;
    width: auto;
}

.app-promo-text {

    flex: 1;
}

.app-pre-title {

    font-family: "Lato", sans-serif !important;
    font-size: 24px !important;
    color: #444 !important;
    margin-bottom: 15px !important;
}

.app-promo-title {

    font-family: "Allomira Black", "Allomira", serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #045da8 !important;
    margin-bottom: 25px !important;
    line-height: 1.6px !important;
}

.app-promo-desc {

    font-family: "Lato", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #3a4d5e !important;
    line-height: 1.6 !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (11 BREAKPOINTS)
   ========================================================================== */

/* 1. Desktop 4K (3840x2160) */
@media (min-width: 3000px) {

    .container {

        max-width: 2800px;
    }

    .careers-hero-content {
        max-width: 1200px;
    }

    .careers-hero-content h1 {
        margin-bottom: 40px;
    }

    .hero-desc p {
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .work-purpose {

        padding: 180px 0;
        margin-top: -150px;
    }

    .purpose-composite-img {

        max-width: 2400px;
        margin: 80px auto;
    }

    .res-pre-title {

        margin-bottom: 10px;
    }

    .res-title {

        margin-top: 0 !important;
    }



    .phones-container {

        margin-bottom: -180px !important;
        margin-left: 55%;
    }

    .app-promo-text {

        margin-left: 3%;
    }

    .res-left {

        padding-left: 150px;
    }

    .phone-img-left img {

        height: 500px;
    }

    .phone-img-right img {

        height: 700px;
    }

    .responsibility-section {

        padding: 200px 0;
        margin-top: -1% !important;
    }

    .res-content-wrapper {

        margin-top: 10% !important;
    }

    .res-img {

        max-width: 750px;
    }

    .res-left {

        padding-left: 250px;
        max-width: 1000px;
    }

    .who-thrives {

        padding: 250px 0 150px;
    }

    .thrives-composite-img {

        width: 120%;
        margin-left: -40%;
    }
}

/* 2. Desktop Large (2560x1440) */
@media (min-width: 2000px) and (max-width: 2999px) {

    .container {

        max-width: 2200px;
    }

    .careers-hero-content {
        max-width: 1000px;
    }

    .careers-hero-content h1 {
        margin-bottom: 30px;
    }

    .hero-desc p {
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .res-pre-title {

        margin-bottom: 5px;
    }

    .res-title {

        margin-top: 0 !important;
    }

    .res-left {

        padding-left: 100px;
    }

    .phones-container {

        margin-bottom: -180px !important;
        margin-left: 35%;
    }

    .app-cta {

        position: relative;
        z-index: 10;
    }

    .responsibility-section {

        padding: 160px 0;
        margin-top: -1% !important;
    }

    .res-content-wrapper {

        margin-top: 10% !important;
    }

    .res-img {

        max-width: 550px;
    }

    .res-left {

        padding-left: 200px;
        max-width: 800px;
    }

    .who-thrives {

        padding: 200px 0 120px;
    }

    .thrives-title {

        margin-left: 30% !important;
    }

    .thrives-composite-img {

        width: 115%;
        margin-left: -18%;
    }
}

/* 3. Desktop Standard (1920x1080) - Default styles cover this */

/* 4. Laptop Large (1440x900) */
@media (max-width: 1600px) {

    .container {

        max-width: 1300px;
    }

    .phones-container {

        margin-bottom: -160px !important;
    }

    .app-promo-text {

        margin-top: -5%;
    }

    .work-purpose {

        padding: 80px 0;
        margin-top: -80px;
    }

    .purpose-composite-img {

        max-width: 900px;
    }

    .responsibility-section {

        padding: 100px 0;
        margin-top: -1% !important;
    }

    .res-content-wrapper {

        margin-top: 10% !important;
    }

    .res-img {

        max-width: 400px;
    }

    .res-left {

        padding-left: 100px;
    }

    .who-thrives {

        padding: 120px 0 80px;
    }

    .thrives-composite-img {

        width: 105%;
        margin-left: -18%;
    }
}

/* 5. Laptop Baseline (1280x800) */
@media (max-width: 1366px) {

    .container {

        max-width: 1100px;
    }

    .phones-container {

        margin-bottom: -160px !important;
    }

    .app-promo-text {

        margin-top: -5%;
    }

    .app-promo-section {

        margin-left: -5%;
    }

    .work-purpose {

        padding: 60px 0;
        margin-top: -60px;
    }

    .purpose-composite-img {

        max-width: 800px;
    }

    .responsibility-section {

        padding: 80px 0;
        margin-top: -1% !important;
    }

    .res-content-wrapper {

        margin-top: 10% !important;
    }

    .res-img {

        max-width: 450px;
    }

    .who-thrives {

        padding: 100px 0 60px;
    }

    .thrives-composite-img {

        width: 100%;
        margin-left: -20%;
    }
}

/* 6. iPad Pro (1024x1366) */
@media (max-width: 1024px) {

    .app-pre-title {
        font-size: 24px !important;
    }

    .app-promo-title {
        font-size: 36px !important;
    }

    .app-promo-desc {
        font-size: 16px !important;
    }

    .app-promo-content {

        flex-direction: column;
        text-align: center;
    }

    .app-phones-wrapper {
        margin-left: 25%;
        margin-top: -7%;
        order: 2;
    }

    .app-promo-text {

        order: 1;
    }

    .careers-hero {

        padding: 0 5%;
        min-height: 60vh;
    }

    .work-purpose {

        padding: 60px 0;
        margin-top: -100px;
    }

    .container {

        margin-top: 3% !important;
    }
.container .app-promo-content {

        margin-top: -5% !important;
    }
    .purpose-composite-img {

        max-width: 700px;
    }

    .responsibility-section {

        padding: 70px 0;
        margin-top: -2% !important;
    }

    .res-img {

        max-width: 500px;
        margin: 40px auto 0;
        display: block;
    }

    .thrives-wrapper {

        flex-direction: column;
        gap: 40px;
    }

    .thrives-left,
    .thrives-right {

        width: 100%;
    }

    .purpose-circles {

        gap: 20px;
    }

    .circle-item {

        margin: 0;
    }

    .download-flex {

        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .search-box {

        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .phones-container {
        margin-bottom: -200px !important;
    }

    .app-promo-text {

        margin-left: 0%;
    }

    .app-cta {

        position: relative;
        z-index: 10;
    }

    .who-thrives {

        padding: 80px 20px 120px;
        background-size: cover;
    }

    .thrives-title {

        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 100px !important;
    }

    .thrives-intro {

        margin-bottom: 5% !important;
    }

    .thrives-right {

        text-align: center !important;
        margin-left: 10% !important;
    }

    .thrives-list,
    .thrives-intro {

        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
}

/* 7. iPad Air (820x1180) */
@media (max-width: 820px) {

    .app-pre-title {
        font-size: 22px !important;
    }

    .app-promo-title {
        font-size: 34px !important;
    }

    .app-promo-desc {
        font-size: 16px !important;
    }

    .res-content-wrapper {

        flex-direction: column;
        text-align: center;
    }

    .res-left {

        padding-left: 0;
    }

    .app-promo-content {

        flex-direction: column;
        text-align: center;
    }

    .app-phones-wrapper {
        margin-left: -0%;
        order: 2;
    }

    .work-purpose {

        margin-top: -10% !important;
    }

    .responsibility-section {

        padding: 50px 20px;
        margin-top: -2% !important;
    }

    .res-content-wrapper {

        margin-top: 20% !important;
    }

    .res-right {

        margin-top: -5% !important;
    }

    .container .app-promo-content {

        margin-top: 10% !important;
    }

    .app-promo-text {

        order: 1;
    }

    .app-promo-section {

        margin-top: 0% !important;
        margin-left: 2%;
    }

    .phones-container {

        justify-content: center;
        margin-bottom: -150px !important;
        margin-left: -20%;
    }

    .app-cta {

        position: relative;
        z-index: 10;
    }

    .res-pre-title {

        justify-content: center !important;
        margin-left: 0% !important;
    }

    .thrives-title {

        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 100px !important;
    }

    .thrives-intro {

        text-align: center !important;
        margin-left: 0 !important;
    }

    .thrives-list {

        max-width: 450px;
        margin: 0 auto;
        text-align: left;
    }

    .who-thrives {

        padding: 80px 20px 140px;
        background-size: cover;
    }
}

/* 8. iPad Mini (768x1024) */
@media (width: 768px) {

    .app-pre-title {
        font-size: 20px !important;
    }

    .app-promo-title {
        font-size: 32px !important;
    }

    .app-promo-desc {
        font-size: 16px !important;
    }

    .work-purpose {

        padding: 50px 0;
        margin-top: -70px;
    }

    .responsibility-section {

        padding: 50px 20px;
        margin-top: -2% !important;
    }

    .res-content-wrapper {

        margin-top: 20% !important;
    }

    .res-right {

        margin-top: -5% !important;
    }

    .container .app-promo-content {

        margin-top: -5% !important;
    }

    .purpose-composite-img {

        max-width: 650px;
    }

    .phones-container {

        margin-bottom: -160px !important;
    }

    .app-promo-section {

        margin-top: 2% !important;
        margin-left: 2%;
    }

    .app-promo-text {

        margin-top: 5% !important;
    }

    .app-cta {
        position: relative;
        z-index: 10;
    }

    .res-pre-title {
        justify-content: center !important;
        margin-left: 0% !important;
    }

    .thrives-title {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 100px !important;
    }

    .thrives-intro {
        text-align: center !important;
        margin-left: 0 !important;
    }

    .thrives-list {

        max-width: 450px;
        margin: 0 auto;
        text-align: left;
    }

    .who-thrives {

        padding: 60px 20px 120px;
        background-size: cover;
    }

    section {

        overflow: hidden !important;
    }
}

/* 9. Tab devices (Generic) */
@media (min-width: 577px) and (max-width: 767px) {


    section {

        overflow: hidden !important;
    }

    .careers-hero-content {

        text-align: center;
        margin: 0 auto;
    }

    .thrives-title {

        text-align: center !important;
        margin-left: 0 !important;
        margin-top: -2% !important;
    }

    .thrives-list {

        max-width: 400px;
        margin: 0 auto;
        text-align: left;
    }

    .who-thrives {

        padding: 60px 20px 100px;
        background-size: cover;
    }
}

/* 10. Mobile (Generic < 768px) */
@media (max-width: 576px) {

    .app-pre-title {
        font-size: 16px !important;
    }

    .app-promo-title {
        font-size: 24px !important;
    }

    .app-promo-desc {
        font-size: 16px !important;
    }

    .careers-hero {

        min-height: 55vh;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        text-align: center;
        overflow: hidden;
    }

    .careers-hero-content {

        margin: 0 auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-50px);
    }

    section {

        overflow: hidden !important;
    }

    .desktop-br {

        display: none;
    }

    .phone-img-left img {

        height: 280px;
        margin-bottom: -45% !important;
    }

    .phone-img-right img {
        height: 280px;
        margin-bottom: -20% !important;
    }

    .app-promo-section {

        margin-top: -2%;
    }

    .phones-container {

        margin-bottom: -60px !important;
        position: relative !important;
    }

    .app-phones-wrapper {

        margin-top: 0%;
    }

    .app-cta {

        position: relative !important;
        z-index: 20 !important;
        margin-top: -25% !important;
        margin-bottom: 0 !important;
    }

    .site-footer {

        z-index: 99 !important;
        position: relative;
    }

    .app-promo-text {

        margin-top: 2%;
    }

    .store-buttons {

        justify-content: center;
    }

    .purpose-slider-wrap {

        overflow: hidden;
    }

    .purpose-slider-track {

        /* Already defined in general mobile-only block */

    }

    .purpose-composite-img {

        width: 100%;
        max-width: none;
        margin: 20px 0;
    }

    .purpose-slider-nav {

        /* Handled in consolidated mobile block */

    }

    .slider-arrow {

        /* Handled in consolidated mobile block */

    }

    .work-purpose {

        padding: 60px 20px;
        margin-top: -70px !important;
    }

    .responsibility-section {

        padding: 50px 20px;
        margin-top: -5% !important;
    }

    .res-content-wrapper {

        margin-top: 35% !important;
    }

    .res-right {

        margin-top: -20% !important;
    }

    .res-img {

        max-width: 100%;
        margin-top: 30px;
    }

    .purpose-composite-img {

        max-width: 100%;
        margin: 30px auto;
    }

    .who-thrives {

        padding: 60px 20px;
        background-size: cover;
    }

    .thrives-title {

        text-align: center !important;
        margin-left: 0 !important;
        width: 100%;
        margin-bottom: 40px !important;
    }

    .thrives-composite-img {

        width: 150% !important;
        margin-left: -55% !important;
        margin-top: 20px !important;
    }

    .res-desc p {

        text-align: justify !important;
        align-items: center !important;
    }

    .phones-container {

        margin-bottom: 0 !important;
        z-index: 1;
    }
}

/* 11. Small Mobile (375px and below) */
@media (max-width: 375px) {

    .search-box {

        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }

    .search-box input {

        background: white;
        border-radius: 30px;
        padding: 15px 20px;
    }
}

/* ==========================================================================
   CAREERS PAGE FONT SIZE RESPONSIVE SIZES MOVED TO: fonts-common/fonts-careers.css
   ========================================================================== */

/* DESKTOP APP PROMO PHONES & SPACING CORRECTION */
@media screen and (min-width: 993px) {

    .app-promo-section {

        padding-bottom: 120px !important;
    }

    .app-phones-wrapper {

        display: flex !important;
        justify-content: flex-start !important;
    }

    .phones-container {

        justify-content: flex-start !important;
        margin-left: -170px !important;
    }

    .phone-img-left,
    .phone-img-left img {

        width: 420px !important;
        max-width: 40vw !important;
        height: auto !important;
        margin-right: -40px !important;
        margin-left: 0px !important;
        transform: translateY(80px) !important;
    }

    .phone-img-right,
    .phone-img-right img {

        width: 480px !important;
        max-width: 42vw !important;
        margin-left: -7% !important;
        height: auto !important;
        transform: translateY(50px) !important;
    }

    .app-promo-text {

        margin-top: 60px !important;
    }
}

/* LAPTOP BASELINE (1280px - 1439px) — match Desktop Standard look */
@media screen and (min-width: 1280px) and (max-width: 1439px) {

    .app-promo-section {

        padding-bottom: 100px !important;
    }

    .app-phones-wrapper {

        display: flex !important;
        justify-content: flex-start !important;
    }

    .phones-container {

        justify-content: flex-start !important;
        margin-left: -10px !important;
    }

    .phone-img-left,
    .phone-img-left img {

        width: 300px !important;
        max-width: 30vw !important;
        height: auto !important;
        margin-right: -30px !important;
        margin-left: 10px !important;
        transform: translateY(50px) !important;
    }

    .phone-img-right,
    .phone-img-right img {

        width: 350px !important;
        max-width: 32vw !important;
        margin-left: -30px !important;
        height: auto !important;
        transform: translateY(35px) !important;
    }

    .app-promo-text {

        margin-top: 60px !important;
    }
}

/* LAPTOP LARGE (1440px - 1919px) — match Desktop Standard look */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .app-promo-section {

        padding-bottom: 100px !important;
    }

    .app-phones-wrapper {

        display: flex !important;
        justify-content: flex-start !important;
    }

    .phones-container {

        justify-content: flex-start !important;
        margin-left: 30px !important;
    }

    .phone-img-left,
    .phone-img-left img {

        width: 340px !important;
        max-width: 32vw !important;
        height: auto !important;
        margin-right: -35px !important;
        margin-left: 10px !important;
        transform: translateY(65px) !important;
    }

    .phone-img-right,
    .phone-img-right img {

        width: 400px !important;
        max-width: 35vw !important;
        margin-left: -40px !important;
        height: auto !important;
        transform: translateY(50px) !important;
    }

    .app-promo-text {

        margin-top: 60px !important;
    }
}

@media screen and (min-width: 2560px) {

    .phones-container {

        justify-content: flex-start !important;
        margin-left: 350px !important;
    }

    .app-promo-text {

        margin-top: 60px !important;
        padding-left: 0px !important;
    }
}

/* DESKTOP 4K (≥3840px) — match Desktop Standard look, scaled up */
@media screen and (min-width: 3840px) {

    .app-promo-section {

        padding-bottom: 200px !important;
    }

    .app-phones-wrapper {

        display: flex !important;
        justify-content: flex-start !important;
    }

    .phones-container {

        justify-content: flex-start !important;
        margin-left: 600px !important;
    }

    .phone-img-left,
    .phone-img-left img {

        width: 400px !important;
        max-width: 38vw !important;
        height: auto !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
        transform: translateY(100px) !important;
    }

    .phone-img-right,
    .phone-img-right img {

        width: 620px !important;
        max-width: 40vw !important;
        margin-left: -9% !important;
        height: auto !important;
        transform: translateY(120px) !important;
    }

    .app-promo-text {

        margin-top: 60px !important;
        padding-left: 10px !important;
    }
}