
/*

Brows & Lashes

*/

.services-brows-lashes__body {
    margin-bottom: 80px;
}
@media (max-width: 768px) {
    .services-brows-lashes__body {
        margin-bottom: 40px;
    }
}
.services-brows-lashes__wrapper {
    margin-top: 30px;
}

.services-brows-lashes {
    display: flex;
    gap: 80px;
}

.services-brows-lashes__left {
    width: 300px;
    flex-shrink: 0;
}

.services-brows-lashes__sticky {
    position: sticky;
    top: 60px;
}

.services-brows-lashes__left img {
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.services-brows-lashes__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-brows-lashes__combo-deal {
    margin-top: 80px;
}
@media (max-width: 991px) {
    .services-brows-lashes__combo-deal {
        margin-top: 40px;
    }
}

.services-brows-lashes__combo-deal-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

.marquee__inner {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 22s linear infinite;
}

.marquee__inner span {
    font-size: 25px;
    line-height: 75px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #053BD2;
    margin-right: 5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .services-brows-lashes {
        flex-direction: column;
        gap: 40px;
    }

    .services-brows-lashes__left {
        width: 100%;
        flex-shrink: 0;
    }

    .services-brows-lashes__left img {
        max-width: 300px;
    }

    .services-brows-lashes__sticky {
        position: relative;
        top: 0;
        text-align: center;
    }
}

/*

Add ons

*/

.services-add-ons__wrapper {
    margin-top: 80px;
}


.services-add-ons__head {
    background: #053bd2;
    padding: 20px 40px;
    margin-bottom: 60px;
}

.services-add-ons__title {
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Soulcraft', sans-serif;
    text-align: center;
}

.services-add-ons {
    display: flex;
    gap: 80px;
}


.services-add-ons__left {
    width: 300px;
    flex-shrink: 0;
}

.services-add-ons__sticky {
    position: sticky;
    top: 60px;
}

.services-add-ons__left img {
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.services-add-ons__info {
    font-size: 17px;
    color: #053BD2;
    text-transform: uppercase;
    margin-top: 30px;
}

.services-add-ons__info strong {
    font-weight: 700;
}

.services-add-ons__info p:not(:last-child) {
    margin-bottom: 20px;
}

.services-add-ons__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 991px) {
    .services-add-ons__wrapper {
        margin-top: 40px;
    }

    .services-add-ons {
        flex-direction: column;
        gap: 40px;
    }

    .services-add-ons__title {
        font-size: 25px;
    }

    .services-add-ons__left {
        width: 100%;
        flex-shrink: 0;
    }

    .services-add-ons__left img {
        max-width: 300px;
    }

    .services-add-ons__sticky {
        position: relative;
        top: 0;
        text-align: center;
    }

    .services-add-ons__info {
        display: none;
    }

    .services-add-ons__info {
        font-size: 16px;
        margin-top: 20px;
    }

    .services-add-ons__info p:not(:last-child) {
        margin-bottom: 15px;
    }
}