html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 85px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    box-shadow: 0 0 0 transparent;
}

.toolbar_root .main_content {
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    width: 200px;
    height: 68px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/antardesi_logo.png") no-repeat center;
    background-size: contain;
}

.toolbar_root.full #main_logo {
    filter: invert(1);
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: #212121;
    padding: 16px;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 6px;
    margin: 0 2px;
    font-family: 'Kumbh Sans', sans-serif;
    transition: 0.4s ease;
}

.toolbar_root.full .menu_item span {
    color: white;
}

.menu_item:hover {
    /*background-color: var(--colorAccent);*/
}

.menu_item:hover > span {
    color: white;
    background-color: #212121;
}

.menu_item.highlight span {
    background-color: #212121;
    color: white;
}


.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    right: 0;
    /*border-bottom-left-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    background-size: 400% 400%;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item {
    min-height: 40px;
    padding: 8px;
    color: #212121;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    color: #212121;
    font-family: 'Kumbh Sans', sans-serif;
}

.drawer_item:hover span {
    color: var(--colorAccent)
}

.main_content {
    width: 100%;
    padding: 0 12px;
    max-width: 1400px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    min-width: 85%;
    width: 250px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: white;
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.4);
}

.header_image {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: inherit;
    overflow: hidden;
}


.slide_container:hover .slide_nav_button {
    display: block;
    transition: 0.4s ease;
}

.slide_nav_button {
    display: none;
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    z-index: 52;
    font-size: 18px;
    padding: 18px 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.4s ease;
}

.slide_nav_button:hover {
    background-color: var(--colorAccent);
}

.slide_nav_button#left_button {
    left: 0;
}

.slide_nav_button#right_button {
    right: 0;
}

.accent_button {
    background-color: #212121;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Kumbh Sans", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.light {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
}

.accent_button.bordered_button {

}

.bordered_button {
    background: transparent;
    color: white;
    font-weight: 500;
    padding: 12px 16px;
    border: 2px solid white;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Kumbh Sans", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    color: #212121;
    font-size: 40px;
    padding: 8px;
    font-weight: 500;
    margin: 8px 0;
    text-align: center;
    font-family: "Marcellus", sans-serif;
    position: relative;
}

.page_sub_heading {
    color: #212121;
    margin: 0 8px;
    line-height: 1;
    font-size: 20px;
    font-family: "Kumbh Sans", sans-serif;
}

.section_wrapper {
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.collection_item_wrapper {
    width: calc(100% - 12px);
    margin: 6px;
    overflow: hidden;
    max-height: 600px;
    position: relative;
}

.collection_item_wrapper:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    border: 3px solid #fff4d6;
}

.collection_item_wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
}

.collection_item_wrapper .content {
    position: absolute;
    bottom: 48px;
    left: 24px;
    right: 24px;
    z-index: 3;
}

.collection_item_wrapper .content img {
    width: 60%;
    height: auto;
}

.collection_item_wrapper .content span {
    color: #fff4d6;
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Marcellus", sans-serif;
    margin-bottom: 16px;
    border-bottom: 2px solid #fff4d6;
}

.collection_item_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
    object-position: top center;
    transform: scale(1);
}

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

.celebrity_item_wrapper {
    width: calc(100% - 12px);
    margin: 6px;
}

.celebrity_item_wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.celebrity_item_wrapper span {
    color: #8e8e8e;
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
    padding: 8px;
}

.celebrity_item_wrapper span b {
    color: #212121;
    font-size: 18px;
}

.testimonial_section_wrapper {

}

.testimonial_wrapper {
    background: rgba(255, 255, 255, 0.9);
    margin: 16px;
    box-shadow: 0 0 0 transparent;
    transform: translateY(0);
    transition: 0.4s ease;
}

.testimonial_wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.testimonial_wrapper .client_image {
    width: 100px !important;
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
}


.testimonial_wrapper .client_name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    font-family: "Kumbh Sans", sans-serif;
}

.testimonial_wrapper p {
    font-size: 14px;
    font-family: "Kumbh Sans", sans-serif;
}

.schedule_appointment_section_wrapper {
    background-image: url("../images/call_us_section_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
    justify-content: center;
}

.schedule_appointment_content_wrapper {
    background: rgba(0, 0, 0, 0.8);
    padding: 16px;
    width: 90%;
    max-width: 500px;
    margin: 40px 0;
}

.schedule_appointment_content_wrapper span {
    text-decoration: underline;
    color: white;
}

.schedule_appointment_content_wrapper p {
    color: white;
    text-align: center;
    font-size: 16px;
}

.form_wrapper {
}


.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 8px 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 12px;
    width: calc(100% - 8px);
    margin: 4px;
    font-size: 16px;
    background: transparent;
    color: #212121;
    font-family: "Kumbh Sans", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid #212121;
    transition: all 0.4s;
}

.form_wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.contact_details_container {
    width: 90%;
    height: auto;
    max-width: 500px;
    color: white;
    padding: 26px;
}

.contact_details_container p {
    margin-left: 20px;
}

footer {
    margin-top: 75px;
    color: white;
}

.footer_wrapper {
    padding: 20px 0 20px;
    border-top: 1px solid #212121;
    border-bottom: 1px solid #212121;
}

.footer_logo {
    width: 90%;
    max-height: 80px;
    object-fit: contain;
    object-position: left;
    min-width: 100px;
}

.footer_container {
    width: calc((100% / 4) - 16px);
    padding: 20px;
    margin: 8px;
    border-right: 1px solid #212121;
}

.footer_container p {
    font-size: 16px;
    color: #212121;
}

.footer_social_link {
    font-weight: 500;
    font-size: 16px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #979797;
    margin: 4px;
    border-radius: 50%;
    transition: 0.4s ease;
    border: 1px solid #979797;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: white;
}

.footer_heading {
    color: #212121;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "Kumbh Sans", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 16px;
    font-family: "Kumbh Sans", sans-serif;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
    color: var(--colorAccent);
}

.footer_icon {
    font-size: 18px;
    margin-right: 16px;
}

.footer_link i {
    color: #212121;
    align-self: start;
}

.footer_input_field {
    background-color: #fde8e8;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 12px;
}

.footer_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Kumbh Sans', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

.footer_accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.contact_header_container {
    position: relative;
    width: 100%;
    background: #212121;
}

.contact_header_container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 750px;
    padding: 16px;
}

.contact_header_container img {
    width: 100%;
    object-fit: cover;
    filter: opacity(0.5);
}

.contact_header_container h2 {
    font-size: 36px;
    margin: 4px;
}

.contact_header_container p {
    margin: 4px;
    line-height: 1.5;
    font-size: 18px;
}

.contact_us_header_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact_us_header_container .page_heading {
    z-index: 1;
    font-weight: bold;
    font-size: 42px;
}

.contact_detail_container {

}

.contact_detail_container a {
    padding: 8px;
}

.contact_detail_container a > .row_alignment {
    background: #f2f2f2;
    flex: 1 1 auto;
    padding: 16px;
    border-radius: 12px;
}

.contact_detail_container span {
    font-size: 16px;
    align-self: center;
}

.contact_detail_container img {
    width: 80px;
    align-self: center;
    height: 80px;
    margin-right: 16px;
}

.social_media_icon {
    font-size: 18px;
    line-height: 1;
    width: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;
    margin: 8px 16px 8px 0;
    padding: 11px 12px;
    background-color: var(--colorAccent);
}

.social_media_icon:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    transition: 0.4s;
}


.dialog-container#share_dialog span {
    font-size: 14px;
    margin: 4px;
    color: #424242;
}

.about_founder_section {
    position: relative;
    padding: 40px 0;
}

.about_founder_section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: white;
}

.about_founder_section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: #2f261a;
}

.about_founder_section li {
    color: white;
    margin: 12px 0;
    line-height: 1.5;
    font-weight: normal;
    font-size: 16px;
}

.luxury_section_wrapper {
    background-image: url("../images/luxury_section_bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    min-height: 700px;
    justify-content: center;
}

.luxury_section_wrapper span, .luxury_section_wrapper p {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.footer_logo_icon {
    align-self: center;
    margin-top: -75px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 24px;
    background: #1d1d1d;
}

.textile_item_wrapper {
    position: relative;
    max-height: 700px;
    overflow: hidden;
}

.textile_item_wrapper img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    transform: scale(1);
    transition: 1s ease;
}

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

.textile_item_wrapper .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.textile_item_wrapper .content span {
    font-size: 28px;
    color: white;
    font-family: "Marcellus", sans-serif;
}

.textile_item_wrapper .content p {
    color: white;
    max-width: 500px;
    font-size: 18px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin-top: 0 !important;
}

.owl-prev {
    float: left;
}

.owl-next {
    float: right;
}

.owl-prev, .owl-next {
    width: 32px !important;
    height: 32px !important;
    padding: 8px 0 !important;
    text-align: center !important;
    color: #212121 !important;
    background: rgba(255,255,255,0.5) !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    overflow: hidden;
    display: block;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2) !important;
}

.owl-prev span, .owl-next span {
    font-size: 30px !important;
    margin-top: -8px;
    display: block;
}

@media only screen and (max-width: 780px) {


    .about_founder_section:after {
        top: 0;
        left: 0;
        bottom: auto;
        width: 100%;
        height: 50%;
    }

    .about_founder_section:before {
        top: 50%;
        left: 0;
        bottom: auto;
        width: 100%;
        height: 50%;
        right: auto;
    }

    .toolbar_root #main_logo {
        height: 46px;
        width: 160px;
        margin: 0 4px;
        transition: 0.4s;
        flex: 1 1 auto;
        object-fit: contain;
    }

    .page_heading {
        font-size: 28px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


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

    .footer_container {
        width: calc(100% - 6px);
        border-bottom: 1px solid #212121;
        border-right: none;
    }

    .header_container {
        height: calc(100vw * 1.4);
    }

    .header_image {
        height: calc(100vw * 1.4);
    }

    .slide img {
        height: calc(100vw * 1.4);
    }

    .base_margin {
        margin-top: 60px;
    }

    .contact_page_heading {
        align-self: center;
    }

    .schedule_appointment_section_wrapper {
        background-position-x: 20%;
    }

    .precision_content_wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding-top: 40px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent) !important;
    }

    .precision_content_wrapper span, .precision_content_wrapper p {
        text-align: center !important;
    }

    .precision_content_wrapper > div {
        padding: 24px !important;
        width: 100% !important;
    }

    .precision_image_wrapper img {
        max-height: none !important;
    }
}


/* Safari override */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .luxury_section_wrapper {
            background-attachment: scroll !important;
        }
    }
}
