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

.toolbar_root img {
    height: 42px;
    transition: 0.4s;
}

.primary-header {
    background-color: var(--colorPrimary);
    width: 100%;
    color: white;
    font-size: 13px;
    line-height: 34px;
    font-family: 'Roboto', sans-serif;
    border-bottom: 3px solid var(--yellowColor);
    transition: 0.3s;
}

.primary-header-icon {
    color: white;
    padding: 0 10px;
}

.primary-header-text {
    padding: 0 10px;
    display: inline-block;
    text-decoration: none;
    color: white;
}

/*a:hover .primary-header-icon, a:hover .primary-header-text {*/
/*color: var(--colorAccent);*/
/*}*/

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.app-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.app-menu .menu_item {
    position: relative;
    text-decoration: none;
    display: flex;
    cursor: pointer;
}

.app-menu .menu_item > span {
    font-size: 0.8125rem;
    line-height: 1.26;
    font-weight: 700;
    color: var(--colorPrimary);
    padding: 8px;
    letter-spacing: 1px;
    margin: 0 8px;
    text-transform: uppercase;
    white-space: nowrap;
    align-self: center;
    font-family: 'Roboto', sans-serif;
}

.app-menu .menu_item:hover > span {
    color: var(--colorAccent);
}

.app-menu .menu_item::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    content: "";
    height: 3px;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--colorAccent);
}

.app-menu .menu_item:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.toolbar_menu_icon {
    visibility: hidden;
}

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

.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    left: -20%;
    padding: 12px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: none;
    border-left: 3px solid var(--yellowColor);
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    overflow-y: auto;
}

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

.menu_item.dropdown_item {
    margin: 0 10px;
}

.menu_item.dropdown_item span {
    text-overflow: ellipsis;
    margin: 0;
    padding: 12px 0;
    overflow: hidden;
    flex: 1 1 auto;
}

.menu_item.dropdown_item i {
    margin: 0 8px 0 0;
    padding: 8px 0 8px 8px;
    font-size: 0.8125rem;
    line-height: 1.26;
    font-weight: 700;
    color: var(--colorPrimary);
    white-space: nowrap;
    align-self: center;
}

.app-menu .menu_item.dropdown_item:hover:before {
    width: 0;
    left: 0;
}

.drawer_item {
    padding: 16px 20px;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Roboto', sans-serif;
}

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

.funky_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--divider), var(--divider), var(--divider), var(--divider), transparent);
}

.main_content {
    width: 100%;
    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: 250px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -260px;
    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: 100%;
    height: 100%;
    overflow-y: scroll;
}

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

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

.accent_button {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    background-color: var(--colorAccent);
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    text-transform: uppercase;
    outline: none;
    border: 1px solid var(--colorAccent);
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s ease;
}

.accent_button:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.accent_bordered_button {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background-color: white;
    border: 1px solid var(--colorAccent);
    color: var(--colorAccent);
    padding: 10px 18px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    cursor: pointer;
    transition: 0.4s ease;
}

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

.button_underline {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--colorPrimary);
    padding-bottom: 6px;
    position: relative;
    cursor: pointer;
    border-bottom: 2px solid #eee;
}

.button_underline:before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--yellowColor);
    position: absolute;
    right: 0;
    bottom: -2px;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.button_underline:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.button_underline > i {
    margin-left: 4px;
}

.footer {
    padding: 60px 0;
    background-color: var(--colorPrimaryDark);
    border-top: 4px solid var(--yellowColor);
}

.footer .main_content {
    max-width: 1000px;
}

.footer .column_alignment {
    padding: 10px 20px;
}

.footer_logo {
    margin: 20px 10px;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    color: white;
    font-weight: 200;
}

.footer_heading {
    margin: 20px 10px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer_about {
    color: white;
    margin: 20px 10px;
    line-height: 1.5;
    max-width: 250px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.footer_social_icon {
    margin: 16px 8px;
}

.footer_social_icon i {
    color: var(--colorAccent);
    background-color: #f3f3f3;
    border-radius: 50%;
    width: 40px;
    font-size: 20px;
    padding: 10px 0;
    text-align: center;
    transition: 0.4s ease;
}

.footer_social_icon i:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    background-color: var(--yellowColor);
}

.footer_divider {
    width: 100%;
    margin: 20px 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), transparent);
}

.footer_link {
    max-width: 250px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 13px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    transition: 0.4s ease;
    display: flex;
}

.footer_link i {
    color: var(--yellowColor);
    margin-right: 12px;
    margin-top: 4px;
}

.footer_link:hover {
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.footer_signature {
    margin: 20px 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    align-self: center;
    color: white;
    font-weight: 200;
}

.page_heading {
    margin: 20px;
    color: var(--colorAccent);
    font-weight: 400;
    padding: 8px;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    border-bottom: 2px solid var(--yellowColor);
}

.contact_form {
    background-color: white;
    border-radius: 4px;
    margin: 20px;
    max-width: 600px;
    padding: 26px;
    width: calc(100% - 50px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--yellowColor);
}

.contact_form h1, .contact_form .heading {
    margin: 0 0 16px;
    padding: 0;
    color: var(--colorAccent);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

.contact_form input, .contact_form textarea {
    outline: none;
    border: 1px solid var(--divider);
    border-radius: 2px;
    padding: 8px 12px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--colorPrimary);
    transition: 0.4s ease;
    margin: 8px 0;
}

.contact_form input:focus, .contact_form textarea:focus, .contact_form input:hover, .contact_form textarea:hover {
    border: 1px solid var(--colorAccent);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.contact_detail_container {
    margin: 0 20px;
    padding: 20px;
    max-width: 500px;
}

.contact_detail_container p {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    padding: 16px 0;
    margin: 0;
    font-weight: 300;
    color: #404040;
    font-family: 'Roboto', sans-serif;
}

.contact_detail_container a {
    display: flex;
    flex-direction: row;
    margin: 8px;
    font-size: 15px;
    cursor: pointer;
    color: var(--colorAccent);
}

.contact_detail_container i {
    margin-right: 12px;
    text-align: center;
    min-width: 49px;
    padding: 17px 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
}

.contact_detail_container a:hover i {
    border: 1px solid var(--yellowColor);
    background-color: var(--yellowColor);
}

.contact_detail_container span {
    font-family: "Roboto", sans-serif;
    align-self: center;
    text-align: left;
}

.contact_detail_container h3 {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border-bottom: 2px solid var(--colorAccent);
    cursor: pointer;
    color: var(--colorAccent);
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    padding: 3px;
    align-self: flex-start;
    margin: 8px 8px 12px;
    font-weight: bold;
}

.quotation_block {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9990;
}

.quotation_block .fab {
    display: flex;
    background-color: var(--yellowColor);
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    cursor: pointer;
    z-index: 99999;

}

.fab:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.quotation_block:hover .quotation_content, .active_content {
    width: 160px !important;
    padding: 12px 18px !important;
}

.quotation_content {
    align-self: center;
    margin-right: -10px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 9980;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    background-color: var(--yellowColor);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: 1s all ease;
    width: 0;
    padding: 12px 0;
    display: inline-flex;
    white-space: nowrap;
    overflow: hidden;
}

.quotation_form {
    margin: 0 0 -60px;
    transition: 1s display ease;
    z-index: 11;
    max-width: 400px;
    white-space: nowrap;
    padding: 20px;
    display: none;
}

.quotation_form.active {
    display: flex;
}

.clients_container {
    position: relative;
    background-color: white;
    padding: 60px 0;
}

.clients_container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    bottom: 40px;
    right: 40px;
    z-index: 0;
    opacity: 0.7;
    background-image: url('../images/world.png');
}

.clients_container img {
    padding: 12px;
    cursor: pointer;
    width: 100px !important;
    height: 70px;
    object-fit: contain;
    margin: 8px;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.clients_container img:hover {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    filter: grayscale(0%);;
}

.section_container {
    margin: 0;
    padding: 30px 0 36px;
    background: #fafafa;
}

.section_heading {
    position: relative;
    align-self: center;
    color: var(--colorAccent);
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    padding-bottom: 20px;
    margin: 20px;
}

.section_heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 30%;
    left: 35%;
    background-color: var(--yellowColor);
}

.section_container h2 {
    align-self: center;
    margin: 0;
    color: var(--colorAccent);
    padding-bottom: 20px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

.machines_container img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: contain;
    background-color: white;
    margin: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.production_container img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 8px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.blog_header_image {
    width: 300px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    flex: 1 1 auto;
    margin: 8px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.blog_detail_container h2 {
    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.blog_item_container {
    max-width: 250px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    background-color: #fafafa;
    margin: 10px;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    cursor: pointer;
}

.blog_item_container:hover {
    transform: translateY(-10px);
}

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

.blog_item_container span {
    position: relative;
    padding: 16px;
    font-weight: bold;
    font-size: 16px;
    color: var(--colorAccent);
    font-family: 'Roboto', sans-serif;
}


.blog_item_container.category img {
    height: 250px;
    width: 100%;
    background-color: white;
    object-fit: contain;
}

.blog_item_container span::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--yellowColor);
    left: 0;
    width: 0;
    z-index: -1;
    transition: 0.4s ease;
}

.blog_item_container:hover span::before {
    width: 100%;
}

.blog_item_container i {
    margin-left: 8px;
}

.testimonial_slide {
    z-index: 1;
    align-items: center;
}

.testimonial_slide_content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 14px;
    align-items: center;
    margin: 4px;
    border-right: 2px solid var(--yellowColor);
}

.testimonial_slide_content .client_image {
    border-radius: 50%;
    background-color: white;
    height: 45px !important;
    width: 45px !important;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.testimonial_slide_content .client_name {
    color: var(--colorAccent);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin: 8px 8px 0;
}

.testimonial_slide_content .client_designation {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0 12px;
}

.testimonial_slide_content .review {
    text-align: center;
    font-size: 15px;
    margin: 12px;
    line-height: 1.4;
    padding: 16px;
    font-weight: 300;
    color: #404040;
    font-family: 'Roboto', sans-serif;
}

@media only screen and (max-width: 700px) {
    .m-hide {
        display: none;
    }
}

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

    .primary-header-icon {
        padding: 0 12px;
    }

    .toolbar_menu_icon {
        visibility: visible;
        font-size: large;
        padding: 0 0 0 20px;
        cursor: pointer;
    }

    .app-menu .menu_item {
        display: none;
    }

    .clients_container img {
        padding: 8px;
        width: 80px;
        height: 60px;
        margin: 6px;
    }
}