@import url('../css2');

: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 */
.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;
    margin-top: 80px;
}
/*.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #274690 0%, #0077B6 40%, rgba(210, 5, 104, 0) 100%);
    background-image: linear-gradient(90deg, #274690 0%, #0077B6 40%, #274690 100%); 
}*/
.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,
footer {
    color: var(--white);
}
footer{
    padding: 50px 0 70px;
}


/* model card */
.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 */
.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;
}

.escorts-lising .main-image {
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
}

.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%;
    }
}

/* model popup */
.model-pop-detail>li:nth-child(even) {
    background-color: var(--primary-light);
}

.model-pop-detail>li>strong {
    flex-basis: 120px;
}

/* model table */
.model-list-table thead th {
    --bs-table-bg: var(--primary);
    --bs-table-color-state: var(--white);
}

.model-list-table.table-hover>tbody>tr:hover>* {
    --bs-table-bg-state: var(--secondary);
}

.model-list-table.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-striped-bg: var(--primary-light);
}

/* faq section */
.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);
}

.grid-column {
    column-count: 3;
    column-gap: 1rem;
}

@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(0.175, 0.885, 0.32, 1.275);
        transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-link:hover::before {
        width: 100%;
    }
}

@media (max-width: 991px) {
    section {
        padding: 30px 0;
    }
}
.bookform {
    padding: 46px 30px;
    background: var(--primary);
    border-radius: 16px;
}
.bookform .form-control:focus {
    box-shadow: 0 0 0 0.15rem var(--secondary);
    border-color: #fff;
}
.form-group {
    margin: 20px 0;
}
.btn.bttn_form {
    padding: 10px 20px;
    background: var(--black);
    color: #fff;
}
.pro-social {
    display: flex;
    flex-flow: row;
    justify-content: left;
    gap: 20px;
}
.pro-social .fa-phone {
    background-color: #ba1b1b;
    color: var(--white);
}
.pro-social i {
    border-radius: 5px;
    padding: 6px 9px;
    margin-top: 5px;
    font-size: 1.6rem;
    background-color: #33EB00;
    color: var(--white);
}
.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);
}
.custom-dark-bg{
    background: var(--black);
}
.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: 0px 4px 110px 0px #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 {
/*    display: inline-block;*/
    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%;
}
.characteristics-girl-info ul {
    max-width: 650px;
    margin: 0;
    padding: 0;
    border: solid 1px #CECECE;
    border-radius: 8px;
    background: #FFFFFF59;
    display: inline-block;
}
.characteristics-girl-info ul li:first-child {
    border-top-left-radius: 7px;
}
.characteristics-girl-info ul li {
    display: inline-block;
    width: 50%;
    float: left;
    border: solid 1px #CECECE;
    padding: 10px 20px;
    box-sizing: border-box;
}
.characteristics-girl-info ul li label {
    font-weight: 600;
    width: 50%;
    display: inline-block;
    font-size: 16px;
}
.service-cta-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.service-cta-list a {
    background: linear-gradient(90deg, rgb(183 0 141) 0%, rgba(128, 0, 128) 51%, rgb(241 20 120) 100%);
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    border-radius: 4px;
}
.service-cta-list a:hover {
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
    border: 0;
}
.ib-table table {
    width: 100%;
}
.ib-table tbody tr:nth-child(odd) {
    background: #eaeaea;
}
.ib-table td {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--black);
    width: 50%;
    padding: 15px;
}
.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;
}
.pricing {
    background: var(--primary-light);
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid var(--primary) !important;
    height: 100%;
    transition-duration: .3s;
}
.service_price_list {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}
.pricing_para.one {
    font-size: 35px;
    line-height: 45px;
/*    color: #000;*/
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 800;
}
.btton-one {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #000;
    transition-duration: .3s;
}
.frame-parent1, .frame-parent4 {
    margin-top: 30px;
}
.tick-parent {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: center;
}
.recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(255, 0, 255) 0%, rgba(128, 0, 128) 51%, rgba(255, 255, 0) 100%);
    color: #fff;
    padding: 4px 20px;
    font-size: 18px;
    border-radius: 5px;
}
.pricing_one {
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid var(--secondary) !important;
    background: var(--black) !important;
    transition-duration: .3s;
    color: #fff;
    position: relative;
    transform: scale(1.05);
}
.btton {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #fff !important;
    border-radius: 8px;
    border: 1px solid #EBEBEF;
    transition-duration: .3s;
}
.city-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.gallery_image img{
    border-radius: 10px;
}
.internal_link_class{color: blue;}
.internal_link_class:hover{color: red;}





@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);
    }
}