@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&family=Poppins:wght@200..700&display=swap');

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

body {
    padding: 0;
    margin: 0;
    background: white;
}

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

.base_margin {
    margin-top: 119px;
    min-height: 500px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    transition: 0.4s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.toolbar_root.full {
    background: #212529;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.toolbar_root #excelgenerators_logo img {
    height: 90px;
    margin: 4px;
    padding: 8px 10px;
}

.menu_item {
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    margin: 0 8px;
    padding: 4px 12px;
    transition: 0.4s ease;
    color: white;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}


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

.toolbar_menu_icon {
    visibility: hidden;
    color: var(--colorAccent);
    padding: 20px;
    cursor: pointer;
}

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

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Poppins', 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;
}

.drawer_item.offer .upper_tag {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: right;
    margin: -5px 8px 0 -8px;
    padding: 0;
    color: #ed1c24 !important;
}

.main_content {
    width: 100%;
    padding: 0 10px;
    max-width: var(--content-width);
}

.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: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    z-index: 1;
    width: 70%;
    height: 100%;
    overflow-y: scroll;
}

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

.side_navigation_content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1 1 100%;
}

.side_navigation_content .heading {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 4px;
    margin: 0 16px;
    color: #212121;
    text-transform: uppercase;
}

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

.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: 100%;
    overflow: hidden;
}

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

.slide_content {
    position: absolute;
    left: 50%;
    bottom: 0;
    padding: 40px 16px 16px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    transform: translateX(-50%);
}

.slide_content .title {
    color: white;
    padding: 0;
    font-size: 40px;
    max-width: 500px;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.slide_content .subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 90px;
    line-height: 1.5;
    text-transform: uppercase;
    align-self: center;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.slide_content .accent_button.bordered {
    align-self: center;
    font-size: 20px;
    padding: 10px 16px;
    border-width: 2px !important;
}

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

.slide_right_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    right: 0;
    z-index: 50;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3));
}

.slide_left_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    left: 0;
    z-index: 50;
    background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.3));
}

.section_wrapper {
    padding: 40px 0;
}

.page_heading {
    color: #212121;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    font-family: Poppins, sans-serif;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.page_heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    right: 0;
    height: 18px;
    background-size: contain;
    background-image: url("../images/heading_border_img.png");
    background-repeat: no-repeat;
}

.about_icon_wrapper > div {
    width: calc(100% / 4);
    padding: 8px;
    cursor: pointer;
}

.about_icon_wrapper.about_page > div {
    width: calc(100% / 5);
}

.about_icon_wrapper.about_page img {
    align-self: center;
}

.about_icon_wrapper.about_page span {
    text-align: center;
    align-self: center;
    line-height: 1.5;
    max-width: 140px;
}

.about_icon_wrapper img {
    width: 60px;
    height: 60px;
    align-self: flex-start;
    object-fit: contain;
    margin-bottom: 6px;
    transition: 0.4s ease;
}

.about_icon_wrapper span {
    margin-top: 12px;
    font-size: 14px;
    font-weight: normal;
    transition: 0.4s ease;
}

.about_icon_wrapper > div:hover img {
    filter: invert(0.6);
}

.about_icon_wrapper > div:hover span {
    font-weight: 600;
}

.sector_item_wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin: 8px;
    width: calc(100% / 4 - 16px);
    padding: 12px;
    background: #efefef;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: 0.4s ease;
    cursor: pointer;
}

.sector_item_wrapper:hover {
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.sector_item_wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.sector_item_wrapper span {
    color: #212121;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 12px 0;
}

.who_we_are_img_section {
    margin-left: -40px;
    min-width: 30%;
    justify-content: flex-end;
}

.who_we_are_section {
    background: #495b6b;
    padding: 28px;
}

.why_us_wrapper {
    position: relative;
    margin: 8px;
    width: 80%;
    align-self: center;
    max-width: calc(100% - 40px);
    padding: 16px 16px 16px 40px;
    border-radius: 16px;
    border: 2px solid #212121;
    cursor: pointer;
    transition: 0.4s ease;
}

.why_us_wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #212121;
    background: var(--colorAccent);
    border-radius: 50%;
    left: -21px;
    width: 42px;
    height: 42px;
    text-align: center;
    padding: 8px 0;
}

.why_us_wrapper span {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    transition: 0.4s ease;
}

.why_us_wrapper:hover span {
    font-size: 22px;
}

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

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

.brands_wrapper img {
    height: 100px;
    padding: 8px;
    object-fit: contain;
    margin: 4px;
}

.enquiry_form_wrapper {
    margin: 16px;
    border-radius: 8px;
    border: 1px solid #a8a8a8;
    padding: 16px;
}


.footer_logo {
    max-width: 250px;
    object-fit: contain;
    object-position: left;
    margin: 0 0 16px;
    transition: 0.4s;
}

.footer_about {
    color: #212121;
    font-size: 14px;
    line-height: 1.4;
    padding-right: 16px;
}

footer {

}

.footer_wrapper {
    width: 100%;
    min-height: 100px;
    padding: 50px 20px 20px;
    position: relative;
    background: #212121;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer_wrapper .text_content {
    font-size: 12px;
    text-transform: uppercase;
}

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


.footer_heading:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 90%;
    background: #d9d9d9;
}

.footer_heading:after {
    content: "";
    position: absolute;
    left: 0;
    width: 40%;
    bottom: 0;
    height: 2px;
    background: var(--colorAccent);
}

.footer_link {
    color: #212121;
    font-weight: normal;
    font-size: 14px;
    padding: 8px 0;
}

.footer_link {
    color: #f3f3f3;
    line-height: 1.2;
    transition: 0.4s ease;
}

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

.footer_link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 16px;
}

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

.footer_social_link {
    font-weight: 500;
    font-size: 16px;
    padding-top: 6px;
    width: 38px;
    height: 38px;
    text-align: center;
    color: #f3f3f3;
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid #f3f3f3;
    transition: 0.4s ease;
}

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

.error input, .error textarea {
    border: 1px solid var(--error_color);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: -16px 10px 24px;
}

.errorlist > li, .error_text {
    font-size: 12px;
    font-weight: 600;
    color: var(--error_color);
}

.white_button_border {
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
    font-family: "Poppins", sans-serif;
    padding: 8px 16px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 1);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.white_button_border:hover {
    color: var(--colorPrimary);
    background-color: white;
}

.white_button_border.light {
    background-color: rgba(255, 255, 255, 0.5);
    color: #212121;
}

.accent_button {
    background: var(--colorAccent);
    color: #212121;
    font-weight: 500;
    padding: 8px 20px;
    border: none;
    text-decoration: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    background-color: #212121;
    color: white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

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

.accent_button.small {
    padding: 6px 12px;
    font-size: 12px;
}

.accent_button.bordered {
    background: transparent;
    color: #212121;
    border: 1px solid #212121;
}

.accent_button.bordered.white {
    color: white;
    border: 1px solid white;
}

.accent_button.bordered:hover {
    background: #212121;
    border: 1px solid #212121;
    color: white;
}

.link_button {
    background-color: transparent;
    color: #212121;
    padding: 10px 0 0;
    font-size: 12px;
    border: none;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.link_button:hover {
    text-decoration: underline !important;
    transition: 0.4s;
}

.line_button {
    background-color: transparent;
    color: white;
    font-weight: bold;
    padding: 8px 0;
    margin: 8px;
    border: none;
    letter-spacing: 1px;
    text-decoration: none;
    outline: none;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}

.line_button:after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 100%;
    height: 1px;
    left: 0;
    background: white;
    transition: 0.4s ease;
}

.line_button:hover:after {
    bottom: 0;
}

.line_button.dark {
    color: #4d4d4d;
}

.line_button.dark:after {
    background: #4d4d4d;
}

.offering_item_wrapper {
    background: var(--colorAccent);
    padding: 16px;
    border-radius: 24px;
    margin: 90px 8px 8px;
    width: calc(100% - 16px);
    position: relative;
}

.offering_item_wrapper:before {
    content: '';
    position: absolute;
    top: 120px;
    bottom: 0;
    z-index: 0;
    border-radius: 50% 50% 24px 24px;
    left: 50%;
    width: 100%;
    right: 0;
    transform: translateX(-50%);
    background: #fbbd48;
    transition: 0.4s ease;
}

.offering_item_wrapper:hover:before {
    top: 40px;
    background: #FCC969;
}

.offering_item_wrapper img {
    margin-top: calc(-16px - 75px);
    width: 200px;
    object-fit: contain;
    z-index: 1;
    height: 150px;
}

.offering_item_wrapper span {
    font-weight: 600;
    margin-top: 8px;
    z-index: 1;
    font-size: 24px;
    text-align: center;
}

.offering_item_wrapper p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    z-index: 1;
    margin: 16px 0;
}

.product_section_item_wrapper {
    padding: 16px;
    align-self: center;
}

.product_section_item_wrapper span {
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 8px;
    font-family: "ABCRepro", sans-serif;
    position: relative;
    max-width: 250px;
}

.product_section_item_wrapper span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #d9d9d9;
}

.product_section_item_wrapper span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 40%;
    bottom: 0;
    height: 4px;
    background: var(--colorAccent);
}

.product_section_item_wrapper p {
    font-size: 16px;
    line-height: 1.5;

}

.product_section_image_container {
    position: relative;
    align-self: center;
    justify-content: center;
    display: flex;
    margin: 24px 0;
}

.product_section_image_container .shadow_img {
    width: 90%;
    max-width: calc(100% - 24px);
    max-height: 500px;
}

.product_section_image_container .main_img {
    position: absolute;
    width: 90%;
    max-width: calc(100% - 40px);
    max-height: 500px;
    top: 24px;
    transition: 0.4s ease;
    left: calc(50% - 24px);
    transform: translateX(-50%);
}

.product_section_image_container:hover .main_img {
    top: 0;
    left: 50%;
}

.contact_detail_wrapper {
    margin: 8px;
    max-width: 500px;
    width: calc(100% - 16px) !important;
    border-radius: 6px;
    padding: 12px 16px;
    cursor: pointer;
    border: 2px solid var(--divider);
    transition: 0.4s ease;
}

.contact_detail_wrapper:hover {
    background: #f5f5f5;
}

.contact_detail_wrapper i {
    align-self: center;
    margin-right: 16px;
    border-radius: 50%;
    background: var(--colorAccent);
    color: #212121;
    text-align: center;
    font-size: 20px;
    width: 42px;
    height: 42px;
    padding: 10px 0;
    flex: 0 0 auto;
}

.contact_detail_wrapper a {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.4;
    margin: 4px;
}

.contact_detail_wrapper span {
    font-size: 16px;
    font-weight: 600;
    margin: 0 4px;
}

.form_container {
    margin: 8px;
    /*border-radius: 16px;*/
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 16px;
    background: white;
}

.form_container h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    padding-bottom: 6px;
    color: var(--colorAccent);
    align-self: center;
}

.form_container input, .input_field {
    border: 1px solid #f3f3f3;
    background: #f3f3f3;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 4px;
    transition: 0.4s ease;
}

.two .input_field, .three .input_field {
    margin: 4px 4px 16px;
    width: calc(100% - 8px);
}

.enquiry_form .input_field {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
}

.form_container input:hover, .input_field:hover {
    border: 1px solid #212121;
}

.social_icons_wrapper i {
    margin: 4px;
    font-size: 14px;
    line-height: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 3px 0;
    color: white;
    border-radius: 3px;
    background: #212111;
}

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

.dialog-container {
    position: fixed;
    top: 80px;
    display: none;
    left: 50%;
    max-width: 500px;
    transform: translateX(-50%);
    width: calc(100% - 12px);
    z-index: 999999;
}

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

.tab {
    margin: 2px !important;
    width: calc((100% / 3) - 4px);
    /*border: 1px solid var(--colorAccent);*/
    color: var(--colorAccent);
    padding: 8px;
    cursor: pointer;
    text-align: center;
    transition: 0.4s ease;
}

.tab.active, .tab:hover {
    background: var(--colorAccent);
    color: white !important;
}


.testimonial_item_wrapper {
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 6px;
    align-self: flex-start;
    position: relative;
    transition: 0.4s ease;
}

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

.testimonial_item_wrapper .quote_icon {
    width: 25% !important;
    margin-bottom: 12px;
    border-radius: 0;
    height: auto !important;
}

.testimonial_item_wrapper i {
    color: #ff8801;
    margin: 10px 4px 0;
    font-size: 18px;
}

.testimonial_item_wrapper span {
    margin: 4px;
    font-size: 14px;
    color: #212121;
}

.testimonial_item_wrapper img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
    border-radius: 50%;
}

.contact_form_container {
    border-radius: 12px;
    padding: 16px;
    margin: 6px 12px;
    border: 1px solid var(--divider);
}

.contact_form_container span {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact_form_container .accent_button {
    border-radius: 6px;
    margin: 6px;
}


.feature_wrapper {
    width: calc((100% / 6) - 8px);
    margin: 4px;
    max-width: 150px;
    padding: 8px;
}

.feature_wrapper img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    align-self: center;
    margin-bottom: 12px;
}

.feature_wrapper span {
    font-size: 14px;
    text-align: center;
    align-self: center;
    color: #495b6b;
}

.product_item_content_wrapper {
    padding: 16px;
    align-self: center;
}

.product_item_content_wrapper .title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
}

.product_item_content_wrapper p {
    font-size: 14px;
    line-height: 1.5;
}

.product_feature_item {
    padding: 8px;
}

.product_feature_item i {
    font-size: 14px;
    color: #212121;
    background: var(--colorAccent);
    border-radius: 50%;
    width: 28px;
    align-self: center;
    flex: 0 0 auto;
    height: 28px;
    line-height: 1;
    margin-right: 16px;
    text-align: center;
    padding: 7px 0;
}

.product_feature_item span {
    font-size: 14px;
    line-height: 1.5;
    align-self: center;
}

.side_image_wrapper {
    overflow: hidden;
}

.side_image_wrapper img {
    transform: scale(1);
    transition: 0.4s ease;
}

.side_image_wrapper:hover img {
    transform: scale(1.05);
    transition: 0.4s ease;
}

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


    .slide_content .title {
        font-size: 26px;
        width: 75%;
    }

    .slide_content .subtitle {
        font-size: 45px;
        align-self: flex-start;
    }

    .slide_content .accent_button.bordered {
        align-self: flex-start;
        font-size: 16px;
        margin-top: 20px;
        padding: 8px 12px;
        border-width: 1px !important;
    }

    .sector_item_wrapper {
        width: calc(100% - 16px);
    }


    .about_icon_wrapper > div, .about_icon_wrapper.about_page > div {
        width: calc(100% / 2);
        padding: 8px;
    }

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

    .slide img {
        width: 100%;
        object-fit: cover;
        object-position: left;
    }


    .slide_nav_button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .toolbar_root img {
        height: 58px !important;
        transition: 0.4s;
    }

    .toolbar_menu_icon {
        visibility: visible;
    }

    .base_margin {
        margin-top: 97px;
    }

    .footer_wrapper {
        padding: 20px 0;
    }

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

    .contact_detail_wrapper > .column_alignment {
        padding: 8px;
        width: calc(100%);
    }

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

    .who_we_are_img_section {
        margin-right: 0;
        margin-top: -40px;
        margin-left: 0;
        align-self: flex-end;
    }

    .who_we_are_section {
        margin-left: 0;
        border-radius: 0;
    }

    .enquiry_form_wrapper {
        margin: 6px;
    }

    .about_page_content_section {
        margin-bottom: 0;
    }

    .about_ceo_content_section {
        margin-left: 0;
    }

    .about_ceo_content_section .content_wrapper {
        width: 40%;
        padding: 20px 8px;
    }

    .about_ceo_content_section img {
        width: 60%;
        align-self: flex-end;
    }

    .brands_wrapper img {
        height: 80px;
    }


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

    .why_us_wrapper p {
        font-size: 14px;
    }
}