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

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

.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 .main_content {
    border-bottom: 2px solid transparent;
}

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

.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;
    padding: 8px 0;
    border: none;
    transition: 0.4s ease;
}

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

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

.menu_item span.highlight {
    background: #0062A4;
    border-radius: 16px;
    color: white;
    margin: 0 8px;
}

.menu_item:hover {
}

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

.menu_item:hover span.highlight {
    background-color: rgba(0, 0, 0, 0.1);
}


.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    display: none !important;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    padding: 4px;
    background-size: 400% 400%;
    overflow-y: auto;

}

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

.toolbar_dropdown_container:hover > .menu_item > span {
    color: white;
    background-color: #0062A4;
}

.toolbar_dropdown_content .menu_item {
    padding: 0;
    margin: 0;
}

.toolbar_dropdown_content .menu_item span {
    padding: 10px 16px;
    margin: 4px;
    color: #212121 !important;
}

.toolbar_dropdown_content .menu_item:hover span {
    color: white !important;
}


.drawer_item {
    display: flex;
    padding: 10px 24px;
}

.drawer_item span {
    font-size: 16px;
    transition: 0.4s;
    font-family: 'MatterFont', sans-serif;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

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

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

.accent_button {
    border-radius: 10px;
    background: #0062a4;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: "MatterFont", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    transform: translateY(0);
}

.accent_button:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: 0.6s;
    transform: translateY(-2px);
}

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

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

.bordered_button {
    background: transparent;
    color: var(--colorAccent);
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--colorAccent);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "MatterFont", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

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

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

.page_heading {
    color: var(--colorAccent);
    font-size: 42px;
    padding: 8px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    margin: 4px 0;
    font-family: "Young Serif", sans-serif;
    position: relative;
}


.page_sub_heading {
    color: #173482;
    font-size: 20px;
    text-align: center;
    margin: -4px 0 8px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Syne", sans-serif;
}

.mission_section_wrapper {
    background-image: url("../images/mission_bg@2x-100.jpg");
    background-size: cover;
}

.section_wrapper {
    padding: 60px 0;
}

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

.about_section_wrapper {
    background-image: url("../images/section_bg_top.jpg");
    background-size: cover;
}

.about_content_wrapper {
    margin: 12px;
    padding: 16px;
    align-self: center;
}

.assembly_video_wrapper {
    min-height: 500px;
    background: #040404;
    border-radius: 12px;
    overflow: hidden;
}

.assembly_video_wrapper iframe {
    width: 100%;
    border: none;
    height: 100%;
}

.testimonial_wrapper {
    padding: 20px 24px;
    background-image: url("../images/testimonial_bg@2x-100.jpg");
    background-size: cover;
    margin: 60px 4px 4px;
    border-radius: 12px;
    border: 1px solid #f7b267;
}

.testimonial_wrapper .image {
    width: 120px !important;
    height: 120px !important;
    margin-top: calc(-80px);
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    align-self: center;
    object-position: center;
}


.testimonial_wrapper .name {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    font-family: "MatterFont", sans-serif;
}


.testimonial_wrapper .designation {
    text-align: center;
    font-size: 16px;
    color: #848484;
    margin-top: 4px;
    font-family: "MatterFont", sans-serif;
}

.testimonial_wrapper p {
    font-size: 16px;
    text-align: center;
    font-family: "MatterFont", sans-serif;
}

.testimonial_wrapper .star_icon {
    width: 18px !important;
    margin: 4px 6px;
}

.enquiry_container {
    border: 1px solid white;
    border-radius: 8px;
    padding: 8px;
    max-width: 500px;
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}

.enquiry_container .page_heading, .contact_details_container .page_heading {
    color: white;
    font-size: 24px;
}

.form_wrapper {
    width: calc(100% - 20px);
    border-radius: 16px;
}

.form_wrapper .title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

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

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

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 6px 12px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    background: white;
    font-family: "MatterFont", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    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_wrapper {
    padding: 40px 0 8px;
    background-image: url("../images/footer_bg@2x-100.jpg");
    margin-top: 20px;
    background-size: cover;
}

.footer_logo {
    width: 80%;
}

.footer_container {
    width: calc((100% / 3) - 16px);
    padding: 20px;
    margin: 8px;
}

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

.footer_social_link {
    font-weight: 500;
    font-size: 15px;
    padding-top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--colorAccent);
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid var(--colorAccent);
    transition: 0.4s ease;
}

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

.footer_heading {
    color: #212121;
    font-weight: bold;
    margin: 8px 8px 20px;
    font-size: 18px;
    font-family: "MatterFont", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 15px;
    font-family: "MatterFont", sans-serif;
    margin: 8px;
}

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

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

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

.full_image {
    width: 100%;
    object-fit: contain;
    border-radius: 16px;
    overflow: hidden;
    display: none;
}

.full_image.active {
    display: block;
}

.image_thumb {
    width: 120px;
    height: 120px;
    cursor: pointer;
    object-fit: cover;
    border-radius: 16px;
    margin: 2px;
    border: 2px solid #f1f1f1;
}

.image_thumb.active {
    border: 2px solid var(--colorAccent);
}

.product_detail_content_wrapper {
    padding: 24px;
}

.product_detail_content_wrapper .product_name {
    font-size: 24px;
    margin: 0 0 8px;
    line-height: 1.5;
}

.product_detail_container {
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
}


.product_detail_container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product_detail_container .product_name {
    font-weight: 500;
    text-align: left;
    font-size: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_detail_container .image_container_wrapper {
    position: relative;
    overflow: hidden;
}

.image_container_wrapper #image_1 {
    width: 100%;
    object-position: center;
    transition: 0.4s ease;
}

.image_container_wrapper #image_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s ease;
}

.image_container_wrapper #image_1 {
    opacity: 1;
}

.image_container_wrapper #image_2 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_1 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_2 {
    opacity: 1;
}

.product_detail_container p {
    font-family: "MatterFont", sans-serif;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 12px;
    text-align: center;
}

.product_detail_container .heading {
    font-weight: 500;
    font-size: 16px;
    padding: 16px 4px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--colorAccent);
}

.product_detail_container .accent_button {
    margin-top: 12px;
}

#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 {
    padding: 0 16px;
}

.contact_page_sub_heading {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    padding-bottom: 8px;
    font-family: "MatterFont", sans-serif;
}

.content_page_sub_heading_content {
    color: #212121;
    font-size: 14px;
    margin: 0 16px;
    padding-bottom: 8px;
    font-family: "MatterFont", sans-serif;

}

.contact_info_icon {
    font-size: 18px;
    color: var(--colorAccent2);
}


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

.contact_input_field {
    background-color: white;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "MatterFont", sans-serif;
    font-size: 17px;
}

.contact_input_field .multi-select-button {
    background-color: #f8f8f8;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "MatterFont", sans-serif;
    font-size: 12px;
}


.contact_page_enquire_container {
    width: 100%;
    padding: 16px;
    background: #f4f4f4;
    border-radius: 12px;
}

.contact_page_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 30px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: start;
    border-radius: 6px;
    outline: none;
    text-transform: capitalize;
    font-family: 'MatterFont', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

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

.category_item_wrapper {
    margin: 6px;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0);
}

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

.category_item_wrapper.active {
    background: var(--colorAccent);
}

.category_item_wrapper img {
    width: 100%;
}

.category_item_wrapper span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #173482;
    padding: 40px 16px 16px;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}

.category_item_wrapper.active span {
    color: white;
}

/*.product_slides {*/
/*    display: none !important;*/
/*}*/

/*.product_slides.active {*/
/*    display: flex !important;*/
/*}*/


.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, #f5f6f9, transparent);
}


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

.marquee_content_wrapper {
}

.marquee_content {
    flex: 0 0 auto;
}

.client_logo_wrapper {
    margin: 12px;
    width: calc(100% - 24px);
    height: 100px;
    border-radius: 12px;
    background: white;
    box-shadow: 4px 6px 16px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.client_logo_wrapper img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.product_description_container {
    border-bottom: 1px solid #f7b267;
    margin: 8px 0;
    padding-bottom: 8px;
}

.product_description_container .box_heading {
    position: relative;
    width: 100%;
    padding: 8px 0;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
}

.product_description_container .box_heading:after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.product_description_container.expanded .box_heading:after {
    content: "-";
}

.product_description_container p {
    margin-bottom: 4px;
    font-size: 16px !important;
    font-family: "MatterFont", sans-serif !important;
    line-height: 1.5 !important;
}

.product_description_container ul,
.product_description_container ol {
    font-size: 16px !important;
    font-family: "MatterFont", sans-serif !important;
    line-height: 1.5 !important;
    margin: 4px 0;
}

.product_description_container ul {
    padding-left: 12px;
}

.product_description_container li {
    font-size: 16px !important;
    margin-top: 4px;
    line-height: 1.5;
    font-family: "MatterFont", sans-serif !important;
}

.product_description_container .box_content {
    display: none;
}

.product_description_container.expanded .box_content {
    display: flex;
}


.about_heading {
    align-self: flex-start;
    text-align: start;
    margin: 0;
    font-size: 22px;
    font-family: "Young Serif", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--colorAccent);
    padding: 0;
}

.mission_item_wrapper {
    width: 95%;
    align-self: center;
    background-image: url("../images/mission_bg@x-100.jpg");
    background-size: cover;
    padding: 24px 36px;
    border-radius: 12px;
    margin: 4px;
}

.mission_item_wrapper span {
    text-transform: uppercase;
    color: #a47e14;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.mission_item_wrapper p {
    font-size: 18px;
    padding: 0;
    font-weight: 300;
    margin: 0;
    line-height: 1.5 !important;
}


.vision_item_wrapper {
    width: 95%;
    align-self: center;
    background-image: url("../images/vision_bg@2x-100.jpg");
    background-size: cover;
    padding: 24px 36px;
    border-radius: 12px;
    margin: 8px 4px;
}

.vision_item_wrapper span {
    text-transform: uppercase;
    color: #6c4980;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.vision_item_wrapper p {
    font-size: 18px;
    padding: 0;
    font-weight: 300;
    margin: 0;
    line-height: 1.5 !important;
}

.side_navigation_content .heading {
    font-weight: bold;
    padding: 12px 8px;
    margin: 0 16px;
    color: #212121;
    text-transform: uppercase;
}

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

    .product_detail_content_wrapper {
        padding: 16px 0;
    }

    .selling_price {
        font-size: 20px;
    }

    .market_price {
        font-size: 16px;
    }

    .logo_container {
        display: flex;
        flex: 1 1 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: 32px;
    }

    .section_wrapper {
        padding: 30px 0;
    }

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

    .footer_container {
        width: calc(100% - 6px);
    }


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

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

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

    .product_item_wrapper {
        width: calc(100% - 12px);
    }

    .base_margin {
        margin-top: 60px;
    }

    .brand_wrapper {
        width: calc((100% / 2) - 10px);
        margin: 5px;
        padding: 6px;
    }

    .founder_info_container {
        width: calc((100% / 2) - 16px);
        margin: 8px;
    }


    .contact_page_heading {
        align-self: center;
    }
}