@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: 84px;
    min-height: 500px;
    background-color: white;
}

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

.toolbar_root #zenith_logo img {
    height: 70px;
    margin: 4px;
    padding: 8px 10px;
}

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


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

.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: 90%;
    max-width: 400px;
    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: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1;
    width: 100%;
    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;
}

.section_wrapper {
    padding: 40px 0;
}

.banner_wrapper {
    position: relative;
    width: calc(100% - 12px);
    margin: 6px;
    border-radius: 24px;
    overflow: hidden;
    padding: 100px 16px;
}

.banner_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_heading {
    color: #212121;
    font-size: 42px;
    text-align: center;
    align-self: center;
    font-weight: bold;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.page_sub_heading {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    align-self: center;
    position: relative;
    padding: 8px 12px 8px 32px;
}

.page_sub_heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-image: url("../images/heading_icon.png");
    background-repeat: no-repeat;
}

.service_item_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    max-width: 420px;
    border-radius: 36px;
    overflow: hidden;
    background: white;
    transform: translateY(0) scale(1);
    transition: 0.4s ease;
    align-self: center;
    border-bottom: 4px solid var(--colorAccent);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0);
}

.service_item_wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-bottom: 8px solid var(--colorAccent);
}

.service_item_wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service_item_wrapper span {
    padding: 24px;
    font-weight: bold;
    font-size: 28px;
}

.service_item_wrapper p {
    margin: 0;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.4;
}

.service_item_wrapper a {
    align-self: flex-start;
    margin: 0 24px 24px;
    transition: 0.4s;
    color: var(--colorAccent);
}


.usp_section_wrapper {
    padding: 80px 0;
    background-image: url("../images/usp_section_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

.usp_item_wrapper {
    margin: 60px 8px 8px;
    padding: 24px;
    border-radius: 24px;
    border-bottom: 3px solid var(--colorAccent);
    background: white;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 8px 0 rgba(219, 162, 41, 0.6);
    transition: 0.4s ease;
}

.usp_item_wrapper:hover {
    box-shadow: 0 4px 8px 0 rgba(219, 162, 41, 0.8);
    transform: translateY(-8px) scale(1.01);
    background: #FFF5E2;
}

.usp_item_wrapper img {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    align-self: center;
    margin-top: -74px;
    transition: 0.4s ease;
    transform: scale(1);
}

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

.usp_item_wrapper span {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.usp_item_wrapper p {
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
}

.founder_section_wrapper {
    padding: 80px 0;
    background-image: url("../images/meet_founder_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

.founder_item {
    transition: 1.4s ease;
}

.founder_item img {
    width: 90%;
    max-width: 350px;
    margin: 24px 0;
    align-self: center;
}

.founder_item.first {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.founder_item.first.animate {
    opacity: 1;
    transform: translateY(40px) rotate(-10deg);
}

.founder_item.second {
    z-index: 2;
}

.founder_item.third {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}


.founder_item.third.animate {
    opacity: 1;
    transform: translateY(40px) rotate(10deg);
}

.client_logo_item {
    width: calc((100% / 5) - 16px);
    margin: 8px;
    padding: 8px;
    background: white;
    transition: 0.4s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transform: translateY(0) scale(1);
}

.client_logo_item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.client_logo_item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
}


.process_item_wrapper {
    margin: 12px;
    width: calc(100% - 24px);
    padding: 24px;
    transform: translateY(0) scale(1);
    transition: 0.4s ease;
    z-index: 2;
}

.process_item_wrapper .image_wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
    align-self: center;
    transition: 0.4s ease;
    border-radius: 50%;
    background: white;
    overflow: hidden;
    position: relative;
}

.process_item_wrapper span {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.process_item_wrapper p {
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
}

.process_item_wrapper.animate .image_wrapper .image {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
}

.process_item_wrapper.animate .image_wrapper .image_active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s ease;
}

.process_item_wrapper.animate .image_wrapper {
    background: var(--gradient);
    transition: 0.4s ease;
}

.process_item_wrapper.animate .image_wrapper .image {
    opacity: 0;
    transition: 0.4s ease;
}

.process_item_wrapper.animate .image_wrapper .image_active {
    opacity: 1;
    transition: 0.4s ease;
}

.process_connector {
    position: absolute;
    width: 0 !important;
    height: 1px;
    border: 2px dashed var(--colorAccent);
    top: 100px;
    transition: 1.4s ease;
}

.process_connector.animate {
    width: 30% !important;
}


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

.enquiry_form_wrapper label {
    margin-top: 8px;
    padding: 8px 12px 4px;
    font-size: 14px;
    font-weight: 600;
}

.footer_logo {
    width: 90%;
    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: radial-gradient(#3B3B3B, #000000);
    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: transparent;
}

.footer_heading:after {
    content: "";
    position: absolute;
    left: 0;
    width: 60%;
    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(--gradient);
    color: #212121;
    font-weight: 500;
    padding: 8px 20px;
    border: none;
    text-decoration: none;
    outline: none;
    text-align: center;
    border-radius: 20px;
    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;
}

.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 #212121;
    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 var(--colorAccent);
}

.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_slides .owl-item {
    display: flex;
    align-items: stretch;
}

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

.bolt {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d9d9d9;
    border-radius: 50%;
    z-index: 2;
}

.bolt::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 16px;
    background: #d9d9d9;
}

.bolt.top_right {
    top: 16px;
    right: 16px;
}

.bolt.top_left {
    top: 16px;
    left: 16px;
}


.bolt.bottom_right {
    bottom: 16px;
    right: 16px;
}


.bolt.bottom_left {
    bottom: 16px;
    left: 16px;
}


.bolt.top_right::before,
.bolt.bottom_right::before {
    top: 5px;
    right: -16px;
}

.bolt.top_left::before,
.bolt.bottom_left::before {
    top: 5px;
    left: -16px;
}

.testimonial_item_wrapper i {
    color: var(--colorAccent);
    margin: 0 2px;
    font-size: 14px;
}

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

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


.contact_section_wrapper {
    padding: 24px;
    border-radius: 24px;
    background-image: url("../images/contact_section_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_detail_wrapper {
    margin: 16px 0;
}

.contact_detail_wrapper i {
    font-size: 48px;
    margin-right: 20px;
    color: var(--colorAccent)
}

.contact_detail_wrapper a {
    font-size: 20px;
    color: white;
}

.contact_form_container {
    border-radius: 24px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(5px);
}

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

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

.contact_detail_item_wrapper img {
    width: 80px;
    height: 80px;
    align-self: center;
    margin-bottom: 24px;
}

.contact_detail_item_wrapper span {
    font-weight: bold;
    text-align: center;
}

.contact_detail_item_wrapper a {
    text-align: center;
}

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

.count_section_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    height: 90%;
}

.count_section_wrapper .count_text {
    color: var(--colorAccent);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
}

.count_section_wrapper .count_label {
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    margin-top: 16px;
}

.count_section_wrapper .count_divider {
    height: 2px;
    background: white;
    width: 70%;
    border-radius: 1px;
    margin: 24px 0 32px;
}

.tailored_solution_img1 {
    width: 50%;
    max-width: 300px;
    margin-right: -40px;
    z-index: 1;
}

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

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

    .toolbar_menu_icon {
        visibility: visible;
    }

    .base_margin {
        margin-top: 72px;
    }

    .footer_wrapper {
        padding: 20px 0;
    }

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

    .usp_section_wrapper {
        padding: 40px 0;
    }

    .page_heading {
        font-size: 28px;
    }

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

    .contact_section_wrapper {
        padding: 40px 24px;
        margin: 0 12px;
        width: calc(100% - 24px);
    }


    .founder_item.first {
        transform: translateX(0);
        opacity: 1;
    }

    .founder_item.first.animate {
        transform: none;
    }

    .founder_item.third {
        transform: translateX(0);
        opacity: 1;
    }


    .founder_item.third.animate {
        transform: none;
    }


    .count_section_wrapper .count_text {
        font-size: 2rem;
    }

    .count_section_wrapper .count_label {
        font-size: 10px;
    }

    .count_section_wrapper .count_divider {
        margin: 16px 0;
    }


    .tailored_solution_img1 {
        margin-right: -10px;
    }


    .contact_detail_wrapper i {
        font-size: 24px;
        margin-right: 16px;
    }

    .contact_detail_wrapper a {
        font-size: 16px;
    }

    .contact_form_container {
        width: calc(100%);
        margin-bottom: 20px !important;
    }

    .founder_item img {
        max-width: 280px;
        margin: 0 0 12px;
    }
}