@import url("all.css");
@import url("pro.min.css");

:root {
    --black: #000;
    --light-black: #373630;
    --color1: #AFAA9D;
    --color2: #CFCABE;
    --gray: #E5E5E5;
    --light-gray: #F7F6F4;
    --white: #fff;
}


/*BG Styles*/

.bg-light-gray {
    background-color: var(--light-gray);
}

/*Container Styles*/

.container-fluid {
    padding: 0 81px;
}

/*Text Styles*/

body {
    font-family: "contralto-xsmall";
    font-weight: 300;
    overflow-x: hidden;
}

body p {
    margin: 0;
}

h1 {
    font-size: 70px;
    font-weight: 400;
    font-family: "contralto-big";
}

h2 {
    font-size: 60px;
    letter-spacing: 0.6px;
    font-weight: 400;
    font-family: "contralto-big";
}

h3 {
    font-size: 40px;
    letter-spacing: -0.4px;
    font-weight: 400;
    font-family: "contralto-big";
}

h4 {
    font-size: 30px;
    letter-spacing: -0.3px;
    font-weight: 400;
    font-family: "contralto-big";
}

h5 {
    font-size: 20px;
    letter-spacing: -0.4px;
    font-weight: 400;
    font-family: "contralto-big";
}

h1.capital {
    font-family: "contralto-small";
    font-weight: 400;
    text-transform: uppercase;
    font-size: 50px;
    letter-spacing: 10px;
    margin-bottom: 13px;
}

h2.capital {
    font-family: "contralto-medium";
    font-weight: 400;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 7.2px
}

h3.capital {
    font-family: "contralto-small";
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 4px
}

h4.capital {
    font-family: "contralto-xsmall";
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2.4px
}

h5.capital,
label.capital {
    font-family: "contralto-xsmall";
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px
}



.text-lg {
    font-size: 24px;
}

.text-md {
    font-size: 18px
}

.text-uppercase {
    letter-spacing: 20%;
}

.text-white {
    color: var(--white)
}

.text-black {
    color: var(--black)
}

.text-color1 {
    color: var(--color1);
}

.text-color2 {
    color: var(--color2);
}


a {
    text-decoration: none;
}


/*Button Styles*/

.btn {
    font-family: "contralto-small";
    font-weight: 400;
    border-radius: 0;
}

.btn-lg {
    padding: 14px 24px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}

.btn-md {
    padding: 10.5px 16px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.9px;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.44px;
}

.btn-xs {
    padding: 6px 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.44px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}

.btn-style-2 {
    color: var(--light-black);
    background-color: var(--color2);
}

.btn-style-3 {
    color: var(--black);
    background-color: var(--white);
}

.btn-style-4 {
    border: 1px solid var(--black);
    color: var(--black);
    background-color: var(--white);
}

.btn-style-5 {
    border: 1px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-style-6 {
    border: 1px solid var(--white);
    color: var(--white);
    background: #0000001A;
    backdrop-filter: blur(12px)
}

.btn-style-7 {
    border: 1px solid var(--white);
    color: var(--light-black);
    background: #0000001A;
    backdrop-filter: blur(12px)
}

.btn-style-8 {
    border: 1px solid var(--gray);
    color: var(--black);
    background: #FBFBFB;
}

.btn i {
    margin-left: 12px;
}


.button-group {
    gap: 40px;
}


.nav-pills {
    gap: 20px;
    margin-bottom: 60px;
}

.nav-pills .nav-link {
    color: var(--black);
    padding: 8px 20px;
    border: 1px solid var(--gray);
    backdrop-filter: blur(10px);
    background-color: var(--white);
    border-radius: 50px;
    font-size: 20px;
}

.nav-pills .nav-link.active {
    box-shadow: 0px 5px 15px 0px #00000033;
    background: var(--black);
    color: var(--white);
    border-color: transparent;

}


/*Action Btns*/

.action-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.action-btns a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fbfbfbb3;
    color: var(--light-black);
    backdrop-filter: blur(12);
}

.action-btns a + a {
    border-top: 1px solid var(--gray);
}


/*Accordion Styles*/

#cityAccordion .accordion-item {
    border: none;
    background-color: transparent;
    border-radius: 0 !important;
}

#cityAccordion .accordion-item h3 {
    margin-bottom: 0 !important;
}

#cityAccordion .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 1.25rem;
    padding-left: 0;
    border-bottom: 1px solid var(--color2);
    padding: 20px 10px;
    font-size: 40px;
}

#cityAccordion .accordion-button::after {
    margin-left: auto;
}

#cityAccordion .accordion-button:not(.collapsed) {
    background-color: var(--white);
    box-shadow: none;
}

#cityAccordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}


#cityAccordion .accordion-item:hover {
    background-color: var(--white);
    border: 1px solid var(--color2);
}

#cityAccordion .accordion-item:hover .accordion-button {
    border: 0;
}

#cityAccordion .accordion-button:focus {
    box-shadow: none;
}


/*Input Styles*/

.form-control {
    border: 1px solid var(--gray);
    background: var(--light-gray);
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1;
    font-family: "contralto-small";
    font-weight: 400;
    letter-spacing: -0.4px;
    border-radius: 0;
    display: block;
    min-height: 48px;
}


.form-control.capital {
    font-size: 14px;
    font-family: "contralto-xsmall";
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.1px;
}


.form-group + .form-group {
    margin-top: 30px;
}

.bg-light-gray .form-control {
    background-color: var(--white);
}

.form-group .btn + span {
    margin-left: 30px;
}

.form-group .add-btn,
.form-group .remove-btn {
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-group .row + .row {
    margin-top: 20px;
}



/*Upload File Design*/

.upload-container {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 20px;
}

.upload-input {
    position: relative;
    background: var(--light-gray);
    border: 1px solid var(--gray);
    padding: 12px 16px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.upload-input input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.upload-input span {
    display: inline-block;
}

.upload-icon {
    float: right;
    font-weight: bold;
}

.upload-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block !important;
}

/*Header*/

header {
    background: var(--black);
}

.top-bar {
    padding: 17.5px 0;
    border-bottom: 1px solid var(--light-black)
}

.top-bar i {
    color: var(--white);
    margin-left: 8px;
}

.top-bar .sep-line {
    margin: 0 24px;
}

.top-bar a {
    color: var(--color2)
}

header .container-fluid {
    position: relative;
}

.navbar {
    position: static;
}

.navbar a.nav-link {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 2.4px;
    font-family: "contralto-small";
    padding: 29.5px 0;
    border-bottom: 5px solid transparent;
    text-transform: uppercase;
}

.navbar .nav-item + .nav-item {
    margin-left: 78.5px;
}

.dropdown-toggle::after {
    content: "\f078";
    border: 0;
    margin-left: 8px;
    font-family: "Font Awesome 6 Pro";
    vertical-align: inherit;
}

/* Mega Menu */
.dropdown-mega {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background: #000000E5;
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out;
    backdrop-filter: blur(12px);
    padding: 60px 0;
}

.navbar .show-mega .nav-link {
    border-bottom: 5px solid var(--white);
}

.show-mega .dropdown-mega {
    display: block;
}

.dropdown-mega .d-flex {
    gap: 8px;
}

.dropdown-mega .mega-link {
    border: 1px solid var(--light-black);
    backdrop-filter: blur(12px);
    background: #00000080;
    text-align: center;
    padding: 35px;
    color: var(--white);
    font-size: 30px;
    font-family: "contralto-medium";
    font-weight: 400;
    flex: 1 1 20%;
    line-height: 1;
}

.dropdown-mega .mega-link:hover {
    background-color: var(--white);
    color: var(--black);
}


.dropdown-mega .back-btn {
    display: none;
}

#cityTab li.nav-item button {
    font-size: 20px;
    border: 1px solid var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
}

#cityTab .nav-tabs .nav-item.show .nav-link,
#cityTab li.nav-item button.active {
    color: var(--black);
}


.navbar #cityTab .nav-item + .nav-item {
    margin-left: 20px;
}

#cityTab {
    border: 0;
    margin-bottom: 60px !important;
}

#cityTabContent .mega-link {
    font-size: 20px;
    display: block;
    padding: 20px;
}

#cityTabContent .col {
    padding: 0 4px;
    margin-top: 8px;
}

/*SPL Headline Styles*/

.headline {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0;
}

.headline::before,
.headline::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--black);
    max-width: 40px;
}

.headline-white:before,
.headline-white:after {
    background-color: var(--white);
}

h3.headline {
    gap: 20px;
}

h3.headline:before,
h3.headline:after {
    max-width: 20px;
}


.headline-long:before,
.headline-long:after {
    max-width: none !important;
    opacity: 0.2;
}

.headline-md:before,
.headline-md:after {
    max-width: 87px;
}


/*Hero Section*/
.section-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    opacity: 70%;
    left: 0;
    right: 0;
}

.section-hero h1 {
    margin-bottom: 20px;
}

.section-hero h3 {
    margin-bottom: 40px;
}


/*Content Section*/
.section-content p {
    margin-top: 40px;
    margin-bottom: 0;
}

.section-content p + p {
    margin-top: 20px;
}

.content-text h3 + p {
    margin-top: 40px;
}

/*Img Gallery section*/

.section-featured-in h3 {
    margin-bottom: 36px;
}

.img-gallery {
    margin-bottom: 52px;
    overflow: hidden;
}

.img-gallery img {
    max-height: 51px;
    width: auto;
}




/*Section Default Styles*/

section {
    padding: 75px 0;
}

section .heading {
    margin-bottom: 80px;
}

section .button-group {
    margin-top: 80px;
}

.page-header {
    position: relative;
}

.page-header h1 ~ p {
    margin-top: 40px;
}


.page-header .button-group {
    column-gap: 20px;
    margin-top: 30px;
}

/*Beadcrumbs*/
.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs a {
    font-family: "contralto-xsmall";
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2.4px;
    padding: 0 40px;
    color: var(--black);
}


/*Search Form*/

.search-form {
    position: relative;
    margin-top: 24px;
}

.search-form a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
    right: 16px;
}



/*Card Styles*/
.model-cards-blk {
    margin-bottom: 60px;
}

.model-card .img-block {
    position: relative;
    padding-top: 170%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 20px;
}

.model-card-small .img-block {
    padding-top: 72%;
}

.model-card.need-sub .img-block:before {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* optional */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.model-card .watermark {
    position: absolute;
    bottom: 77px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 183px;
    gap: 13px;
}


.model-card .btn {
    position: absolute;
    bottom: 13px;
    left: 16px;
    backdrop-filter: blur(12px)
}

.model-card .wishlist {
    padding: 11px 12px;
    background: var(--white);
    border: 1px solid var(--gray);
    backdrop-filter: blur(10px);
    width: 42px;
    height: 42px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: 8px;
    right: 9px;
}


.model-card h4 {
    margin-bottom: 8px;
}



.private-card .img-block {
    background: var(--light-gray);
    border: 1px solid var(--Color-light-03, #CFCABE)
}

.private-cnt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.private-cnt img {
    margin-bottom: 23px;
}

.private-card .private-cnt .btn {
    bottom: 62px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}



/*Blog*/

.post {
    padding: 0 8px;
}

.img-container {
    width: 100%;
    height: 206px;
    /* Adjust to match the screenshot size */
    overflow: hidden;
    margin-bottom: 20px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the box and keeps proportions */
    display: block;
}

.post p,
.post h4 {
    margin-bottom: 20px;
}



/*Pricing*/

.pricing-section h3 {
    margin-bottom: 40px;
}

.plan-blk {
    padding: 60px;
    border: 1px solid var(--gray)
}

.plan-blk + .plan-blk {
    border-left: 0;
}

.plan-blk h3 {
    margin-bottom: 40px;
}

.plan-blk p {
    margin-bottom: 64px;
}

.plan-blk ul {
    padding: 0;
    margin-bottom: 64px;
}

.plan-blk li {
    font-size: 20px;
    padding: 0;
    display: block;
}

.plan-blk li + li {
    margin-top: 16px;
}

.plan-blk li.disabled {
    color: var(--color1)
}


.plan-blk .btn {
    width: 100%;
    text-align: center;
}

.plan-blk.active {
    background-color: var(--light-gray);
    border: 1px solid var(--light-black);
}



/*Experience Section*/

.experience-blks a,
.city-blks a {
    padding: 135px 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    text-align: center;
    font-family: "contralto-small";
    font-weight: 500;
    line-height: 1;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-size: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.experience-blks a:before,
.city-blks a:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #00000033;
    /* Black overlay */
    z-index: -1;
}

.experience-blks a + a {
    margin-top: 40px;
}

.city-blks {
    grid-gap: 40px;
}

.city-blks a {
    flex: 1 1 calc(50% - 20px);
}



/*About Section*/


.about-section .button-group {
    margin-top: 40px;
}

.about-section h2 {
    margin-bottom: 40px;
}

/*CTA section*/

.cta-section .cta-blk {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 183px 20px;
    position: relative;

}

.cta-section .cta-blk:before {
    content: '';
    position: absolute;
    background: #24242480;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.cta-section .cta-blk h2 {
    margin-bottom: 40px;
}


.cta-section h3 {
    margin-bottom: 40px;
}



/*Content Blocks*/

.content-blk {
    gap: 100px;
    flex-wrap: nowrap;
    margin-top: 100px;
}

.content-blk > div {
    flex: 1 1 50%;
    width: 50%;
}

.content-blk .content-img div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100%;
    position: relative;
}

.content-blk .button-group {
    margin-top: 40px !important;
}

.content-blk p + p {
    margin-top: 40px;
}


/*Benefit Block*/


.benefits-section .benefit-blk {
    border-bottom: 1px solid var(--gray);
    padding: 40px 0;
}

.benefits-section .button-group {
    margin-top: 80px;
}




/*Footer*/

footer {
    background-color: var(--black);
}


.footer-top {
    padding: 80px 0;
}

.footer-logo {
    margin-bottom: 40px;
}

.social-icons {
    gap: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icons a {
    color: var(--white);
    font-size: 24px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info a {
    color: var(--white);
    display: block;
    font-weight: 300;
}

.contact-info a + a {
    margin-top: 8px;
}


.copyright {
    border-top: 2px solid var(--light-black);
    padding: 20px 0;
}


.footer-top h3 {
    margin-bottom: 20px;
}

.footer-top .links a {
    color: var(--color2);
    display: block;
}

.footer-top .links a + a {
    margin-top: 12px;
}

footer form {
    margin-bottom: 57px;
    margin-top: 20px;
    position: relative;
}

.cities-info p {
    font-size: 14px;
}

.cities-info p a {
    color: var(--white);
}


.footer-widget-2 {
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: var(--light-black);
}


footer .form-control {
    background: var(--light-black);
    border: 0;
    font-size: 16px;
    padding: 10px 20px;
}

footer form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    letter-spacing: 2px;
}

.cities-section .headline {
    margin-bottom: 55px;
}


/*Popup Section*/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    backdrop-filter: blur(12px);
    display: none;
}

.popup-body {
    max-width: 1038px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 80px 132px;
}


.popup form {
    margin-top: 60px;
}

a.popup-close {
    position: absolute;
    right: 40px;
    top: 40px;
    color: #000;
    font-size: 24px;
}


.popup .plan-blk{
    padding: 0 30px;
    border-width: 0;
}

.popup .plan-blk:first-child{
    padding-left: 0;
}
.popup .plan-blk:last-child{
    padding-right: 0;
}

.popup .plan-blk + .plan-blk{
    border-left: 1px solid var(--gray);
}

.popup select{
    display: inline-block;
    border: 1px solid var(--gray);
    width: auto;
    background: var(--white);
    font-size: 18px;
    padding: 9px 16px;
}

.popup .tab-content{
    max-height: 500px;
    overflow-y:auto;
    padding-right: 30px;
    margin-right: -30px;
}