@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Medium.ttf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-SemiBold.ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Bold.ttf');
    font-weight: 700;
    font-display: swap;
}

/*header css*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    background: #000;
    letter-spacing: .5px;
}

a {
    text-decoration: none;
    transition: .5s;
    color: #fab201;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    padding-left: 10px;
    padding-right: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fab201;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -.5px;
}

h1 {
    margin: 0 0 1.5rem;
    font-size: 40px;
}

h2 {
    margin: 0 0 1.5rem;
    font-size: 35px;
}

h3 {
    margin: 0 0 1.5rem;
    font-size: 27px;
}

h4 {
    margin: 0 0 1.5rem;
    font-size: 23px;
}

h5 {
    margin: 0 0 1.5rem;
    font-size: 23px;
}

h6 {
    margin: 0 0 1.5rem;
    font-size: 23px;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pb-0 {
    padding-bottom: 0rem;
}

.pb-2 {
    padding-bottom: 1rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.pl-0 {
    padding-left: 0rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-4 {
    padding-right: 4rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-5 {
    padding-left: 5rem;
}

.d-flex {
    display: flex;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn {
    background: linear-gradient(#fc0, #f98706);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 3px;
    border: none;
    position: relative;
    cursor: pointer;
}

.btn:hover {
    background: #9f6c3f;
    color: #fff;
}

.form-control {
    display: block;
    width: 100%;
    height: 52px;
    padding: .8rem 1.2rem;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfdfdf;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #811fe2;
}

.desk-top {
    display: block !important;
}

.mobile {
    display: none !important;
}

.top_border {
    border-top: #b9953e solid 1px;
}

section {
    padding: 4rem 0;
    min-height: 233px;
}

.heading_main {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.heading {
    font-size: 35px;
    color: #fab201;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.heading_main p {
    color: #263171;
    font-size: 17px;
}

.heading span {
    display: block;
    color: #fff;
    font-size: 27px;
    margin-top: 15px;
}

.heading span a {
    color: #fff;
}

.sub_head {
    font-size: 20px;
    color: #fab201;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sub_head span {
    display: block;
}

p {
    margin: 0 0 1rem 0;
    text-align: justify;
}

p a,
p strong {
    font-weight: 700;
}

p+h1,
p+h2,
p+h3,
p+h4,
p+h5,
p+h6 {
    margin-top: 2.5rem;
}

.justify {
    text-align: justify;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-center p {
    text-align: center;
}

.box_content {
    background: #0c0c0c;
    padding: 20px;
    border-radius: 5px;
    margin-top: 2rem;
    border: #282828 solid 1px;
}

.hidden_header {
    height: 152px;
}

header {
    position: relative;
    z-index: 91;
    /*top:0; left:0; right:0;*/
}

.logo {
    display: flex;
    align-items: center;
    margin: 1rem 0 1rem .5rem;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo a {
    color: #fab201;
}

.phone_right {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: .5rem;
}

.phone {
    color: #fff;
    position: relative;
    padding-left: 38px;
    line-height: 1.3;
    margin-left: 40px;
}

.phone a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.phone img {
    width: 25px;
    position: absolute;
    left: 0;
    top: 7px;
}

.phone span {
    display: block;
    font-size: 12px;
    color: #a7a7a7;
    font-weight: 400;
}

.menu {
    width: 100%;
    /*background:linear-gradient(180deg,#780000,#670000 100%,#400); border-top:1px solid #8a4040;*/
    background: #8d613a;
    border-top: 1px solid #ad7e54;
    border-bottom: 1px solid #d2a738;
}

.menu input[type=checkbox],
.menu label {
    display: none;
}

.nav_links {
    height: 100%;
    text-align: center;
}

.nav_links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav_links ul li {
    flex: 1 1 auto;
    list-style: none;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav_links ul li a {
    color: #fff;
    padding: 10px 0;
    display: block;
}

.nav_links ul li a:hover {
    color: #fab201;
}

.nav_links ul li img {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: -4px;
    width: auto;
    height: 20px;
}

/*-- footer --*/
footer {
    background: #0e0c0a;
    padding-top: 3rem;
    padding-bottom: 46px;
    font-size: 15px;
}

.f_heading {
    color: #fab201;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: normal;
    text-transform: uppercase;
}

.footer-grids ul {
    margin: 0px;
    padding: 0;
}

.footer-grids ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.footer-grids ul li a {
    color: #c5c4c4;
    font-weight: normal;
    position: relative;
}

.footer-grids ul li a:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #0e0c0a;
    float: left;
    margin-top: 8px;
    margin-right: 15px;
    border-radius: 25px;
    border: #ad9885 solid 2px;
}

.footer-grids ul li a:hover {
    color: #feb021;
}

.footer-grids ul li:last-child {
    margin-bottom: 0;
}

.f_logo {
    margin-bottom: 2rem;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-grids p {
    margin-bottom: 15px;
    color: #c5c4c4;
    text-align: left;
}

.footer-grids p a {
    color: #feb021;
    font-weight: 700;
}

.footer-grids p img {
    height: 20px;
    width: auto;
    display: inline-block;
    margin-bottom: -5px;
    margin-right: 10px;
}

.copyright {
    background: #181511;
    border-top: #2a251e solid 1px;
    padding: 1.2rem 0 1rem;
    margin-top: 2rem;
    color: #c5c4c4;
}

.copyright ul {
    margin: 0;
    padding: 0;
    display: flex;
    float: right;
}

.copyright ul li {
    margin: 0;
    padding: 0 0 0 30px;
    list-style: none;
}

.copyright ul li a {
    color: #c5c4c4;
}

.copyright ul li a:hover {
    color: #feb021;
}

.social {
    display: flex;
    margin-top: 2.5rem;
}

.social img {
    filter: invert(1);
    height: 15px;
    width: 15px;
}

.social a {
    background: #425a78;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
}

.social a:hover {
    background: #feb021;
}

.view_more {
    background: #181511;
    border: #2a251e solid 1px;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px 1px;
    border-radius: 3px;
    margin-top: 1rem;
    display: inline-block;
    text-transform: uppercase;
}

.footer-grids .col-sm-3:nth-of-type(2) {
    width: 22%;
}

.footer-grids .col-sm-3:nth-of-type(3) {
    width: 28%;
}

/*-- //footer --*/
/*-- move top --*/
#toTop {
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: fixed;
    text-decoration: none;
    z-index: 9999;
    font-size: 0;
    color: transparent;
    background: #8d613a;
    border-radius: 3px;
    /*opacity:0.8;*/
}

#toTop:after {
    color: #fff;
    content: '';
    font-size: 18px;
    line-height: 37px;
    font-family: 'FontAwesome';
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/arrow-up-icon.png) no-repeat 12px 11px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*-- //move top --*/
.whatsapp.call {
    bottom: 125px;
}

.whatsapp {
    position: fixed;
    right: 15px;
    bottom: 65px;
    z-index: 9;
    background: #021f8b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 12px;
    animation: 1s infinite alternate bounce;
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px)
    }
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

/*owl css*/
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    padding: 0 5px;
}

.owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.2s ease-in-out 0s;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

/* Owl Default Theme */
.owl-theme:hover .owl-nav {
    opacity: 1;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    opacity: 1;
    right: 0;
    left: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav>div {
    font-size: 0;
    position: absolute;
    right: 10px;
    text-align: center;
    margin-top: -30px;
    width: 22px;
}

.owl-theme .owl-nav .disabled {
    /*opacity:0.5;*/
    cursor: default;
}

.owl-theme .owl-dots {
    margin-top: 45px;
}

/* text-nav */
.text-nav {
    /*padding-right:30px; padding-left:30px;*/
}

.text-nav .owl-nav {
    position: static;
}

.text-nav .owl-nav>div {
    top: 0;
    bottom: 0;
    right: -7px;
    margin-top: 0;
}

.text-nav .owl-nav>div:first-child {
    left: -7px;
}

.text-nav .owl-nav>div:after {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1;
    color: #9aa9b3;
    background: #811fe2 url(../images/right-arrow-icon1.html) no-repeat 7px 6px;
    background-size: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.text-nav .owl-nav>div:first-child:after {
    content: "";
    background: #811fe2 url(../images/left-arrow-icon.html) no-repeat 5px 6px;
    background-size: 10px;
}

.text-nav .owl-nav>div:hover:after {
    background-color: #263170;
}

/*collapse accordion*/
.panel {
    margin-top: 10px;
    overflow: hidden;
}

.panel-body {
    padding: 15px 30px 25px;
    background: #957d62;
}

.panel-title {
    position: relative;
}

.panel-title>a {
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 18px 50px 10px 30px;
    border: #3c3c3c solid 1px;
    color: #fff;
    word-wrap: break-word;
}

.panel-title>a.collapsed:hover,
.panel-title>a:hover {
    background: #957d62;
}

.panel-title>a.collapsed {}

.panel-title a:after {
    content: "";
    position: absolute;
    top: calc(45% + 1px);
    right: 35px;
    border-color: #021f8b;
    border-top: 2px solid;
    border-right: 2px solid;
    width: 10px;
    height: 10px;
    backface-visibility: hidden;
    transition: transform .3s, top .3s;
    transform: rotate(45deg) translate3d(0, -50%, 0);
    transform-origin: 35%;
}

.panel-title a[aria-expanded="true"]:after {
    content: "";
    top: calc(47% - 8px);
    transform: rotate(135deg);
}

.panel-title a[aria-expanded="true"] {
    background: #957d62;
    border-color: #957d62;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

/*end collapse accordion*/

.banner {
    padding: 0px;
    position: relative;
    z-index: 1;
    background: url(../images/bangalore-call-girls-banner.jpg) no-repeat left;
    background-size: 70%;
}

/*.banner:before{content:''; position:absolute; left:0; right:0; top:0; bottom:0; background:rgb(0, 7, 32, 85%); z-index:-1;}*/
.banner_text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 490px;
    height: 380px;
    margin-left: auto;
}

.banner_text .heading {
    font-size: 50px;
    margin-bottom: .5rem;
}

.banner_text .btn {
    margin-top: 2rem;
}

.banner_text h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: .5rem;
}


.dark_bg {
    background: rgb(26 26 26 / 70%);
}

.hr-secodary {
    position: relative;
    background-image: -webkit-linear-gradient(0deg, #fc7318 0%, #feb423 100%);
    background-image: -ms-linear-gradient(0deg, #fc7318 0%, #feb423 100%);
    width: 30px;
    height: 5px;
    display: inline-block;
    border-radius: 5px;
}

.hr-secodary::before,
.hr-secodary::after {
    width: 15px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    background: #e6e9f5;
    border-radius: 5px;
}

.hr-secodary::before {
    left: -30px;
}

.hr-secodary::after {
    right: -30px;
}

.hr_margin {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.escort_bg {
    background: url(../images/bg.html) no-repeat;
    background-size: cover;
    position: relative;
}

/*.escort_bg:before{content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:rgb(0 0 0 / 48%);}*/
.escort_bg .heading {
    color: #fff;
}

.escort_bg .col-sm-3 {
    width: 20%;
}

.escorts {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 4px;
    border-radius: 7px;
    text-align: left;
    background: #323232;
    border: #464646 solid 2px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.escorts figure {
    position: relative;
    margin-bottom: 0px;
    overflow: hidden;
}

.escorts figure img {
    border-radius: 7px;
    transition-duration: 2s;
}

.escorts figure:hover img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.escort_content {
    padding: 13px 10px 5px;
    color: #fff;
}

.name {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}

.type {
    color: #cdcdcd;
    font-size: 15px;
}

.rating {
    position: absolute;
    right: 10px;
    bottom: 8px;
}

.star {
    margin: 0 1px;
    background: url(../images/star.png);
    width: 12px;
    height: 12px;
    background-size: 100%;
    display: inline-block;
}

.half_star {
    margin: 0 1px;
    background: url(../images/half_star.png);
    width: 12px;
    height: 12px;
    background-size: 100%;
    display: inline-block;
}

.verified {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    background: linear-gradient(to right, #fc7318, #fe8415, #fe9515, #fea51a, #feb423);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    z-index: 1;
    text-transform: uppercase;
    padding: 2px 35px 9px 10px;
    -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    clip-path: polygon(0 0, 92% 0, 78% 80%, 0 80%);
    border-top-left-radius: 4px;
    padding-left: 33px;
}

.verified:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    background: url(../images/verify-icon.png);
    background-size: 100%;
    width: 17px;
    height: 17px;
    filter: invert(1);
}

.ul_model {
    margin: 2rem 0 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.ul_model li {
    margin: 0 0 0;
    padding: 20px;
    list-style: none;
    width: 50%;
    background: linear-gradient(45deg, rgba(153, 98, 55, 0.8) 0%, rgba(203, 169, 130, 0.85) 100%);
    position: relative;
    line-height: 1.5;
    z-index: 1;
}

.ul_model li:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/star-bg.webp) top right no-repeat;
    background-size: 100%;
    opacity: .4;
    z-index: -1;
}

.ul_model li h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.top_rated_bg {
    background: url(../images/parallax.png) center no-repeat;
}

.model_main {
    margin-top: 3rem;
    background: #1a1a1a;
    padding: 50px 15px;
    border-radius: 10px;
}

.model_main .col-sm-3 {
    width: 20%;
}

.model_main .col-sm-3.large {
    transform: scale(1.12);
}

.model_main .col-sm-3.large .model {
    border-color: #fab201;
}

.model {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: #464646 solid 2px;
}

.model .name {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0, 68%);
    padding: 7px 10px;
    text-align: center;
}

.new {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #fab201;
    box-shadow: 0 3px 10px -5px black;
    position: absolute;
    top: 19px;
    right: -21px;
}

.new:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #d19501;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d19501;
}

.new:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #e0bc01;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #e0bc01;
}

.new span {
    top: 0;
    transform: translateX(100%) rotate(45deg);
    transform-origin: top left;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    animation: slide 1s infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.provide {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.provide li {
    margin: .5%;
    padding: 10px 15px;
    list-style: none;
    width: 24%;
    background: #8d613a;
    text-align: left;
    border-radius: 5px;
    box-shadow: rgb(211 148 93) 2px 2px 1px 0;
}

.ex_main {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.ex_main img {
    height: 50px;
}

.ex_text {
    padding-left: 25px;
    font-size: 14px;
}

.ex_text h3 {
    font-size: 16px;
    margin-bottom: .5rem;
}

.ex_text p {
    margin-bottom: 0;
    line-height: 1.6;
}

.hot_girl {
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.hot_girl li {
    margin: .5%;
    padding: 10px 15px;
    list-style: none;
    width: 13.28%;
    text-align: center;
    background: #121212;
    border-radius: 5px;
    border: #2a2a2a solid 1px;
    line-height: normal;
}

.hot_girl li img {
    margin: 0 auto 15px;
    height: 45px;
}

.bnr {
    border: #b9953e double 4px;
    padding: 5px;
    overflow: hidden;
}

.bnr img {
    transition: all .9s ease;
}

.bnr:hover img {
    transform: scale(1.1);
}

.bnr1 {
    padding: 10px;
    background: #222;
    border: #464545 solid 1px;
    border-radius: 10px;
    margin-top: 1rem;
}

.parallax_bg {
    text-align: center;
    background: url(../images/parallax-bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.parallax_bg:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 65%);
    z-index: -1;
}

.parallax_bg p {
    text-align: center;
}

/*city dropdown css*/
.location-select {
    margin: 30px 0 0;
    padding: 5px 7px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgb(141 97 58);
    display: inline-block;
}

.select-option {
    padding: 3px 5px;
}

.select-option>label {
    color: #fff;
    font-size: 13px;
}

select#location {
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    color: #333;
    font-size: 14px;
}

select#location:focus option:checked,
select#location option:hover {
    background-color: #09b6dd;
    color: #fff;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.location-select {
    animation: zoomInOut 4s infinite alternate;
}

.location-select:hover,
.location-select:focus-within {
    animation-play-state: paused;
}

/*end city dropdown css*/

.brand_box {
    text-align: center;
    padding: 90px 0 90px;
    border-radius: 15px;
    background: url(../images/brand-escorts.jpg) no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.brand_box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 65%);
    z-index: -1;
}

.brand_box .heading {
    font-size: 25px;
    color: #fff;
    margin-bottom: 5px;
}

.brnd_name {
    font-size: 58px;
    color: #fab201;
    font-weight: 700;
}

.text_animation {
    font-size: 27px;
    text-transform: uppercase;
    min-height: 70px;
}

.nowcalling {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol,
.rcol {
    width: 50%;
}

.lcol a,
.rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.lcol {
    background-color: #fd275a;
}

.rcol {
    background-color: #1db556;
}














@media (max-width:1199px) {
    .container {
        max-width: 1000px;
    }

    .banner {
        background-size: 80%;
    }

    footer {
        font-size: 13px;
    }


}


@media (max-width:896px) {
    .container {
        max-width: 100%;
    }

    /*mobile menu css*/
    .menu {
        width: auto;
    }

    .nav_links {
        display: block;
        position: fixed;
        top: 0px;
        left: -100%;
        right: 0;
        background: #000000;
        padding: 0 20px;
        line-height: 37px;
        transition: all .5s ease;
        z-index: 999;
    }

    .menu input[type=checkbox] {
        display: none;
    }

    .menu :checked+.nav_links {
        display: block;
        left: 0;
        overflow: auto;
        padding-top: 20px;
    }

    .menu label {
        display: flex;
    }

    .menu .nav_links {
        display: none;
    }

    .menu label img {
        height: 35px;
        width: auto;
    }

    .menu .nav_links ul {
        display: block;
        text-align: left;
    }

    .menu .nav_links ul li {
        border-bottom: #202020 solid 1px;
        font-size: 15px;
    }

    .nav_links ul li a {
        padding: 12px 0 10px;
    }

    .menu label svg {
        width: 17px;
        fill: #fff;
        float: right;
    }

    /*end mobile menu css*/

    .menu label a+img {
        margin-left: auto;
    }

    .menu .nav_links label {
        display: block;
    }

    .nav_links ul li a:hover,
    .nav_links ul li a.active {
        background: none;
    }

    .logo {
        margin-top: .6rem;
        margin-bottom: .6rem;
    }

    .banner {
        background-size: 100%;
    }

    .banner_text {
        width: 395px;
        height: 330px;
    }

    .banner_text .heading {
        font-size: 40px;
    }

    .banner_text h1 {
        font-size: 19px;
    }

    .sub_head {
        font-size: 17px;
    }

    h1 {
        font-size: 35px;
    }

    h2,
    .heading {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    .rating {
        position: static;
    }

    .brand_box .heading {
        font-size: 19px;
    }

    .brnd_name {
        font-size: 40px;
    }

    .provide li {
        width: 32.33%;
    }

    .hot_girl li {
        width: 24%;
    }

    footer .col-sm-3,
    .footer-grids .col-sm-3:nth-of-type(3) {
        width: 50%;
        margin-bottom: 1.5rem;
    }

    .footer-grids .col-sm-3:nth-of-type(2) {
        width: 50%;
        padding-left: 15px;
    }

    .copyright {
        margin-top: 1rem;
        text-align: center;
    }

    .copyright ul {
        float: none;
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .copyright ul li {
        padding-left: 10px;
        padding-right: 10px;
    }

}

@media (max-width:736px) {

    .col-sm-7,
    .col-sm-8 {
        width: 100%;
    }

    .col-sm-4,
    .col-sm-5 {
        width: 100%;
    }

    .dark_bg .col-sm-4+.col-sm-8,
    .dark_bg .col-sm-5+.col-sm-7 {
        margin-top: 1.5rem;
    }

    .dark_bg .col-sm-8+.col-sm-4 {
        margin-top: 1rem;
    }

    .provide li {
        width: 49%;
    }

    .profile_bg .col-sm-3 {
        width: 33.333%;
    }

    .model_main {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .model_main .col-sm-3 {
        width: 33.333%;
        margin: .7rem 0;
    }

    .model_main .col-sm-3.large {
        transform: scale(1);
    }

}

@media (max-width:667px) {
    .phone {
        margin-left: 20px;
    }

    .logo {
        font-size: 30px;
    }

    .ul_model li {
        width: 100%;
    }

    .two_add .col-sm-6 {
        width: 100%;
    }

    .four_add .col-sm-3 {
        width: 50%;
    }

    .bnr {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

}

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

@media (max-width:568px) {
    .panel-title>a {
        font-size: 16px;
    }

    .phone:last-child {
        display: none;
    }

}

@media (max-width:480px) {
    .logo {
        font-size: 25px;
    }

    .phone {
        padding-left: 30px;
        margin-left: 0;
    }

    .phone a {
        font-size: 12px;
        line-height: 1;
    }

    .phone img {
        width: 20px;
    }

    .banner_text {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .banner_text h1 {
        font-size: 16px;
    }

    .banner_text .heading {
        font-size: 27px;
    }

    .sub_head {
        font-size: 15px;
    }

    .sub_head span {
        display: inline;
    }

    h1 {
        font-size: 30px;
    }

    h2,
    .heading {
        font-size: 25px;
    }

    h3,
    h4,
    h5 {
        font-size: 20px;
    }

    .profile_bg .col-sm-3,
    .model_main .col-sm-3 {
        width: 50%;
    }

    .provide li {
        width: 100%;
        margin: 0 0 1rem;
    }

    .hot_girl li {
        width: 49%;
    }

    footer .col-sm-3,
    .footer-grids .col-sm-3:nth-of-type(3),
    .footer-grids .col-sm-3:nth-of-type(2) {
        width: 100%;
        border-bottom: #24211d solid 1px;
        padding-bottom: 1.5rem;
    }

    footer .col-sm-3.pl-2 {
        padding-left: 15px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .btn {
        font-size: 14px;
    }

    .panel-title>a,
    .panel-body {
        padding-left: 15px;
        padding-right: 30px;
    }

    .panel-title a:after {
        right: 18px;
    }


}

@media (max-width:375px) {
    .name {
        font-size: 16px;
    }

    .model_main .name {
        font-size: 13px;
    }

}

@media (max-width:320px) {
    .logo {
        font-size: 20px;
    }

    .phone {
        padding-left: 30px;
        margin-left: 0;
    }

    .phone a {
        font-size: 11px;
        line-height: 1;
    }

}