:root {
    --primary: #F11478;
    --primary-light: #603f832b;
    --secondary: #e69a8d;
    --white: #f8f9fa;
    --black: #000
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Roboto, sans-serif;
    font-size: 18px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2e49e2 !important
}

h1 {
    font-size: 35px
}

section {
    padding: 60px 0
}

a {
    text-decoration: none;
    color: var(--black);
    transition: all .2s ease-in-out
}

a:hover {
    color: var(--secondary)
}

a:focus,
button:focus {
    box-shadow: none !important
}

.text-primary {
    color: #2e49e2 !important
}

.bgc-primary {
    background-color: var(--black)
}

.bgc-secondary {
    background-color: var(--secondary)
}

.badge.text-bg-primary {
    color: var(--white) !important;
    background-color: var(--primary) !important
}

.btn:hover {
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary)
}

.btn-primary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px var(--black);
    --bs-btn-disabled-color: var(--white);
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary)
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: #1d8a38
}

a.navbar-brand {
    max-width: 150px;
    display: block
}

section.banner {
    position: relative;
    padding: 0
}

.nav-link {
    --bs-nav-link-color: var(--white);
    --bs-nav-link-font-weight: 500
}

.nav-link:focus,
.nav-link:hover {
    --bs-nav-link-hover-color: var(--white)
}

footer,
footer a {
    color: var(--white)
}

footer {
    padding: 50px 0 70px
}

.model-card>img {
    max-height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.escort-card {
    --bs-card-border-color: var(--primary-light)
}

.escort-card .escort-img {
    max-height: 235px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.image-box-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    gap: 10px;
    padding: 15px 0;
    margin: 0 20px;
    margin-top: -30px;
    z-index: 99;
    position: relative;
    border-radius: 20px
}

@media (min-width:992px) and (max-width:1199px) {
    .escort-card .escort-img {
        max-height: fit-content;
        height: 100%
    }
}

.faq-section .accordion-button:not(.collapsed) {
    --bs-accordion-active-color: var(--white);
    --bs-accordion-active-bg: #739728
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(1)
}

@media (min-width:992px) {
    .nav-link {
        padding: 1rem 0;
        position: relative
    }

    .nav-link::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background-color: var(--white);
        -o-transition: all cubic-bezier(.175, .885, .32, 1.275);
        transition: all cubic-bezier(.175, .885, .32, 1.275)
    }

    .nav-link:hover::before {
        width: 100%
    }
}

@media (max-width:991px) {
    section {
        padding: 30px 0
    }
}

.location-tag {
    background: linear-gradient(90deg, rgb(46 106 12) 0, rgba(128, 0, 128) 51%, rgb(166 211 109) 100%);
    color: #fff
}

.location-tag a {
    color: var(--white)
}

.product-list-detail span {
    display: flex;
    column-gap: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #4a4b51;
    text-transform: capitalize
}

.product-list-box {
    position: relative
}

.product-list-box .product-inner-list {
    border: solid 1px #9579c5;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    column-gap: 15px;
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    transition: all .15s ease-out;
    width: 100%;
    overflow: hidden;
    align-items: center
}

.product-img {
    width: 210px
}

.product-img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.product-list-detail {
    width: calc(100% - 250px)
}

.product-list-detail h4 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
    color: #2f2c2c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.product-list-detail p {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    padding-right: 40px;
    margin: 0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.product-list-detail ul {
    margin: 20px 0;
    padding: 0;
    display: flex;
    column-gap: 10px
}

.product-list-detail ul li {
    display: inline-block;
    background: #f7f7f7;
    font-size: 14px;
    font-weight: 600;
    color: #2f2c2c;
    padding: 6px 15px;
    border-radius: 4px
}

.share-btn-right.call-info-btn {
    border: none;
    box-shadow: none
}

.call-info-btn .thm-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 24px
}

.thm-btn {
    background: var(--primary);
    padding: 12px 24px;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 16px
}

.call-info-btn {
    box-shadow: 0 4px 110px 0 #00000012;
    max-width: 440px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    box-sizing: border-box;
    margin: -50px auto 0;
    display: flex;
    align-items: center;
    column-gap: 25px;
    justify-content: center;
    position: relative
}

.call-info-btn-mob {
    display: none
}

.whatsapp-btn {
    background: #29a71a
}

.share-btn-right {
    margin-top: -25px;
    float: right
}

.product-list-detail span#spanPhone {
    color: var(--white)
}

.bg-dark-section {
    background: linear-gradient(90deg, rgb(63 54 61) 0, rgb(0 128 91) 51%, rgb(87 155 45) 100%)
}

.profile-gallery ul li {
    margin: 5px;
    list-style: none;
    float: left;
    display: grid;
    gap: 20px;
    width: 31%
}

.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999
}

.lcol,
.rcol {
    float: left;
    width: 50%
}

.lcol {
    background-color: #b7008d
}

.lcol a,
.rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff
}

.rcol {
    background-color: #06b27d
}

.service_price_list {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    text-align: center
}

.city-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center
}

.gallery_image img {
    border-radius: 10px
}

@media (max-width:991.98px) {
    .city-lists {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:767.98px) {
    .city-lists {
        grid-template-columns: repeat(1, 1fr)
    }
}