@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:Root {
    /* colors  */
    --white: #fff;
    --main-pink: #C551D0;
    --bg-light-black: #111111;
    /* Typography  */
    --f-weight-400: 700;
    --f-weight-500: 500;
    --line-height-h1: 70px;
    --h1-size: 60px;
    --h2-size: 48px;
    --h3-size: 30px;
    --h4-size: 24px;
    --h5-size: 20px;
    --f-size-16: 16px;
    --f-size-20: 20px;
    --f-weight-400: 400;
    --space-lg: 100px 0;
    --space-lg-pt: 100px;
    --space-lg-pb: 100px;
    --space: 80px 0;
    --space-m: 80px 0;
    --space-mt: 80px;
    --space-mb: 80px;
    --space-pt: 80px;
    --space-pb: 80px;
    --space-md: 60px 0;
    --space-md-pt: 60px;
}

body {
    background-color: black;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.container {
    max-width: 1280px;
}


/*typography*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h4-small {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: var(--line-height-h1);
}

h1,
.h1 {
    font-size: var(--h1-size);
    font-weight: 700;
}

h2,
.h2 {
    font-size: var(--h2-size);
    font-weight: 700;
}

h3,
.h3 {
    font-size: var(--h3-size);
}

h4,
.h4 {
    font-size: var(--h4-size);
    font-weight: 600;
}

h5,
.h5 {
    font-size: var(--h5-size);
    color: var(--black-color);
}

p,
.p {
    font-size: var(--f-size-20);
    line-height: 24px;
    margin-bottom: 0rem;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

span {
    display: inline-block;
}

a {
    font-size: var(--f-size-16);
    display: inline-block;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

a:hover {
    text-decoration: none;
    transition-duration: 0.4s;
}

.f-weight-400 {
    font-weight: var(--f-weight-400);
}

.small,
small {
    font-size: 70%;
    font-weight: 400;
}


/*Spacing */

.space {
    padding: var(--space);
}

.space-pt {
    padding-top: var(--space-pt);
}

.space-pb {
    padding-bottom: var(--space-pb);
}

.space-m {
    margin: var(--space-m);
}

.space-mt {
    margin-top: var(--space-mt);
}

.space-md {
    padding: var(--space-md);
}

.space-lg-pt {
    padding-top: var(--space-lg-pt);
}

.space-lg-p {
    padding-bottom: var(--space-lg-pb);
}

.mt-50 {
    margin-top: var(--mt-50);
}

.btn {
    font-size: var(--f-size-16);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.btn-square {
    background-color: var(--main-pink);
    color: #fff;
    border-radius: 10px;
}

.btn-round {
    background: transparent;
    border: 1.5px solid var(--main-pink);
    border-radius: 50px;
}

.card-image {
    width: 100%;
}

.card-body h3 {
    color: #fff;
    padding: 20px 0;
}


/* Home page css start  */


/* 
==========================
Home banner section start 
==========================
*/

.homeBanner {
    background: url(../images/home-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.banner-title h1 {
    color: #fff;
}

.home-banner-search-box {
    background-color: #171717;
    border-radius: 20px;
    max-width: 930px;
    width: 100%;
    margin: 100px auto 0 auto;
    padding: 12px 22px;
}

.search-input {
    max-width: 454px;
    width: 100%;
}

.search-input input {
    background-color: #000000;
    color: #fff;
    padding: 12px 0 12px 17px;
    border-radius: 10px;
}

.search-input input::placeholder {
    color: #fff;
    letter-spacing: 3px;
}

.home-select {
    max-width: 267px;
    width: 100%;
    background-color: var(--bg-light-black);
    border: 1px solid #000000;
    padding: 12px 19px;
    border-radius: 10px;
}

.home-select .form-select {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
    color: #fff;
    --bs-form-select-bg-img: url(../images/select-arrow.svg);
    background-size: 25px;
}

.home-select .form-select option {
    color: #fff;
}

.home-banner-search-box .btn-square {
    width: 131px;
    height: 50px;
    margin-bottom: 0 !important;
    border: 2px solid var(--main-pink);
}

.search-btn:hover {
    background: transparent;
    color: var(--main-pink);
}


/* 
=========================
Home banner section end  
=========================
*/


/* 
==================
Header css start  
==================
*/

#header-section {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

#header-section .header .nav-link {
    margin: 0 20px;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.headerfixed {
    background-color: var(--bg-light-black);
}

.header .nav-link::after {
    display: block;
    content: '';
    background-color: var(--main-pink);
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: -100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.header .nav-link:hover::after {
    left: 0;
}

.header .nav-link:focus {
    color: #fff;
}

.login_btn {
    margin-left: 20px;
}

.login_btn a {
    width: 90px;
    height: 42px;
    border-radius: 5px;
    text-align: center;
}

.login_btn a:hover {
    background-color: var(--main-pink);
    color: #fff;
}

.mobile-menunav {
    display: none;
}

.toggle-btn {
    display: none;
    background: transparent;
    box-shadow: none;
    border: none;
}

.toggle-btn .fa-bars {
    color: #fff;
    font-size: 25px;
}


/* 

================
Header css end  
================
*/


/* Home page css end  */

.navbar-nav.text-right {
    width: 100%;
    justify-content: end;
    font-size: 16px;
    font-weight: 500;
    font-family: poppins medium;
    line-height: 24px;
}

.btn-primary {
    border: 3px solid #C551D0;
    background-color: #C551D0;
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
}

.dropdown-toggle {
    background: #171717;
    border: 1px solid #000000;
    border-radius: 10px;
}

#staticEmail2 {
    background: #000000;
    border-radius: 10px;
}

.dropdown {
    margin-left: 60px;
}

.logo {
    max-width: 271px;
}

a.nav-link {
    color: #FFFFFF;
}

.banner-title p {
    color: #FFFFFF;
    padding-top: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 10px;
}

.banner-title span {
    color: #C551D0;
    line-height: 35px;
    font-weight: 700;
}

.welcome span {
    color: #C551D0;
    line-height: 35px;
    font-weight: 700;
}

.latest h2 {
    text-align: center;
    color: var(--main-pink);
}

.card-img h4 {
    padding-top: 12px;
    font-weight: 600;
    line-height: 15px;
}

.boys {
    background: url(../images/boy.png);
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.popular {
    text-align: center;
}

.popular h2 {
    font-family: poppins;
    padding-bottom: 15px;
    color: #fff;
}

.popular span {
    display: inline-block;
    color: var(--main-pink);
    font-family: poppins;
}

.popular p {
    color: #fff;
    font-family: poppins;
    padding-bottom: 15px;
}

.card-img h3 {
    text-align: center;
    font-weight: 400;
    line-height: 35px;
    padding-top: 10px;
}

.scort {
    background-color: #171717;
}

.explore_btn {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.bannner_explore_btn a {
    background: #fff;
    border: 2px solid var(--main-pink);
    border-radius: 100px;
    color: var(--main-pink);
    line-height: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 16px;
    padding: 11px 27px;
}

.bannner_explore_btn {
    text-align: center;
}

.bannner_explore_btn a:hover {
    background: var(--main-pink);
    color: #fff;
}

.explore_btn a {
    background: #fff;
    border: 2px solid var(--main-pink);
    border-radius: 20px;
    color: var(--main-pink);
    line-height: 21px;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 14px;
    padding: 10px 0;
    width: 140px;
    text-align: center;
}

.card-content h3 {
    text-align: center;
    line-height: 35px;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: 400px;
}

.mask p {
    color: #fff;
}

.footer {
    border-top: 1px solid;
    padding-top: 30px;
}

.footer-item .footer-link {
    color: #fff;
    list-style: none;
    margin-bottom: 10px;
}

.footer-item {
    list-style: none;
}

.footer-icon {
    width: 29px;
    height: 29px;
    border: 1px solid #fff;
    display: flex;
    padding: 7px;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 3px;
}

.footer-icon img {
    width: 10px;
}

.footer-icon:hover {
    background: var(--main-pink);
    border-color: var(--main-pink);
}

.privacy {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.privacy p {
    font-family: 'Poppins';
    text-transform: uppercase;
    color: #fff;
    list-style: none;
}

.privacy ul {
    justify-content: center;
    width: 100%;
}

.privacy ul li a {
    list-style: none;
    color: #fff;
}

.privacy ul li span {
    margin: 0 20px;
}

.privacy ul li {
    list-style: none;
}

.main-footer ul {
    padding-left: 0px;
}

.south {
    padding-bottom: 17px;
}

.south h4 {
    font-size: 18px;
    line-height: 37px;
    font-weight: 600;
}

.mask-main .card-img {
    vertical-align: middle;
    max-width: 100%;
    min-height: 380px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.profile {
    display: flex;
}

.profile h1 {
    color: var(--main-pink);
}

.profile img {
    padding-left: 24px;
}

.img-fluid {
    border-radius: 10px;
}

.profile-text-end h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 70px;
}

.profile h2 {
    color: #C551D0;
}

.profile-text h2 {
    font-size: 20px;
    line-height: 46px;
    font-weight: 600;
    color: #fff;
}

.profile-text p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.profile-content {
    background: #171717;
    padding: 5px 20px;
    border-radius: 30px;
}

.interests-page {
    background-color: #171717;
}

.interests-text h2 {
    text-align: center;
    color: var(--main-pink);
}

.testimonials-content {
    background: #171717;
    padding: 5px 5px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    max-width: 901px;
    margin: auto;
}

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

.testimonials-text p {
    padding-top: 20px;
    color: #fff;
}

.start img {
    text-align: center;
    padding: 15px;
}

#header .nav-link {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

#banner {
    background: url(../images/profile-image.png);
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

#Popular-Escorts {
    background: url(../images/sexy-boy.png);
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badges {
    width: 80%;
    height: 35px;
    position: absolute;
    top: 4px;
    left: -25px;
    transform: rotate(-30deg);
    z-index: 1;
}

.card-badges h4 {
    text-align: center;
}

.card-img {
    position: relative;
}

.card-badges-available {
    background: linear-gradient(90deg, #20BF55 0%, #01BAEF 100%);
    border-radius: 5px;
}

.card-badges-vip {
    background: linear-gradient(90deg, #B38728 8.21%, #CDA755 100%);
    border-radius: 5px;
}

#locations {
    background-color: #171717;
}

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

.girl-img img {
    width: 100%;
}

#Girl-Description .mask p {
    font-size: var(--f-size-16);
}

#main-footer ul {
    padding-left: 0px;
}

.nav-link:hover {
    color: #fff
}


/* footer section css  */

.footer-icon-box .footer-icon {
    margin-right: 10px;
}


/* media query css start  */

@media (max-width:991px) {
     :Root {
        --h1-size: 40px;
        --h2-size: 30px;
        --h3-size: 10px;
        --line-height-h1: 60px;
        --line-height-h3: 37%;
        --h4-size: 14px;
        --h5-size: 10px;
        --p-font-size: 16px;
        --f-weight-400: 400;
        --line-height-p: 24px;
        --space: 80px 0;
        --space-pt: 80px;
        --space-pb: 80px;
        --space-md: 60px 0;
        --space-md-pt: 60px;
        line-height: 50px;
    }
    .explore_btn a {
        background: #fff;
        border: 2px solid var(--main-pink);
        border-radius: 20px;
        color: var(--main-pink);
        line-height: 21px;
        font-weight: 600;
        font-family: 'Poppins';
        font-size: 14px;
        padding: 3px 5px;
    }
    .south {
        padding-bottom: 0px;
    }
}


/* media query css start  */

@media (max-width:768px) {
     :Root {
        --h1-size: 26px;
        --h2-size: 20px;
        --h3-size: 18px;
        --line-height-h1: 35px;
        --line-height-h3: 37%;
        --h4-size: 12px;
        --h5-size: 10px;
        --p-font-size: 14px;
        --f-weight-400: 400;
        --line-height-p: 20px;
        --space: 40px 0;
        --space-pt: 40px;
        --space-mt: 40px;
        --space-m: 40px 0;
        --space-pb: 40px;
        --space-md: 30px 0;
        --space-md-pt: 30px;
    }
    /*typography*/
    /* 
    =================
    Header css start 
    =================
    */
    .mobile-menunav {
        display: block;
    }
    .toggle-btn {
        display: block;
    }
    /* 
    =================
    Header css end 
    =================
    */
    .profile-text p {
        color: #fff;
        font-size: 12px;
        line-height: 25px;
        font-weight: 400;
    }
    .profile-text h2 {
        color: #fff;
        font-weight: 500;
        font-size: 12px;
        line-height: 28px;
    }
    .profile img {
        display: flex;
        height: 20px;
        align-items: center;
    }
    .profile h2 {
        color: #C551D0;
        font-size: 23px;
        font-weight: 700;
        padding-left: 33px;
    }
    .profile-text-end h2 {
        font-size: 28px;
        font-weight: 500;
        line-height: 70px;
        display: none;
    }
    h3 {
        font-weight: 600;
    }
    .footer-item .footer-link {
        color: #fff;
        list-style: none;
        font-size: 12px;
    }
    .space {
        padding: var(--space);
        text-align: center;
    }
    .south {
        padding-bottom: 0px;
        justify-content: center;
    }
    .card-img h2 {
        text-align: center;
        font-weight: 600;
        line-height: 15px;
        padding-top: 10px;
    }
    .latest h1 {
        font-weight: 700;
        line-height: 30px;
    }
    .card-content h2 {
        text-transform: uppercase;
        font-family: 'Poppins';
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
    }
    .explore_btn a {
        background: #fff;
        border: 2px solid var(--main-pink);
        border-radius: 100px;
        color: var(--main-pink);
        line-height: 20px;
        font-weight: 600;
        font-family: 'Poppins';
        font-size: 10px;
        padding: 3px 5px;
    }
    .popular p {
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        line-height: 13px;
    }
    .interests-text h2 {
        text-align: center;
        color: var(--main-pink);
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
    }
    .card-content h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
    }
    .south h4 {
        font-size: 16px;
        line-height: 37px;
        font-weight: 600;
    }
    /* home banner css  */
    .home-banner-search-box {
        margin-top: 50px;
    }
    .home-banner-search-box .home-select {
        max-width: 164px;
    }
    #Popular-Escorts {
        height: 50vh;
    }
    .homeBanner {
        height: 50vh;
    }
    #header-section {
        position: static;
        background-color: #111111;
    }
}


/* media query css start  */

@media (max-width:576px) {
     :Root {
        --h1-size: 20px;
        --h2-size: 18px;
        --h3-size: 14px;
        --line-height-h3: 37%;
        --h4-size: 12px;
        --h5-size: 10px;
        --p-font-size: 12px;
        --f-weight-400: 400;
        --line-height-p: 24px;
        --space: 30px 0;
        --space-pt: 30px;
        --space-pb: 30px;
        --space-md: 30px 0;
        --space-md-pt: 30px;
    }
    /*typography*/
    .placeholder-location {
        width: 100%;
        padding-top: 70px;
    }
    .last {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .profile-text p {
        color: #fff;
        font-size: 12px;
        line-height: 25px;
        font-weight: 400;
        border-radius: 30px;
    }
    .profile-text h2 {
        color: #fff;
        font-size: 12px;
        line-height: 28px;
        font-weight: 500;
    }
    .currently text {
        font-weight: 600;
    }
    p,
    .p {
        font-size: var(--p-font-size);
        line-height: 24px;
        margin-bottom: 0rem;
        color: var(--text-color);
        font-weight: 400;
    }
    .privacy ul {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        padding-left: 0px;
    }
    .privacy ul li span {
        margin: 0 8px;
    }
    .privacy ul li a {
        font-size: 12px;
    }
    .cards {
        margin-top: 20px;
    }
    .interests-text h2 {
        text-align: center;
        color: var(--main-pink);
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
    }
    .card-content h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
    }
    .south h4 {
        font-size: 16px;
        line-height: 37px;
        font-weight: 600;
    }
}