:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1fe45b5 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}


/* MAIN PAGE */

.services-page {
    max-width: 1400px;
    margin: auto;
    padding: 55px 70px 35px;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(239, 145, 165, 0.15),
            transparent 30%
        ),
        #050505;

    border: 1px solid #d88a9d;
}


/* TOP TITLE */

.top-script {
    text-align: center;

    font-family: 'Allura', cursive;
    font-size: 65px;

    color: #f3a0b1;

    line-height: 0.7;
}

.services-page > h1 {
    text-align: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: 65px;
    font-weight: 600;

    letter-spacing: 7px;

    color: #ffffff;
}


/* HEADING LINE */

.heading-line {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;

    margin: 15px 0 45px;
}

.heading-line span {
    width: 230px;
    height: 1px;

    background: #e995a7;
}

.heading-line b {
    color: #f3a0b1;
    font-size: 22px;
}


/* GRID */

.service-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;
}


/* SERVICE BOX */

.service-box {
    margin-bottom: 42px;
}

.service-box h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;

    letter-spacing: 2px;

    color: #f4a7b7;

    padding: 7px 15px;

    border-left: 3px solid #ef94a7;

    background: linear-gradient(
        90deg,
        rgba(226, 128, 150, 0.25),
        transparent
    );

    margin-bottom: 16px;
}


/* PRICE ITEMS */

.item {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 13px 0;

    font-size: 16px;
}

.item span {
    white-space: nowrap;
}

.item i {
    flex: 1;

    border-bottom: 2px dotted #777;

    height: 1px;
}

.item strong {
    color: #f4a1b2;

    font-size: 17px;

    font-weight: 500;

    white-space: nowrap;
}


/* WAX TABLE */

.wax-heading,
.wax-row {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    gap: 20px;

    margin: 12px 0;

    font-size: 16px;
}

.wax-heading {
    color: #f2d95c;

    font-size: 18px;

    margin-bottom: 16px;
}

.wax-row span:nth-child(2),
.wax-row span:nth-child(3) {
    text-align: center;
}


/* PREMIUM CARD */

.premium-card {
    min-height: 380px;

    margin-top: 60px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    border: 1px solid rgba(239, 145, 165, 0.45);

    background:
        radial-gradient(
            circle,
            rgba(239, 145, 165, 0.13),
            transparent 65%
        );

    position: relative;
}

.premium-card::before {
    content: "";/* End custom CSS */