/**************************************
                General
**************************************/
.select-option {
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex
;
    align-items: center;
    justify-content: space-between;
    border: #8f9716 solid 1px;
    margin-top: -15px;
    margin-bottom: 40px;
}
*,
*::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;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 16px;
    font-family: 'Inter Regular';
    font-weight: 400;
    color: #ffffff;
    background: #000;
}

a,
a:hover,
a:focus {
    color: #FBC028;
    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-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: hidden;
}

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

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    width: 600px;
}

.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;
    font-size: 28px;
}

.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;
}

.container-fluid {
    padding: 0 20px;
}

.offcanvas-header {
    background: #0C2E55;
    color: #fff;
}

.btn-close {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #76F4FF;
    font-size: 20px;
    outline: none;
}

.offcanvas-body {
    background-image: url(../img/contact-us-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas-body .contact-form {
    padding: 0;
}

.offcanvas-body .contact-form label {
    color: #ffffff;
    display: block;
    font-size: 18px;
    font-family: 'Oswald SemiBold';
    margin-bottom: 5px;
}

.offcanvas-body .contact-form .form-control {
    background: #ffffff2b;
    color: #fff;
}

.offcanvas-body .contact-form .form-control::placeholder {
    color: #fff;
}

.offcanvas-body .form-box {
    background-color: transparent;
}
.girl-contact.floting{
    position: fixed;
    right: 10px;
    bottom: 15%;
    z-index: 999;
}
#button {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #button .arrow-right{
    transform: rotate(45deg);
  }
  #button:hover {
    cursor: pointer;
    background-color: #AC3D3D;
  }
  #button:active {
    background-color: #AC3D3D;
  }
  #button.show {
    opacity: 1;
    visibility: visible;
  }
/*******************************
	Menu
*******************************/
.header-area {
    background: rgb(19 19 19 / 0%);
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
}

.header-area.sticky {
    background: #100F0F;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0px 0px 10px 0px #ffffff40;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-menu {
    display: flex;
    align-items: center;

}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;

}

.main-menu {
    margin-left: auto;
    padding-right: 70px;
}

.logo {}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;

}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 15px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 30px 6px;
    display: inline-block;
    color: #FFF;
    font-family: 'Gilroy SemiBold';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #EF0000;
}

#menu .main-menu ul li.current-menu-item a:after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 6px;
    right: 6px;
    height: 1px;
    color: #EF0000;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 46px;
    right: -10px;
    width: 10px;
    height: 10px;
    display: block;
    content: '';
    border-right: 1px solid;
    transition: all .4s;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    position: absolute;
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #EF0000;
    ;
}

#menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-180deg);
}

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(19, 19, 19);
    transition: all .25s ease
}

#menu ul ul li:hover {}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 50px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 10px;
    width: auto;
    line-height: 19px;
    text-decoration: none;
    color: #FFF;
    font-family: 'Gilroy SemiBold';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover a {
    color: #EF0000;

}

#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }

    .logo {}

    .logo2 {
        display: none
    }

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 70px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);

    }

    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }

    #menu ul ul li:hover {
        background: #d84514 !important
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
        background: #ffffff0a;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 15px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
}

.menu-info {
    display: none;
}

.sec-gap {
    padding: 70px 0;
}

.pb-70 {
    padding-bottom: 70px;
}

.mb-20 {
    margin-bottom: 20px;
}

/**************************************
                Helper Class
**************************************/
.section-title {
    color: #FBC028;
    font-family: 'Gilroy Bold';
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

.title {
    color: #FBC028;
    font-family: 'Gilroy Bold';
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

.cart-title {
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy Bold';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.dec {
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
}

p {
    color: #FFF;
    font-family: 'Gilroy Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%;
}

.thm-red {
    color: #FD1515;
}

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

.primary-btn {
    position: relative;
    display: inline-block;
}

.primary-btn {
    border-radius: 8px;
    border: 1px solid #AC3D3D;
    background: linear-gradient(0deg, #A90000 0%, #4D1A1A 100%);
    padding: 18px;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: inherit;
    font-family: 'Gilroy Bold';
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.48px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 10px;
    height: 63px;
}

header .primary-btn {
    padding: 14px;
    height: auto;
}

.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: linear-gradient(to top, #FBC028 0%, #7C5B06 100%);
    z-index: -1;
    transition: all .35s;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    top: 0;
}

.primary-btn:hover {
    color: #fff;
    border-color: #FBC028;
}

.secondary-btn {
    border-radius: 8px;
    border: 1px solid #EBAD10;
    background: linear-gradient(0deg, #FBC028 0%, #7C5B06 100%);
    padding: 17px 53px;
    color: #FFF;
    text-align: center;
    font-family: 'Gilroy Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.secondary-btn:before,
.secondary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: linear-gradient(0deg, #A90000 0%, #4D1A1A 100%);
    z-index: -1;
    transition: all .35s;
}

.secondary-btn:before {
    opacity: .5;
}

.secondary-btn:after {
    transition-delay: .2s;
}

.secondary-btn:hover:before,
.secondary-btn:hover:after {
    top: 0;
}

.secondary-btn:hover {
    color: #fff;
    border: 1px solid #AC3D3D;
}

.container {
    max-width: 1530px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #76F4FF;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 22px 50px;
}

.form-group {
    margin-bottom: 15px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 140px;
    padding-top: 190px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(78, 78, 78, 0.67) 100%);
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    top: 80%;
    background: linear-gradient(0deg, #634A0C 0%, rgba(34, 34, 34, 0.00) 100%);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 10;
}

.wp-btn {
    background: #089817;
    border-color: #089817;
}

.wp-btn img {
    width: 35px;
    height: auto;
}

.banner-content h1,
.banner-content h1 span {
    font-family: 'monbaiti';
    font-size: 252px;
    font-style: normal;
    font-weight: 400;
    line-height: 75%;
    background: linear-gradient(180deg, #FFF 0%, #FBC028 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content h2 {
    color: #F00;
    font-family: 'Gilroy Bold';
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 10px 0;
}

.banner-content p {
    margin-bottom: 20px;
}

.banner-content {
    width: 49%;
    margin: auto;
    text-align: center;
}

.banner-content .btn-group {
    justify-content: center;
}

.banner-left-img,
.banner-right-img {
    position: absolute;
    bottom: -4px;
    z-index: 4;
    left: 0;
}

.banner-right-img {
    left: auto;
    right: 0;
}

.banner-img2 {
    position: absolute;
    right: 180px;
}

/* book-high-profile */

.book-high-profile {
    background-image: url(../img/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

/* Category */
.category{
    background: #1B1818;
}
.img-box{
    position: relative;
}
.box-content{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.00) 0%, #0F0F0F 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 37px;
}
.left .img-box{
    width: 100%;
}
.right .img-box{
    width:100%;
}
.img-fluid{
    width: 100%;
}
.category-title{
    color: #FBC028;
    font-family: 'Gilroy Bold';
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: end;
}
.content-box {
    padding: 15px;
}
.category .col-lg-8 {
    flex: 0 0 auto;
    width: 61.2%;
}
.category .col-lg-4 {
    flex: 0 0 auto;
    width: 30%;
    padding-right: 15px;
}

/* independent */

.independent{
    background-image: url(../img/bg2.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.girl-img {
    position: relative;
}
.girl-box{
    background: #5B0808;
    padding: 17px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.girl-box:hover{
    background: #FBC028;
}
.girl-box .cart-title{
    padding: 18px;
    padding-bottom: 8px;
}
.girl-contact {
    position: absolute;
    right: 10px;
    bottom: 15px;
    width: 54px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
img{
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.girl-contact a:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.information .secondary-btn{
    margin-top: 20px;
}
.book-now{
    background-image: url(../img/book-now-bg.webp);
    background-repeat: no-repeat;
    background-position: 100% -7px;
    position: relative;
}
.book-now-shape{
    position: relative;
}
.book-now .container{
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}
.book-now-content h2{
    font-family: 'monbaiti';
    font-size: 114px;
font-style: normal;
font-weight: 400;
line-height: 105px; /* 92.105% */
    background: linear-gradient(180deg, #FFF 0%, #FBC028 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}
.book-now-content .title{
    background: #EBAD10;
    color: #000;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: -90vmax 0px 0 68vmax #EBAD10;
    clip-path: inset(0vmax -68vmax);
    padding: 4px 10px;
}
.book-now-content p{
    width: 90%;
    margin-bottom: 20px;
}
.book-now-content h4{
    color: #EBAD10;
    font-family: 'Gilroy Bold';
font-size: 54px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-decoration-line: underline;
}
.number{
    color: #FFF;
text-align: center;
font-family: 'Gilroy Bold';
font-size: 51px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 1.42px;
}
.discount .circle{
    width: 180px;
height: 184px;
border-radius: 130px;
background: linear-gradient(180deg, #A90000 0%, #7D0B0B 100%);
box-shadow: -9px 0px 0px 0px #FBC028;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #FFF;
font-family: 'Gilroy Bold';
font-size: 72px;
font-style: normal;
font-weight: 400;
line-height: 58px;
text-transform: uppercase;
text-decoration: underline;
margin: auto;
}
.discount .circle span{
font-size: 25px;
}
.discount h4{
    color: #000;
    font-family: 'Gilroy Bold';
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius: 10px;
background: #EBAD10;
padding: 5px 13px;
display: inline-block;
}
.discount {
    text-align: center;
    padding-left: 20%;
}
.video-box{
    position: relative;
    overflow: hidden;
    width: 93%;
    margin: auto;
    margin-bottom: 20px;
}
.video-box img{
    width: 100%;
}
.video-box h4{
    position: absolute;
    right: 0;
    bottom: 20px;
    display: inline-block;
    padding: 19px 30px 19px 95px ;
color: #000;
text-align: center;
font-family: 'Gilroy SemiBold';
font-size: 43px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 58.14% */
background: linear-gradient(to left, #FBC028 0%, rgba(251, 192, 40, 0.00) 100%);
}
.play-icon{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-icon img{
    width: auto;
    height: auto;
}
.video-box:hover .play-icon img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.female-escort p{
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
}
.arrow-right{
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(135deg);
}
.category-tags .primary-btn{
border-radius: 3px;
text-align: center;
font-family: 'Gilroy Medium';
font-size: 20px;
font-style: normal;
font-weight: 400;
height: 55px;

}
.category-tags .primary-btn:hover{
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.category-tags {
    padding-top: 36px;
}
.top-quality-model{
    background-image: url(../img/top-model-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.model-box{
    position: relative;
    overflow: hidden;
}
.model-box img{
    width: 100%;
}
.model-box:hover img{
    transform: scale(1.2) rotate(3deg);
    -webkit-transform: scale(1.2) rotate(3deg);
    -moz-transform: scale(1.2) rotate(3deg);
    -ms-transform: scale(1.2) rotate(3deg);
    -o-transform: scale(1.2) rotate(3deg);
}
.model-info{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.705);
    padding: 10px 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.model-info h4{
    color: #F00;
font-family: 'Gilroy SemiBold';
font-size: 23px;
font-style: normal;
font-weight: 400;
line-height: 25px;
}
.model-info p{
    margin: 0;
    font-size: 16px;
}
.star{
    background-image: url(../img/star.webp);
    background-size: contain;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin: 0 1px;
}
.tag{
    width: 56px;
height: 24px;
flex-shrink: 0;
border-radius: 60px;
background: linear-gradient(180deg, #A90000 0%, #F24A4A 100%);
color: #FFF;
text-align: center;
font-family: 'Gilroy Bold';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 156.25% */
}
.take-care{
    background-image: url(../img/bg3.webp);
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 250px;
}
.welcome{
    background-image: url(../img/welcome-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.welcome .btn-group{
 align-items: center;
 justify-content: center;
}
.welcome .btn-group .dec{
    margin: 0;
}

.services-slider .slick-list {
    margin: 0 -20px;
}

.services-slider .slick-slide {
    margin: 0 20px;
}

.services-slider .slick-prev {
    left: 15px;
}

.services-slider .slick-next {
    right: 15px;
}

.slick-arrow {
    width: 53px;
    height: 53px;
    z-index: 1;
    background: #F3F3F3;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 50%;
}

.slick-arrow:hover {
    background-color: #ebad10;
}

.slick-arrow::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.text-white {
    color: #fff !important;
}

/******************************/

footer {
    background: url(../img/footer-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-top: 100px;

}

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

.footer-title {
    color: #EBAD10;
    font-family: 'Gilroy SemiBold';
font-size: 23px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 108.696% */
}

.footer-title:after {
    content: '';
    width: 32px;
    height: 1px;
    background: #EBAD10;
    display: inherit;
    margin-top: 4px;
    margin-bottom: 12px;
}

footer ul li a {
    color: #FFF;
    font-family: 'Gilroy SemiBold';
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 45px; /* 225% */

}

footer ul li a:hover,
.footer-contact:hover a p {
    color: #EBAD10;;
}

.footer-social {
    display: flex;
    gap: 16px;
}


.footer-social a:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.footer-contact {
    position: relative;
    padding-left: 25px;
    margin-top: 24px;
}

.footer-contact img {
    position: absolute;
    left: 0;
    top: 3px;
}


.copyright {
    border-top: 1px solid #735858;
    color: #fff;
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.copyright a {
    color: #FBC028;
    text-decoration: underline;
}
.thm-yellow{
    color: #FBC028;
}
/************************************
 Category
/************************************/
.category-banner h1{
    font-size: 112px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 10px;
}
.category-banner {
    padding-bottom: 315px;
    padding-top: 350px;
}
.category-banner.banner::after,
.category-banner.banner::before{
    display: none;
}
.category-banner .banner-content {
    width: 74%;
    margin: auto;
    text-align: center;
}
.escort-category .girl-box{
    padding: 0;
    background-color: transparent;
    overflow: hidden;
}
.escort-category .girl-box:hover img{
    transform: scale(1.2) rotate(10deg);
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
}
.escort-category .girl-box .girl-img .primary-btn{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 20px 0px;
    height: 60px;
    border: 0;
    background: linear-gradient(180deg, #A90000 0%, #F24A4A 100%);
}
/*************************************
    Category Details
*************************************/
.category-details-banner{
    padding-bottom: 220px;
    padding-top: 326px;
}
.category-details-banner.category-banner .banner-content {
    width: 46%;
    margin: unset;
    text-align: left;
}
.category-details-banner.category-banner h1 {
    line-height: 118px;
}
.category-details-banner .banner-content p {
    text-align: left;
}
.category-details-banner .banner-content .btn-group {
    justify-content: start;
}
.text-left{
    text-align: left;
}
.bg{
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 70px;
}
.mb-7{
    margin-bottom: 7px;
}
.category-slider .slick-arrow{
    background-color: #541414;
}
.category-slider .slick-arrow::before{
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}
.category-slider .slick-arrow:hover,
.category-slider .slick-arrow:focus{
    background-color: #A90000;
}
.category-slider .slick-list{
    margin: 0 -10px;
}
.category-slider .slick-slide{
    margin: 0 10px;
}
/*******************************
  Location
********************************/
.location-banner{
    padding-top: 200px;
    padding-bottom: 100px;
}
.location-banner h1{
    font-size: 92px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.category-banner.location-banner::before{
    display: block;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(18, 18, 18, 0.58) 100%);
}
.location-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.location-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-box h4{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(2, 1, 1, 0.87) 48%, rgba(4, 1, 1, 0.10) 100%);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    color: #FFF;
text-align: center;
font-family: 'Gilroy SemiBold';
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.location-box:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.location-box:hover h4{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #a90000 48%, rgba(4, 1, 1, 0.10) 100%);
}
.boga-beach-model .category-slider .slick-list{
    margin: 0 0;
}
.boga-beach-model{
    background: rgba(66, 7, 7, 0.502);
}
.boga-beach-model .category-slider .slick-slide{
    margin: 0 0;
}
.location-bg{
    padding-top: 120px;
    padding-bottom: 150px;
}
.blog-img{
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out 2s;
    -webkit-transition: ease-in-out 2s;
    -moz-transition: ease-in-out 2s;
    -ms-transition: ease-in-out 2s;
    -o-transition: ease-in-out 2s;
}
.blog-item{
    position: relative;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    overflow: hidden;
    
}
.blog-item .overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    background-color: transparent;
}
.blog-item:hover .blog-img img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.blog-content{
    padding: 18px 25px;
    border-radius: 0px 0px 20px 20px;
    -webkit-border-radius: 0px 0px 20px 20px;
    -moz-border-radius: 0px 0px 20px 20px;
    -ms-border-radius: 0px 0px 20px 20px;
    -o-border-radius: 0px 0px 20px 20px;
    background: #252323;
    position: relative;
    z-index: 1;
    margin-top: -30px;
}

.date{
    color: #F00;
    margin: 0;
}
.blog-content h4{
color: #FFF;
font-family: 'Gilroy Bold';
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: 34px;
margin-bottom: 5px;
}
.blog-content .primary-btn {
    padding: 11px 30px;
    font-size: 18px;
    height: auto;
}
.blog-tag{
    position: absolute;
    top: 18px;
    right: 20px;
    border-radius: 60px;
    background: linear-gradient(180deg, #A90000 0%, #F24A4A 100%);
    color: #FFF;
text-align: center;
font-family: 'Gilroy Bold';
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 15px; 
padding: 4px 12px;
}
.full-width .overlay {
    justify-content: center;
    width: 30%;
    right: 0;
    margin-left: auto;
}
.full-width .overlay h4{
    margin-bottom: 20px;
}
#pagination {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pagination li {
    display: inline
}

#pagination li a,
#pagination li span {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-family: "Arimo";
    font-weight: 500;
}

  
#pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

#pagination li.active a {
    color: #A90000;
}

#pagination li:hover:not(.active) a {
    color: #A90000;
}
.left-arrow,.right-arrow {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
  }
  .left-arrow::after,
  .left-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2px;
    height: 14px;
    top: 2px;
    left: 0;
  }
  .left-arrow::after {
    border-left: 2px solid;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    left: 6px;
    top: 4px;
  }

  .right-arrow::after,
  .right-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2px;
    height: 14px;
    top: 2px;
    right: 0;
  }
  .right-arrow::after {
    border-right: 2px solid;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    right: 6px;
    top: 4px;
  }
  .blog-details {
    background: #100F0F;
    height: 96px;
}
.blog-details-content .blog-img{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin: 20px 0;
}
.blog-details-content :is(.section-title,.title){
    color: #fff;
}
.blog-details-content .title{
   font-size: 27px;
}
.small-line{
    background: #A90000;
    width: 52px;
height: 2px;
display: inline-block;
}
hr {
    border-color: #373333;
    margin-top: 30px;
}
.recent-post-item{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #303030;
    padding-bottom: 25px;
    margin-top: 25px;
    gap: 14px;
}
.recent-post-item:hover h4{
    color: #A90000;
}
.recent-post-item img{
    border-radius: 13px;
    width: 122px;
    height: 86px;
    object-fit: cover;
}
.recent-post-item h4{
    color: #FFF;
    font-family: 'Gilroy Bold';
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.title-md{
    color: #FFF;
    font-family: 'Gilroy SemiBold';
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.recent-post{
    margin-bottom: 30px;
}
.book-a-call{
    position: relative;
    overflow: hidden;
    border-radius: 13px;
}
.book-a-call img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-a-call .content{
    position: absolute;
    bottom: 25px;
    left: 5px;
    right: 5px;
    text-align: center;
}
.book-a-call .btn-group{
    justify-content: center;
}
.book-a-call .primary-btn{
    height: auto;
    padding: 12px 25px;
}
.blog-item:hover h4{
    color: #EBAD10;
}
.blog-details-content{
    padding-top: 70px;
}
.profile-info :is(.section-title,.title){
    color: #FBC028; 
}
.profile-info ul {
    margin: 20px 0;
    list-style-type: disc;
    padding-left: 22px;
}
.profile-info ul li{
    color: #FFF;
    font-family: 'Gilroy Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px; /* 195% */
}
table {
    width: 100%;
    border: 1px solid #A90000;
    color: #FFF;
    font-family: 'Gilroy Medium';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 33px; /* 183.333% */
text-align: center;
border-right: 0px solid #A90000;
    border-bottom: 0px solid #A90000;
    border-spacing: 0;
    margin-bottom: 20px;
}
table th, table td {
    border-right: 1px solid #A90000;
    border-bottom: 1px solid #A90000;
    padding: 5px;
}
table th {
    background: #131212;
    color: #FBC028;
    font-family: 'Gilroy SemiBold';
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.profile-info .number {
    font-size: 41px;
    letter-spacing: 0.82px;
}
.profile-info .number img{
    width: 40px;
    height: auto;
}
.profile-info hr {
    border-color: #373333;
    margin-top: 16px;
}
.profile-info .btn-group .dec{
    margin: 0;
}
/*******************************
  Call Girls
********************************/
.call-girl-banner.category-banner .banner-content {
    width: 85%;
    margin: auto;
    text-align: center;
}
.call-girl-banner .banner-content h2{
    margin-top: -15px;
}
.call-girl-banner.category-banner {
    padding-bottom: 304px;
    padding-top: 310px;
}
.call-girl-hottest{
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 119px;
    padding-bottom: 146px;
}
.list{
    list-style-type: disc;
    padding-left: 20px;
    color: #FFF;
    font-family: 'Gilroy Medium';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 38px;
margin-bottom: 20px;
}
.pb-94{
    padding-bottom: 94px;
}
.faq.sec-gap {
    background: rgb(169 0 0 / 50%);
}
.accordion__item {
    transition: .5s;
    border-radius: 10px;
    background: #FFF;
    padding: 10px;
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 13px 58px 15px 13px;
    margin-bottom: 2px;
    text-decoration: none;
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    color: #A90000;
    font-family: 'Gilroy Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

  
.accordion__title::after {
    content: '';
    background-image: url(../img/down-arrow.webp);
    background-repeat: no-repeat;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 19px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion-active{
    border-color: #fff;
}

.accordion__item .accordion__title .accordion__arrow {
    position: absolute;
    top: 13px;
    right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    background-color: #c9c9c9;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}

.accordion__item .accordion__content {
    padding: 15px;
    font-size: 20.356px;
    color: #0f0f0f;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    border-radius: 10px;
    background: #F4EEEE;
}
.accordion__item .accordion__content p{
    color: #141414;
    margin: 0;
}
/*******************************
  Responsive
********************************/

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

@media (max-width: 1600px),
(max-width: 1536px) {}

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

@media (max-width: 1440px),
(max-width: 1366px) {
    .container {
        max-width: 1300px;
    }
    .banner-right-img {
        text-align: right;
    }
    .banner-left-img{
        width: 32%;
    }
    .banner-right-img img{
        width: 70%;
    }
    .banner-img2 {
        position: absolute;
        right: 120px;
    }
    .banner-content h2 {
        font-size: 40px;
    }
    .dec {
        font-size: 20px;
    }
    .banner-content h1, .banner-content h1 span {
        font-size: 190px;
        line-height: 71%;
    }
    .primary-btn,.secondary-btn{
        font-size: 20px;
    }
    .secondary-btn{
        padding: 17px 48px;
    }
    .banner-content {
        width: 45%;
    }
    .category .col-lg-4 {
        flex: 0 0 auto;
        width: 33%;
    }
    .category .col-lg-8 {
        flex: 0 0 auto;
        width: 65.2%;
    }
    .section-title {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .right .img-box {
        width: 492px;
    }
    .left .img-box {
        width: 393px;
    }
    .main-menu {
        margin-left: auto;
        padding-right: 30px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a,
    header .call {
        font-size: 18px;
    }

    #menu>.main-menu>ul>li {
        float: left;
        padding-inline: 8px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 42px;
    }
    .banner {
        padding-bottom: 60px;
        padding-top: 170px;
    }

    p {
        font-size: 15px;
    }
    .title {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .cart-title {
        font-size: 22px;
    }
    .information .secondary-btn {
        margin-top: 0px;
    }
    .book-now {
        background-position: 100% -5px;
        position: relative;
        background-size: contain;
    }
    .book-now-content h2 {
        font-size: 90px;
        line-height: 90px;
        margin-bottom: 20px;
    }
    .book-now-content p {
        width: 90%;
        margin-bottom: 10px;
    }
    .book-now-content h4 {
        font-size: 40px;
    }
    .number {
        font-size: 40px;
    }
    .number img{
        width: 30px;
        height: 30px;
    }
    .discount .circle {
        font-size: 62px;
        line-height: 52px;
    }
    .discount .circle span {
        font-size: 22px;
    }
    .discount h4 {
        font-size: 26px;
    }
    .video-box h4 {
        font-size: 33px;
    }
    .category-tags .primary-btn {
        font-size: 17px;
    }
    .take-care {
        background-size: contain;
        padding-top: 94px;
        padding-bottom: 94px;
    }
    .category-banner h1 {
        font-size: 112px;
        line-height: 108%;
    }
    .category-banner {
        padding-bottom: 160px;
        padding-top: 260px;
    }
    .category-details-banner.category-banner .banner-content {
        width: 54%;
        margin: unset;
        text-align: left;
    }
    .category-details-banner {
        padding-bottom: 100px;
        padding-top: 220px;
    }
    .bg {
        background-size: cover;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .location-banner{
        padding-top: 124px;
        padding-bottom: 70px;
    }
    .location-banner h1{
        font-size: 82px;
        line-height: normal;
    }
    .blog-content h4 {
        font-size: 22px;
        line-height: 25px;
    }
    .blog-content .primary-btn {
        font-size: 16px;
    }
    .recent-post-item h4 {
        font-size: 15.6px;
    }
    .profile-info .section-title {
        font-size: 35px;
    }
    .profile-info hr {
        margin-top: 10px;
    }
    .profile-info ul {
        margin: 8px 0;
    }
    .profile-info ul li {
        font-size: 18px;
        line-height: 32px;
    }
    .call-girl-banner.category-banner .banner-content {
        width: 78%;
    }
    .call-girl-banner.category-banner {
        padding-bottom: 118px;
        padding-top: 260px;
    }
    .call-girl-banner.category-banner h1 {
        font-size: 88px;
        line-height: 108%;
    }
    .list {
        font-size: 15px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .call-girl-hottest {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .call-girl-info-content .section-title {
        font-size: 38px;
        margin-bottom: 10px;
        line-height: 40px;
    }
    .call-girl-info-content p {
        font-size: 15px;
        line-height: 140.556%;
    }
    .accordion__item .accordion__title {
        font-size: 18px;
    }
    .accordion__item .accordion__title {
        padding: 4px 58px 4px 0px;
        margin-bottom:0;
    }
    .accordion__title::after {
        top: 6px;
    }
}

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

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

@media (max-width: 991.98px) {
    #menu {
        width: 100%;
        justify-content: space-between;
    }
    header {
        height: 100px;
    }
    header .primary-btn {
        margin-right: 100px;
    }
    .hamburger {
        top: 22px;
    }
    #menu .main-menu {
        background-image: url(../img/top-model-bg.webp);
        top: 100px;
        left: 0;
    }
    .main-menu {
        display: block;
    }
    #menu>.main-menu>ul>li>a {
        padding: 20px 6px;
    }
    .primary-btn, .secondary-btn {
        font-size: 17px;
    }
    .banner-content {
        width: 60%;
    }
    .banner-img3 {
        display: none;
    }
    .banner-img2 {
        position: relative;
        right: -44px;
    }
    .banner-content h1, .banner-content h1 span {
        font-size: 110px;
        line-height: 71%;
    }
    .banner-content h2 {
        font-size: 30px;
    }
    .dec {
        font-size: 18px;
    }
    .banner-right-img img {
        width: 60%;
    }
    .banner-left-img {
        width: 45%;
        left: -88px;
    }
    .sec-gap {
        padding: 50px 0;
    }
    .category .col-lg-4 {
        flex: 0 0 auto;
        width: 98.333333%;
    }
    .category .col-lg-8 {
        flex: 0 0 auto;
        width: 100%;
    }
    .left .img-box {
        width: 360px;
    }
    .right .img-box {
        width: 100%;
    }
    .category-title {
        font-size: 34px;
    }
    .girl-contact {
        width: 40px;
    }
    .girl-box {
        padding: 12px;
    }
    .information .col-lg-5{
        text-align: center;
    }
    .information .row:last-child .col-lg-5{
        order: 1;
    }
    .information .row:last-child .col-lg-6{
        order: 2;
    }
    .information .col-lg-6{
        padding: 4%;
    }
    .book-now-shape {
        position: absolute;
        top: 0;
        width: 100%;
        height: 60%;
        object-fit: cover;
        object-position: left;
    }
    .book-now .container {
        position: relative;
    }
    .book-now {
        background-position: bottom center;
        padding-bottom: 50px;
    }
    .book-now-content {
        width: 90%;
        padding: 50px 0;
    }
    .discount {
        text-align: center;
        padding-left: 0%;
        padding-top: 10%;
        transform: translateX(-30%);
    }
    .category-tags .primary-btn {
        font-size: 16px;
        padding: 10px;
        height: 40px;
    }
    .model-info h4 {
        font-size: 18px;
    }
    .model-info p {
        margin: 0;
        font-size: 13px;
    }
    .take-care {
        background-size: cover;
        padding-top: 186px;
        padding-bottom: 40px;
    }
    .hottest .col-lg-4{
        text-align: center;
    }
    .secondary-btn {
        padding: 16px 30px;
    }
    .number {
        font-size: 35px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .book-now-content h4 {
        margin-bottom: 20px;
    }
    .video-box h4 {
        font-size: 28px;
    }
    footer {
        padding-top: 50px;
    }
    .category-banner {
        padding-bottom: 70px;
        padding-top: 140px;
    }
    .category-banner .banner-content {
        width: 90%;
    }
    .category-banner h1 {
        font-size: 74px;
        line-height: 130%;
    }
    .category-details-banner.category-banner h1 {
        line-height: 64px;
    }
    .category-details-banner.category-banner .banner-content {
        width: 70%;
    }
    .category-details-banner {
        padding-bottom: 59px;
        padding-top: 150px;
    }
    .hottest .col-lg-6{
        text-align: center;
    }
    .text-left {
        text-align: center;
    }
    .bg {
        background-size: cover;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .category-slider .girl-box .girl-img .primary-btn{
        font-size: 16px;
    }
    .category-slider .slick-next {
        right: 0px;
    }
    .category-slider .slick-prev {
        left: 0px;
    }
    .location-banner{
        padding-top: 100px;
        padding-bottom: 45px;
    }
    .location-banner h1{
        font-size: 62px;
        line-height: normal;
    }
    .location-box h4 {
        height: 45px;
        font-size: 18px;
    }
    .left-align .text-left{
        text-align: left;
    }
    .full-width .overlay {
        width: 62%;
        padding: 0;
        margin-top: 0;
        padding-inline: 10px;
    }
    .full-width .blog-img{
        height: 240px;
    }
    .blog-details-content {
        padding-top: 50px;
    }
    .related-article .blog-content h4 {
        font-size: 18px;
        line-height: 25px;
    }
    .call-girl-banner.category-banner {
        padding-bottom: 70px;
        padding-top: 226px;
    }
    .ps-5,.pe-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    .call-girl-info-content .row:last-child .col-lg-5{
        order: 2;
    }
    .call-girl-info-content .row:last-child .col-lg-6{
        order: 1;
    }
}

@media (max-width: 575.98px) {
    header .primary-btn span{
        display: none;
    }
    header .primary-btn {
        margin-right: 70px;
        padding: 8px;
    }
    .logo {
        width: 100px;
    }
    header {
        height: 68px;
    }
    .hamburger {
        top: 8px;
    }
    #menu .main-menu {
        top: 67px;
    }

    #menu .main-menu {
        flex-direction: column;
    }

    .banner {
        padding-bottom: 30px;
        padding-top: 100px;
    }
    .banner-left-img {
        display: none;
    }
    .banner-content {
        width: 80%;
        margin-right: auto;
        margin-left: 0;
    }
    .banner-content h1, .banner-content h1 span {
        font-size: 70px;
        line-height: 71%;
    }
    .banner-content h2 {
        font-size: 20px;
        margin: 7px 0;
    }
    .banner-content p {
        margin-bottom: 12px;
        font-size: 14px;
    }
    .banner-content .btn-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .primary-btn, .secondary-btn {
        font-size: 14px;
    }
    .primary-btn {
        gap: 6px;
        height: 45px;
    }
    .wp-btn img{
        width: 26px;
    }
    .banner-right-img img {
        width: 55%;
    }
    .main-menu {
        margin-left: auto;
        padding-right: 0;
    }

    #menu>.main-menu>ul>li>a:hover::after,
    #menu .main-menu ul li.current-menu-item a::after {
        width: 96%;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a,
    header .call {
        font-size: 16px;
        padding: 12px 6px;
    }

    #menu .main-menu ul li.current-menu-item a:after {
        content: '';
        position: absolute;
        bottom: 10px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    .sec-gap {
        padding: 30px 0;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .dec {
        font-size: 16px;
    }
    .category .col-lg-4 {
        flex: 0 0 auto;
        width: 100%;
    }
    .content-box {
        padding: 30px 15px;
        text-align: center;
    }
    .flex-center {
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-group .wp img{
        width: 40px;
        height: auto;
    }
    .left .img-box {
        width: 100%;
    }
    .category-title {
        font-size: 22px;
    }
    .title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    p {
        font-size: 14px;
    }
    .girl-box {
        padding: 8px;
    }
    .girl-box .cart-title {
        padding: 0px;
        padding-bottom: 0px;
        font-size: 16px;
    }
    .girl-box .girl-contact {
        width: 30px;
    }
    .information .col-lg-6 {
        padding: 0% 25px;
        text-align: center;
    }
    .book-now-content {
        width: 100%;
        padding: 30px 0;
    }
    .book-now-content h2 {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 12px;
    }
    .book-now-content p {
        width: 96%;
        margin-bottom: 10px;
    }
    .book-now-content h4 {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .number {
        font-size: 30px;
    }
    .number img{
        width: 40px;
        height: auto;
    }
    .discount .circle {
        font-size: 42px;
        line-height: 35px;
        width: 120px;
        height: 124px;
        box-shadow: -6px 0px 0px 0px #FBC028;
    }
    .discount .circle span {
        font-size: 17px;
    }
    .discount h4 {
        font-size: 18px;
    }
    .discount {
        text-align: center;
        padding-left: 0%;
        padding-top: 0%;
        transform: translateX(-23%);
    }
    .book-now {
        background-position: bottom center;
        padding-bottom: 15px;
    }
    .book-now-shape {
        height: 70%;
    }
    .play-icon img {
        width: 60px;
        height: auto;
    }
    .video-box h4 {
        font-size: 16px;
        padding: 5px 12px 5px 50px;
    }
    .star {
        background-size: 8px;
        background-repeat: no-repeat;
        width: 8px;
        height: 8px;
    }
    .tag {
        width: 50px;
        height: 21px;
        font-size: 12px;
        line-height: 22px;
    }
    .model-info h4 {
        font-size: 16px;
    }
    .model-info p {
        margin: 0;
        font-size: 11px;
    }
    .take-care {
        background-size: cover;
        padding-top: 30px;
        padding-bottom: 40px;
        background-position: -60px 0px;
    }
    .welcome .btn-group {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 7px;
    }
    .services-slider .slick-slide {
        margin: 0 6px;
    }
    .services-slider .slick-list {
        margin: 0 -6px;
    }
    .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .services-slider .slick-next {
        right: 6px;
    }
    .services-slider .slick-prev {
        left: 6px;
    }
    .slick-arrow::before {
        width: 10px;
        height: 10px;
    }
    footer ul li a {
        font-size: 14px;
    }
    footer {

        padding-top: 30px;
        text-align: center;
    }

    footer .col-lg-8 .col-lg-4,
    footer .col-lg-8 .col-lg-5 {
        padding-left: 10px;
    }

    .footer-title:after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }
    .footer-contact img {
        position: relative;
        left: 0;
        top: 3px;
        margin-right: 4px;
    }
    .footer-title {
        font-size: 18px;
    }
    #button {
        width: 40px;
        height: 40px;
    }
    .copyright {
        padding: 15px 0;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 0;
    }
    .category-banner h1 {
        font-size: 38px;
        line-height: 108%;
    }
    .category-banner .banner-content {
        width: 100%;
    }
    .escort-category .girl-box .girl-img .primary-btn {
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 8px;
        border-radius: 14px 0px;
        height: auto;
        border: 0;
        padding: 10px;
        font-size: 12px;
    }
    .category-details-banner.category-banner h1 {
        line-height: 36px;
    }
    .category-details-banner.category-banner .banner-content {
        width: 80%;
    }
    .category-details-banner {
        background-position: 58%;
    }
    .location-box h4 {
        height: 30px;
        font-size: 16px;
        bottom: 10px;
    }
    .location-box {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
}
.location-banner {
    padding-top: 80px;
    padding-bottom: 15px;
}
.left-align .text-left,.left-align{
    text-align: center;
}
.left-align .btn-group{
    justify-content: center;
}
.blog-content h4 {
    font-size: 18px;
    line-height: 22px;
}
.blog-content p{
    margin-bottom: 10px;
}
.blog-content p.date{
    margin-bottom: 0px;
}
.blog-content {
    padding: 18px 15px;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
    margin-top: -30px;
}
.blog-img,.blog-item{
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;  
}
.blog-content .primary-btn {
    font-size: 14px;
    padding: 10px 20px;
}
.blog-details {
    height: 68px;
}
.blog-details-content {
    padding-top: 20px;
}
.small-line {
    margin-bottom: 8px;
}
.blog-details-content .blog-img {
    margin: 10px 0;
}
.blog-details-content {
text-align: left;
}
.blog-details-content .title {
    font-size: 18px;
}
.title-md {
    font-size: 22px;
}
.related-article .blog-content h4 {
    font-size: 14px;
    line-height: 18px;
}
.recent-post-item {
    padding-bottom: 18px;
    margin-top: 18px;
}
.profile-info .section-title {
    font-size: 22px;
}
.profile-info ul li {
    font-size: 16px;
}
table th {
    font-size: 16px;
}
table {
    font-size: 14px;
}
table td{
    padding: 0;
}
.profile-info .btn-group {
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}
.profile-info .number {
    font-size: 30px;
}
.profile-info .number img {
    width: 30px;
    height: auto;
}
.call-girl-banner.category-banner .banner-content {
    width: 96%;
}
.call-girl-banner.category-banner h1 {
    font-size: 38px;
    line-height: 105%;
    margin-bottom: 16px;
}
.call-girl-banner.category-banner {
    padding-bottom: 35px;
    padding-top: 110px;
}
.call-girl-hottest {
    padding-top: 35px;
    padding-bottom: 35px;
    background-position: right;
}
.list {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-left: 16px;
}
.list-sm{
    text-align: left;
    font-size: 13px;
}
.call-girl-info-content .col-lg-6{
    padding: 0;
    margin-bottom: 20px;
}
.ps-5, .pe-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.call-girl-info-content .section-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 28px;
}
.pb-70 {
    padding-bottom: 30px;
}
.accordion__item .accordion__title {
    font-size: 16px;
}
.accordion__title::after {
    top: 10px;
    right: 0;
}
.accordion__item .accordion__title {
    padding: 4px 30px 4px 0px;
    margin-bottom: 0;
}
.call-girl-hottest.pb-94 {
    background-position: unset;
}
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  
 

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

.lcol, .rcol {
    float: left;
    width: 50%;
}
.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.lcol {
    background-color: #fd275a;
}
.rcol {
    background-color: #009999;
}

  