/*
|--------------------------------------------------------------------------
| Page Base
|--------------------------------------------------------------------------
*/
@font-face {
    font-family: "Mona Sans";
    src: url("/fonts/MonaSans/MonaSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Mona Sans";
    src: url("/fonts/MonaSans/MonaSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Mona Sans";
    src: url("/fonts/MonaSans/MonaSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Mona Sans";
    src: url("/fonts/MonaSans/MonaSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: "Mona Sans", sans-serif;
}
.live-in-maid-page {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Landing Page Language Switch
|--------------------------------------------------------------------------
*/
.live-in-language-switch {
    position: absolute;
    top: 30px;
    right: 24px;
    z-index: 6;
}

.live-in-language-switch .btn {
    width: auto;
    min-width: 82px;
    min-height: 40px;
    padding: 7px 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

@media screen and (max-width: 767.98px) {
    .live-in-language-switch {
        top: 24px;
        right: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Hero Section
|--------------------------------------------------------------------------
*/

.live-in-hero {
    position: relative;
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Family Background Image
|--------------------------------------------------------------------------
*/

.live-in-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: block;
    width: 100%;
    height: 100%;
}

.live-in-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 58%;
}

/*
|--------------------------------------------------------------------------
| White Overlay
|--------------------------------------------------------------------------
*/

.live-in-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.74) 0%,
        rgba(255, 255, 255, 0.63) 38%,
        rgba(255, 255, 255, 0.25) 68%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

/*
|--------------------------------------------------------------------------
| Hero Main Container
|--------------------------------------------------------------------------
*/

.live-in-hero-container {
    position: relative;
    z-index: 3;
    min-height: 540px;
}

/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
*/

.live-in-hero-logo {
    position: absolute;
    top: 30px;
    left: 12px;
    z-index: 5;
    display: block;
    width: 261px;
    height: auto;
    /* aspect-ratio: 261 / 96; */
}

/*
|--------------------------------------------------------------------------
| Hero Text
|--------------------------------------------------------------------------
*/
.hero-title-line {
    display: block;
}

.hero-title-second {
    margin-top: 10px;
    white-space: nowrap;
}
.live-in-hero-content {
    position: absolute;
    top: 140px;
    left: 12px;
    z-index: 5;

    width: 52%;
    max-width: 720px;
}

.live-in-hero-content h1 {
    margin: 27px 0px 24px 0px;

    color: #0E3C61;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
}

.live-in-hero-content h2 {
    margin: 0 0 18px;

    color: #0E3C61;
    font-size: clamp(20px, 1.7vw, 27px);
    font-weight: 700;
    line-height: 1.3;
}

.live-in-hero-content p {
    margin: 0 0 28px;

    color: #0E3C61;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 400;
    line-height: 1.45;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Button
|--------------------------------------------------------------------------
*/

.live-in-whatsapp-btn {
    min-width: 165px;
    min-height: 48px;
    padding: 13px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 30px;

    background: #25D366;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 7px 15px rgba(32, 212, 102, 0.24);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.live-in-whatsapp-btn:hover {
    background: #18c65d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 9px 18px rgba(32, 212, 102, 0.3);
}

/*
|--------------------------------------------------------------------------
| Maid Foreground Image
|--------------------------------------------------------------------------
*/

.live-in-hero-maids-wrap {
    position: absolute;
    right: -65px;
    bottom: 0;
    z-index: 4;

    width: 50%;
    height: 94%;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.live-in-hero-maids {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right bottom;
}

/*
|--------------------------------------------------------------------------
| Large Desktop
|--------------------------------------------------------------------------
*/

@media screen and (min-width: 1400px) {
    .live-in-hero-container {
        max-width: 1310px;
    }

    .live-in-hero-logo,
    .live-in-hero-content {
        left: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Laptop
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 1199.98px) {
    .live-in-hero,
    .live-in-hero-container {
        min-height: 500px;
    }

    .live-in-hero-logo {
        top: 28px;
        width: 135px;
    }

    .live-in-hero-maids-wrap {
        right: -15px;
    }

    .live-in-hero-content {
        top: 120px;
        width: 51%;
        max-width: 560px;
    }

    .live-in-hero-content h1 {
        font-size: 40px;
    }

    .live-in-hero-content h2 {
        font-size: 22px;
    }

    .live-in-hero-content p {
        font-size: 15px;
    }

    .live-in-hero-maids-wrap {
        width: 56%;
        height: 91%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399.98px) {
    .live-in-hero-content h1 {
        font-size: 46px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .live-in-hero-content h1 {
        font-size: 36px;
    }

    .live-in-hero-maids-wrap {
        right: -10px;
        width: 52%;
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991.98px) {
    .live-in-hero,
    .live-in-hero-container {
        min-height: 460px;
    }

    .live-in-hero-logo {
        top: 24px;
        left: 20px;
        width: 135px;
    }

    .live-in-hero-content {
        top: 108px;
        left: 20px;

        width: 51%;
        max-width: 440px;
    }

    .live-in-hero-content h1 {
        margin-bottom: 16px;
        font-size: 34px;
    }

    .hero-title-second {
        white-space: normal;
    }

    .live-in-hero-content h2 {
        margin-bottom: 14px;
        font-size: 19px;
    }

    .live-in-hero-content p {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .live-in-whatsapp-btn {
        min-width: 150px;
        min-height: 44px;
        padding: 11px 23px;
        font-size: 14px;
    }

    .live-in-hero-maids-wrap {
        right: -20px;
        width: 57%;
        height: 88%;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-hero,
    .live-in-hero-container {
        min-height: 590px;
    }

    .live-in-hero-bg img {
        object-fit: cover;
        object-position: center top;
    }

    .live-in-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 255, 255, 0.67) 47%,
            rgba(255, 255, 255, 0.20) 100%
        );
    }

    .live-in-hero-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .live-in-hero-logo {
        top: 20px;
        left: 20px;
        width: 189px;
        height: 58px;
    }

    .live-in-hero-content {
        top: 95px;
        left: 18px;

        width: calc(100% - 36px);
        max-width: none;

        text-align: center;
    }

    .live-in-hero-content h1 {
        margin-bottom: 14px;
        font-size: 27px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .hero-title-second {
        white-space: normal;
    }

    .live-in-hero-content h2 {
        margin-bottom: 13px;
        font-size: 17px;
    }

    .live-in-hero-content p {
        margin-bottom: 18px;
        font-size: 12px;
        line-height: 1.45;
    }

    .live-in-whatsapp-btn {
        min-width: 150px;
        min-height: 44px;
        padding: 11px 24px;
        font-size: 14px;
    }

.live-in-hero-maids-wrap {
    right: 0;
    bottom: 0;

    width: 100%;
    height: 49%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 374.98px) {
    .live-in-hero,
    .live-in-hero-container {
        min-height: 560px;
    }

    .live-in-hero-logo {
        width: 105px;
    }

    .live-in-hero-content {
        top: 87px;
    }

    .live-in-hero-content h1 {
        font-size: 24px;
    }

    .live-in-hero-content h2 {
        font-size: 15px;
    }

    .live-in-hero-content p {
        font-size: 11px;
    }

    .live-in-hero-maids-wrap {
        height: 47%;
    }
}

/*
|--------------------------------------------------------------------------
| Figma Desktop Hero Alignment
|--------------------------------------------------------------------------
*/

@media screen and (min-width: 1200px) {
    .live-in-hero {
        height: clamp(540px, 37.8vw, 725px);
        min-height: 540px;
    }

    .live-in-hero-container {
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 0;
    }

    .live-in-hero-logo {
        top: clamp(26px, 1.82vw, 35px);
        left: 6.6vw;
    }

    .live-in-hero-content {
        top: 25%;
        left: 6.6vw;
    }

    .live-in-hero-content h1 {
        margin: clamp(20px, 1.4vw, 27px) 0 clamp(18px, 1.25vw, 24px);
        font-size: clamp(42px, 2.92vw, 48px);
    }

    .live-in-hero-content h2 {
        margin-bottom: clamp(22px, 1.51vw, 29px);
        font-size: clamp(22px, 1.56vw, 30px);
    }

    .live-in-hero-content p {
        margin-bottom: clamp(28px, 1.98vw, 38px);
        font-size: clamp(16px, 1.15vw, 22px);
    }

    .live-in-hero .live-in-whatsapp-btn {
        min-width: clamp(180px, 12.5vw, 240px);
        min-height: clamp(46px, 2.97vw, 57px);
        padding: clamp(12px, 0.83vw, 16px) clamp(26px, 1.77vw, 34px);
        font-size: clamp(14px, 1.04vw, 20px);
    }

    .live-in-hero-maids-wrap {
        right: 2.3vw;
        width: 56%;
        height: 88%;
    }

    .live-in-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.52) 38%,
            rgba(255, 255, 255, 0.25) 68%,
            rgba(255, 255, 255, 0.08) 100%
        );
    }
}

/*
|--------------------------------------------------------------------------
| Why Choose Housekeeping Co
|--------------------------------------------------------------------------
*/

.live-in-why-choose {
    padding: 28px 0 32px;
    background: #e7eef3;
}

.live-in-section-title {
    margin: 0 0 24px;
    color: #0E3C61;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Benefits Grid
|--------------------------------------------------------------------------
*/

.live-in-benefits-grid {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 40px;
}

/*
|--------------------------------------------------------------------------
| Benefit Card
|--------------------------------------------------------------------------
*/

.live-in-benefit-card {
    min-height: 78px;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    gap: 18px;

    border: 1px solid #0E3C61;
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.78);
}

.live-in-benefit-card p {
    margin: 0;
    color: #111111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

/*
|--------------------------------------------------------------------------
| Benefit Icons
|--------------------------------------------------------------------------
*/

.live-in-benefit-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0E3C61;
}

.live-in-benefit-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
|--------------------------------------------------------------------------
| Bottom Button
|--------------------------------------------------------------------------
*/

.live-in-why-button-wrap {
    margin-top: 24px;
    text-align: center;
}

.live-in-why-whatsapp {
    min-width: 162px;
    min-height: 40px;
    padding: 10px 24px;
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991.98px) {
    .live-in-benefits-grid {
        max-width: 720px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 22px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-why-choose {
        padding: 20px 10px 25px;
    }

    .live-in-section-title {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .live-in-benefits-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .live-in-benefit-card {
        min-height: 58px;
        padding: 8px 12px;
        gap: 13px;
        border-radius: 3px;
    }

    .live-in-benefit-card p {
        font-size: 11px;
        line-height: 1.25;
    }

    .live-in-benefit-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .live-in-benefit-icon svg {
        width: 27px;
        height: 27px;
    }

    .live-in-why-button-wrap {
        margin-top: 18px;
    }

    .live-in-why-whatsapp {
        min-width: 138px;
        min-height: 38px;
        padding: 9px 20px;
        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 374.98px) {
    .live-in-why-choose {
        padding-left: 8px;
        padding-right: 8px;
    }

    .live-in-section-title {
        font-size: 17px;
    }

    .live-in-benefit-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .live-in-benefit-card p {
        font-size: 10.5px;
    }
}

/*
|--------------------------------------------------------------------------
| Figma Desktop Why Choose Alignment
|--------------------------------------------------------------------------
*/

@media screen and (min-width: 1200px) {
    .live-in-why-choose {
        padding: clamp(48px, 3.33vw, 64px) 0 clamp(48px, 3.02vw, 58px);
        background: #DEE3E7;;
    }

    .live-in-why-choose .container {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-why-choose .live-in-section-title {
        margin-bottom: clamp(34px, 2.34vw, 45px);
        font-size: 32px;
    }

    .live-in-benefits-grid {
        width: 75%;
        max-width: 1440px;
        gap: clamp(18px, 1.25vw, 24px) clamp(40px, 3.125vw, 60px);
    }

    .live-in-benefit-card {
        min-height: clamp(86px, 5.73vw, 110px);
        padding: clamp(18px, 1.77vw, 34px);
        gap: clamp(18px, 1.56vw, 30px);
        border-radius: 6px;
        background: #ffffff;
    }

    .live-in-benefit-card p {
        font-size: clamp(14px, 0.94vw, 18px);
        line-height: 1.25;
    }

    .live-in-benefit-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }

    .live-in-benefit-icon img {
        display: block;
        max-width: 52px;
        max-height: 52px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .live-in-why-button-wrap {
        margin-top: clamp(28px, 1.98vw, 38px);
    }

    .live-in-why-whatsapp {
        min-width: clamp(180px, 12.5vw, 240px);
        min-height: clamp(46px, 2.97vw, 57px);
        padding: clamp(12px, 0.83vw, 16px) clamp(26px, 1.77vw, 34px);
        font-size: clamp(14px, 1.04vw, 20px);
    }
}
/*
|--------------------------------------------------------------------------
| Emirates Labour Market Award
|--------------------------------------------------------------------------
*/


/*
|--------------------------------------------------------------------------
| What's Included in Our Full-Time Service
|--------------------------------------------------------------------------
*/

.live-in-included-section {
    padding: 18px 0 70px;
    background: #ffffff;
}

.live-in-included-title {
    margin-bottom: 34px;
}

.live-in-included-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 42px;
}

/*
|--------------------------------------------------------------------------
| Image
|--------------------------------------------------------------------------
*/

.live-in-included-picture {
    display: block;
    width: 100%;
}

.live-in-included-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.live-in-included-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.live-in-included-list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.live-in-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 17px;

    color: #111111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.live-in-included-list li:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Check Icon
|--------------------------------------------------------------------------
*/

.live-in-check-icon {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #0E3C61;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.live-in-included-button {
    min-width: 165px;
    min-height: 42px;
    padding: 10px 24px;
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991.98px) {
    .live-in-included-section {
        padding-bottom: 55px;
    }

    .live-in-included-wrap {
        max-width: 760px;
        gap: 28px;
    }

    .live-in-included-list li {
        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-included-section {
        padding: 30px 0 40px;
    }

    .live-in-included-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-included-title {
        max-width: 230px;
        margin: 0 auto 18px;

        padding-left: 12px;
        padding-right: 12px;

        font-size: 18px;
        line-height: 1.25;
    }

    .live-in-included-wrap {
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .live-in-included-picture {
        width: 100%;
    }

    .live-in-included-image {
        width: 100%;
    }

    .live-in-included-content {
        width: 100%;
        padding: 22px 18px 0;
    }

    .live-in-included-list {
        margin-bottom: 20px;
    }

    .live-in-included-list li {
        gap: 10px;
        margin-bottom: 14px;

        font-size: 11px;
        line-height: 1.35;
    }

    .live-in-check-icon {
        flex-basis: 18px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .live-in-included-button {
        align-self: center;

        min-width: 145px;
        min-height: 40px;
        padding: 9px 20px;

        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 374.98px) {
    .live-in-included-title {
        font-size: 17px;
    }

    .live-in-included-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .live-in-included-list li {
        font-size: 10.5px;
    }
}

/*
|--------------------------------------------------------------------------
| Figma Desktop Included Service Alignment
|--------------------------------------------------------------------------
*/
@media screen and (min-width: 1200px) {
    .live-in-included-section {
        padding: clamp(50px, 3.02vw, 58px) 0 clamp(95px, 6.61vw, 127px);
    }

    .live-in-included-section .container {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-included-title {
        margin-bottom: clamp(42px, 2.81vw, 54px);
        font-size: 32px;
    }

    .live-in-included-wrap {
        width: 75.625%;
        max-width: 1452px;
        grid-template-columns: minmax(0, 49fr) minmax(0, 51fr);
        gap: clamp(42px, 3.33vw, 64px);
    }

    .live-in-included-image {
        width: 100%;
    }

    .live-in-included-list {
        margin-bottom: clamp(24px, 1.67vw, 32px);
    }

    .live-in-included-list li {
        align-items: center;
        gap: clamp(12px, 0.83vw, 16px);
        margin-bottom: clamp(16px, 1.25vw, 24px);
        font-size: clamp(14px, 0.94vw, 18px);
        line-height: 1.35;
    }

    .live-in-check-icon {
        flex-basis: clamp(20px, 1.25vw, 24px);
        width: clamp(20px, 1.25vw, 24px);
        height: clamp(20px, 1.25vw, 24px);
        font-size: clamp(11px, 0.68vw, 13px);
    }

    .live-in-included-button {
        min-width: clamp(200px, 12.5vw, 240px);
        min-height: clamp(48px, 2.92vw, 56px);
        padding: clamp(11px, 0.78vw, 15px) clamp(28px, 1.77vw, 34px);
        font-size: clamp(14px, 1.04vw, 20px);
    }
}

/*
|--------------------------------------------------------------------------
| How Hiring a Live-In Maid Works
|--------------------------------------------------------------------------
*/

.live-in-hiring-section {
    position: relative;
    min-height: 360px;
    padding: 42px 0 38px;
    overflow: hidden;
    background: #e5edf2;
}

/*
|--------------------------------------------------------------------------
| Background
|--------------------------------------------------------------------------
*/

.live-in-hiring-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;
    width: 100%;
    height: 100%;
}

.live-in-hiring-background img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.live-in-hiring-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background: rgba(231, 239, 244, 0.84);
}

/*
|--------------------------------------------------------------------------
| Main Content
|--------------------------------------------------------------------------
*/

.live-in-hiring-container {
    position: relative;
    z-index: 3;
}

.live-in-hiring-title {
    margin: 0 0 34px;

    color: #0E3C61;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Steps
|--------------------------------------------------------------------------
*/

.live-in-hiring-steps {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        34px
        minmax(0, 1fr)
        34px
        minmax(0, 1fr);

    align-items: center;
}

.live-in-hiring-step {
    min-height: 82px;
    padding: 14px 18px;

    display: flex;
    align-items: center;
    gap: 18px;

    border: 1px solid #0E3C61;
    border-radius: 5px;

    background: rgba(255, 255, 255, 0.93);
}

.live-in-hiring-step p {
    margin: 0;

    color: #111111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

/*
|--------------------------------------------------------------------------
| Step Number
|--------------------------------------------------------------------------
*/

.live-in-step-number {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0E3C61;
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 4px 9px rgba(7, 74, 117, 0.22);
}

/*
|--------------------------------------------------------------------------
| Desktop Arrows
|--------------------------------------------------------------------------
*/

.live-in-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #0E3C61;

    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Note and Button
|--------------------------------------------------------------------------
*/

.live-in-hiring-note {
    margin: 30px 0 18px;

    color: #000000;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.live-in-hiring-button-wrap {
    text-align: center;
}

.live-in-hiring-button {
    min-width: 165px;
    min-height: 42px;
    padding: 10px 24px;

    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991.98px) {
    .live-in-hiring-section {
        min-height: 340px;
        padding-top: 38px;
    }

    .live-in-hiring-steps {
        max-width: 780px;

        grid-template-columns:
            minmax(0, 1fr)
            25px
            minmax(0, 1fr)
            25px
            minmax(0, 1fr);
    }

    .live-in-hiring-step {
        min-height: 74px;
        padding: 12px;
        gap: 12px;
    }

    .live-in-step-number {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .live-in-hiring-step p {
        font-size: 11px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-hiring-section {
        min-height: auto;
        padding: 28px 10px 32px;
    }

    .live-in-hiring-background img {
        object-position: center bottom;
    }

    .live-in-hiring-overlay {
        background: rgba(231, 239, 244, 0.80);
    }

    .live-in-hiring-title {
        margin-bottom: 22px;

        font-size: 19px;
        line-height: 1.25;
    }

    .live-in-hiring-steps {
        max-width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .live-in-hiring-step {
        width: 100%;
        min-height: 58px;
        padding: 8px 12px;
        gap: 12px;

        border-radius: 4px;
    }

    .live-in-step-number {
        flex-basis: 36px;

        width: 36px;
        height: 36px;

        font-size: 15px;
    }

    .live-in-hiring-step p {
        font-size: 11px;
    }

    /*
    The same arrow changes from right-facing on desktop
    to downward-facing on mobile.
    */

.live-in-step-arrow {
    width: 100%;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
}

.live-in-step-arrow::before {
    content: "";

    width: 9px;
    height: 9px;

    display: block;

    border-right: 2px solid #0E3C61;
    border-bottom: 2px solid #0E3C61;

    transform: rotate(45deg);
    margin-top: -4px;
}

    .live-in-hiring-note {
        max-width: 310px;
        margin: 18px auto 17px;

        font-size: 10.5px;
        line-height: 1.4;
    }

    .live-in-hiring-button {
        min-width: 145px;
        min-height: 40px;
        padding: 9px 20px;

        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 374.98px) {
    .live-in-hiring-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .live-in-hiring-title {
        font-size: 18px;
    }

    .live-in-hiring-step {
        padding-left: 10px;
        padding-right: 10px;
    }

    .live-in-hiring-step p {
        font-size: 10.5px;
    }

    .live-in-hiring-note {
        font-size: 10px;
    }
}

/*
|--------------------------------------------------------------------------
| Figma Desktop Hiring Process Alignment
|--------------------------------------------------------------------------
*/
@media screen and (min-width: 1200px) {
    .live-in-hiring-section {
        min-height: 0;
        height: clamp(440px, 24.95vw, 479px);
        padding: clamp(50px, 3.18vw, 61px) 0 clamp(48px, 2.97vw, 57px);
    }

    .live-in-hiring-container {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-hiring-title {
        margin-bottom: clamp(36px, 2.4vw, 46px);
        font-size: 40px;
        line-height: 1.25;
    }

    .live-in-hiring-steps {
        width: 75%;
        max-width: 1440px;
        grid-template-columns:
            minmax(0, 1fr)
            clamp(46px, 3.125vw, 60px)
            minmax(0, 1fr)
            clamp(46px, 3.125vw, 60px)
            minmax(0, 1fr);
    }

    .live-in-hiring-step {
        box-sizing: border-box;
        min-height: 0;
        height: clamp(96px, 6.04vw, 116px);
        padding: clamp(16px, 1.15vw, 22px);
        gap: clamp(16px, 1.25vw, 24px);
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.96);
    }

    .live-in-step-number {
        flex-basis: clamp(52px, 3.33vw, 64px);
        width: clamp(52px, 3.33vw, 64px);
        height: clamp(52px, 3.33vw, 64px);
        font-size: clamp(21px, 1.35vw, 26px);
    }

    .live-in-hiring-step p {
        font-size: clamp(14px, 0.94vw, 18px);
        line-height: 1.35;
    }

    .live-in-step-arrow {
        font-size: 0;
    }

    .live-in-step-arrow::before {
        content: "";
        width: clamp(10px, 0.73vw, 14px);
        height: clamp(10px, 0.73vw, 14px);
        display: block;
        border-right: 3px solid #0E3C61;
        border-bottom: 3px solid #0E3C61;
        transform: rotate(-45deg);
    }

    .live-in-hiring-note {
        margin: clamp(38px, 2.45vw, 47px) 0 clamp(16px, 1.04vw, 20px);
        font-size: clamp(14px, 0.94vw, 18px);
        line-height: 1.35;
    }

    .live-in-hiring-button-wrap {
        display: flex;
        justify-content: center;
    }

    .live-in-hiring-button {
        min-width: clamp(200px, 12.5vw, 240px);
        min-height: clamp(48px, 2.92vw, 56px);
        padding: clamp(11px, 0.78vw, 15px) clamp(28px, 1.77vw, 34px);
        font-size: clamp(14px, 1.04vw, 20px);
    }
}

/*
|--------------------------------------------------------------------------
| Frequently Asked Questions
|--------------------------------------------------------------------------
*/
.live-in-faq-answer {
    padding: 22px 28px 26px;
}

.live-in-faq-answer p {
    margin: 0;
    line-height: 1.7;
}
.live-in-faq-section {
    padding: 64px 0 72px;
    background: #ffffff;
}

.live-in-faq-title {
    margin-bottom: 34px;
}

.live-in-faq-accordion {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| FAQ Item
|--------------------------------------------------------------------------
*/

.live-in-faq-item {
    margin-bottom: 15px;

    border: 0;
    border-radius: 3px;

    background: #ffffff;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.11);

    overflow: hidden;
}

.live-in-faq-item:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Question Button
|--------------------------------------------------------------------------
*/

.live-in-faq-button {
    min-height: 62px;
    padding: 18px 54px 18px 20px;

    position: relative;

    background: #ffffff;
    color: #0E3C61;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;

    box-shadow: none;
}

.live-in-faq-button:not(.collapsed) {
    background: #ffffff;
    color: #0E3C61;
    box-shadow: none;
}

.live-in-faq-button:focus {
    border-color: transparent;
    box-shadow: none;
}

/*
|--------------------------------------------------------------------------
| Bootstrap Arrow
|--------------------------------------------------------------------------
*/

.live-in-faq-button::after {
    width: 10px;
    height: 10px;

    position: absolute;
    right: 22px;

    background-image: none;

    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;

    transform: rotate(45deg);
    transform-origin: center;

    transition: transform 0.25s ease;
}
.live-in-faq-button::after {
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-active-icon: none;
}
.live-in-faq-button:not(.collapsed)::after {
    transform: rotate(225deg);
}

/*
|--------------------------------------------------------------------------
| FAQ Answer
|--------------------------------------------------------------------------
*/

.live-in-faq-answer {
    padding: 4px 20px 22px;

    background: #ffffff;
    color: #555555;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.live-in-faq-answer p {
    margin: 0 0 12px;
}

.live-in-faq-answer p:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-faq-section {
        padding: 36px 10px 42px;
    }

    .live-in-faq-title {
        margin-bottom: 24px;
        font-size: 19px;
    }

    .live-in-faq-item {
        margin-bottom: 11px;
    }

    .live-in-faq-button {
        min-height: 56px;
        padding: 15px 44px 15px 14px;

        font-size: 12px;
        line-height: 1.35;
    }

    .live-in-faq-button::after {
        right: 16px;
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    .live-in-faq-answer {
       padding: 18px 20px 22px;

        font-size: 11px;
        line-height: 1.55;
    }

    .live-in-faq-answer p {
        margin-bottom: 10px;
        line-height: 1.65;
    }
}

/*
|--------------------------------------------------------------------------
| Ready to Hire CTA
|--------------------------------------------------------------------------
*/

.live-in-ready-section {
    padding: 36px 0 38px;
    background: #0E3C61;
}

.live-in-ready-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.live-in-ready-content h2 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.live-in-ready-button {
    min-width: 165px;
    min-height: 42px;
    padding: 10px 24px;

    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-ready-section {
        padding: 30px 12px 32px;
    }

    .live-in-ready-content h2 {
        margin-bottom: 18px;

        font-size: 14px;
        line-height: 1.35;
    }

    .live-in-ready-button {
        min-width: 145px;
        min-height: 40px;
        padding: 9px 20px;

        font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Figma Desktop FAQ and Closing CTA Alignment
|--------------------------------------------------------------------------
*/
@media screen and (min-width: 1200px) {
    .live-in-faq-section {
        box-sizing: border-box;
        height: 629px;
        padding: 104px 0 89px;
    }

    .live-in-faq-section .container,
    .live-in-ready-section .container {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-faq-title {
        margin-bottom: 50px;
        font-size: 32px;
        line-height: 1.25;
    }

    .live-in-faq-accordion {
        width: 75%;
        max-width: 1440px;
    }

    .live-in-faq-item {
        margin-bottom: 16px;
        border-radius: 4px;
        box-shadow: 0 6px 17px rgba(0, 0, 0, 0.12);
    }

    .live-in-faq-item:first-child {
        margin-bottom: 23px;
    }

    .live-in-faq-button {
        min-height: 64px;
        padding: 16px 62px 16px 24px;
        color: #0e3c61;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.35;
    }

    .live-in-faq-button.collapsed {
        color: #222222;
        font-weight: 400;
    }

    .live-in-faq-button::after {
        right: 34px;
    }

    .live-in-faq-answer {
        box-sizing: border-box;
        height: 34px;
        padding: 0 24px 14px;
        color: #333333;
        font-size: 14px;
        line-height: 20px;
    }

    .live-in-faq-answer p {
        margin: 0;
    }

    .live-in-ready-section {
        box-sizing: border-box;
        height: 174px;
        padding: 38px 0 25px;
    }

    .live-in-ready-content h2 {
        margin-bottom: 24px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.3;
    }

    .live-in-ready-button {
        min-width: 240px;
        min-height: 56px;
        padding: 15px 34px;
        font-size: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Emirates Labour Market Award
|--------------------------------------------------------------------------
*/

.live-in-award-section {
    padding: 48px 0;
    background: #ffffff;
}

.live-in-award-container {
    width: 100%;
}

.live-in-award-picture {
    display: block;
    width: 100%;
    max-width: 1452px;
    margin: 0 auto;
}

.live-in-award-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/*
|--------------------------------------------------------------------------
| Award Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 1199.98px) {
    .live-in-award-section {
        padding: 40px 0;
    }

    .live-in-award-picture {
        max-width: 1080px;
    }
}

/*
|--------------------------------------------------------------------------
| Award Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {
    .live-in-award-section {
        padding: 54px 20px 47px;
    }

    .live-in-award-container {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-award-picture {
        width: 100%;
        max-width: none;
    }

    .live-in-award-image {
        width: 100%;
        height: auto;
        border-radius: 24px;
    }
}

/*
|--------------------------------------------------------------------------
| Award Small Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 374.98px) {
    .live-in-award-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .live-in-award-image {
        border-radius: 18px;
    }
}

@media screen and (max-width: 767.98px) {
    .live-in-hero-container {
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-why-choose,
    .live-in-hiring-section,
    .live-in-faq-section {
        box-sizing: border-box;
    }

    .live-in-hero,
    .live-in-hero-container {
        min-height: 518px;
        height: 518px;
    }

    .live-in-hero-logo {
        top: 20px;
        left: 20px;
        width: 170px;
    }

    .live-in-hero-content {
        top: 85px;
        left: 18px;
        width: calc(100% - 36px);
    }

    .live-in-hero-content h1 {
        margin: 22px 0 13px;
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: 0;
        font-weight: 700;
    }

    .live-in-hero .hero-title-second {
        margin-top: 3px;
    }

    .live-in-hero-content h2 {
        margin-bottom: 19px;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 500;
    }

    .live-in-hero-content p {
        margin-bottom: 29px;
        font-size: 14px;
        line-height: 1.5;
    }

    .live-in-hero .live-in-whatsapp-btn,
    .live-in-why-whatsapp,
    .live-in-included-button,
    .live-in-hiring-button,
    .live-in-ready-button {
        min-width: 202px;
        min-height: 48px;
        padding: 12px 26px;
        font-size: 16px;
    }

    .live-in-why-choose {
        padding: 36px 24px 30px;
        background: #DEE3E7;;
    }

    .live-in-why-choose .container {
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-why-choose .live-in-section-title {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 1.25;
    }

    .live-in-benefits-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .live-in-benefit-card {
        box-sizing: border-box;
        min-height: 80px;
        height: 80px;
        padding: 12px 20px;
        gap: 20px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.88);
    }

    .live-in-benefit-card p {
        min-width: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .live-in-benefit-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .live-in-benefit-icon img {
        display: block;
        max-width: 44px;
        max-height: 44px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .live-in-why-button-wrap {
        margin-top: 33px;
    }

    .live-in-included-section {
        padding: 34px 0 67px;
    }

    .live-in-included-title {
        max-width: 300px;
        margin: 0 auto 24px;
        padding: 0;
        font-size: 24px;
        line-height: 1.28;
    }

    .live-in-included-content {
        box-sizing: border-box;
        padding: 36px 33px 0;
    }

    .live-in-included-list {
        margin-bottom: 30px;
    }

    .live-in-included-list li {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.4;
    }

    .live-in-check-icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .live-in-included-button {
        align-self: center;
    }

    .live-in-hiring-section {
        min-height: 0;
        padding: 37px 20px 30px;
    }

    .live-in-hiring-container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .live-in-hiring-title {
        margin-bottom: 26px;
        font-size: clamp(18px, 5vw, 23px);
        line-height: 1.25;
    }

    .live-in-hiring-step {
        box-sizing: border-box;
        min-height: 64px;
        height: 64px;
        padding: 10px 20px;
        gap: 19px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.94);
    }

    .live-in-step-number {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .live-in-hiring-step p {
        font-size: 16px;
        line-height: 1.35;
    }

    .live-in-step-arrow {
        height: 41px;
    }

    .live-in-step-arrow::before {
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .live-in-hiring-note {
        max-width: 350px;
        margin: 24px auto 26px;
        font-size: 16px;
        line-height: 1.35;
    }

    .live-in-faq-section {
        padding: 48px 20px 42px;
    }

    .live-in-faq-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .live-in-faq-title {
        margin-bottom: 36px;
        font-size: 22px;
        line-height: 1.25;
    }

    .live-in-faq-accordion {
        max-width: none;
    }

    .live-in-faq-item {
        margin-bottom: 16px;
        border-radius: 4px;
        box-shadow: 0 6px 17px rgba(0, 0, 0, 0.10);
    }

    .live-in-faq-item:first-child {
        margin-bottom: 26px;
    }

    .live-in-faq-button {
        min-height: 64px;
        padding: 16px 54px 16px 24px;
        font-size: 16px;
        line-height: 1.35;
    }

    .live-in-faq-button.collapsed {
        color: #222222;
        font-weight: 400;
    }

    .live-in-faq-button::after {
        right: 18px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .live-in-faq-answer {
        box-sizing: border-box;
        height: 64px;
        padding: 0 24px 20px;
        color: #333333;
        font-size: 16px;
        line-height: 26px;
    }

    .live-in-faq-answer p {
        margin: 0;
    }

    .live-in-ready-section {
        box-sizing: border-box;
        height: 143px;
        padding: 20px 0 35px;
    }

    .live-in-ready-section .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .live-in-ready-content h2 {
        margin-bottom: 19px;
        font-size: 16px;
        line-height: 1.3;
    }
}

.footer{
    padding: 38px 0 25px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-text {
    grid-column: 2;
    text-align: center;
    white-space: nowrap;
    color: #0E3c61;
}

.footer-right {
    grid-column: 3;
    justify-self: end;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-icon {
    height: 32px;      /* Adjust to 28px or 32px if needed */
    width: auto;       /* Keeps the correct aspect ratio */
    display: block;
}

.medias {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media screen and (max-width: 767.98px) {
    .footer {
        padding: 28px 16px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-text {
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .payment-icons {
        justify-content: center;
    }

    .medias {
        justify-content: center;
        flex-wrap: wrap;
    }

    .payment-icon {
        height: 28px;
        width: auto;
    }

    .medias img {
        width: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 374.98px) {
    .footer-text {
        font-size: 12px;
    }

    .medias {
        gap: 8px;
    }

    .medias img {
        width: 28px;
        height: 28px;
    }

    .payment-icon {
        height: 25px;
    }
}

/*
|--------------------------------------------------------------------------
| Package Options
|--------------------------------------------------------------------------
*/

.live-in-package-options {
    padding: 62px 0 58px;
    background: #DEE3E7;
}

.live-in-package-options .container {
    max-width: 1440px;
}

/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
*/

.live-in-package-title {
    margin: 0 0 54px;

    color: #0E3C61;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Package Grid
|--------------------------------------------------------------------------
*/

.live-in-package-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 60px;
}

/*
|--------------------------------------------------------------------------
| Package Card
|--------------------------------------------------------------------------
*/

.live-in-package-card {
    position: relative;

    min-height: 116px;

    padding: 26px 26px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #0E3C61;
    border-radius: 7px;

    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Option Label
|--------------------------------------------------------------------------
*/

.live-in-package-label {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    min-width: 104px;
    min-height: 38px;

    padding: 8px 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 25px;

    background: #0E3C61;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Package Content
|--------------------------------------------------------------------------
*/

.live-in-package-card-content {
    width: 100%;
    text-align: center;
}

.live-in-package-price {
    margin-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;
}

.live-in-package-price strong {
    color: #111111;

    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

/* .live-in-old-price {
    position: relative;

    display: inline-block;

    color: #111111;
    font-size: 15px;
    font-weight: 500;
} */

/* .live-in-old-price::after {
    content: "";

    position: absolute;

    left: -4px;
    right: -4px;
    top: 52%;

    height: 2px;

    background: #df0000;

    transform: rotate(4deg);
    transform-origin: center;
} */

.live-in-package-card p {
    margin: 0;

    color: #111111;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

/*
|--------------------------------------------------------------------------
| Back To School Promo
|--------------------------------------------------------------------------
*/

/* .live-in-package-card-promo {
    padding-left: 120px;
} */

.live-in-school-offer {
    position: absolute;

    left: 0;
    top: -1px;
    bottom: -1px;

    width: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border-radius: 7px 0 0 7px;

    background: #0E3C61;
}

.live-in-school-offer-img {
    display: block;
    width: 100%;
    max-width: 90px;
    height: auto;
    object-fit: contain;
}

/*
|--------------------------------------------------------------------------
| Processing Text
|--------------------------------------------------------------------------
*/

.live-in-package-processing {
    margin: 52px 0 22px;

    color: #111111;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Button
|--------------------------------------------------------------------------
*/

.live-in-package-button-wrap {
    text-align: center;
}

.live-in-package-whatsapp {
    min-width: 240px;
    min-height: 56px;

    padding: 14px 30px;

    border-radius: 56px;

    font-size: 18px;
}
@media screen and (max-width: 1199.98px) {

    .live-in-package-options {
        padding: 52px 0 50px;
    }

    .live-in-package-grid {
        gap: 28px;
    }

    .live-in-package-card {
        min-height: 110px;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* .live-in-package-card-promo {
        padding-left: 100px;
    } */

    .live-in-school-offer {
        width: 92px;
    }

    .live-in-package-price strong {
        font-size: 21px;
    }

    .live-in-package-card p {
        font-size: 11px;
    }
}
@media screen and (max-width: 767.98px) {

    .live-in-package-options {
        padding: 34px 12px 36px;
    }

    .live-in-package-title {
        margin-bottom: 36px;

        font-size: 22px;
    }

    .live-in-package-grid {
        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .live-in-package-card {
        width: 100%;
        min-height: 105px;

        padding: 28px 15px 17px;
    }

    .live-in-package-label {
        min-width: 88px;
        min-height: 31px;

        padding: 7px 13px;

        font-size: 11px;
    }

    .live-in-package-price {
        gap: 9px;
    }

    .live-in-package-price strong {
        font-size: 20px;
    }

    /* .live-in-old-price {
        font-size: 12px;
    } */

    .live-in-package-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    /*
    |--------------------------------------------------------------------------
    | Promo card on mobile
    |--------------------------------------------------------------------------
    */

    /* .live-in-package-card-promo {
        padding-left: 92px;
    } */

    .live-in-school-offer {
        width: 80px;

        padding: 10px 5px;

        font-size: 10px;
    }

    .live-in-school-offer strong {
        font-size: 13px;
    }

    /*
    |--------------------------------------------------------------------------
    | Processing / Button
    |--------------------------------------------------------------------------
    */

    .live-in-package-processing {
        max-width: 330px;

        margin: 30px auto 20px;

        font-size: 11px;
        line-height: 1.45;
    }

    .live-in-package-whatsapp {
        min-width: 150px;
        min-height: 42px;

        padding: 10px 22px;

        font-size: 13px;
    }
}
@media screen and (max-width: 767.98px) {
    .live-in-school-offer {
        width: 80px;
        padding: 7px;
    }

    .live-in-school-offer-img {
        max-width: 66px;
    }
}
/*
|--------------------------------------------------------------------------
| TV2 - What's Included in the Package
|--------------------------------------------------------------------------
*/

.tv2-included-section {
    padding: 58px 0 70px;
    background: #ffffff;
}

.tv2-included-title {
    margin: 0 0 54px;

    color: #0E3C61;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Main Layout
|--------------------------------------------------------------------------
*/

.tv2-included-wrap {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    align-items: start;

    /* exact image width + remaining content */
    grid-template-columns: 680px minmax(0, 1fr);
    gap: 60px;
}

/* .tv2-included-picture {
    display: block;

    width: 680px;
    height: 403px;
} */

.tv2-included-image {
    display: block;

    width: 680px;
    height: 403px;

    object-fit: cover;
}

/*
|--------------------------------------------------------------------------
| Right Content
|--------------------------------------------------------------------------
*/

.tv2-included-content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/*
|--------------------------------------------------------------------------
| Main List
|--------------------------------------------------------------------------
*/

.tv2-included-list {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tv2-included-list > li {
    margin-bottom: 16px;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    color: #111111;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.tv2-included-list > li:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Check Icon
|--------------------------------------------------------------------------
*/

.tv2-check-icon {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    margin-top: 1px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0E3C61;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Processing Support Nested List
|--------------------------------------------------------------------------
*/

.tv2-processing-support-content {
    flex: 1;
}

.tv2-processing-sublist {
    margin: 5px 0 0 22px;
    padding-left: 18px;

    list-style: disc;
}

.tv2-processing-sublist li {
    margin-bottom: 2px;

    color: #111111;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.tv2-processing-sublist li:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Exclusion Note
|--------------------------------------------------------------------------
*/

.tv2-included-note {
    margin: 16px 0 30px;

    color: #111111;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Button
|--------------------------------------------------------------------------
*/

.tv2-included-button {
    min-width: 240px;
    min-height: 56px;

    padding: 14px 30px;

    border-radius: 56px;

    font-size: 18px;
}
/*
|--------------------------------------------------------------------------
| TV2 Included - Tablet
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991.98px) {

    .tv2-included-section {
        padding: 45px 0 50px;
    }

    .tv2-included-title {
        margin-bottom: 36px;

        font-size: 26px;
    }

    .tv2-included-wrap {
        max-width: 760px;

        gap: 35px;
    }

    .tv2-included-list > li {
        margin-bottom: 13px;

        font-size: 13px;
    }

    .tv2-processing-sublist li {
        font-size: 12px;
    }
}


/*
|--------------------------------------------------------------------------
| TV2 Included - Mobile
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767.98px) {

    .tv2-included-section {
        padding: 32px 0 40px;
    }

    .tv2-included-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .tv2-included-title {
        max-width: 280px;

        margin: 0 auto 22px;

        padding: 0 12px;

        font-size: 20px;
        line-height: 1.25;
    }

    .tv2-included-wrap {
        max-width: none;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobile Image
    |--------------------------------------------------------------------------
    */



    /*
    |--------------------------------------------------------------------------
    | Mobile Content
    |--------------------------------------------------------------------------
    */

    .tv2-included-content {
        width: 100%;

        padding: 22px 18px 0;
    }

    .tv2-included-list > li {
        margin-bottom: 13px;

        gap: 10px;

        font-size: 12px;
        line-height: 1.35;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobile Check
    |--------------------------------------------------------------------------
    */

    .tv2-check-icon {
        flex-basis: 18px;

        width: 18px;
        height: 18px;

        font-size: 10px;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobile Sub List
    |--------------------------------------------------------------------------
    */

    .tv2-processing-sublist {
        margin-top: 5px;
        margin-left: 14px;

        padding-left: 14px;
    }

    .tv2-processing-sublist li {
        margin-bottom: 2px;

        font-size: 11px;
        line-height: 1.3;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobile Note
    |--------------------------------------------------------------------------
    */

    .tv2-included-note {
        margin: 14px 0 20px;

        font-size: 10.5px;
        line-height: 1.4;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobile Button
    |--------------------------------------------------------------------------
    */

    .tv2-included-button {
        align-self: center;

        min-width: 150px;
        min-height: 42px;

        padding: 10px 22px;

        font-size: 13px;
    }
}
/*
|--------------------------------------------------------------------------
| TV2 - Why Choose Tadbeer 2 Years Visa Package
|--------------------------------------------------------------------------
*/

.tv2-why-choose {
    position: relative;

    padding: 58px 0 50px;

    background: #DEE3E7;
}

.tv2-why-choose .container {
    max-width: 1440px;
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.tv2-why-title {
    margin: 0 0 46px;

    color: #0E3C61;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
*/

.tv2-why-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 24px 60px;
}

/*
|--------------------------------------------------------------------------
| Top Row
|--------------------------------------------------------------------------
*/

.tv2-why-card-1 {
    grid-column: 1 / span 2;
}

.tv2-why-card-2 {
    grid-column: 3 / span 2;
}

.tv2-why-card-3 {
    grid-column: 5 / span 2;
}

/*
|--------------------------------------------------------------------------
| Bottom Row - Centered
|--------------------------------------------------------------------------
*/

.tv2-why-card-4 {
    grid-column: 2 / span 2;
}

.tv2-why-card-5 {
    grid-column: 4 / span 2;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
*/

.tv2-why-card {
    min-height: 116px;

    padding: 20px 34px;

    display: flex;
    align-items: center;

    gap: 28px;

    border: 1px solid #0E3C61;
    border-radius: 7px;

    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Icon
|--------------------------------------------------------------------------
*/

.tv2-why-icon {
    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tv2-why-icon img {
    display: block;

    max-width: 56px;
    max-height: 56px;

    width: auto;
    height: auto;

    object-fit: contain;
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
*/

.tv2-why-card p {
    margin: 0;

    color: #111111;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Button
|--------------------------------------------------------------------------
*/

.tv2-why-button-wrap {
    margin-top: 38px;

    text-align: center;
}

.tv2-why-whatsapp {
    min-width: 240px;
    min-height: 56px;

    padding: 14px 30px;

    border-radius: 56px;

    font-size: 18px;
}
@media screen and (max-width: 1199.98px) {

    .tv2-why-choose {
        padding: 50px 0 46px;
    }

    .tv2-why-title {
        margin-bottom: 38px;

        font-size: 27px;
    }

    .tv2-why-grid {
        gap: 20px 28px;
    }

    .tv2-why-card {
        min-height: 105px;

        padding: 18px 22px;

        gap: 20px;
    }

    .tv2-why-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;
    }

    .tv2-why-icon img {
        max-width: 46px;
        max-height: 46px;
    }

    .tv2-why-card p {
        font-size: 14px;
    }
}
@media screen and (max-width: 767.98px) {

    .tv2-why-choose {
        padding: 30px 12px 34px;
    }

    .tv2-why-title {
        max-width: 310px;

        margin: 0 auto 26px;

        font-size: 20px;
        line-height: 1.3;
    }

    .tv2-why-grid {
        display: flex;
        flex-direction: column;

        gap: 10px;
    }

    .tv2-why-card {
        width: 100%;
        min-height: 64px;

        padding: 10px 14px;

        gap: 14px;

        border-radius: 5px;
    }

    .tv2-why-icon {
        flex-basis: 36px;

        width: 36px;
        height: 36px;
    }

    .tv2-why-icon img {
        max-width: 36px;
        max-height: 36px;
    }

    .tv2-why-card p {
        font-size: 11px;
        line-height: 1.3;
    }

    .tv2-why-button-wrap {
        margin-top: 22px;
    }

    .tv2-why-whatsapp {
        min-width: 150px;
        min-height: 42px;

        padding: 10px 22px;

        font-size: 13px;
    }
}
