@font-face {
    font-family: 'Peristiwa';
    src: url('../fonts/Peristiwa.woff2') format('woff2'),
        url('../fonts/Peristiwa.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --red: #E84C15;
    --lightPink: #FDF6FA;
    --footerBody: #040404;
    --black10: #101010;
    --black38: #383838;
    --Yesteryear: "Yesteryear", cursive;
    --Heebo: "Heebo", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Heebo);
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h1 {
    font-weight: 900;
    font-size: 120px;
    line-height: 0.75em;
    text-align: left;
    text-transform: capitalize;
}

h2 {
    font-weight: 900;
    font-size: 42px;
    line-height: 1.5em;
    color: var(--red);
}

h3 {
    font-weight: 900;
    font-size: 76px;
    line-height: 1em;
    text-transform: uppercase;
}

p {
    font-weight: 400;
    padding: 0;
    line-height: 1em;
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none !important;
    color: inherit;
    transition: all .3s ease-in-out;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

iframe {
    width: 100%;
    height: 100%;
}

.btn {
    transition: 0.5s;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 50px;
}

.btn-primary {
    background: var(--orange);
    border: none;
    padding: 14px 25px;
    font-size: 17px;
    line-height: 1em;
    font-weight: 600;
    border-radius: 14px;
    color: var(--white);
    border: 1px solid #E2E2E2;
    box-shadow: 0px 4px 44px 0px #0000001A;
    transition: all .3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--white);
    color: var(--grey);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-primary span i {
    transform: rotate(330deg);
    margin-left: 5px;
}


.btn-white {
    background-color: var(--white);
    color: var(--grey);
}

.btn-white:hover,
.btn-white:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-view {
    border: 1px solid #D9AF7F;
    color: #ffffff;
    position: relative;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
    z-index: 1;
}

.btn-view:hover {
    background-color: #D9AF7F;
}

.btn-view::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid #D9AF7F;
    z-index: -1;
    transition: 0.5s;
}

.btn-view:hover::after {
    opacity: 0;
}

.text-flex {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    position: relative;
}

/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu {
    background-color: var(--black38);
}

.menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    position: relative;
    vertical-align: middle;
}

.menu ul li.active {
    position: relative;
}

.menu ul li.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    max-width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/menu-active-shape.svg);
}

.menu ul li span {
    position: absolute;
    top: 14px;
    right: 0;
    display: none;
}

.menu ul li span::after {
    content: '\f107';
    color: #000000;
    font-family: FontAwesome;
    font-size: 10px;
}

.menu ul li:hover span::after {
    color: #f7c624;
}

.headarea.innerheader .menu ul li a {
    color: #000;
}

.menu ul li a {
    color: var(--white);
    font-size: 17px;
    line-height: 1em;
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    padding: 18px 38px;
    position: relative;

    &:hover {
        background-color: var(--red);
    }
}

.menu ul li.active a::after,
.menu ul li:hover a::after {
    width: 100%;
}

.menu ul li.active a::after {
    width: 100%;
}

.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}

.menu ul li a .arrow-icon {
    display: inline-block;
    font-size: 10px;
    margin-left: 5px;
}

.menu ul li ul {
    width: max-content;
    min-width: 200px;
    position: absolute;
    top: calc(100% + 30px);
    left: -1em;
    z-index: 2;
    background-color: var(--white);
    padding: 8px 16px;
    border: 2px solid var(--black);
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.menu ul ul li:first-child:before {
    display: none;
}

.menu ul ul li:after {
    display: none;
}

.menu ul li:last-child ul {
    width: 220px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 5px 14px rgb(0 0 0 / 2%);
    text-align: left;
}

.menu ul li ul li a {
    font-size: 16px;
    text-transform: none;
    padding: 2px 0;
    color: var(--bodycolor);
    line-height: 1.3em;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
    border-radius: 0;
}

.menu ul li ul li ul {
    top: 10px;
    left: 149px;
}

.menu ul li ul li span {
    right: 7px;
    top: 12px;
}

.menu ul li a:hover.menu ul li ul {
    display: block;
}

.menu ul li ul li {
    display: block;
    padding: 0;
    border-bottom: solid 1px rgb(255 255 255 / 7%);
    border-right: none;
}

.menu ul li ul li:last-child {
    border: none;
}

.sub-menu li a::after {
    height: 0 !important;
}

.menuButton {
    width: 37px;
    height: 30px;
    padding: 5px;
    float: right;
    display: none;
}

.menuButton span {
    width: 100%;
    height: 2px;
    background: var(--white);
    margin-bottom: 6px;
    float: left;
    transition: all 0.3s ease-in-out 0s;
}

.menuButton span:last-child {
    margin-bottom: 0;
}

@media (min-width:991.98px) {
    .menu ul {
        display: block !important;
    }

    .menu ul li:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width:991.98px) {
    .menuButton {
        display: block;
        margin-left: 15px;
        cursor: pointer;
    }

    .menu ul li span {
        background: url(../images/menu_arrow.png) center center no-repeat;
        cursor: pointer;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 99;
    }

    .menu ul li:hover span {
        background: url(../images/menu_arrow_hover.png) center center no-repeat;
    }

    .arrow_change span:nth-child(2) {
        display: none;
    }

    .arrow_change span:first-child {
        position: relative;
        top: 9px;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .arrow_change span:last-child {
        position: relative;
        top: 1px;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .menuBar {
        padding: 15px 0;
    }

    .menu {
        padding: 5px 0;
    }

    .menu ul {
        display: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .menu ul li a {
        color: #071731;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .menu ul li ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
        padding: 0;
        visibility: initial;
        opacity: 1;
    }

    .menu ul li:last-child ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu ul li {
        display: block;
        padding: 10px 15px 10px 15px;
        border-top: 1px solid #cccccc54;
        text-align: left;
        position: relative;
    }

    .menu ul li span {
        position: absolute;
        right: 30px;
        z-index: 99;
        cursor: pointer;
        top: 12px;
        text-align: center;
    }

    .menu ul li ul li ul {
        top: 0;
        left: 0;
    }

    .menu ul li ul li a {
        font-size: 12px;
        text-transform: none;
        background-color: #e1e1e1;
        padding: 8px 12px;
        color: #000;
    }
}

/*-- menu stop --*/

/*-- header area start --*/
.page-header {
    border-bottom: 5px solid var(--maroon);
}

.header-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 91;
    padding: 10px 0px 0px;
    background-color: var(--black10);
}

.header-body {
    padding: 5px 0 0;
    flex-direction: column;
}

.header-body .logo {
    width: 100%;
    justify-content: center;
    padding: 10px 0 18px;
}

.header-body .logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-body .logo img {
    max-width: 100%;
    object-fit: cover;
}

.header-menu {
    width: 100%;
    background-color: var(--black38);
    justify-content: center;
}

/*-- header area stop --*/


/* footer start */
.footer {
    background-color: var(--footerBody);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 95px;
}

.footer-heading,
.footer-email-cont a {
    line-height: 1.25rem;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
}

.footer-contact-cont a {
    font-weight: 700;
    font-size: 37px;
    line-height: 1.5em;

    &:hover {
        color: var(--red);
    }
}

.footer-email-cont a:hover,
.footer-list li a:hover {
    color: var(--red);
}

.footer-list li a {
    font-weight: 500;
    font-size: 19px;
    line-height: 1.7em;
    text-decoration: underline;
}

.footer-bottom {
    background-color: var(--red);
    padding: 20px 0 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 19px;
    font-weight: 500;
}

.footer-bottom p a:hover {
    color: var(--black);
}

/* footer end */
/* banner-start */
.banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner-bg-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content-outer {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(86.96deg, #FFEBFD 4.9%, rgba(255, 235, 253, 0) 79.43%);
}

.banner-content {
    padding: 250px 0;
}

.banner-content .red-bg {
    font-weight: 900;
    font-size: 60px;
    line-height: 1.04;
    color: var(--white);
    background-color: var(--red);
    max-width: fit-content;
    padding: 10px 35px 7px;
}

/* banner-end */

/* about us start  */
.about-us-sec {
    padding: 90px 0;
}

.about-us-sec-img,
.about-us-sec-img img {
    height: 100%;
    width: 100%;
}

.about-us-sec-inner .row {
    --bs-gutter-x: 48px;
}

/* about-us-end */

/* Today’s Updated Models of Mumbai Call Girls start */
.Gallery-section {
    padding: 70px 0;
}

.page-title {
    margin-bottom: 20px;
    text-align: center;
}

.page-title h2 span {
    font-family: var(--Yesteryear);
    font-weight: 400;
    font-size: 63px;
    line-height: 52px;
    display: block;
    color: var(--black);
}

.work-title-row {
    --bs-gutter-y: 20px;
}

.help-companies-tab-body-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
    border-radius: 6px;
}

/* Today’s Updated Models of Mumbai Call Girls end */
/* Make it Simple by Interfacing With Us! start */
.make-simple {
    background-color: #FDF6FA;
    padding: 60px 0 45px;
}

.page-text p {
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    padding-bottom: 15px;
}

.page-text p a {
    font-weight: 700;
    text-decoration: underline;
}

.page-text p a:hover {
    color: var(--red);
}

.start-title {
    text-align: start;
}

/* Make it Simple by Interfacing With Us! end */

/* 19-02-26 */

/* header-sub-menu start */
.menu>ul>li.has-children {
    position: unset;
}

.menu>ul>li.has-children>a>i {
    font-size: 14px;
}

.header-menu {
    position: relative;
}

.menu ul li ul {
    width: 100%;
    border: 0;
    column-count: 6;
    padding: 0 20px;
}

.menu ul li ul li,
.menu ul li ul li:last-child {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.menu ul li ul li a:hover {
    background-color: transparent;
    color: var(--red);
}

.menu ul li ul li a {
    color: #666;
    font-size: 14px;
}

/* header-sub-menu end */

.know-more {
    padding-bottom: 70px;
}

.pink-outer {
    background: #fff9fee0;
}

.Introductions-text {
    padding: 70px 0;
}

.Introductions-box {
    height: 100%;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    padding: 33px 28px 50px;
    text-align: start;
}

.Introductions-box h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 30px;
}

.Introductions-inner {
    padding-top: 40px;
}

.orange-btn {
    text-align: center;
    margin: 70px 0;
}

.orange-btn a {
    font-weight: 900;
    font-size: 42px;
    line-height: 52px;
    text-align: center;
    text-decoration: underline;
    padding: 40px 155px;
    background-color: var(--red);
    color: var(--white);
}

.video-section {
    padding: 70px 0;
}

.video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.video-wrapper img {
    width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-title h2 span {
    max-width: 800px;
}

.pink-box {
    background-color: #FDF6FA;
    background: rgba(253, 246, 250, 1);
    transition: all .4s ease-in-out;
}

.Introductions-inner .row {
    --bs-gutter-y: 30px;
}

.pink-box:hover {
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.about-us-sec-img,
.about-us-sec-img img {
    object-fit: cover;
}

/* location-page start */
.guide-info {
    padding-top: 30px;
}

.guide-info h4 {
    font-weight: 800;
    font-size: 37px;
    line-height: 30px;
    padding-bottom: 30px;
}

.guide-info p {
    font-size: 17px;
    line-height: 30px;
    padding-bottom: 30px;
}

/* location-page end */

/* gallery-page start */
/* inner-banner-content start */
.inner-banner-content {
    padding: 200px 0;
}

.inner-banner-content h2 {
    font-weight: 900;
    font-size: 60px;
    line-height: 1.04em;
    color: #151515;
    text-align: left;
}

/* inner-banner-content-end */

.sidebar-filter {
    background: var(--white);
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    box-shadow: 0px 4px 44px 0px #0000001A;
}

.filter-item {
    border-bottom: 1px solid #ebebeb;
    padding: 15px 20px 3px 30px;
}

.filter-content {
    display: none;
    padding-left: 15px;
    margin-top: 15px;
}

.filter-item.active .filter-content {
    display: block;
}

.checkbox-sec {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    gap: 15px;
}

.checkbox-sec input {
    display: none;
}

.label-text {
    font-weight: 500;
    line-height: 1.5em;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--black);
    border-radius: 2px;
    position: relative;
}

.checkbox-sec p {
    margin: 0;
    font-size: 15px;
    max-width: calc(100% - 30px);
    line-height: 1.2em;
}

.checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

.checkbox-sec input:checked+.checkmark::after {
    display: block;
}

.more-locations {
    display: none;
}

.show-more-btn {
    background: var(--red);
    border: none;
    color: var(--white);
    padding: 8px 11px;
    border-radius: 6px;
    cursor: pointer;
    margin: 10px 0 20px;
    font-weight: 500;
    font-size: 15px;
}

/* gallery-page end */

.about-us-sec-inner>.row{
    align-items: center;
}