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 {
    margin-top: 120px;
    background-color: white;
}

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

.primary_toolbar {
    width: 100%;
    background: var(--colorAccent);
    color: white;
}

.primary_toolbar span {
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    padding: 10px 8px;
}

.primary_toolbar b {
    font-weight: 500;
}

.toolbar_root .main_content {
}

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

.toolbar_root #main_logo img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    object-position: left 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: #212121;
    padding: 10px 0;
    margin: 0 16px;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
    border-bottom: 2px solid transparent;
}

.menu_item:hover > span {
    border-bottom: 2px solid var(--colorAccent);
    color: var(--colorAccent);
}

.menu_item.highlight {
    color: white;
    background: var(--colorAccent);
    border-radius: 8px;
}

.menu_item.highlight span {
    color: white;
}


.toolbar_dropdown_container {
}

.toolbar_dropdown_content {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translate(-50%, 0);
    display: none !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: 0.4s ease;
    min-width: 150px;
    padding-top: 16px;
    overflow-y: auto;

}

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

.toolbar_dropdown_content .menu_item {
    color: #212121;
    transition: 0.4s ease;
    border: none;
}

.toolbar_dropdown_content .menu_item span {
    border: none;
}

.toolbar_dropdown_content .menu_item:hover {
    background: var(--colorAccent);
    border: none;
    color: white;
}

.toolbar_dropdown_content .menu_item:hover span {
    color: white;
    border: none;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    color: var(--colorAccent);
    background: transparent;
    font-family: 'Ubuntu', sans-serif;
}

.drawer_item:hover {
    background: white;
}


.menu_heading {
    color: white;
    font-family: 'Ubuntu', 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: 'Poppins', 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(255, 255, 255, 0.9);
    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: white;
    font-weight: 500;
    padding: 12px 24px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: "Ubuntu", 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: "Poppins", 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: var(--colorAccent);
    font-size: 36px;
    padding: 8px;
    font-weight: 500;
    margin: 12px 0;
    align-self: center;
    text-align: center;
    font-family: "Playfair Display", 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;
    font-family: "Ubuntu", sans-serif;
    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 8px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.testimonial_wrapper .star_icon {
    width: 18px !important;
    height: auto;
    margin-right: 4px;
}

.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;
    color: #212121;
    font-family: "Ubuntu", sans-serif;
}

.testimonial_wrapper .client_designation {
    font-size: 15px;
    font-weight: 500;
    margin-top: 4px;
    color: #898989;
    font-family: "Ubuntu", sans-serif;
}

.testimonial_wrapper p {
    font-size: 14px;
    line-height: 1.5;
    min-height: calc(14px * 5 * 1.5);
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}

.testimonial_wrapper .client_detail_wrapper {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--colorAccent);
    background: #F6E8F9;
}

.form_wrapper {
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 24px);
    margin: 12px;
    max-width: 600px;
    padding: 16px;
    align-self: center;
}

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

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

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 10px 16px;
    width: calc(100% - 8px);
    margin: 4px;
    font-size: 14px;
    background: transparent;
    color: #212121;
    font-family: "Ubuntu", sans-serif;
    outline: none;
    border-radius: 24px;
    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: var(--colorAccent);
    padding: 80px 8px 24px;
}

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

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

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

.footer_heading {
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 24px;
    padding-bottom: 8px;
    font-family: "Ubuntu", 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: "Ubuntu", sans-serif;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
}

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

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

.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: 'Ubuntu', sans-serif;
}

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

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

.process_item_wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 56px;
    height: 100%;
    width: 1px;
    border: 1px dashed #212121;
    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 .content {
    padding: 16px;
    flex: 1 1 auto;
    max-width: 500px;
}

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

.process_item_wrapper .count {
    width: 64px !important;
    height: 64px !important;
    flex: 0 0 auto;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    align-self: center;
    padding: 20px 0;
    color: var(--colorAccent);
    background: #F6E8F9;
    border: 1px solid 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: 'Ubuntu', 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;
}

.contact_item_wrapper {
    width: 90%;
    margin: 8px;
    padding: 16px;
}

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

.contact_item_wrapper span {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Ubuntu', sans-serif;
}

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


.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: 'Ubuntu', sans-serif;
    position: relative;
}

.faq_wrapper .question:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: white;
    padding: 6px 10px;
    line-height: 1;
    border-radius: 50%;
    background: #D1AC7E;
    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: 'Poppins', 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 .hover_image {
    opacity: 1;
}

.home_about_section_wrapper {
    max-width: 650px;
    align-self: center;
    margin: 0 0 24px 0;
}

.home_about_section_wrapper p {
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    margin: 12px 8px;
}

.home_about_section_wrapper .feature_item_wrapper {
    padding: 12px 8px;
}

.home_about_section_wrapper .feature_item_wrapper img {
    width: 36px;
    height: 36px;
    margin-right: 16px;
    object-fit: contain;
    object-position: center;
    align-self: center;
}

.home_about_section_wrapper .feature_item_wrapper span {
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
}

.what_we_buy_item_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    max-width: 340px;
    border-radius: 12px;
    align-self: center;
    overflow: hidden;
    border: 1px solid #E1E1E1;
    flex: 1 1 auto;
}

.what_we_buy_item_wrapper .image_wrapper {
    position: relative;
}

.what_we_buy_item_wrapper .image_wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.what_we_buy_item_wrapper .image_wrapper span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-weight: 500;
    font-size: 16px;
    color: white;
    font-family: "Ubuntu", sans-serif;
}

.what_we_buy_item_wrapper span,
.what_we_buy_item_wrapper p {
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.4;
}

.what_we_buy_item_wrapper i {
    font-size: 8px;
    line-height: 1;
    color: #D4AF37;
}


.why_choose_us_item_wrapper {
    min-height: 300px;
    min-width: 50%;
    padding: 24px;
    background: var(--colorAccent);
    flex: 1 1 auto;
}

.why_choose_us_item_wrapper img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    object-fit: contain;
    object-position: center;
}

.why_choose_us_item_wrapper span {
    font-weight: 500;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    color: white;
}


.why_choose_us_item_wrapper p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Ubuntu', sans-serif;
    color: white;
}

.about_feature_item_wrapper {
    border-radius: 24px;
    background: var(--colorAccent);
    margin: 16px;
    flex: 1 1 auto;
    padding: 24px;
}

.about_feature_item_wrapper img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.about_feature_item_wrapper span {
    color: white;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

.about_feature_item_wrapper p {
    color: white;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

.scrap_calculator_detail_wrapper {

}

.scrap_calculator_detail_wrapper span {
    font-weight: 500;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    margin-top: 16px;
}

.scrap_calculator_detail_wrapper p {
    margin: 4px 8px 12px 16px;
    font-size: 16px;
}

.scrap_calculator_wrapper {
    width: calc(100% - 24px);
    margin: 12px;
    max-width: 600px;
    align-self: center;
}

.scrap_calculator_wrapper .tag {
    margin-bottom: -20px;
    z-index: 2;
    margin-top: 12px;
    background: var(--colorAccent);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-left: 50px;
    align-self: flex-start;
}

.scrap_calculator_wrapper .row_alignment {
    margin: 8px;
}

.scrap_calculator_wrapper .row_alignment > * {
    width: 25%;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.scrap_calculator_wrapper .row_alignment > span {
    color: #979797;
    font-weight: 400;
}

.scrap_calculator_form_wrapper {
    border: 1px solid var(--colorAccent);
    border-radius: 8px;
    background: #fdfaff;
    overflow: hidden;
    padding: 24px 0 0;
}

.scrap_calculator_input {
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px dashed var(--colorAccent);
}

.main_table {
    border-collapse: collapse;
    margin: 24px 0 0;
}

.main_table td {
    border: 1px solid var(--colorAccent);
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
}

.main_table th {
    border: 1px solid var(--colorAccent);
    font-family: 'Ubuntu', sans-serif;
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    text-align: start;
    font-weight: 500;
    background: var(--colorAccent);
}

.tab_item {
    padding: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    margin: 8px;
    text-align: center;
    background: #F6E8F9;
    border-radius: 8px;
    cursor: pointer;
}

.process_section_wrapper {
    max-width: 500px;
    flex: 0 0 auto;
    padding: 16px 0;
}


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

    .primary_toolbar span {
        font-size: 10px;
    }

    .process_section_wrapper {
        padding: 16px 0;
    }

    .process_item_wrapper {
        padding: 0 16px;
    }

    .process_item_wrapper .count {
        width: 54px !important;
        height: 54px !important;
        flex: 0 0 auto;
        font-size: 20px;
        padding: 16px 0;
    }

    .process_item_wrapper:after {
        left: 42px;
    }


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

    .contact_page_heading {
        align-self: center;
    }


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

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

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

    .footer_heading:after {
        width: 100%;
        height: 1px;
        background: #4d2565;
    }

    .footer_heading:before {
        content: "\f067";
        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(-45deg);
    }

    .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 {
        padding: 6px 16px;
    }

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

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

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

    .about_feature_item_wrapper {
        border-radius: 20px;
        margin: 8px;
        padding: 20px;
    }

    .why_choose_us_item_wrapper img {
        width: 60px;
        height: 60px;
    }

    .why_choose_us_item_wrapper span {
        font-size: 18px;
    }

     .why_choose_us_item_wrapper p {
        font-size: 15px;
    }

     .scrap_calculator_wrapper, .form_wrapper {
         width: 100%;
         margin: 12px 0;
     }
}
