/* Start custom CSS for html, class: .elementor-element-a25746d *//* =========================================================
   CENTRAL LONDON PAGE
   PREMIUM EDITORIAL DESIGN
========================================================= */

:root {
    --cl-primary: #5D3140;
    --cl-pink: #CF4173;
    --cl-light-pink: #F39399;
    --cl-cream: #F6D8BD;
    --cl-white: #FFF9F6;
    --cl-dark: #321B24;
    --cl-text: #4A3038;
    --cl-muted: #806B71;
    --cl-border: rgba(93, 49, 64, 0.15);
    --cl-container: 1380px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--cl-white);
    color: var(--cl-text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.cl-container {
    width: min(calc(100% - 80px), var(--cl-container));
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.cl-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cl-primary);
}

.cl-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(243, 147, 153, 0.35),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(207, 65, 115, 0.35),
            transparent 35%
        );

    transform: scale(1.05);
}

.cl-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(93, 49, 64, 1) 0%,
            rgba(93, 49, 64, 0.94) 40%,
            rgba(93, 49, 64, 0.72) 100%
        );
}

.cl-hero-inner {
    position: relative;
    z-index: 2;
    padding: 130px 0 100px;
}

.cl-hero-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--cl-cream);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 30px;
}

.cl-hero-label span {
    width: 38px;
    height: 1px;
    background: var(--cl-light-pink);
}

.cl-hero h1 {
    max-width: 1000px;

    margin: 0;

    color: #fff;

    font-size: clamp(56px, 8vw, 118px);
    line-height: 0.91;

    letter-spacing: -5px;
    font-weight: 800;
}

.cl-hero h1 em {
    display: block;

    font-family: Georgia, serif;
    font-weight: 400;

    color: var(--cl-cream);

    letter-spacing: -4px;
}

.cl-hero h1 strong {
    display: block;

    margin-top: 24px;

    color: var(--cl-light-pink);

    font-size: 0.52em;

    letter-spacing: -1px;
}

.cl-hero p {
    max-width: 690px;

    margin: 42px 0 32px;

    color: rgba(255, 249, 246, 0.82);

    font-size: 17px;
    line-height: 1.8;
}

.cl-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cl-btn {
    min-height: 58px;

    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

.cl-btn-primary {
    background: var(--cl-cream);
    color: var(--cl-primary);
}

.cl-btn-primary:hover {
    background: var(--cl-pink);
    color: #fff;

    transform: translateY(-3px);
}

.cl-btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}

.cl-btn-outline:hover {
    background: #fff;
    color: var(--cl-primary);
}

.cl-hero-contact {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 55px;
}

.cl-hero-contact span {
    color: rgba(255,255,255,0.5);

    font-size: 10px;
    letter-spacing: 3px;
}

.cl-hero-contact a {
    color: var(--cl-cream);

    font-size: 15px;
    font-weight: 700;
}

.cl-scroll {
    position: absolute;

    right: 50px;
    bottom: 40px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,0.6);

    font-size: 9px;
    letter-spacing: 3px;
}

.cl-scroll i {
    width: 45px;
    height: 1px;

    background: var(--cl-light-pink);
}


/* =========================================================
   GENERAL HEADINGS
========================================================= */

.cl-number {
    color: var(--cl-pink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.cl-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 70px;
}

.cl-heading h2,
.cl-section-top h2,
.cl-services-title h2,
.cl-seo h2,
.cl-final h2 {
    margin: 15px 0 0;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;

    letter-spacing: -3px;

    color: var(--cl-primary);
}

.cl-heading h2 span,
.cl-section-top h2 span,
.cl-services-title h2 span,
.cl-seo h2 span,
.cl-final h2 span {
    display: block;

    font-family: Georgia, serif;
    font-weight: 400;

    color: var(--cl-pink);
}

.cl-heading > p {
    max-width: 420px;

    margin: 0;

    color: var(--cl-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.cl-intro {
    padding: 130px 0;

    background: var(--cl-cream);
}

.cl-section-top {
    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 50px;
}

.cl-section-top h2 {
    margin: 0;
}

.cl-intro-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 100px;

    margin-top: 85px;

    opacity: 0;

    transform: translateY(30px);

    transition: 0.8s ease;
}

.cl-intro-grid.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-intro-large p {
    margin: 0;

    font-family: Georgia, serif;

    font-size: clamp(28px, 3vw, 44px);

    line-height: 1.25;

    color: var(--cl-primary);
}

.cl-intro-large strong {
    color: var(--cl-pink);
}

.cl-intro-text {
    padding-top: 8px;
}

.cl-intro-text p {
    margin: 0 0 22px;

    color: var(--cl-muted);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   TALENT
========================================================= */

.cl-talent {
    padding: 130px 0;

    background: var(--cl-white);
}

.cl-talent-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.cl-talent-card {
    position: relative;

    min-height: 390px;

    padding: 32px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--cl-primary);

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.4s ease,
        background 0.4s ease;
}

.cl-talent-card.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-talent-card::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(246,216,189,0.25);

    transition: 0.5s ease;
}

.cl-talent-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            transparent 30%,
            rgba(207,65,115,0.25)
        );
}

.cl-talent-card:hover {
    transform: translateY(-8px);

    background: #713b4d;
}

.cl-talent-card:hover::before {
    transform: scale(1.3);
}

.cl-card-number {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 2;

    color: var(--cl-light-pink);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.cl-card-content {
    position: relative;

    z-index: 3;
}

.cl-card-content > span {
    color: var(--cl-light-pink);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.cl-card-content h3 {
    margin: 12px 0 12px;

    color: var(--cl-cream);

    font-family: Georgia, serif;

    font-size: 29px;

    line-height: 1.08;

    font-weight: 400;
}

.cl-card-content p {
    margin: 0 0 25px;

    color: rgba(255,255,255,0.68);

    font-size: 12px;

    line-height: 1.7;
}

.cl-card-content strong {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    color: #fff;

    font-size: 9px;

    letter-spacing: 2px;
}

.cl-card-content strong b {
    color: var(--cl-light-pink);

    font-size: 17px;
}


/* =========================================================
   SERVICES
========================================================= */

.cl-services {
    padding: 130px 0;

    background: var(--cl-primary);

    color: #fff;
}

.cl-services-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 110px;
}

.cl-services .cl-number {
    color: var(--cl-light-pink);
}

.cl-services-title h2 {
    color: var(--cl-cream);
}

.cl-services-title h2 span {
    color: var(--cl-light-pink);
}

.cl-services-intro {
    max-width: 650px;

    margin: 0 0 50px;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: 1.35;

    color: var(--cl-cream);
}

.cl-service-list {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cl-service-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 25px;

    padding: 29px 0;

    border-bottom: 1px solid rgba(255,255,255,0.2);

    opacity: 0;

    transform: translateX(25px);

    transition: 0.7s ease;
}

.cl-service-item.cl-visible {
    opacity: 1;

    transform: translateX(0);
}

.cl-service-item > span {
    color: var(--cl-light-pink);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.cl-service-item h3 {
    margin: 0 0 9px;

    color: var(--cl-cream);

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;
}

.cl-service-item p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   AREAS
========================================================= */

.cl-areas {
    padding: 130px 0;

    background: var(--cl-cream);
}

.cl-area-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.cl-area-card {
    min-height: 230px;

    padding: 28px;

    background: rgba(255,255,255,0.48);

    border: 1px solid var(--cl-border);

    transition: 0.35s ease;

    opacity: 0;

    transform: translateY(25px);
}

.cl-area-card.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-area-card:hover {
    background: var(--cl-primary);

    transform: translateY(-6px);
}

.cl-area-card > span {
    color: var(--cl-pink);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.cl-area-card h3 {
    margin: 35px 0 8px;

    color: var(--cl-primary);

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 400;
}

.cl-area-card p {
    margin: 0;

    color: var(--cl-muted);

    font-size: 12px;

    line-height: 1.6;
}

.cl-area-card:hover h3 {
    color: var(--cl-cream);
}

.cl-area-card:hover p {
    color: rgba(255,255,255,0.68);
}

.cl-area-card:hover > span {
    color: var(--cl-light-pink);
}


/* =========================================================
   SEO
========================================================= */

.cl-seo {
    padding: 110px 0;

    background: var(--cl-white);
}

.cl-seo-box {
    padding: 75px;

    background: var(--cl-cream);

    border: 1px solid var(--cl-border);

    opacity: 0;

    transform: translateY(30px);

    transition: 0.8s ease;
}

.cl-seo-box.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-seo-label {
    margin-bottom: 25px;

    color: var(--cl-pink);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.cl-seo h2 {
    max-width: 900px;

    margin-bottom: 60px;
}

.cl-seo-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    max-width: 1100px;
}

.cl-seo-content p {
    margin: 0;

    color: var(--cl-muted);

    font-size: 15px;

    line-height: 1.9;
}

.cl-seo-content strong {
    color: var(--cl-primary);
}


/* =========================================================
   FAQ
========================================================= */

.cl-faq {
    padding: 120px 0;

    background: var(--cl-white);
}

.cl-faq-list {
    max-width: 1050px;

    opacity: 0;

    transform: translateY(30px);

    transition: 0.8s ease;
}

.cl-faq-list.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-faq details {
    border-top: 1px solid var(--cl-border);

    padding: 25px 0;
}

.cl-faq details:last-child {
    border-bottom: 1px solid var(--cl-border);
}

.cl-faq summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    list-style: none;

    color: var(--cl-primary);

    font-size: 18px;

    font-weight: 600;
}

.cl-faq summary::-webkit-details-marker {
    display: none;
}

.cl-faq summary span {
    color: var(--cl-pink);

    font-size: 25px;

    font-weight: 400;

    transition: 0.3s ease;
}

.cl-faq details[open] summary span {
    transform: rotate(45deg);
}

.cl-faq details p {
    max-width: 850px;

    margin: 20px 0 0;

    color: var(--cl-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.cl-final {
    position: relative;

    padding: 150px 0;

    overflow: hidden;

    background: var(--cl-dark);
}

.cl-final-decoration {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(207,65,115,0.35),
            transparent 65%
        );
}

.cl-final-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    opacity: 0;

    transform: translateY(30px);

    transition: 0.8s ease;
}

.cl-final-content.cl-visible {
    opacity: 1;

    transform: translateY(0);
}

.cl-final .cl-number {
    color: var(--cl-light-pink);
}

.cl-final h2 {
    color: var(--cl-cream);
}

.cl-final h2 span {
    color: var(--cl-light-pink);
}

.cl-final p {
    max-width: 700px;

    margin: 35px 0;

    color: rgba(255,255,255,0.68);

    font-size: 16px;

    line-height: 1.8;
}

.cl-final-buttons {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.cl-final-btn {
    min-height: 58px;

    padding: 0 30px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    background: var(--cl-pink);

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: 0.3s ease;
}

.cl-final-btn:hover {
    background: var(--cl-cream);

    color: var(--cl-primary);
}

.cl-final-phone {
    color: var(--cl-cream);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.cl-floating {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 99;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cl-pink);

    color: #fff;

    box-shadow: 0 12px 35px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}

.cl-floating strong {
    font-size: 20px;
}

.cl-floating span {
    position: absolute;

    right: 75px;

    white-space: nowrap;

    padding: 9px 12px;

    background: var(--cl-dark);

    color: #fff;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0;

    transform: translateX(10px);

    transition: 0.3s ease;
}

.cl-floating:hover {
    background: var(--cl-light-pink);

    transform: translateY(-4px);
}

.cl-floating:hover span {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .cl-container {
        width: min(
            calc(100% - 50px),
            var(--cl-container)
        );
    }

    .cl-talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cl-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cl-services-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cl-container {
        width: calc(100% - 34px);
    }

    .cl-hero {
        min-height: 720px;
    }

    .cl-hero-inner {
        padding: 100px 0 80px;
    }

    .cl-hero h1 {
        font-size: clamp(47px, 14vw, 72px);

        letter-spacing: -3px;
    }

    .cl-hero h1 em {
        letter-spacing: -2px;
    }

    .cl-hero p {
        font-size: 15px;

        line-height: 1.7;
    }

    .cl-scroll {
        display: none;
    }

    .cl-hero-contact {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        margin-top: 40px;
    }


    /* HEADINGS */

    .cl-intro,
    .cl-talent,
    .cl-services,
    .cl-areas,
    .cl-faq {
        padding: 85px 0;
    }

    .cl-section-top {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cl-heading {
        display: block;

        margin-bottom: 45px;
    }

    .cl-heading > p {
        margin-top: 25px;
    }


    /* INTRO */

    .cl-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 50px;
    }


    /* TALENT */

    .cl-talent-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .cl-talent-card {
        min-height: 330px;

        padding: 20px;
    }

    .cl-card-content h3 {
        font-size: 23px;
    }

    .cl-card-content p {
        font-size: 10px;
    }


    /* SERVICES */

    .cl-services-layout {
        gap: 55px;
    }

    .cl-services-intro {
        font-size: 23px;
    }

    .cl-service-item {
        grid-template-columns: 35px 1fr;

        gap: 15px;
    }

    .cl-service-item h3 {
        font-size: 17px;
    }


    /* AREAS */

    .cl-area-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .cl-area-card {
        min-height: 200px;

        padding: 20px;
    }

    .cl-area-card h3 {
        margin-top: 25px;

        font-size: 23px;
    }


    /* SEO */

    .cl-seo {
        padding: 75px 0;
    }

    .cl-seo-box {
        padding: 35px 25px;
    }

    .cl-seo h2 {
        margin-bottom: 35px;
    }

    .cl-seo-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* FAQ */

    .cl-faq summary {
        font-size: 15px;

        line-height: 1.5;
    }


    /* FINAL */

    .cl-final {
        padding: 100px 0;
    }

    .cl-final-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .cl-floating {
        right: 17px;

        bottom: 17px;

        width: 56px;
        height: 56px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .cl-talent-grid {
        grid-template-columns: 1fr;
    }

    .cl-talent-card {
        min-height: 300px;
    }

    .cl-area-grid {
        grid-template-columns: 1fr;
    }

    .cl-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .cl-btn {
        width: 100%;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--cl-light-pink);

    outline-offset: 4px;
}/* End custom CSS */