
/**************************************
                General
**************************************/
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;  */
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html::-webkit-scrollbar{
  width: 4px;
  background-color: #00000036;
}
html::-webkit-scrollbar-thumb{
  width: 8px;
  background-color: #f41909;
  border-radius: 50rem;
}
a, button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body{
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #fff;
    background-color: #090909;
}

a,a:hover,a:focus{
    color: #f9df2a;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,h2,h3,h4 {
  font-family: 'Oswald', sans-serif;
    transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s; 
}
h5{
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
main{
    overflow: clip;
}
img {
  max-width: 100%;
  height: auto;
}
.container-fluid{
  padding-left: 75px;
  padding-right: 75px;
}
/**************************************
                Helper Class
**************************************/
h2 {
  font-size: 44px;
    line-height: 54px;
  margin-bottom: 10px;
text-transform: uppercase;
color: #dfca66;
font-weight: 600;
}

p{
  font-size: 20px;
  color: #fff;
  line-height: 1.591;
}

.primary-btn{
  filter: drop-shadow(0px 22px 31px rgba(243,15,15,0.32));
background-color: #f30f0f;
    padding: 20px 35px;
    font-size: 24px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    font-weight: 300;
    transition: border-radius all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 30px 0;
    display: flex;
    text-transform: capitalize;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition-duration: 1s;
    font-family: 'Oswald', sans-serif;
}
.primary-btn:after{
  content: '';
    background-color: rgb(255, 35, 35);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: -1;
}
.primary-btn:hover{
    color: #fff;
    box-shadow: 0px 4px 29px 0px rgb(255, 35, 35);
    border-radius: 0rem 1.5rem;
    transition-duration: 1s;
}
.primary-btn:hover:after{
  width: 100%;
}
.secondary-btn{
    border: 1px solid #1b2838;
    padding: 8px 25px;
    background-color: #1b2838;
    color: #fff;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: inline-block;
    -webkit-border-radius: 0px;
    font-family: 'Oswald', sans-serif;
}
.secondary-btn:hover{
    background: #fff;
    box-shadow: 0px 4px 4px rgb(27 40 56 / 26%);
    border-color: #1b2838;
    color: #1b2838;
}
.container {
  max-width: 1400px;
}
/**************************************
      Menu
**************************************/
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}
.menu-right{
  position: absolute;
  right: 0;
  background-color: #f41909;
  display: flex;
  top: 0;
  z-index: 1;
  animation-duration: 2s;
}
.menu-right:after{
  content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 50px;
    border-right-width: 0px;
    border-top: 90px solid #f41909;
    position: absolute;
    left: -50px;
}
.menu-icon img{
  background: #e8e60c;
  padding: 7px;
}
.menu-right .contact-info p,.menu-right .contact-info a{
	color:#fff;
}
.menu-right .contact-info img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(220deg) brightness(105%) contrast(102%);
}
.menu-right:hover{
  background-color: rgb(255, 35, 35);
}
.menu-right:hover::after{
  border-top-color: rgb(255, 35, 35);
}
header.sticky{
  background: rgb(243, 15, 15);
    background: linear-gradient(269deg, #f41909 0%, rgba(18, 17, 17, 1) 100%);
    box-shadow: 0px 5px 10px 0 rgb(255 255 255 / 32%);
}
header.sticky .logo img{
  height: 78px;
  width: auto;
}
.logo img{
  transition: all .5s;
}
header.sticky .logo{
  padding: 5px;
}
.logo {
    display: inline-block;
    padding: 15px;
}
.contact-info{
  position: relative;
    padding: 6px 15px;
    padding-left: 45px;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}
.contact-info img{
  position: absolute;
  left: 10px;
}
.contact-info p {
  font-size: 22px;
letter-spacing: 1px;
line-height: 22px;
text-transform: uppercase;
color: #ffffff;
font-weight: 600;
font-family: "Oswald";
  margin-bottom: 0;
}
.contact-info a{
  font-size: 28px;
letter-spacing: 1px;
line-height: 35px;
text-transform: uppercase;
color: #ffffff;
font-weight: 600;
font-family: "Oswald";

}
.menu-icon {
  background-color: rgb(246, 28, 13);
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .5s;
}
.menu-icon::after{
  content: '';
    background-color: rgb(24, 24, 24);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transform: scale(0);
    transition: all .5s;
}
.menu-icon:hover:after{
  transform: scale(1);
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #3d0202d4;
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
  width: 400px;
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  border-left: 1px solid #0000002d;
  transform: translateX(100%);
}
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
  visibility: visible;
}
.offcanvas.show:not(.hiding), .offcanvas.showing {
  transform: none;
}
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.offcanvas-backdrop.show {
    opacity: .5;
}

.fade {
    transition: opacity .15s linear;
}
.offcanvas-header {
  background: rgb(8, 8, 8);
}
.btn-close {
  color: #fff;
  font-size: 50px;
  outline: none;
}
.offcanvas-body {
  
  background-position: left;
  position: relative;
}
.offcanvas-body::after{
  content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
   

}
.offcanvas-body ul li a{
  font-size: 22px;
  display: block;
  padding: 10px 30px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.offcanvas-body ul li a::after{
  content: '';
  background: #f30f0f;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0;
  z-index: -1;
  transition: all .5s;
}
.offcanvas-body ul li.current-menu-item a{
  background: #f30f0f;
}
.offcanvas-body ul li a:hover::after{
  width: 100%;
}
.fixed-btn {
  position: fixed;
  bottom: 10%;
  right: 5px;
  width: 70px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  text-align: center;
  z-index: 9;
}
.fixed-btn a img{
  transition: all .5s;
}
.fixed-btn a:hover img{
  transform: scale(1.1);
}
/*************************************
                Home Page
**************************************/
.hero-banner {
  position: relative;
    background-size: cover;
    padding-top: 3%;
    padding-bottom: 0%;
    background-repeat: no-repeat;
}
.hero-banner::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d66;
  background: linear-gradient(45deg, black, transparent);
}
.banner-content {
  position: relative;
  z-index: 1;
}
.hero-banner .row .col-lg-6:last-child{
  text-align: right;
}
.banner-img{
  margin-bottom: -2px;
  width: 80%;
  position: relative;
    z-index: 1;
}
.hero-banner h1{
  font-family: 'Oswald', sans-serif;
  font-size: 135px;
line-height: 150px;
text-transform: uppercase;
  background: #F8FC0D;
background: linear-gradient(8deg, #F8FC0D 8%, #906A05 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.hero-banner h3{
  font-size: 43px;
  line-height: 43px;
  text-transform: uppercase;
  color: #f30f0f;
  font-weight: bold;
  margin-bottom: 10px;
}
.hero-banner h1::after{
  display: none;
}

.hero-banner p{
  font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    font-weight: 400;
    width: 90%;
    margin-bottom: 15px;

}
.btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-group a:last-child:hover{
transform: scale(.9);
}
.call-girl h1{
  font-size: 82px;
  line-height: 82px;
}
.details.nv-services{
  padding-top: 50px;
  padding-bottom: 60px;
  text-align: center;
  border-radius: 20px;
  background-image: -moz-linear-gradient( -94deg, rgb(117,8,8) 0%, rgb(18,17,17) 100%);
  background-image: -webkit-linear-gradient( -94deg, rgb(117,8,8) 0%, rgb(18,17,17) 100%);
  background-image: -ms-linear-gradient( -94deg, rgb(117,8,8) 0%, rgb(18,17,17) 100%);
}
.nv-services .btn-group{
  justify-content: center;
}
/************************************
    Category
************************************/
.top-escort-category{
  padding-top: 50px;
  padding-bottom: 80px;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-escort-category h2{
text-align: center;
margin-bottom: 30px;
}

.escort-category-box{
  position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    transition-duration: 1s;
    height: 378px;
}
.escort-category-box img{
  width: 100%;
    height:100%;
    object-fit: cover;
    object-position: top;
    transition-duration: 1.5s;
}
.escort-category-box:hover img{
 transform: scale(1.2);
}

.escort-category-box:hover .name{
  background-color: #f30f0f;
}
.escort-category-info{
  position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.escort-category-info .name{
  background-color: rgba(0, 0, 0, 0.89);
  padding: 15px;
  width: 100%;
}
.escort-category-info h4{
  font-size: 24px;
line-height: 30px;
text-transform: uppercase;
color: #ffffff;
font-weight: 400;
border-radius: 4px;

}

/************************************
    About
************************************/                          
.about{
  padding: 100px 0;
  position: relative;
}
.img-box{
  position: relative;
}
.img-box::after{
  content: '';
   
    width: 523px;
    height: 362px;
    display: block;
    position: absolute;
    left: -50%;
    bottom: -9%;
    z-index: -1;
}
.img-box.right-shape::after{
  content: '';
   
    width: 523px;
    height: 362px;
    display: block;
    position: absolute;
    right: -50%;
    left: auto;
    bottom: -9%;
    z-index: -1;
}
.about .btn-group{
  justify-content: center;
}

.about .col-lg-5 img{
  width: 100%;
}
.about .col-lg-7{
  padding: 50px;
  padding-left: 0;
}
.about .row .col-lg-7:first-child{
  padding-right: 0;
}
.about .row .col-lg-7:nth-child(2){
  padding-right: 0;
  padding-left: 50px;
}
.about .btn-group{
  justify-content: start;
}

/*****************************
  Model Category
******************************/
.text-center{
  text-align: center;
  margin-bottom: 30px;
}
.model-category .escort-category-info{
  top: unset;
  background: rgb(243,15,15);
background: linear-gradient(0deg, rgba(243,15,15,1) 0%, rgba(18,17,17,1) 100%);
}
.model-category .escort-category-info .name{
  background-color: transparent;
  padding: 10px;
}
.model-category .escort-category-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  transition-duration: 1s;
  height: 430px;
}
.model-category .escort-category-info .name p{
  margin-bottom: 0;
  line-height: 20px;
}
.model-category .escort-category-info .name p.star{
 color: #dfca66;
}

/*****************************
  Escort Info
******************************/

.escort-info{
  background-color: #1c1c1a;
  margin-top: 50px;
}
.bg-h{
    height: 72vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.info-content-right {
  padding: 6%;
  padding-right: 10%;
}
.info-content-left {
  padding: 6%;
  padding-left: 10%;
}

/*****************************
  Profile
******************************/
.why-choose{
  background-image: linear-gradient(184deg, #f7fb0d 0%, #906a04 100%);
  padding: 70px 0;
}
.why-choose h2{
  color: #000;
}
.why-choose-box {
  background-color: rgb(255 255 255 / 30%);
  padding: 30px 10px;
  text-align: center;
}
.why-choose-box h4{
font-size: 24px;
line-height: 56px;
text-transform: uppercase;
color: #000000;
font-weight: 500;
}
.why-choose-box p{
  line-height: 24px;
color: #0d0d0d;
font-weight: 500;
margin-bottom: 0;
}
.why-choose-box .icon{
  height: 100px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.list-item{
	margin-bottom: 45px;
}
.tags span{
	padding: 2px 6px;
	font-size: 13px;
}

/*****************************
  Details
******************************/
.details{
  background: rgb(243, 15, 15);
  background: linear-gradient(0deg, #6b0909 0%, rgba(18, 17, 17, 1) 100%);
  padding-top: 100px;
  padding-bottom: 50px;
}
.details h5{
  font-size: 40px;
line-height: 56px;
color: #dfca66;
font-weight: 500;
}

/*****************************
  Top Rated
******************************/
.our-escort {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.our-escort h2{
  text-align: center;
  margin-bottom: 40px;
}
.our-escort h2::after{
  margin-inline: auto;
  margin-top: 12px;
}
.our-escort .escort-img{
  margin-bottom: 0px;
  overflow: hidden;
}
.our-escort .escort-img img{
  width: 100%;
}
.our-escort .escort-box:hover{
  transform: translateY(-5px);
}
.escort-box:hover .escort-img img{
  transform: scale(1.1);
  opacity: .8;
}
.our-escort .escort-content {
  padding-top: 5px;
  background-color: #ffffff14;
  margin-top: -8px;
}


.our-escort .escort-content h4{
  font-size: 30px;
line-height: 30px;
text-transform: uppercase;
color: #ffffff;
font-weight: 400;
}
.our-escort .escort-content p{
  font-size: 20px;
line-height: 30px;
color: #f30f0f;
font-weight: 500;
font-family: "Barlow";
margin: 6px 0;
}
.our-escort small {
  font-size: 18px;
line-height: 27px;
color: #0fc829;
font-weight: 600;
font-family: "Barlow";
  text-align: right;
  display: block;
}
.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
}
.tags span {
  border-radius: 4px;
  background-color: #f7cd08;
  border: 1px solid #dfca66;
  padding: 4px 6px;
  font-size: 14px;
line-height: 27px;
color: #000000;
font-weight: 600;
font-family: "Barlow";
  cursor: pointer;
  transition: all .5s;
}
.tags span:hover{
  background-color: #000;
  color: #fff;
}
.our-escort .escort-content .tags{
  margin-bottom: 10px;
}
.our-escort .escort-content .primary-btn{
  padding: 16px 26px;
    font-size: 22px;
}
.satisfy{
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.satisfy .btn-group{
  justify-content: center;
  margin-top: 30px;
}

.offers{
  
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
  
}
.offers .list{
  margin-top: 10px;
  margin-bottom: 40px;
}
.offers .list p{
  position: relative;
  padding-left: 40px;
  line-height: 23px;
}
.offers .list p::after{
  position: absolute;
    content: '';
    background: url(../img/checked.webp);
    width: 30px;
    height: 30px;
    display: block;
    top: -3px;
    left: 0;
}
.offer-img{
  position: relative;
  margin-bottom: -12%;
}
.offer-img::after{
  content: '';
   
    position: absolute;
    left: -100px;
    width: 911px;
    height: 789px;
    bottom: 0;
    z-index: -1;
}

.call{
  position: relative;
}
.call .bg{
  width: 100%;
}
.call-content{
  position: absolute;
  top: 14%;
  left: 43%;
  width: 40%;
}
.call-content h2{
  color: #000;
}
/*****************************
  Profile
******************************/
.b-profile .escort-box{
  position: relative;
  transition: all .5s;
}
.escort-box {
  transition: all .5s;
}
.b-profile .escort-box .escort-content{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000000ad, transparent);
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  margin: 0;
  padding-bottom: 10px;
}
.slick-arrow{
  width: 52px;
height: 51px;
border-radius: 26px;
background-color: #2e2722;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
opacity: 1;
}
.slick-arrow::before{
  opacity: 1;
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(135deg);
  margin-right: 8px;
}
.slick-arrow.slick-prev::before{
  transform: rotate(-45deg);
  margin-right: 0;
  margin-left: 8px;
}
.slick-arrow:hover,.slick-arrow:focus{
  background-color: #f41909;
}
.b-profile {
  padding-bottom: 130px;
}
.escort-club{
  background-color: #030301;
  overflow: hidden;
  position: relative;
}
.escort-club::after{
  content: '';
    position: absolute;
    right: 0;
    bottom: -36%;
    width: 765px;
    height: 396px;
    
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}
.club-img {
  margin-top: -50px;
  margin-bottom: -70px;
}
.profiles{
  padding: 50px 0;
}
.profiles h2{
  text-align: center;
  margin-bottom: 40px;
}

.profile{
  position: relative;
  background: #ffffff14;
  padding: 0px;
  border-radius: 0px;
  overflow: clip;
}

.profile .profile-img{
  overflow: hidden;
    height: 400px;
    margin-bottom: 0px;
    border-radius: 0px;
}
.profile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0px;
transition-duration: 1.5s;
}
.profile:hover .profile-img img{
  transform: scale(1.3);
  opacity: .8;
}
.profile .tags{
  position: absolute;
  left: 0;
  bottom: 20px;
}
.profile .tags span{
  background-color: #f41909;
    border-color: #f41909;
    color: #fff;
    border-radius: 0 8px 8px 0;
    padding-inline: 20px;
    padding-block: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.profile .tags span img{
  width: auto;
  height: auto;
}


.faq{
position: relative;
}
.faq h2{
  margin-bottom: 30px;
}
ul.accordion .inner {
  padding: 15px;
  overflow: hidden;
  display: none;
  color: #090909;
  padding-top: 0;
}

ul.accordion li {
margin: 12px 0;
border-radius: 2px;
background-image: linear-gradient(184deg, #f7fb0d 0%, #906a04 100%);
}

ul.accordion li a.toggle {
  width: 100%;
  display: block;
  color: #060606;
  font-size: 22px;
  padding: 15px;
  font-weight: 600;
  padding-right: 20px;
  transition: background 0.3s ease;
  position: relative;
}
ul.accordion li a.toggle::after{
  content: '';
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid black;
    position: absolute;
    right: 10px;
    top: 26px;
}
ul.accordion li.active a.toggle::after{
  transform: rotate(180deg);
}
.faq .offer-img {
  position: relative;
  margin-bottom: -1%;
  text-align: center;
}
.faq .offer-img img{
  margin-bottom: -45%;
}
.genuine :is(h2,p){
  text-align: left;
}
.genuine{
  padding: 90px 0;
}
.genuine .btn-group{
  justify-content: start;
}

.escort {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0;
  position: relative;
}
.escort::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #00000030, #000000);
}
.escort .container-fluid{
  position: relative;
  z-index: 1;
}
.escort h2::after{
  display: none;
}
.escort-content {
  /* background-color: rgb(48 48 48 / 50%); */
  padding: 20px;
  padding-bottom: 25px;
}
.escort h2{
  color: #e0006c;
}
.escort-content h2:after{
  margin-left: 0;
}
.escort-content p {
  color: #fff;
}


.night-womens .btn-group{
  justify-content: center;
  margin-top: 30px;
}
.night-womens .btn-group .primary-btn{
  padding: 16px 32px;
}
.women-info.sm-box{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 15px;
}
.women-info.sm-box .name{
  width: 100%;
}
.women-info.sm-box .tags {
  margin-bottom: 10px;
}
.women-info.sm-box .primary-btn {
  font-size: 16px;
  padding: 8px 20px;
}
.women-info.sm-box h4 {
  font-size: 22px;
  font-weight: normal;
  line-height: inherit;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}
.women:hover img{
  transform: scale(1.1) rotate(4deg);
}
.experience{
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.experience::after{
  content: '';
  display: block;
    position: absolute;
    background: #000000b5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.experience .container-fluid{
  position: relative;
  z-index: 1;
}
.experience h2::after{
  display: none;
}
.experience h2 {
    margin-bottom: 15px;
    color: #e0006c;
}


.slick-slide {
  margin: 0 15px;
}

.slick-list {
  margin: 0 -15px;
}

.top-escort-item {
  position: relative;
  overflow: hidden;
  height: 364px;
}
.top-escort-item:after{
content: '';
background: linear-gradient(0deg, rgb(0 0 0 / 91%) 0%, rgba(253, 187, 45, 0) 100%);
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
  
}
.top-escort-item img{
  width: 100%;
    height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.top-escort-item:hover img{
  transform: scale(1.1) rotate(3deg);
}
.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 1;
  padding: 10px;
  padding-bottom: 10%;
  transform: translateY(101%);
  transition: ease-in-out .5s;
  
}
.overlay h4,.top-escort-item h3 {
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 2.2;

}
.top-escort-item:hover .overlay{
  transform: translateY(0%);
}
.top-escort-item h3{
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.overlay .btn-group{
  justify-content: center;
}

.overlay .btn-group a img{
  transform: scale(1);
  width: auto;
  height: auto;
}
.top-escort-item:hover h3{
  opacity: 0;
}
.overlay p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.273;
  text-align: center;
}
.top-escort .slick-slide {
  margin: 0 10px;
}
.top-escort .slick-list {
  margin: 0 -10px;
}
.top-escort-location{
  background-color: rgb(26, 26, 26);
}
/******************************
  Footer
*******************************/
footer {
  background: rgb(243, 15, 15);
    background: linear-gradient(0deg, #6b0909 0%, rgba(18, 17, 17, 1) 100%);
  width: 100%;
padding: 40px 0;
padding-top: 60px;
}


footer p{
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-contact p a{
  color: #e8e60c;
}

.footer-logo {
  margin-bottom: 20px;
}


/***********************************
  Location Listing
************************************/
.location-listing{
  padding: 50px 0;
}
.location-listing h1{
  text-align: center;
  margin-bottom: 40px;
}
.inner-banner{
position: relative;
padding-top: 2%;
background-size: cover;
background-repeat: no-repeat;
overflow: clip;
}
.inner-banner h1 {
  font-family: 'Oswald', sans-serif;
    font-size: 120px;
    line-height: 150px;
    text-transform: uppercase;
    background: #F8FC0D;
    background: linear-gradient(8deg, #F8FC0D 8%, #906A05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.location-details-banner h1{
  font-size: 75px;
  line-height: 88px;
}
.location-details-banner .banner-content{
  padding-top: 35%;
    padding-bottom: 33%;
}
.inner-banner .ib-img{
  margin-bottom: -8%;
}
/***********************************
  Location Details
************************************/
.location-details{
  padding: 50px 0;
}
.ditails-banner::after,
.blog-banner:after{
  background: linear-gradient(90deg, rgb(27 27 27 / 67%) 0%, rgb(27 27 27 / 27%) 35%, rgb(0 212 255 / 0%) 100%);
}
.ditails-banner.inner-banner h2 {
  font-size: 42px;
  color: rgb(255, 35, 35);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 52px;
  margin-bottom: 10px;
}

.ditails-banner p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.591;
  margin-bottom: 0;
}
.location-details h1{
  text-align: left;
  font-size: 38px;
}
.location-details h1::after{
  margin-left: 0;
}
.location-details p {
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 1.591;
}
.location-details ul{
padding-left: 18px;
}
.location-details ul li{
  list-style-type: disc;
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 1.591;
  margin-bottom: 10px;
}
.location-details ul li::marker {
  color: #f61c0d;
  font-size: 20px;
}
.city .location-list img {
  margin-bottom: 0;
}

.city .location-list h4 {
  background-color: rgb(16 16 16 / 80%);
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: 0;
}
.city .location-list h4::after{
  content: '';
  width: 0;
  background-color: #e0006c;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  transition-duration: .7s;
}
.city .location-list:hover{
  
}

.city .location-list:hover h4::after{
  width: 100%;
}
.w-100{
  width: 100%;
}
.location-listing.category-list.clist h4 img{
  width: auto;
}
/*****************************
Blog Listing
*****************************/
.blog-list{
  position: relative;
  
  overflow: hidden;
}
.blog-content{
  background-color: rgb(25, 25, 25);
    padding: 15px;
    width: 94%;
    margin: auto;
    transform: translateY(-27px);
    margin-bottom: -20px;
}

.blog-list img{
  width: 100%;
}
.blog-list:hover img{
  opacity: .8;
}
.blog-list:hover h4{
  color: rgb(243, 15, 15);
}

.blog-content h4 {
  font-size: 26px;
  color: rgb(255, 255, 255);
  line-height: 1.4;
  text-align: left;
  margin-bottom: 10px;
}
.blog-content p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.438;
  text-align: left;
}
p.date {
  font-size: 18px;
  color: rgb(243, 15, 15);
  line-height: 1.4;
  text-align: left;
  margin-bottom: 10px;
  transition: none;
}
.blog-content .btn-group {
  gap: 0;
}
.blog-content .btn-group .primary-btn{
    padding: 18px 46px;
}

/*******************************
  Blog Details
********************************/
.blog-details {
  padding-top: 150px;
  padding-bottom: 30px;
}
.blog-details h4{
  font-size: 36px;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-bottom: 40px;
}
.blog-details img{
  margin-bottom: 30px;
}
.blog-details p {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.722;
  text-align: left;
  margin-bottom: 30px;
}
.blog-details h5 {
  font-size: 32px;
  color: rgb(255, 255, 255);
  line-height: 0.933;
  text-align: left;
  margin-bottom: 30px;
  margin-top: 50px;
  font-style: normal;
}

.related-articles{
  padding: 50px 0;
  padding-top: 0;
}
.related-articles h2{
  margin-bottom: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

.blog-details p.date{
  font-size: 18px;
  color: rgb(253, 18, 100);
  line-height: 1.4;
  text-align: left;
  margin-bottom: 10px;
  transition: none;
  margin-bottom: 5px;
}
.profile-details {
  padding-top: 150px;
  padding-bottom: 0px;
}
.profile-details h1{
  margin-bottom: 40px;
}
.profile-details h1::after{
  margin-left: 0;
}
.profile-image{
  position: relative;
  height: 740px;
}
.profile-image .profile-img-big{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.call-wp {
  background-color: #f41909;
  margin: auto;
  position: absolute;
  bottom: -8%;
  left: 10%;
  right: 10%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  padding-inline: 5%;
  font-size: 60px;
}
.call-wp a{
  color: #fff;
}
.call-wp a:hover{
  color: #e8e60c;
}
.call-wp a:hover img{
  transform: scale(1.1);
}
.about-me{
  background-image: -moz-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
  background-image: -webkit-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
  background-image: -ms-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
    padding: 30px;
    margin: auto;
    z-index: 1;
    position: relative;
    padding-top: 0;
}
.profile-details h1{
    font-size: 44px;
    font-family: "Barlow";
    color: rgb(198, 182, 9);
    font-weight: bold;
    line-height: 1.273;
    text-transform: unset;
}
.profile-img-big{
  width: 100%;
}
.about-me h4{
  font-size: 30px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 2.767;
  margin-bottom: 20px;
}
.about-me h4:after {
  content: '';
  width: 39px;
  height: 1px;
  background-color: rgb(243, 15, 58);
  display: inherit;
  margin-top: -9px;
}
.about-me p {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.55;
  text-align: left;
}

.about-me p.fasility {
    font-size: 20px;
    color: rgb(245, 28, 13);
    line-height: 1.55;
}
.about-me .primary-btn{
  position: absolute;
    bottom: -36px;
    left: 10%;
    right: 10%;
    font-size: 40px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    line-height: inherit;
    padding: 16px 44px;
    text-align: center;
    justify-content: center;
}

.sidebar {
    margin-bottom: 20px;
      border-style: solid;
      border-width: 2px;
      border-color: rgb(93, 10, 10);
      background-color: #151515;
    
}
.sidebar-body {
  /* background-color: rgb(117 0 60); */
    padding: 20px;
    padding-bottom: 6px;
    padding-top: 10px;
}
.sidebar-head {
  font-size: 22px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: inherit;
    text-align: left;
    padding: 15px 20px;
      background-image: -moz-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
      background-image: -webkit-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
      background-image: -ms-linear-gradient( -94deg, rgb(18,17,17) 0%, rgb(117,8,8) 100%);
    
}
.sidebar h3 {
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: inherit;
  border-bottom: 1px solid rgb(255 255 255);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.sidebar p{
  display: flex;
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: inherit;
    border-bottom: 1px solid rgb(255 255 255 / 37%);
    padding-bottom: 15px;
    margin-bottom: 10px;
}
.sidebar p span{
  width: 60%;
  display: inline-block;
  color: rgb(198, 182, 9);
}
.sidebar p span:last-child{
  width: 40%;
  display: inline-block;
  color: #fff;
}
.sidebar p:last-child{
  border-bottom: 0;
}
.sidebar.fees p span{
  width: 50%;
  display: inline-block;
}
.sidebar.fees p span:last-child{
  width: 50%;
  display: inline-block;
  
}
.sidebar h4 {
  font-size: 30px;
  font-family: "Barlow";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: inherit;
}

.gallery-item{
  overflow: hidden;
  position: relative;
}
.gallery-item a:after{
  background-color: #f3223b5e;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  opacity: 0;
}
.gallery-item a:hover:after{
  opacity: 1;
}
.gallery-item a:hover img{
  transform: scale(1.1);
}
.gallery-item img{
  height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.gallery-item a{
  position: relative;
  z-index: 10;
  display: block;
}
.category-list .location-list .ct-img{
  width: 100%;
}
.category-list .location-list h4 {
  background: rgb(243, 15, 15);
  background: linear-gradient(0deg, rgba(243, 15, 15, 1) 0%, rgba(18, 17, 17, 1) 100%);
  text-align: left;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0% 0% 0% 0%;
  width: 90%;
  margin: auto;
  padding: 15px;
  transform: translateY(-16px);
  font-size: 22px;
  font-family: "Oswald";
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1.25;
  font-weight: 300;
}
.category-list .location-list:hover h4{
  width: 100%;
  color: #fff;
}

.category-list .location-list h4 img{
  margin-bottom: 0;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(220deg) brightness(105%) contrast(102%);
}

.category-list .location-list:hover h4 img{
	filter:unset;
}
.s2{
  background-position: center;
}
.br100{
  border-radius: 100% 100%;
}
.br100-100{
  border-radius: 100% 100% 0 0;
}
.category-details-banner .banner-content{
  padding-block: 34%;
}
.category-details-banner h1{
  font-size: 84px;
    line-height: 84px;
}
.category-details h1 {
  text-align: left;
  font-size: 28px;
}
.more-category .location-list h4{
  justify-content: center;
}
.more-category .location-list img {
  margin-bottom: 22px;
  width: 100%;
}
.call-sex{
  width: 75%;
  margin: auto;
  padding-block: 6%;
}
.left-girl {
  position: absolute;
  left: 0;
  bottom: 0;
}
.right-girl {
  position: absolute;
  right: 0;
  bottom: 0;
}


/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
img{
  transition: all .5s;
}
@media (max-width: 1920px) { 
  
}

@media (max-width:1600px){
    .right-girl {
        position: absolute;
        right: -7%;
        bottom: 0;
        width:28%;
    }
    .left-girl {
        position: absolute;
        left: -12%;
        bottom: 0;
        width:28%;
    }
}

@media (max-width: 1440px),(max-width: 1366px) {
  .container{
    max-width: 1200px;
  }
  ul.accordion li a.toggle {
    font-size: 18px;
    padding: 15px;
}

.hero-banner h1 {
    font-size: 110px;
    line-height: 110px;
}
.hero-banner h3 {
  font-size: 37px;
}
.escort-category-box {
  height: 320px;
}
.model-category .escort-category-box {
  height: 306px;
}
.bg-h {
  height: 93vh;
  background-position: center;
}
.details h5 {
  font-size: 36px;
}
.our-escort .escort-content .primary-btn {
  padding: 16px 26px;
  font-size: 18px;
}
.call-content {
  top: 8%;
}
.escort-club::after {
  width: 460px;
  height: 296px;
}
.profile .profile-img {
  height: 275px;
}
.genuine {
  padding: 60px 0;
}
.profile-content .name h4 {
  font-size: 20px;
}
.experience h2 {
  font-size: 50px;
  line-height: 55px;
}
.why-chose h2 {
  font-size: 50px;
}
.top-escort-item {
  height: 260px;
}
h2 {
  font-size: 30px;
    line-height: 44px;
}
p {
  font-size: 19px;
  line-height: 1.391;
}
.inner-banner h1 {
  font-size: 110px;
  line-height: 110px;
}
.location-details-banner h1 {
  font-size: 64px;
  line-height: 74px;
}
.location-details-banner .banner-content {
  padding-top: 35%;
  padding-bottom: 13%;
}
.inner-banner .ibb-img{
  width: 70%;
}
.category-details-banner h1 {
  font-size: 68px;
  line-height: 72px;
}
.category-details-banner .banner-content {
  padding-block: 26%;
}
.call-wp {
  font-size: 38px;
}
.call-girl h1 {
  font-size: 68px;
  line-height: 68px;
}
.call-model.model-category .escort-category-box {
  height: 437px;
}
.right-girl {
  position: absolute;
  right: -66px;
  bottom: 0;
  width: 29%;
}
.left-girl {
  position: absolute;
  left: -120px;
  bottom: 0;
  width: 27%;
  height: auto;
}
}

@media (max-width: 1199.98px) { }

@media (max-width: 991.98px) { 
  .hero-banner {
    padding-top: 120px;
    padding-bottom: 50px;

}
.banner-img {
  position: absolute;
    right: -13%;
    bottom: 0;
    width: 58%;
    z-index: 0;
}
.hero-banner h1 {
  font-size: 50px;
}
.banner-content {
  position: relative;
  z-index: 1;
  width: 90%;
}
.hero-banner h5 {
  font-size: 19px;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.about {
  padding: 30px 0;
}
h2 {
  font-size: 30px;
  line-height: 1.529;
}
p {
  font-size: 16px;
}
.right .img {
  width: 25%;
  right: 16px;
  z-index: 1;
}
.row-cols-lg-5 .col{
  max-width: 33.33%;
  flex: 1 0 33.33%;
}
.escort-content h1,.experience h1 {
  font-size: 30px;
  line-height: 50px;
}
.slick-slide {
  margin: 0 6px;
}
.slick-list {
  margin: 0 -6px;
}
.experience {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: 40px 0px;
}

.ditails-banner.inner-banner h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}
.inner-banner .banner-content {
  width: 50%;
}
.ditails-banner img {
  height: 350px;
  object-fit: cover;
}
}
@media (max-width: 575.98px) { 
  header.sticky .logo img {
    height: 36px;
    width: auto;
}
.inner-banner .ibb-img{
  margin-bottom: -8%;
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 60%;
}
  .menu-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
}
.contact-info a {
  font-size: 13px;
    line-height: inherit;
}
.contact-info p {
  font-size: 11px;
    line-height: inherit;
    margin-bottom: 0;
}
.contact-info img {
  height: 20px;
  left: 0;
}
.contact-info {
  padding: 4px 6px;
  padding-left: 25px;
}
.menu-right:after {
  border-left-width: 27px;
  left: -26px;
  border-top: 47px solid #f41909;
}
.banner-content {
  padding-bottom: 0%;
}
.logo {
  height: 45px;
  display: inline-block;
  display: flex;
  align-items: center;
  width: 44%;
}
.banner-content {
  position: relative;
  z-index: 1;
  width: 80%;
}
.hero-banner h3 {
  font-size: 16px;
  line-height: 16px;
}
.hero-banner h1 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 50px;
}
.hero-banner h5 {
  font-size: 12px;
  margin-bottom: 10px;
}
.hero-banner p {
  font-size: 11px;
}
.primary-btn{
  padding: 10px 18px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 22px 0;
    gap: 6px;
}
.primary-btn img{
  width: auto;
  height: 16px;
}
.top-escort-category {
  padding-top: 20px;
  padding-bottom: 40px;
}
.escort-category-box {
  height: 192px;
}
.escort-category-info h4 {
  font-size: 14px;
  line-height: 16px;
}
.escort-category-info .name {
  padding: 9px;
}
.about .row .col-lg-7:nth-child(2) {
  padding-right: 10px;
  padding-left: 10px;
}
.btn-group a:nth-child(2) img{
  width: 45px;
}
.hero-banner {
  padding-top: 80px;
  padding-bottom: 30px;
}
.banner-img {
  width: 54%;
  z-index: 0;
}
.about-box {

}
.about .col-lg-7 {
  padding: 15px;
}
.profiles {
  padding: 20px 0;
}
h2 {
  font-size: 20px;
  line-height: 1.529;
}
.why-choose {
  padding: 30px 0;
}
.why-choose-box {
  padding: 8px 8px;
}
.why-choose-box h4 {
  font-size: 16px;
  line-height: 35px;
}
.why-choose-box p {
  line-height: 18px;
}
.why-choose-box .icon img {
  width: 50px;
  height: auto;
}
.why-choose-box .icon {
  height: 70px;
}
.details h5 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.details {
  padding-top: 30px;
  padding-bottom: 25px;
}
.our-escort {
  padding: 30px 0;
  padding-bottom: 40px;
}
.our-escort h2 {
  text-align: center;
  margin-bottom: 20px;
}
.our-escort .escort-content p {
  font-size: 14px;
  line-height: 14px;
}
p {
  font-size: 12px;
}
.about {
  padding: 50px 0;
  position: relative;
}
.model-category .escort-category-box {
  height: 250px;
}
.model-category .escort-category-info .name p.star {
  line-height: 1;
}
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.left .img {
  width: 15.3%;
  left: 0px;
  z-index: 1;
}
.left .angle {
  width: 12%;
  z-index: 1;
}
.right .img {
  width: 23%;
  right: 0px;
  z-index: 1;
}
.right .angle {
  width: 15%;
  z-index: 1;
}
.row-cols-lg-5 .col {
  max-width: 50%;
  flex: 1 0 50%;
}
.profile .profile-img {
  overflow: hidden;
  height: 190px;
  margin-bottom: 0px;
}
ul.accordion li a.toggle {
  font-size: 14px;
  padding: 8px;
  padding-right: 25px;
}
ul.accordion li a.toggle::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid black;
  right: 6px;
  top: 16px;
}
.faq .offer-img {
  position: relative;
  margin-bottom: -10%;
  text-align: center;
}
.satisfy.genuine {
  background-position: right;
}
.profile-content .name h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
.profile-content p {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.escort-content h1, .experience h1 {
  font-size: 22px;
  line-height: 34px;
}
.escort-content p {
  font-size: 14px;
}
.women-info {
  top: auto;
  display: block;
  padding: 10px;
padding-bottom: 20px;
}
.women-info .name {
  width: 100%;
  margin-bottom: 10px;
}
.women-info h4 {
  font-size: 22px;
}
.tags span {
  font-size: 10px;
    padding: 2px 4px;
    cursor: pointer;
    line-height: inherit;
}
.women-info .primary-btn {
  font-size: 14px;
  padding: 6px 18px;
}
.women-info.sm-box .tags {
  margin-bottom: 0px;
  gap: 2px;
}
.women-info.sm-box {
  padding: 5px;
    background: linear-gradient(0deg, rgb(0 0 0 / 81%) 0%, rgb(0 0 0 / 5%) 100%);
    top: 0;
}
.women-info.sm-box .tags span {
  font-size: 8px;
  padding: 2px 5px;
  cursor: pointer;
}
.women-info.sm-box .primary-btn {
  font-size: 12px;
  padding: 4px 18px;
  margin-bottom: 5px;
}
.women-info.sm-box .name {
  width: 100%;
  margin-bottom: 6px;
}
.women-info.sm-box h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.experience {
  padding: 10px 0;
  background-repeat: no-repeat;
}
.experience h2 {
  font-size: 26px;
  line-height: 30px;
}
.women {
  height: 160px;
}
.choose-box .row .col-lg-7 {
  padding: 15px;
}
.why-chose h2 {
  font-size: 25px;
}
.our-escort .escort-content {
  padding: 7px;
  padding-top: 5px;
}
.our-escort small {
  font-size: 12px;
  line-height: 20px;
}
.our-escort .escort-content h4 {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 18px;
}
.our-escort .escort-content .btn-group a:last-child img{
  width: 30px;
  height: 30px;
}
.our-escort .escort-content .primary-btn {
  font-size: 12px;
  padding: 8px 16px;
  gap: 5px;
  line-height: 12px;
  border-radius: 15px 0;
}
.satisfy,.offers {
  padding: 30px 0;
}
.call .bg {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.call-content {
  left: 30%;
  width: 64%;
}
.club-img {
  margin-top: -50px;
  margin-bottom: -30px;
}
.blog-content h4 {
  font-size: 22px;
}
.blog-content .btn-group .primary-btn {
  padding: 10px 25px;
}
.profile .tags span {
  padding-inline: 10px;
  padding-block: 4px;
}
.profile .tags span img{
 height: 15px;
 width: auto;
}
.our-escort .escort-content .primary-btn img{
  height: 10px;
}
.why-chose {
  padding-bottom: 0px;
  padding-top: 15px;
}
footer {
  padding-top: 20px;
  text-align: center;
  padding-bottom: 10px;
}
footer p {
  justify-content: center;
}
.why-chose h1 {
  text-align: left;
  line-height: 40px;
}
.list-item span {
  width: 60px;
  height: 60px;
  padding: 15px;
}
.list-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 25px;
}
.list-item h4 {
  font-size: 16px;
}
.list-item p {
  font-size: 13.2px;
}
.list-item p {
  font-size: 13px;
  line-height: 17px;
}
.why-chose .col-lg-5,.faq .col-lg-4{
  display: none;
}
.why-chose .btn-group {
  padding-left: 70px;
}
section.faq {
  position: relative;
  padding-top: 50px;
}
#accordion .head h2 {
  font-size: 16px;
  padding-right: 20px;
}
#accordion .head {
  padding: 10px 0px;
}
#accordion .arrow {
  box-sizing: border-box;
  height: 10px;
  width: 10px;
}
.top-escort-item {
  position: relative;
  overflow: hidden;
  height: 248px;
}
.overlay h4, .top-escort-item h3{
  font-size: 16px;
}
.overlay{
  padding: 10px;
  padding-bottom: 10%;
}
.overlay p{
  font-size: 12px;
}
.overlay .btn-group a {
  font-size: 12px;
  padding: 6px 20px;
}
footer p {
  font-size: 14px;
}
.footer-contact p {
  font-size: 14px;
  line-height: 22px;
  padding-left: 25px;
}
.location-list h4 {
  font-size: 12px;
  line-height: 40px;
  bottom: 0px;
  left: 0%;
  right: 0%;

}
.inner-banner .container {
  padding-top: 46px;
}
.inner-banner h1{
  font-size: 50px;
  line-height: 50px;
}

.location-listing {
  padding: 30px 0;
}
.location-details h1 {
  text-align: left;
  font-size: 22px;
}
.ditails-banner.inner-banner h2 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.ditails-banner p {
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.591;
  margin-bottom: 0;
}
.ditails-banner.inner-banner img {
  height: 270px;
  object-fit: cover;
  width: 100%;
}
.inner-banner .banner-content {
  width: 74%;
  padding-top: 15%;
  padding-bottom: 15%;
}
.inner-banner .ib-img {
  margin-bottom: -8%;
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 70%;
}
.location-details p,.location-details ul li {
  font-size: 14px;
}
.blog-details {
  padding-top: 80px;
  padding-bottom: 0px;
}
.blog-details h4 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 32px;
}
.blog-details img {
  margin-bottom: 15px;
}
.blog-details p {
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-details h5 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.profile-details {
  padding-top: 75px;
  padding-bottom: 0px;
}
.about-me {

}
.about-me h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
.about-me p {
  font-size: 14px;
}
.about-me p.fasility,.sidebar p {
  font-size: 14px;
}
.about-me .primary-btn {
  left: 10%;
  right: 10%;
  font-size: 20px;
  padding: 16px 30px;
  bottom: -28px;
}
.about-me .primary-btn img{
  height: 20px;
}
.gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.women img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
}
.category-list .location-list h4 {
  padding: 0 10px;
    left: 0px;
    right: 0px;
    line-height: 34px;
}
.category-list .location-list h4 img{
  height: 12px;
}
.fixed-btn {
  width: 30px;
}
.location-details-banner h1 {
  font-size: 26px;
    line-height: 30px;
    margin-bottom: 6px;
}
.inner-banner.location-details-banner {
  background-position: bottom;
}
.category-list .location-list h4 {
  width: 100%;
  font-size: 14px;
}
.category-details-banner h1 {
  font-size: 40px;
  line-height: 40px;
}
.category-details-banner .banner-content {
  padding-block: 6%;
}
.inner-banner.category-details-banner {
  background-position: 55%;
}
.satisfy.genuine.cd-details {
  background-position: 53%;
}
.profile-image {
  position: relative;
  height: 414px;
}
.profile-details h1 {
  font-size: 25px;
}
.call-wp {
  font-size: 20px;
}
.call-wp .call-btn img{
  height: 16px;
  width: auto;
}
.call-wp  img{
  height: 30px;
  width: auto;
}
.call-girl h1 {
  font-size: 28px;
  line-height: 28px;
}
.details.nv-services {
  padding-top: 30px;
  padding-bottom: 30px;
}
.call-model.model-category .escort-category-box {
  height: 250px;
}
.genuine :is(h2,p) {
  text-align: center;
}
.genuine .btn-group {
  justify-content: center;
}
.right-girl, .right-girl{
  display: none;
}
}


 /**************************************
             About
**************************************/
@media (max-width: 1920px) { 
   
}
 @media (max-width: 1399.98px) {
   
 }
 @media (max-width: 1199.98px) { 
    
}
@media (max-width: 991.98px) { 
    
    
 }
 @media (max-width: 575.98px) { 
   
    
 }


 /* Extra Code */
 .wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 40px;
 }
.wp-pagenavi span.current{
  background-color: #f47b20;
  padding: 10px 15px;
    margin: 10px;
    color:#fff;
    border:none;
}
.wp-pagenavi a, .wp-pagenavi span{
  color:#fff;
  padding: 10px 15px;
  margin: 8px;
  border: 1px solid #d5d5d5;
}
.wp-pagenavi a:hover{
  color:#fff;
  padding: 10px 15px;
  margin: 8px;
  background-color: rgb(246, 28, 13);
  border: 1px solid #d5d5d5;
}
.wp-pagenavi span:hover{
  color:#fff;
  padding: 10px 15px;
  margin: 8px;
  background-color: rgb(246, 28, 13);
  border: 1px solid #d5d5d5;
}


.blog-details h3{
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 10px;
    color: #dfca66;
    font-weight: 600;
}

.blog-details h1{
    font-size: 36px;
    text-align: left;
    margin-bottom: 40px;
    color: #dfca66;
}
@media (max-width: 767px) {
    .blog-details h1{
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 32px;
    }
}
@media (max-width: 575.98px) {
    .blog-details h1{
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 32px;
    }
}