* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: url(../images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

img, table, video, iframe, svg {
    max-width: 100%;
}

.row {
    max-width: 100%;
}

@media only screen and (min-width: 993px) {
    body {
        background-attachment: fixed;
    }
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* **********************************************************Cookies Consent Start******************************** */

#cookieConsent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    padding: 35px 15px;
    background: #410000;
    color: #615456;
    text-align: center;
    height: auto;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px solid #070707;
    max-height: 90vh;
    overflow-y: auto;
}

.terms_conditions {
    margin: auto;
    max-width: 290px;
}

#cookieConsent .alt-logo {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#cookieConsent .alt-logo .alt-logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    padding: 10px;
    border: 4px solid #ffeea4;
    border-radius: 50%;
}

#cookieConsent .alt-logo span {
    position: absolute;
    top: 7px;
    right: -14px;
    background-color: #070707;
    color: #fff;
    padding: 7px 5px;
    border-radius: 50%;
    font-size: 14px;
}

#cookieConsent p {
    font-size: clamp(13px, 3vw, 16px);
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
}

#cookieConsent p a {
    text-decoration: none;
    color: #ffeea4;
}

#cookieConsent h4 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(17px, 4vw, 20px);
    color: #ffeea4;
}

.btnaccept {
    background: #ffeea4;
    color: #fff;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    bottom: 70px;
    left: 50%;
    margin-bottom: 3px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

.btndecline {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 3px;
    bottom: 30px;
    left: 50%;
    cursor: pointer;
    color: #ffffff;
    border: none;
    background: transparent;
}

@media only screen and (max-width:1400px) {
    #cookieConsent {
        width: 35%;
    }
}

@media only screen and (max-width:1200px) {
    #cookieConsent {
        width: 45%;
    }
}

@media only screen and (max-width:992px) {
    #cookieConsent {
        width: 55%;
    }
}

@media only screen and (max-width:576px) {
    #cookieConsent {
        width: 90%;
        padding: 25px 12px;
    }

    .btnaccept {
        padding: 10px 25px;
        width: 100%;
    }
}

@media only screen and (max-width:414px) {
    #cookieConsent {
        width: 92%;
    }
}


/* Cookies Consent End */

/* Navbar */

header {
    background: #080000;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header .row {
    display: block;
    margin: 0;
}


.logo {
    position: relative;
}

.logo a {
    display: block;
    font-size: clamp(18px, 4vw, 25px);
    text-decoration: none;
    color: #FF0079;
    font-family: "Montserrat", sans-serif;
}

.logo_text {
    color: #FF0079;
    font-family: 'Dosis', sans-serif;
    font-size: clamp(17px, 3.5vw, 22px);
    font-weight: 800;
}

.logo span {
    position: absolute;
    top: -5px;
    left: 45px;
    color: #60005a;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}

.navbar .main-menu {
    display: flex;
}

.main-menu li a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffeea4;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}


.menu-btn {
    display: none;
    cursor: pointer;
}

.toggler-icon {
    width: 20px;
    height: 3px;
    margin: 3px 0;
    background: #ffeea4;
    display: block;
}

.row-content h2 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 10px;
    text-align: center;
    padding: 0 10px;
}

.row-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
}

.main-menu .hide {
    display: none;
    text-align: center;
}

@media screen and (max-width: 992px) {


    .main-menu .hide {
        display: block;
    }

    .navbar .main-menu {
        position: absolute;
        top: 41px;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        background-color: #080000;
        transition: 0.5s all ease;
        display: none;
        align-items: center;
        transform: translateX(100%);
        padding: 30px 0;
        z-index: 999;
    }

    .navbar .main-menu.show {
        display: flex;
        transform: translateX(0px);
        transition: 0.5s all ease;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.57);
    }

    .main-menu li a {
        margin-bottom: 10px;
        display: block;
    }

    .menu-btn {
        display: block;
        position: absolute;
        color: white;
        padding-top: 18px;
        right: 30px;
        font-size: 2rem;
        top: 0;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        padding: 0 8px;
    }

    .menu-btn {
        right: 12px;
        font-size: 1.6rem;
    }

    .logo span {
        left: 38px;
        font-size: 12px;
    }
}

/* Navbar */


/* Banner Section */

.banner {
    background: #190000;
}

.banner .content_side h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 5vw, 35px);
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    word-wrap: break-word;
}

.banner .content_side h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 4.5vw, 35px);
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    word-wrap: break-word;
}



/* *************** */

.custom-select {
    position: relative;
    font-family: Arial;
    background: #ffffff;
    max-width: 300px;
    width: 100%;
    padding: 15px;
    margin: auto;
}

.custom-select select {
    display: none;
}

.custom-select label {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #190000;
}

.select-selected {
    background-color: #ffeea4;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 65px;
    right: 25px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 60px;
}

.select-items div,
.select-selected {
    color: #190000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #ffeea4;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* *************** */

.image_side {
    flex: 60%;
    max-width: 65%;

}

.content_side {
    flex: 35%;
    max-width: 35%;
    padding-right: 25px;
}

.image_side img {
    margin-bottom: -4px;
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width:1270px) {
    .banner .content_side h2 {
        font-size: 25px;
    }
}


@media only screen and (max-width:992px) {
    .banner .row {
        display: block;
    }

    .image_side {
        flex: 100%;
        max-width: 100%;
    }

    .content_side {
        flex: 100%;
        max-width: 92%;
        margin: auto;
        padding: 15px 0;
    }

}

@media only screen and (max-width:576px) {
    .content_side {
        max-width: 100%;
        padding: 12px 10px;
    }

    .custom-select {
        max-width: 100%;
        padding: 12px;
    }

    .select-selected:after {
        top: 58px;
        right: 18px;
    }
}

/* Banner Section */


/* Services */

.services {
    padding: 25px 0;
    background: #080000;
}

.services h2 {
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    text-transform: uppercase;
    font-weight: bold;
    font-size: clamp(18px, 4.5vw, 26px);
    padding: 0 10px;
}

.services .services_container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

.services .services_container img {
    max-width: 100%;
}

.services .services_container .services_box {
    flex: 10%;
    max-width: 15%;
    background: #a72e2e;
    margin: 15px;
    border-radius: 30px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    min-width: 160px;
}

.services .services_container .services_box .content_box {
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    text-transform: uppercase;
    font-weight: normal;
    font-size: clamp(13px, 3vw, 16px);
}

@media only screen and (max-width:768px) {
    .services .services_container .services_box {
        flex: 30%;
        max-width: 40%;
        min-width: 130px;
        margin: 8px;
        padding: 8px;
    }
}

@media only screen and (max-width:576px) {
    .services .services_container .services_box {
        flex: 40%;
        max-width: 45%;
        margin: 6px;
        min-width: unset;
        width: 45%;
        text-align: center;
        padding: 8px 5px;
    }

    .services .services_container .services_box .content_box {
        max-width: 100%;
        font-size: 13px;
    }
}

@media only screen and (max-width:380px) {
    .services .services_container .services_box {
        flex: 100%;
        max-width: 90%;
        width: 90%;
    }
}

/* Services */


/* Category Section */

.top_escorts {
    padding: 25px 0;
}

.top_escorts h2 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #ffeea4;
    text-transform: uppercase;
    font-size: clamp(18px, 4.5vw, 26px);
    padding: 0 10px;
}

.top_escorts .escorts_box {
    flex: 15%;
    width: 20%;
    margin: 20px;
    padding: 15px 15px 0;
    box-sizing: border-box;
    margin-bottom: 25px;
    background: #ffeea4;
    transition: transform .5s;
    border-radius: 5px;
}

.top_escorts .escorts_box a {
    text-decoration: none;
}

.top_escorts .escorts_box:hover {
    transform: scale(1.1);
    rotate: 5deg;
    transition: all .5s;
}

.top_escorts .escorts_box .escorts_img {
    max-height: 250px;
    overflow: hidden;
    text-align: center;
}

.top_escorts .escorts_box .escorts_img img {
    max-width: 100%;
    height: auto;
}


.escorts_box .name p {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: #190000;
    text-transform: uppercase;
    line-height: calc(15 / 11);
    letter-spacing: 0.0625em;
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width:1200px) {
    .top_escorts .escorts_box {
        flex: 20%;
        width: 25%;
    }
}


@media only screen and (max-width:992px) {
    .top_escorts .escorts_box {
        flex: 27%;
        width: 33.33%;
    }
}


@media only screen and (max-width:768px) {
    .top_escorts .escorts_box {
        flex: 43%;
        width: 46%;
        margin: 10px;
    }
}

@media only screen and (max-width:576px) {
    .top_escorts .escorts_box {
        flex: 90%;
        width: 90%;
        margin: 10px auto;
        padding: 12px 12px 0;
    }

    .top_escorts .escorts_box .escorts_img {
        max-height: 220px;
    }

    .escorts_box .name p {
        font-size: 14px;
    }
}


/* Category Section */


/* Random Text */

.random_text {
    padding: 30px 15px;
}

.random_text h2 {
    text-align: justify;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    font-weight: lighter;
    font-size: clamp(18px, 4.5vw, 28px);
}

a,
b {

    color: #ffeea4;
    font-weight: 600;
    text-decoration: none;
}

.random_text h3 {
    text-align: justify;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    font-weight: lighter;
    font-size: clamp(16px, 3.5vw, 22px);
}

.random_text p {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
}

.random_text ol li {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    color: #ffeea4;
    font-size: clamp(14px, 2.5vw, 16px);
}

.random_text ul li {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 10px;
    letter-spacing: .90px;
}

@media only screen and (max-width:576px) {
    .random_text {
        padding: 20px 12px;
    }

    .random_text ol,
    .random_text ul {
        padding-left: 20px;
    }
}

/* Random Text */

/* **************************************************************Category***************************************** */

.category {
    padding: 40px 0;
    background: #ffeea4;
}

.category h2 {
    font-size: clamp(20px, 5vw, 30px);
    padding-bottom: 15px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #190000;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
}

.category .category_container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    justify-content: center;
}

.category .category_box {
    flex: 16%;
    max-width: 20%;
    box-sizing: border-box;
    margin: 10px 7px;
    display: flex;
    justify-content: center;
}

.article-box {
    position: relative;
    color: white;
}

.article-box .image img {
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
    object-fit: cover;
}

.article-box .image {
    max-width: 185px;
    max-height: 185px;
    overflow: hidden;
    box-shadow: 0 5px 20px -5px rgb(0 0 0 / 10%);
    border: 4px solid #190000;
    border-radius: 50%;
}


.article-box:hover .image img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.article-box .social {
    display: flex;
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #7f7f7f;
    border: 5px solid #FF0079;
}

.article-box .social .info-wpbtn {
    margin-right: 0;
}

.article-box .social .info-phbtn {
    margin-right: 0;
    border-right: 5px solid #FF0079;
}

.article-box .image {
    position: relative;
}

.rib-top-left {
    top: 0px;
    left: 0px;
}

.rib {
    width: 120px;
    height: 145px;
    overflow: hidden;
    position: absolute;
}

.rib-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

.rib span {
    position: absolute;
    display: block;
    width: 190px;
    padding: 5px 0;
    background-color: #190000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 14px;
    text-shadow: 0 2px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-family: 'Dosis', sans-serif;
}

@media only screen and (max-width:1200px) {
    .article-box .image {
        max-width: 250px;
        max-height: 250px;
    }
}

@media only screen and (max-width:992px) {
    .article-box .image {
        max-width: 200px;
        max-height: 200px;
    }
}

@media only screen and (max-width:1050px) and (min-width:768px) {

    .article-box .image {
        max-width: 180px;
        max-height: 180px;
        border-radius: 50%;
    }
}

@media only screen and (max-width:768px) {
    .category .category_box {
        flex: 47%;
        max-width: 50%;
        margin: 8px;
    }

    .article-box .image {
        max-width: 160px;
        max-height: 160px;
    }
}

@media only screen and (max-width:576px) {
    .category {
        padding: 25px 0;
    }

    .category .category_box {
        flex: 42%;
        max-width: 45%;
        margin: 8px 5px;
    }

    .article-box .image {
        max-width: 130px;
        max-height: 130px;
    }

    .article-box .social .info-wpbtn {
        margin-right: 5px;
    }

    .article-box .social .info-phbtn {
        margin-right: 5px;
        border-right: none;
    }

    .article-box .social {
        background: none;
        border: none;
    }

    .rib {
        width: 100px;
        height: 80px;
    }

    .rib span {
        width: 160px;
        font-size: 9px;
        padding: 3px 0;
    }
}

@media only screen and (max-width:380px) {
    .category .category_box {
        max-width: 90%;
        flex: 90%;
    }

    .article-box .image {
        max-width: 160px;
        max-height: 160px;
        margin: 0 auto;
    }
}


/* **********************************************************Category***************************************** */

/* Price Table */

.price_table {
    padding: 25px 0;
    background: #ffeea4;
}

.price_table h2 {
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: #190000;
    text-transform: uppercase;
    font-size: clamp(18px, 4.5vw, 26px);
    padding: 0 10px;
}

.price_table table {
    width: 100%;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 2.5vw, 18px);
    border-collapse: collapse;
}


.price_table table tr td {
    padding: 10px;
    width: 50%;
    word-break: break-word;
}

@media only screen and (max-width:576px) {
    .price_table {
        padding: 18px 0;
    }

    .price_table table tr td {
        padding: 8px 5px;
        width: unset;
        font-size: 13px;
    }
}


/* Price Table */


/* Random Text With Image */


.random_text_img {
    padding: 30px 15px;
}

.random_text_img h2 {
    text-align: justify;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    font-weight: lighter;
    font-size: clamp(18px, 4.5vw, 28px);
}

.random_text_img h3 {
    text-align: justify;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    font-weight: lighter;
    font-size: clamp(16px, 3.5vw, 22px);
}

.random_text_img p {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
}

.random_text_img ol li {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    color: #ffeea4;
    font-size: clamp(14px, 2.5vw, 16px);
}

.random_text_img .text_side {
    flex: 65%;
    width: 70%;
}

.random_text_img .pic_side {
    flex: 30%;
    width: 30%;
}

.random_text_img .pic_side img {
    max-width: 100%;
    margin-bottom: -44px;
}

@media only screen and (max-width:992px) {
    .random_text_img .text_side {
        flex: 55%;
        width: 65%;
    }

    .random_text_img .pic_side {
        flex: 30%;
        width: 35%;
    }

    .random_text_img .pic_side img {
        margin-bottom: -95px;
    }
}

@media only screen and (max-width:897px) {
    .random_text_img .pic_side img {
        margin-bottom: -133px;
    }
}

@media only screen and (max-width:835px) {
    .random_text_img .row {
        display: block;
    }

    .random_text_img .text_side {
        flex: 100%;
        width: 100%;
    }

    .random_text_img .pic_side {
        flex: 100%;
        width: 100%;
        text-align: center;
    }

    .random_text_img .pic_side img {
        margin-bottom: -44px;
        max-width: 90%;
    }
}

@media only screen and (max-width:576px) {
    .random_text_img {
        padding: 20px 12px;
    }

    .random_text_img ol {
        padding-left: 20px;
    }
}

/* Random Text With Image */


/* Accordian */

.faq {
    padding: 30px 15px;
    background: #190000;
}

.faq h2 {
    text-align: center;
    color: #ffeea4;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(18px, 4.5vw, 26px);
}

.faq h3 {
    text-align: center;
    color: #ffeea4;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 3.5vw, 20px);
}

.accordion {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.accordion-item {
    color: #ffffff;
    margin: 1rem 0;
    border-radius: 5px;
    border-bottom: 1px solid #9d9d9d;
}

.accordion-item table tr td {
    padding-right: 20px;
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 2.8vw, 16px);
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    font-family: "Montserrat", sans-serif;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
    font-family: "Montserrat", sans-serif;
}

.accordion-item-body-content {
    display: flex;
}


.accordion-item-body-content .left {
    flex: 40%;
    padding: 0 15px;
}

.accordion-item-body-content .right {
    flex: 60%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container {
    display: flex;
    flex-wrap: wrap;
}

.accordion-item-body-content .right .right_container ul {
    list-style-type: none;
    padding: 0;
}

.accordion-item-body-content .right .right_container ul li a {
    text-decoration: none;
    color: #FF0079;
    font-size: 14px;
}

.accordion-item-body-content .right .right_container .column1 {
    flex: 33.33%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container .column2 {
    flex: 33.33%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container .column3 {
    flex: 33.33%;
    padding: 0 15px;
}

@media(max-width:767px) {
    html {
        font-size: 14px;
    }

    .accordion-item-body-content {
        display: block;
        text-align: left;
    }


    .accordion-item-body-content .left {
        flex: 100%;
        padding: 0 15px;
    }

    .accordion-item-body-content .right {
        flex: 100%;
        padding: 0 15px;
    }

}

@media only screen and (max-width:576px) {
    .faq {
        padding: 20px 10px;
    }

    .accordion-item-header {
        padding: 0.5rem 2.5rem 0.5rem 0.75rem;
        min-height: 3rem;
    }

    .accordion-item-body-content .left,
    .accordion-item-body-content .right {
        padding: 0 8px;
    }

    .accordion-item-body-content .right .right_container .column1,
    .accordion-item-body-content .right .right_container .column2,
    .accordion-item-body-content .right .right_container .column3 {
        flex: 100%;
        padding: 0 8px;
    }
}

/* Accordian */


/* Location */

.location {
    padding: 25px 0;
}

.location h2 {
    text-align: center;
    color: #ffeea4;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(18px, 4.5vw, 26px);
    padding: 0 10px;
}

.location h3 {
    text-align: center;
    color: #ffeea4;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 3.5vw, 20px);
    padding: 0 10px;
}

.location_box {
    flex: 15%;
    max-width: 18%;
    box-sizing: border-box;
    margin: 0 5px;
    background: #ffeea4;
    margin: auto;
    margin-bottom: 25px;
}

.location_box .location_img {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.location_box .location_img figure {
    position: relative;
    margin: 0;
}

.location_box .location_img figure figcaption {
    position: absolute;
    top: 10px;
    left: 0;
    background: #ffeea4;
    color: #190000;
    padding: 5px 15px;
    border-radius: 0 50px 50px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.location_box .location_img img {
    max-width: 100%;
    min-width: 250px;
    min-height: 250px;
    object-fit: cover;
}

@media only screen and (max-width:1500px) {
    .location_box .location_img img {
        max-width: 100%;
        min-width: 230px;
        min-height: 230px;
    }
}

@media only screen and (max-width:1340px) {
    .location_box .location_img img {
        max-width: 100%;
        min-width: 200px;
        min-height: 200px;
    }
}

@media only screen and (max-width:1200px) {
    .location_box {
        flex: 20%;
        max-width: 23%;
        margin: 0 10px;
        margin-bottom: 25px;
    }

    .location .row {
        justify-content: center;
    }
}

@media only screen and (max-width:992px) {
    .location_box {
        flex: 30%;
        max-width: 30%;
        margin: 0 10px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:768px) {
    .location_box {
        flex: 43%;
        max-width: 45%;
        margin: 0 10px;
        margin-bottom: 25px;
    }

    .location_box .location_img img {
        min-width: 180px;
        min-height: 180px;
    }
}

@media only screen and (max-width:576px) {
    .location {
        padding: 18px 0;
    }

    .location_box {
        flex: 100%;
        max-width: 92%;
        margin: 0 auto;
        margin-bottom: 18px;
    }

    .location_box .location_img img {
        max-width: 100%;
        width: 100%;
        min-width: unset;
        min-height: unset;
        height: auto;
    }

    .location_box .location_img figure figcaption {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* Location */


/* Thrill Yourself */

.thrill_yourself {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 15px;
}

.thrill_yourself h3 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: #eca400;
}

.thrill_yourself h2 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: #eca400;
}

.thrill_yourself p {
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 25px;
}

.thrill_yourself p span {
    color: #ffeea4;
    font-weight: 600;
}

@media only screen and (max-width:576px) {
    .thrill_yourself {
        padding: 20px 10px;
    }

    .thrill_yourself p {
        line-height: 22px;
        letter-spacing: 0.5px;
    }
}

/* Thrill Yourself */

/* Scroll To Top */

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #ffeea4;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 3px 5px;
    cursor: pointer;
}

#scrollToTopBtn img {
    width: 80px;
}

#scrollToTopBtn:hover {
    background-color: #f1cbeb;
}

@media only screen and (max-width:768px) {
    #scrollToTopBtn img {
        width: 40px;
    }
}

@media only screen and (max-width:576px) {
    #scrollToTopBtn {
        bottom: 70px;
        right: 12px;
    }

    #scrollToTopBtn img {
        width: 32px;
    }
}


/* Scroll To Top */


/* Footer Start */

footer {
    text-align: center;
    background: #190000;
}


footer .footer_logo {
    margin: 40px 0 0;
}

footer .footer_logo img {
    max-width: 100%;
}

footer .footer_text p {
    font-size: clamp(13px, 2.5vw, 15px);
    margin: 30px 0 60px;
    position: relative;
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
    max-width: 500px;
    margin: 30px auto 45px;
    padding: 0 15px;
}

footer .footer_text p::after {
    background: #353C46;
    bottom: -30px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
}

footer .footer_link {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0 10px;
}

footer .footer_link a {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    margin: 5px;
    color: #ffffff;
}

footer .footer_link span {
    color: #ffffff;
}

footer .footer_address p {
    max-width: 375px;
    margin: auto;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 2.5vw, 16px);
    padding: 0 15px;
}

.copyright p {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 2.2vw, 14px);
    padding: 0 10px;
}

footer .overlay {
    background: url(../images/map-white.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}


@media screen and (max-width: 1275px) {
    .footer-items {
        width: 50%;
    }
}


@media screen and (max-width: 660px) {
    .footer-items {
        width: 100%;
    }
}

@media only screen and (max-width:576px) {
    footer .footer_logo {
        margin: 25px 0 0;
    }

    footer .footer_logo img {
        max-width: 150px;
    }

    footer .footer_text p {
        margin: 20px auto 35px;
    }

    footer .overlay {
        padding: 25px 0;
    }
}

/* Footer End */

.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol,
.rcol {
    float: left;
    width: 50%;
}

.lcol a,
.rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: clamp(13px, 3vw, 16px);
}

.lcol {
    background-color: #5c0217;
}

.rcol {
    background-color: #630099;
}



.cookie-bar {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000, #0a0a0a);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 0, 121, .35);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 7777;
    border: 1px solid rgba(255, 0, 121, .35);
    max-width: 750px;
    width: calc(100% - 20px);
    animation: cookieSlide .5s ease;
}

.cookie-bar p {
    margin: 0;
    font-size: 14px;
    color: #d7cfff;
}

.cookie-bar button {
    background: linear-gradient(135deg, #ff0079, #ff4db2);
    border: none;
    color: #fff;
    padding: 9px 18px;
    border-radius: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(255, 0, 121, .6);
}

.cookie-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 0, 121, .9);
}

@media(max-width:768px) {
    .cookie-bar {
        left: 10px;
        right: 10px;
        bottom: 60px;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
        width: auto;
    }

    .cookie-bar button {
        width: 100%;
    }
}

@keyframes cookieSlide {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


body.age-popup-active .fixed-ui {
    display: none !important;
}

body.age-popup-active {
    overflow: hidden;
    height: 100vh;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    z-index: 9998;
}

.age-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
}

.age-modal,
.age-overlay {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, #ff0079, #ff4da6);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    max-width: 460px;
    width: 92%;
    padding: 34px 26px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 0, 121, .45);
    animation: popupZoom .35s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes popupZoom {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.age-modal-content h2 {
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 800;
    color: #ffd400;
    margin-bottom: 14px;
}

.age-modal-content p {
    font-size: clamp(13px, 2.8vw, 14px);
    line-height: 1.7;
    color: #fff;
}

.confirm {
    margin: 14px 0 8px;
    font-weight: 700;
    color: #14001f;
}

.age-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 18px;
    font-size: clamp(13px, 2.8vw, 14px);
}

.age-modal-content ul li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .25);
}

.disclaimer {
    font-size: clamp(12px, 2.5vw, 13px);
    color: #fff;
    opacity: .85;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 12px;
}

.age-buttons {
    display: flex;
    gap: 12px;
}

.age-buttons a,
.age-buttons button {
    flex: 1;
    padding: 12px 0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: .25s;
}

.btn-yes {
    background: #fff;
    color: #ff0079;
    border: none;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .45);
}

.btn-no {
    background: #021b3a;
    color: #ffd400;
    text-decoration: none;
}

.btn-no:hover {
    background: #032a5a;
    transform: translateY(-2px);
}

@media(max-width:480px) {
    .age-buttons {
        flex-direction: column;
    }

    .age-modal-content {
        padding: 26px 18px;
        width: 94%;
    }
}



.city-btn{
    display:inline-block;
    padding:8px 18px;
    background:#ff1975;
    color:#fff;
    font-weight:600;
    border-radius:3px;
    cursor:default;
    transition:.3s;
    margin-bottom:5px;
}

.city-btn:hover{
    background:#ff3b8c;
}
/* Disclaimer Section */
.Disclaimer{
    max-width:900px;
    margin:70px auto 0;
    text-align:center;
    padding:0 15px;
}

.Disclaimer .section-title{
    font-size:48px;
    font-weight:700;
    color:#ff1975;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:25px;
    line-height:1.2;
}

.Disclaimer .section-text{
    color:#c7c7c7;
    font-size:18px;
    line-height:1.9;
    font-weight:400;
    margin:0;
}

.Disclaimer .section-text strong{
    color:#ffffff;
    font-weight:700;
}

@media (max-width:991px){
    .Disclaimer{
        margin-top:50px;
    }

    .Disclaimer .section-title{
        font-size:38px;
    }

    .Disclaimer .section-text{
        font-size:16px;
        line-height:1.8;
    }
}

@media (max-width:576px){
    .Disclaimer{
        margin-top:40px;
        padding:0 10px;
    }

    .Disclaimer .section-title{
        font-size:30px;
        margin-bottom:20px;
    }

    .Disclaimer .section-text{
        font-size:15px;
        line-height:1.7;
    }
}




/* Price Table */
.price-table{
    max-width:900px;
    margin:40px auto;
    border-radius:15px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.price-table table{
    width:100%;
    border-collapse:collapse;
}

.price-table thead th{
    background:#ff1975;
    color:#fff;
    font-size:24px;
    font-weight:700;
    text-align:center;
    padding:18px 15px;
    border:2px solid #fff;
}

.price-table tbody td{
    background:#fff;
    color:#222;
    font-size:22px;
    font-weight:600;
    padding:18px 20px;
    border:1px solid #ddd;
    vertical-align:middle;
}

.price-table tbody tr:nth-child(even) td{
    background:#fafafa;
}

.price-table tbody tr:hover td{
    background:#fff3f8;
}

.price-table tbody td:first-child{
    font-weight:700;
}

@media (max-width:991px){

    .price-table thead th{
        font-size:18px;
        padding:15px 10px;
    }

    .price-table tbody td{
        font-size:17px;
        padding:14px 10px;
    }
}

@media (max-width:767px){

    .price-table{
        margin:25px 0;
        border-radius:10px;
    }

    .price-table table{
        min-width:650px;
    }

    .price-table thead th{
        font-size:16px;
    }

    .price-table tbody td{
        font-size:15px;
        white-space:nowrap;
    }
}

/* ==========================================================
   Mobile Spacing Fix — reduces excess padding/spacing on mobile
   ========================================================== */
@media only screen and (max-width: 576px) {

    .container {
        padding: 0 10px;
    }

    .row-content h2,
    .row-content p {
        padding: 0 6px;
    }

    .content_side {
        padding: 8px 8px;
    }

    .services {
        padding: 15px 0;
    }

    .top_escorts {
        padding: 15px 0;
    }

    .random_text {
        padding: 15px 10px;
    }

    .category {
        padding: 15px 0;
    }

    .price_table {
        padding: 12px 0;
    }

    .price_table table tr td {
        padding: 6px 4px;
    }

    .random_text_img {
        padding: 15px 10px;
    }

    .faq {
        padding: 15px 8px;
    }

    .accordion-item {
        margin: 0.6rem 0;
    }

    .accordion-item-header {
        padding: 0.4rem 2.2rem 0.4rem 0.6rem;
        min-height: 2.6rem;
    }

    .accordion-item-body-content {
        padding: 0.75rem;
    }

    .accordion-item-body-content .left,
    .accordion-item-body-content .right {
        padding: 0 6px;
    }

    .location {
        padding: 12px 0;
    }

    .thrill_yourself {
        padding: 15px 8px;
    }

    .Disclaimer {
        margin-top: 25px;
        padding: 0 8px;
    }

    .Disclaimer .section-title {
        margin-bottom: 15px;
    }
}