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: 80px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    padding: 0;
    transition: 0.4s ease all, 1s ease top;
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    padding: 16px 0;
    backdrop-filter: none;
}

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

.toolbar_root #main_logo {
    width: 300px;
    height: 70px;
    margin: 4px 16px;
    transition: 0.4s;
    background-size: contain;
}

.toolbar_root #main_logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
}

.toolbar_menu_wrapper {
    /*border: 1px solid white;*/
    /*background: rgba(255, 255, 255, 0.22);*/
    /*border-radius: 50px;*/
    /*margin: 4px 8px;*/
}

.menu_item {
    margin: 4px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: white;
    padding: 10px 0;
    margin: 0 16px;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
    border-bottom: 2px solid transparent;
}

.menu_item.highlight > span {
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 8px 16px;
    transition: 0.4s ease;
}

.menu_item:hover > span {
    border-bottom: 2px solid white;
}

.menu_item.highlight:hover > span {
    color: #212121;
    background: linear-gradient(to right, #F7D2A4, #D1AC7E);
    padding: 16px;
    border: 1px solid #212121;
}


.toolbar_dropdown_container {
}

.toolbar_dropdown_content {
    position: absolute;
    top: calc(100% - 16px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1200px;
    display: none !important;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: 0.4s ease;
    padding: 24px;
    min-height: 450px;
    max-height: 550px;
    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: white;
    font-family: 'Montserrat', sans-serif;
}

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


.menu_heading {
    color: white;
    font-family: 'BookmanOld', sans-serif;
    font-weight: bold;
    margin: 24px 0 12px;
    font-size: 20px;
    position: relative;
}

.menu_heading.expandable:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    padding: 16px;
    transform: translateY(-50%);
    color: white;
}

.menu_heading.expandable.active:after {
    content: "-";
}


.category_menu_data {
    display: none;
}

.category_menu_data.active {
    display: flex;
}

.menu_sub_item {
    font-size: 16px;
    margin: 4px 0;
    color: white;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
}

.menu_sub_item:hover {
    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;
    width: 90%;
    max-width: 500px;
    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: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    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_image {
    width: 100%;
    object-fit: cover;
}

.accent_button {
    background-color: var(--colorAccent);
    color: #212121;
    font-weight: 500;
    padding: 12px 24px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--colorAccent);
    transform: translateY(0);
}

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

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

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

.bordered_button {
    border-radius: 24px;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    background: transparent;
    transform: translateY(0);
    border: 1px solid white;
}

.bordered_button.accent {
    border: 1px solid var(--colorAccent);
    color: var(--colorAccent);
}

.bordered_button:hover {
    background: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: #212121;
    /*padding: 16px 24px;*/
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    transform: translateY(-4px);
}

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

.page_heading.left {
    text-align: left;
    align-self: flex-start;
}

.page_sub_heading {
    text-align: center;
    max-width: 800px;
    align-self: center;
    margin: 0 8px 8px;
    font-size: 16px;
    line-height: 1.6;
}

.page_sub_heading.left {
    text-align: left;
    align-self: flex-start;
}

.section_wrapper {
    padding: 40px 0;
}

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

.testimonial_section_wrapper {
]
}

.testimonial_wrapper {
    margin: 8px;
    border-radius: 16px;
    transform: translateY(0);
    transition: 0.4s ease;
    border: 1px solid #c6c6c6;
    background: white;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.testimonial_wrapper .quote_icon {
    width: 32px !important;
    height: auto;
}

.testimonial_wrapper .client_image {
    width: 180px !important;
    height: 280px !important;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
}


.testimonial_wrapper .client_name {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: italic;
    font-family: "BookmanOld", sans-serif;
}

.testimonial_wrapper p {
    font-size: 14px;
    flex: 1 1 auto;
    font-family: "Montserrat", sans-serif;
}

.form_wrapper {
    border-radius: 16px;
}

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

.form_wrapper label {
    font-size: 14px;
    padding: 24px 8px 4px 8px;
    font-family: 'Montserrat', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 12px 16px;
    width: calc(100% - 8px);
    margin: 4px;
    font-size: 14px;
    background: transparent;
    color: white;
    font-family: "Montserrat", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid #999999;
    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);
    border: 1px solid white;
}

.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 {
    background: linear-gradient(to right, #000000, #242424);
    padding: 80px 8px 24px;
}

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

.footer_social_link {
    font-weight: 500;
    font-size: 20px;
    padding-top: 7px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: white;
    margin: 4px;
    background: transparent;
    border-radius: 50%;
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    color: #212121;
}

.footer_heading {
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 24px;
    padding-bottom: 8px;
    font-family: "BookmanOld", sans-serif;
    position: relative;
    align-self: flex-start;
}

.footer_heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 2px;
    border-radius: 2px;
    background: white;
}

.footer_link {
    color: white;
    font-size: 16px;
    font-family: "Montserrat", 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: var(--colorAccent);
    align-self: center;
}

.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: "Montserrat", 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: 'Montserrat', 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;
}

.contact_form_section {
    margin: 12px;
    width: calc(100% - 24px);
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.85);
    max-width: 500px;
    border-radius: 12px;
    align-self: flex-end;
}

.contact_form_section label {
    color: white;
}

.explore_section_item {
    width: calc(22% - 16px);
    margin: 8px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

.explore_section_item img {
    width: 100%;
    object-fit: cover;
    height: 650px;
}

.explore_section_item .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 60px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.explore_section_item .content span {
    text-align: center;
    color: white;
    font-size: 32px;
    opacity: 0;
    transition: 0.4s ease;
    font-family: "BookmanOld", sans-serif;
}

.explore_section_item .content .explore_link {
    font-size: 16px;
    margin-top: 12px;
    align-self: center;
    color: white;
    padding: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.4s ease;
    position: relative;
}

.explore_section_item .content .explore_link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: white;
    animation: animated_border 3s ease-out alternate-reverse infinite;
}

.explore_section_item.active {
    width: calc(34% - 16px);
}

.explore_section_item.active .content span,
.explore_section_item.active .content .explore_link {
    opacity: 1;
}

.about_section_wrapper {
    border-radius: 24px;
    padding: 16px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.about_section_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/about_section_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: background_zoom 20s ease-in-out infinite;
    z-index: -1;

}

.about_content_wrapper {
    align-self: center;
    width: calc(100% - 24px);
    margin: 12px;
    max-width: 700px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.66);
}

.about_content_wrapper img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    align-self: center;
    object-position: center;
}

.about_content_wrapper span {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    margin: 16px;
    color: white;
}

.about_content_wrapper p {
    margin: 0;
    text-align: center;
    color: white;
    max-width: 500px;
    font-size: 16px;
    align-self: center;
    line-height: 1.6;
}


.marquee_container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee_container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
}


.marquee_container:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
}

.marquee_content_wrapper {

}

.marquee_content {
    flex: 0 0 auto;
}

.client_logo {
    margin: 8px;
    width: 250px;
    height: 200px;
    object-fit: contain;
    background: white;
    object-position: center;
    filter: grayscale(100%);
    transition: 0.4s ease;
    cursor: pointer;
    transform: scale(1);
}

.client_logo:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.feature_item_wrapper {
    width: calc(100% - 24px);
    margin: 12px;
    border-radius: 16px;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    background: white;
    transform: translateY(0);
}

.feature_item_wrapper:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.feature_item_wrapper .image_wrapper {
    width: 100%;
    height: 450px;
    position: relative;
}

.image_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.4s ease;
}

.feature_item_wrapper .image1 {
    opacity: 1;
}

.feature_item_wrapper .image2 {
    opacity: 0;
}

.feature_item_wrapper:hover .image1 {
    opacity: 0;
}


.feature_item_wrapper:hover .image2 {
    opacity: 1;
}

.feature_item_wrapper span {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    margin: 16px;
    font-family: "BookmanOld", sans-serif;
}

.feature_item_wrapper.legacy {
    padding: 24px;
    box-shadow: 0 0 12px 12px rgba(0, 0, 0, 0.1);
}

.feature_item_wrapper.legacy span {
    font-size: 24px;
}

.feature_item_wrapper.legacy p {
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    margin: 16px 0;
    font-family: "BookmanOld", sans-serif;
}


.feature_item_wrapper.legacy a {
    font-size: 16px;
    margin-top: 12px;
    align-self: center;
    color: #212121;
    padding: 0 0 4px 0;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.4s ease;
    position: relative;
}

.feature_item_wrapper.legacy a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: #940000;
    animation: animated_border 3s ease-out alternate-reverse infinite;
}

.sustainable_section_wrapper {
    box-shadow: 0 0 12px 12px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 36px;
    width: calc(100% - 32px);
    max-width: 1200px;
}

.sustainable_item_wrapper {
    margin: 16px 8px;
}

.sustainable_item_wrapper div {
    align-self: center;
}

.sustainable_item_wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 24px;
    object-position: center;
}

.sustainable_item_wrapper span {
    font-weight: 500;
    font-size: 20px;
    font-family: 'BookmanOld', sans-serif;
}

.sustainable_item_wrapper p {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0 0;
}

.award_item_wrapper {

}

.award_item_wrapper img {
    max-width: 220px;
    margin: 8px;
    width: calc(100% - 16px) !important;
    height: 220px;
    border-radius: 8px;
    border: 3px solid #FFEABC;
    object-fit: cover;
}

.award_item_wrapper span {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #8E8E8E;
}

.award_item_wrapper span b {
    color: #212121;
    font-size: 14px;
    font-family: 'BookmanOld', sans-serif;
}

.contact_section_wrapper {
    background-image: url("../images/contact_section_banner.jpg");
    background-size: cover;
    background-position: center;
}

.contact_section_wrapper .tour_button {
    align-self: center;
    margin: 24px;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px;
}

.banner_wrapper {
    width: 100%;
    position: relative;
}

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

.banner_wrapper .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.banner_wrapper .sub_text {
    color: white;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.banner_wrapper .banner_heading {
    color: white;
    font-weight: bold;
    font-size: 48px;
    margin-top: 12px;
    text-align: center;
    font-family: 'BookmanOld', sans-serif;
}

.banner_wrapper .banner_heading b {
    font-size: 36px;
}

.our_process_banner_section_wrapper {
    background-image: url("../images/our_process_second_banner.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    background-repeat: no-repeat;
}


.our_process_banner_section_wrapper2 {
    background-image: url("../images/our_process_banner_3.jpg");
    background-size: cover;
    background-position: center right;
    padding: 80px 0;
    min-height: 450px;
    background-repeat: no-repeat;
}

.process_item_wrapper {
    position: relative;
    padding: 24px;
}

.process_item_wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: var(--colorAccent);
    transform: translate(-50%, 0);
}

.process_item_wrapper:first-child:after {
    top: 50%;
    height: 50%;
}

.process_item_wrapper:last-child:after {
    height: 50%;
}

.process_item_wrapper > div {
    justify-content: center;
    align-items: center;
}

.process_item_wrapper .content {
    padding: 16px;
    width: 90%;
    max-width: 500px;
    background: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.process_item_wrapper .content span {
    font-size: 24px;
    font-weight: 500;
    font-family: 'BookmanOld', sans-serif;
}

.process_item_wrapper img {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.process_item_wrapper .count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    font-weight: bold;
    font-family: "BookmanOld", sans-serif;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    padding: 13px 0;
    color: white;
    background: var(--colorAccent);
    border-radius: 50%;
    z-index: 2;
}

.crafted_item_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    padding: 24px;
    flex: 1 1 auto;
    border-radius: 24px;
    background: #212121;
}

.crafted_item_wrapper img {
    width: 80px;
    height: 80px;
}

.crafted_item_wrapper span {
    color: white;
    font-size: 20px;
    font-family: 'BookmanOld', sans-serif;
    font-weight: bold;
    margin-top: 16px;
}

.crafted_item_wrapper p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 12px 0 0;
}

.about_side_banner {
    width: 90%;
    max-width: 500px;
    margin-top: -250px;
    align-self: center;
    border-radius: 24px;
}

.contact_item_wrapper {
    width: 90%;
    max-width: 340px;
    align-self: center;
    border-radius: 24px;
    margin: 8px;
    background: white;
    box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
    flex: 1 1 auto;
}

.contact_item_wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 24px;
    align-self: center;
}

.contact_item_wrapper span {
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'BookmanOld', sans-serif;
}

.contact_item_wrapper a {
    color: #212121;
    text-align: center;
    font-size: 16px;
    font-family: 'BookmanOld', sans-serif;
}

.category_section_wrapper {
    background-image: url("../images/collection_banner_bg.jpg");
    background-size: cover;
    background-position: center bottom;
}

.category_item_wrapper {
    margin: 8px;
}

.category_item_wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 8px;
    box-shadow: 0 4px 6px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: 0.4s ease;
}

.category_item_wrapper span {
    font-size: 14px;
    text-align: center;
    max-width: 120px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.category_item_wrapper:hover img {
    transform: scale(1.08);
}

.category_item_wrapper.active img {
    outline: 2px solid rgba(0, 0, 0, 0.2);
}

.testimonial_section_wrapper .owl-stage-outer {
    padding-left: 0 !important; /* remove left padding */
    /*margin-left: -100px; !* shift content left *!*/
}


.testimonial_section_wrapper .owl-stage {
    padding-left: 0 !important;
}

.footer_container {
    width: calc(100% - 8px);
    margin: 4px 4px 24px;
    max-width: 300px;
}

.faq_wrapper {
    width: 90%;
    max-width: 900px;
    background: white;
    margin: 8px 0;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.faq_wrapper .question {
    padding: 24px;
    font-weight: normal;
    font-size: 18px;
    font-family: 'BookmanOld', sans-serif;
    position: relative;
}

.faq_wrapper .question:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: white;
    padding: 7px 10px;
    line-height: 1;
    border-radius: 50%;
    background: var(--colorAccent);
    transition: 0.4s ease;
}

.faq_wrapper.active .question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq_wrapper .answer {
    padding: 0 24px;
    font-weight: normal;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid transparent;
    transition: 0.4s ease;
}

.faq_wrapper.active .answer {
    padding: 24px;
    height: auto;
    opacity: 1;
    border-top: 1px solid var(--divider);
}

.footer_side_logo_wrapper {
    position: relative;
    width: 90%;
    height: 100%;
    max-height: 180px;
    align-self: center;
    max-width: 180px;
}

.footer_side_logo_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer_side_logo_wrapper .main_image {
    opacity: 1;
    transition: 0.4s ease;
}

.footer_side_logo_wrapper .hover_image {
    opacity: 0;
    transition: 0.4s ease;
}

/*.footer_side_logo_wrapper:hover .main_image {*/
/*    opacity: 0;*/
/*}*/

.footer_side_logo_wrapper:hover .hover_image {
    opacity: 1;
}

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

    .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: 32px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


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


    .base_margin {
        margin-top: 72px;
    }

    .contact_page_heading {
        align-self: center;
    }

    .contact_form_section {
        margin: -80px 8px 12px;
        width: calc(100% - 16px);
        padding: 16px;
        background-color: rgba(0, 0, 0, 1);
    }


    .banner_wrapper img {
        min-height: 800px;
    }


    .banner_wrapper .sub_text {
        font-size: 16px;
    }

    .banner_wrapper .banner_heading {
        font-size: 36px;
    }

    .banner_wrapper .banner_heading b {
        font-size: 32px;
    }

    .our_process_banner_section_wrapper {
        padding: 80px 16px;
    }

    .our_process_banner_section_wrapper.about {
        padding: 80px 16px 300px;
    }


    .process_item_wrapper {
        position: relative;
        padding: 0;
        background: white;
        box-shadow: 0 8px 8px 8px rgba(0, 0, 0, 0.1);
        border-radius: 24px;
        overflow: hidden;
        margin: 8px 0;
    }

    .process_item_wrapper:after {
        left: 24px;
        right: 0;
        top: 38px;
        height: 4px;
        width: auto;
        background: var(--colorAccent);
        transform: translate(0, 0);
    }

    .process_item_wrapper:first-child:after {
        top: 38px;
        height: 4px;
    }

    .process_item_wrapper:last-child:after {
        top: 38px;
        height: 4px;
    }

    .process_item_wrapper > div {
        justify-content: center;
        align-items: center;
    }

    .process_item_wrapper .content {
        width: 100%;
        max-width: none;
        background: white;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0);
        border-radius: 0;
    }

    .process_item_wrapper .content span {
        font-size: 20px;
    }

    .process_item_wrapper img {
        width: 100%;
        max-width: none;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0);
        border-radius: 0;
    }

    .process_item_wrapper .count {
        position: relative;
        left: 0;
        top: 0;
        margin: 16px 16px 0;
        transform: translate(0, 0);
    }

    .explore_section_item {
        width: calc(100% - 16px) !important;
        position: sticky;
        top: 20px; /* stick at top */
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .explore_section_item .content a {
        opacity: 1;
    }

    .explore_section_item .content span {
        opacity: 1;
    }


    .explore_section_item .content span,
    .explore_section_item .content .explore_link {
        opacity: 1 !important;
    }

    .category_item_wrapper img {
        width: 90px;
        height: 90px;
    }

    .category_item_wrapper span {
        font-size: 14px;
    }


    .sustainable_section_wrapper {
        padding: 24px 16px;
    }


    .testimonial_section_wrapper .owl-stage {
        padding-left: inherit !important;
    }


    .client_logo {
        filter: grayscale(0);
        margin: 8px 0;
        width: 200px;
        height: 170px;
    }

    .stack {
        position: sticky;
        top: 20px; /* stick at top */
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .feature_item_wrapper {
        width: calc(100% - 16px);
        margin: 12px 8px;
    }


    .feature_item_wrapper .image_wrapper {
        height: 550px;
    }


    .contact_section_wrapper {
        background-image: none;
        position: relative;
    }

    .contact_section_wrapper .tour_button {
        position: absolute;
        top: 46px;
        right: 16px;
        margin: 0;
    }

    .footer_heading {
        width: 100%;
        padding: 16px;
        font-size: 20px;
        text-align: center;
    }

    .footer_heading:after {
        width: 100%;
        height: 1px;
    }

    .footer_heading:before {
        content: "\f078";
        position: absolute;
        right: 0;
        padding: 16px;
        font-weight: 900;
        bottom: 0;
        transform: rotate(0deg);
        transition: 0.5s ease;
        color: white;
        font-size: 16px;
        font-family: "Font Awesome 6 Free";
    }

    .footer_heading.active:before {
        transform: rotate(-180deg);
    }

    .footer_container {
        width: calc(100% - 8px);
        margin: 24px 4px 4px;
        max-width: none;
    }

    .footer_container p {
        text-align: center !important;
    }

    .footer_container .expandable {
        display: none;
    }

    .footer_container .expandable.active {
        display: flex;
    }

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

    .footer_container .row_alignment {
        align-items: center;
        align-self: center;
    }


    .our_process_banner_section_wrapper2 {
        background-image: url("../images/process_bottom_banner.jpg");
        background-size: cover;
        background-position: center bottom;
        padding: 40px 16px 450px;
        min-height: 450px;
        background-repeat: no-repeat;
    }

    .about_side_banner {
        width: calc(100% - 16px);
        margin: 8px;

    }

    .about_side_banner.margin_zero {
        margin-top: 0;
    }

    .testimonial_wrapper .client_image {
        width: 100% !important;
        height: 400px !important;
    }

    .footer_logo {
        object-position: center;
        align-self: center;
    }

    .mobile_negative_margin {
        margin-top: -300px;
    }
}
