
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
a:focus {
	outline: 0!important;
	outline-offset: 0!important
}
a{
	text-decoration: none;
	
}
button:focus, input:focus{
    outline: none;
}
/* width */
::-webkit-scrollbar {
	width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background-image: radial-gradient( circle farthest-corner at 50.4% 50.5%, rgba(251,32,86,1) 0%, rgba(135,2,35,1) 90% );
  }
  
body
{
	font-family: 'Roboto', sans-serif;
    margin: 0;
    position: relative;
    font-size: 14px;
    line-height: 30px;
	color: #fff;
	background:#000;
}
h1, h2, h3, h4{
    margin: 0 0 10px 0;
}
p{
    margin: 0 0 10px 0;
}
.head-top{
	background-image: linear-gradient( 178.2deg, rgba(118,8,23,1) 10.9%, rgba(158,12,33,1) 62.6% );
	padding: 15px 0;
}
.logo{
	width: 100%;
	display: block;
}
.head-top img{
	display: block;
}
.head-top a{
	padding: 10px 45px;
	background-image: linear-gradient( 178.2deg,  rgba(118,8,23,1) 10.9%, rgba(158,12,33,1) 62.6% );
	border-radius: 50px;
	border: 1px solid #fff;
	color: #fff;
	box-shadow: 0 2px 2px #000;
	font-size: 16px;
}
.logo-cont p{
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	margin-top: 5px;
}
.logo-cont h1{
	text-align: center;
}
/* nav */
.menu-wrwpper{
	height: 70px;
	background-image: linear-gradient( 178.2deg,  rgba(118,8,23,1) 10.9%, rgba(158,12,33,1) 62.6% );
}
nav .navbar
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-top: 0;
}
nav .navbar .bx-menu, nav .navbar img,
nav .navbar .nav-links .side-bar-logo .logo-name,
nav .navbar .nav-links .side-bar-logo .menu-close
{
	display: none;
}
nav .navbar .logo
{
	display: flex;
}
nav .navbar .logo a
{
	font-size: 30px;
	text-decoration: none;
	font-family: 'Bebas Neue', cursive;
	color: #6A1B9A;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
  }
  
.logo img{
	width: 160px;
	height: auto;
}
.logo-name img{
	width: 200px;
}
nav .navbar .nav-links
{
	height: 100%;
	line-height: 70px;
}
nav .navbar .nav-links .links{
	display: flex;
}
nav .navbar .nav-links .links li{
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
}
nav .navbar .nav-links .links li a{
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	height: 100%;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
	padding: 0 15px;
	position: relative;
	z-index: 2;
}
.navbar .search-icon
{
	position: relative;
	height: 40px;
	width: 40px;
}
.navbar .search-icon i{
	color: #fcd5ff;
	position: absolute;
	height: 100%;
	width: 100%;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}
.navbar .search-icon .input-box
{
	height: 60px;
	width: 300px;
	background: #1b021d;
	top: 80px;
	right: calc(100% - 40px);
	border-radius: 6px;
	position: absolute;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}

.navbar.showInput .search-icon .input-box{
	top: 65px;
	opacity: 1;
	pointer-events: auto;
}
.navbar .search-icon .input-box::before{
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	background: #1b021d;
	right: 10px;
	top: -6px;
	transform: rotate(45deg);
}
.navbar .search-icon .input-box input{
	position: absolute;
	height: 35px;
	width: 280px;
	z-index: 98;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 16px;
}
header{
	background: #000;
}
.banner img{
	display: block;
	width: 100%;
}
.brand-name{
	background-image: linear-gradient( 178.2deg, rgba(118,8,23,1) 10.9%, rgba(158,12,33,1) 62.6% );
	text-align: center;
	padding: 15px 0;
}
.mobile{
	display: none !important;
}
.brand-name h1{
	margin: 0 0 15px;
}
.brand-name h2{
	margin: 0;
}
.quick-book{
	text-align: center;
	padding: 50px 0;
	background: #000;
}
.quick-book-btns a img{
	width: 20px;
	margin-right: 10px;
}
.quick-book p{
	font-size: 20px;
	font-weight: 500;
}
.quick-book-btns a{
	color: #fff;
	background: crimson;
	padding: 10px 40px;
	border-radius: 50px;
}
.quick-book-btns a:last-child{
	background: #3fc250;
}
.main-sec{
	padding-top: 15px;
}
.profile-div{
	background: #6e050f;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 5px;
}
.profile-div a{
	color: #fff;
}
.profile-div p{
	font-size: 18px;
	line-height: 20px;
	margin-top: 10px;
	text-transform: uppercase;
}
.profile-div p:last-child{
	color: #ffc107;
	font-size: 14px;
	margin: 0;
}
.escorts-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 5px;
}
.escorts-list-second{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 5px;
	padding: 15px 0;
}
.escorts-category .profile-div p{
	margin: 15px 0 0 0;
}
.escorts-category h2{
	text-transform: uppercase;
	margin: 15px 0;
	background-image: radial-gradient( circle farthest-corner at 50.4% 50.5%, rgba(251,32,86,1) 0%, rgba(135,2,35,1) 90% );
	padding: 15px;
}
.view-btn{
	text-align: center;
}
.view-btn a{
	color: #000!important;
    background-color: #f5c87c;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 4px;
	display: inline-block;
	margin-top: 15px;
}
.poster{
	margin: 15px 0;
}
.escorts-listing h2{
	text-transform: uppercase;
	background-image: radial-gradient( circle farthest-corner at 50.4% 50.5%, rgba(251,32,86,1) 0%, rgba(135,2,35,1) 90% );
	padding: 15px;
}
.text-area{
	padding: 20px;
	margin-top: 15px;
	background: #000;
}
.text-area p a{
	color: #ffc107;
}
.footer-top{
	background-image: radial-gradient( circle farthest-corner at 50.4% 50.5%, rgba(251,32,86,1) 0%, rgba(135,2,35,1) 90% );
	padding: 25px;
	margin-top: 15px;
	text-align: center;
}
.footer-col-row{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 15px;
}
footer{
	background: #0e0e0e;
	padding: 20px 0 0 0;
}
.footer-col a{
	display: block;
	color: #fff;
}
footer h4{
	color: #ffc107;
}
.cp-ryt{
	background: rgb(39, 39, 39);
	padding: 15px 0;
	text-align: center;
	margin-top: 15px;
}
.cp-ryt p{
	margin: 0;
}
@media(max-width:1199px){
	
	.navbar
	{
		max-width: 970px;
	}

}
@media(max-width:991px){
	
	.navbar
	{
		max-width: 750px;
	}
	nav .navbar .logo a
	{
		font-size: 20px !important;
	}
	nav .navbar .nav-links .links li a
	{
		font-size: 14px;
	}
	.navbar .search-icon i
	{
		font-size: 16px;
	}
	.head-top-img-50{
		display: none !important;
	}

	
}
@media(max-width:767px){

	.navbar
	{
		max-width:100%;
	}
	nav .navbar .nav-links
	{
		display: block;
		position: fixed;
		top: 0;
		left: -100%;
		max-width: 100%;
		width:100%;
		background-image: radial-gradient( circle farthest-corner at 50.4% 50.5%, rgba(251,32,86,1) 0%, rgba(135,2,35,1) 90% );
		padding: 20px;
		line-height: 40px;
		transition: all 0.5s ease;
		z-index: 999;
	}
	nav .navbar .logo a
	{
		display: inline-flex;
	}
	nav .navbar .nav-links .side-bar-logo{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 20px;
		line-height: 40px;
	}
	nav .navbar .nav-links .side-bar-logo .logo-name
	{
		color: #6A1B9A;
		font-size: 20px;
		font-family: 'Bebas Neue', cursive;
	}
	.navbar .bx-menu,
	nav .navbar .nav-links .side-bar-logo .bx-x{
		color: #fff;
		font-size: 25px;
		font-weight: 700;
	}
	nav .navbar .nav-links .links{
		display: block;
		margin-top: 20px;
	}
	nav .navbar .nav-links .links li{
		padding: 0 20px;
	}
	nav .navbar .bx-menu, nav .navbar img,
	nav .navbar .nav-links .side-bar-logo .logo-name,
	nav .navbar .nav-links .side-bar-logo .menu-close
	{
		display: block;
	}
	.navbar .search-icon
	{
		display: none;
	}
	nav .navbar
	{
		padding: 0 15px;
		justify-content: end;
	}
	.navbar img{
		width: 35px;
	}
	nav{
		height: auto;
		padding:5px 0;
	}
	.menu-close{
		width: 18px !important;
	}
	.logo-name a{
		color: #fff;
	}
	.head-top-img-50{
		display: block !important;
	}
	.head-top-img-100{
		display: none !important;
	}
	.logo-cont{
		padding: 15px 0;
	}
	.menu-wrwpper{
		height: auto;
	}
	.mobile{
		display: block !important;
	}
	.desktop{
		display: none !important;
	}

}
@media(max-width:499px){
	.head-top img {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	nav .navbar .nav-links
	{
		max-width: 100%;
	}
	.quick-book-btns a {
		display: block;
		margin-bottom: 10px;
	  }
	  .left-img img{
		  width: 100%;
	  }
	  .escorts-category h2, .escorts-listing h2{
		  font-size: 20px;
	  }
	  .logo-cont p {
		font-size: 14px;
	  }
	
	  .escorts-list{
		grid-template-columns: repeat(2, 1fr);
	  }
	  .view-btn a {
		color: #000 !important;
		background-color: #f5c87c;
		font-weight: 500;
		font-size: 13px;
		padding: 1px 17px;
		border-radius: 4px;
		display: inline-block;
		margin-top: 15px;
	  }
	  .escorts-list-second {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	  }
	  .footer-top h3{
		  font-size: 18px;
	  }
	  .footer-col-row {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	  }
}
