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

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

.toolbar_root #jk_infra_logo img {
    height: 80px;
    padding: 4px 10px;
}

.menu_item {
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    margin: 0 4px;
    padding: 2px 12px;
    transition: 0.4s ease;
    border-radius: 24px;
}

.menu_item > span {
    color: #212121;
    padding: 4px;
    margin: 0 4px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
}

.menu_item > img {
    width: 20px;
    height: 20px;
    margin: 0 0 0 8px;
    object-fit: contain;
}

.menu_item:hover {
    /*background: white;*/
}

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

.menu_item.bordered:hover {
    background: var(--gradient);
}

.menu_item.bordered:hover span {
    color: white;
}

.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 button {
    position: absolute;
    top: 84px;
    color: white;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--divider);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

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

.slide_content {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    transform: translateY(-50%);
}

.slide_content .title {
    color: white;
    padding: 0 14px;
    font-size: 38px;
    line-height: 1.5;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.slide_content .description {
    color: white;
    padding: 0 14px;
    font-size: 24px;
    max-width: 700px;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

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

.exp_section_wrapper {
    background-image: url("../images/lighter_bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.about_section_wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/about_bg_1.jpeg");
}


.mv_product_slider .featured_product_container_wrapper {
    width: 100%;
}

.featured_product_container_wrapper {
    min-width: 250px;
    width: calc((100% / 2) - 12px);
    margin: 6px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #f2f2f2;
    transition: 0.4s ease;
}

.featured_product_container_wrapper:hover {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.featured_product_container_wrapper.dark {
    background: var(--colorAccent);
}

.featured_product_container_wrapper.dark span {
    color: white;
}

.image_container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image_container .image {
    object-fit: cover;
    display: block;
    width: 50% !important;
    transition: 0.4s ease;
}

/*.image_container #image1 {*/
/*    opacity: 1;*/
/*}*/

/*.image_container #image2 {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    opacity: 0;*/
/*}*/

/*.product_container:hover #image1 {*/
/*    !*transform: scale(1.05);*!*/
/*    opacity: 0;*/
/*}*/

/*.product_container:hover #image2 {*/
/*    transform: scale(1.05);*/
/*    opacity: 1;*/
/*    transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18);*/
/*}*/

.product_item_detail_container {
    padding: 8px 12px;
}

.product_container .product_category {
    font-weight: 400;
    color: var(--colorAccent);
    font-size: 14px;
    padding: 12px;
}

.product_container .product_name {
    font-weight: 500;
    text-align: start;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 12px;
    text-transform: capitalize;
    white-space: nowrap;
}

.product_container .price {
    font-size: 14px;
    padding: 0 12px 12px;
    color: var(--colorAccent);
    font-weight: 400;
    text-align: start;
    border-bottom: 1px solid var(--divider);
}

.page_heading, .block_heading {
    color: #212121;
    font-size: 34px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    width: calc(100% - 80px);
    margin: 0 40px 24px;
    font-family: Poppins, sans-serif;
    position: relative;
}

.page_sub_heading {
    color: var(--colorPrimary);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.why_us_wrapper {
    width: calc((100% / 4) - 16px);
    margin: 8px;
    padding: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.why_us_wrapper > div {
    background: white;
    padding: 16px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.why_us_wrapper .title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    padding: 16px 8px;
}

.why_us_wrapper span {
    text-align: center;
}

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

.brands_wrapper img {
    height: 120px;
    padding: 8px;
    width: 250px;
    object-fit: contain;
    border-radius: 4px;
}

.footer_logo {
    height: 80px;
    object-fit: contain;
    object-position: left;
    margin: 0 0 16px;
    transition: 0.4s;
}

.footer_about {
    color: #212121;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

footer {
    background-image: url("../images/footer_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

.footer_heading {
    color: #212121;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.footer_link {
    color: #212121;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
}

.footer_link span {
    color: #212121;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    align-self: center;
}

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

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

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

.footer_social_link:hover {
    background-color: #212121;
    color: white;
    border: 2px solid #212121;
}

.footer_wrapper input {
    padding: 6px;
    background-color: #fefefe;
    border: 1px solid var(--divider);
    font-size: 11px;
    width: 100px;
    outline: none;
}

.footer_wrapper button {
    background: var(--gradient);
    color: white;
    font-size: 11px;
    border: none;
    outline: none;
    padding: 8px;
}

.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: white;
    font-weight: 500;
    padding: 10px 16px;
    border: none;
    letter-spacing: 1px;
    text-decoration: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    background-color: #b17d4b;
    color: var(--colorAccent);
    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;
}

.bordered_button {
    background-color: white;
    color: var(--colorPrimary);
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #212121;
    letter-spacing: 1px;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: white;
    transition: 0.4s;
}

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


.container_wrapper {
    margin: 10px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-left: 3px solid var(--colorAccent);
}

.container_wrapper .page_sub_heading {
    margin: 0;
    padding: 8px 16px;
    color: #212121;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid var(--divider);
}

.container_wrapper > .content {
    padding: 16px;
}

.container_wrapper > .content span {
    font-size: 12px;
    margin: 1px 0;
    font-family: 'Poppins', sans-serif;
}

.collection_item_wrapper {
    width: calc((100% / 3) - 16px);
    margin: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.collection_item_wrapper img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.collection_item_wrapper span {
    text-align: center;
    color: white;
    background: var(--gradient);
    padding: 12px;
    font-weight: 500;
}

.project_detail_main_wrapper {
}

.project_detail_main_wrapper > div {
    margin: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
}

.project_detail_main_wrapper .full_image {
    object-fit: cover;
    height: 500px;
}

.project_detail_main_wrapper .project_name {
    font-size: 24px;
    font-weight: 600;
    padding: 16px 16px 8px;
    color: var(--colorAccent);
}

.project_detail_main_wrapper .price {
    font-size: 24px;
    font-weight: 600;
    padding: 16px 16px 8px;
    color: var(--colorAccent);
    border-bottom: 1px solid var(--divider);
    text-align: right;
}

.project_detail_main_wrapper .category_name {
    font-size: 18px;
    padding: 8px 16px;
}

.project_detail_main_wrapper .area {
    font-size: 18px;
    padding: 8px 16px;
    text-align: right;
}

.project_detail_main_wrapper .area img {
    height: 18px;
    margin-right: 6px;
}

.project_detail_main_wrapper .tabs_container {
    background: white;
    /*overflow: auto;*/
}

.project_detail_main_wrapper .tabs_container .tab {
    font-weight: 600;
    color: #212121;
    padding: 16px;
    /*flex-grow: 1;*/
    /*flex-shrink: 0;*/
    position: relative;
}

.project_detail_main_wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    padding-bottom: 6px;
    color: var(--colorAccent);
    align-self: flex-start;
    /*border-bottom: 1px solid #212121;*/
}

.project_detail_main_wrapper .detail_title {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 6px;
    color: var(--colorAccent);
}

.project_detail_main_wrapper .detail_value {
    margin: 4px !important;
}

.project_detail_main_wrapper .detail_value,
.project_detail_main_wrapper .detail_value p,
.project_detail_main_wrapper .detail_value span {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}


.project_detail_main_wrapper .detail_value img {
    height: 16px;
    margin-right: 8px;
}

.project_detail_main_wrapper table {
    border-collapse: collapse;
}

.project_detail_main_wrapper th {
    text-align: start;
    padding: 8px;
    border-bottom: 1px solid #212121;
    color: var(--colorAccent);
    font-weight: 500;
    font-size: 16px;
}

.project_detail_main_wrapper td {
    text-align: start;
    padding: 8px;
    font-size: 16px;
}


.contact_header_container {
    position: relative;
    width: 100%;
}

.contact_header_container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 750px;
    padding: 16px;
}

.contact_header_container img {
    width: 100%;
    object-fit: cover;
}

.contact_header_container h2 {
    font-size: 36px;
    margin: 4px;
}

.contact_header_container p {
    margin: 4px;
    line-height: 1.5;
    font-size: 18px;
}


.contact_detail_wrapper {
    margin: 24px 0;
    max-width: 800px;
    width: 100%;
}

.contact_detail_wrapper > .column_alignment {
    padding: 8px 20px;
    width: calc(50% - 11px);
}

.contact_detail_wrapper i {
    margin: 24px 8px 4px;
}

.contact_detail_wrapper h3 {
    font-size: 26px;
    font-family: "League Spartan", sans-serif;
    font-weight: normal;
    margin: 24px 8px 4px;
}

.contact_detail_wrapper h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: 'League Spartan', sans-serif;
    margin: 8px 8px 4px;
}

.contact_detail_wrapper a {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.4;
    margin: 2px 8px 4px;
    font-family: 'League Spartan', sans-serif;
}

.contact_detail_wrapper span {
    font-size: 16px;
    margin: 2px 8px 4px;
    font-family: 'League Spartan', sans-serif;
}

.contact_detail_wrapper .border {
    margin: 8px 10px;
    width: 1px;
    background-color: var(--divider);
}

.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 #d0d0d0;
    padding: 10px 12px;
    font-size: 16px;
    outline: none;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 4px;
    transition: 0.4s ease;
}

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

.filter_bar_wrapper {
    background: #212121;
}

.filter_bar_wrapper span {
    padding: 12px 16px;
    color: white;
}

.emi_calculator_wrapper .label {
    font-weight: bold;
    padding: 0 8px;
    color: var(--colorAccent);
    min-width: 50%;
    align-self: center;
}

.emi_calculator_wrapper .value {
    padding: 8px;
    min-width: 50%;
    align-self: center;
}

.emi_calculator_wrapper .input_field {
    margin: 8px;
    border: none;
    border-radius: 12px;
    background: #f2f2f2;
    padding: 8px 12px;
}

.about_header_container {
    background: white;
    padding: 24px;
}

.about_header_container span {
    font-weight: bold;
    color: var(--colorAccent);
    font-size: 18px;
}

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


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

.best_selling_slides .featured_product_container_wrapper {
    width: calc(100% - 12px) !important;
    margin: auto;
}

.testimonial_section_wrapper {
    background-image: url("../images/testimonial_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    background-attachment: fixed;
}


.testimonial_wrapper {
    background: white;
    margin: 20px 0 10px;
    position: relative;
    width: 100%;
    padding-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.testimonial_wrapper .quote_icon {
    position: absolute;
    top: -16px;
    left: 30px;
    width: 70px !important;
    height: 70px;
    object-fit: contain;
}

.testimonial_wrapper span {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    margin: 4px;
}


.testimonial_wrapper p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    text-align: start;
    margin: 20px 4px 4px;
}

.testimonial_wrapper .star_rating_wrapper {
    align-self: center;
    padding: 0 4px;
    margin: 10px 10px 20px;
    border-radius: 3px;
    background: white;
}

.service_item_wrapper {
    margin: 100px 16px 16px;
    width: calc((100% / 3) - 32px);
    padding: 16px 24px;
    background: white;
}

.service_item_wrapper img {
    height: 300px;
    margin-top: -100px;
    object-fit: cover;
    margin-bottom: 16px;
}

.service_item_wrapper .title {
    font-weight: 500;
    font-size: 24px;
    margin: 12px;
    text-align: center;
    color: #212121;
}

.service_item_wrapper p {
    text-align: center;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}


.contact_section_wrapper {
    background-image: url("../images/contact_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.contact_item_wrapper {
    background: white;
    padding: 20px;
    margin-top: 54px !important;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contact_item_wrapper a {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.contact_item_wrapper i {
    font-size: 50px;
    align-self: center;
    margin-top: calc(-25px - 24px);
    color: var(--colorAccent);
    margin-bottom: 24px;

}

.feature_wrapper {
    width: calc((100% / 4) - 8px);
    margin: 4px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.feature_wrapper i {
    font-size: 32px;
    color: #454545;
    align-self: center;
    margin-bottom: 12px;
}

.feature_wrapper span {
    font-size: 14px;
    text-align: center;
}

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

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

    .service_item_wrapper {
        width: calc((100% / 1) - 16px);

        margin: 100px 8px 16px;
    }

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

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

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


    .slide_content .title {
        font-size: 32px;
    }

    .slide_content .description {
        font-size: 20px;
    }

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

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

    .toolbar_menu_icon {
        visibility: visible;
    }

    .product_item_detail_container {
        padding: 4px;
    }

    .base_margin {
        margin-top: 64px;
    }

    .featured_product_container_wrapper {
        min-width: 100px;
        width: calc(100% - 8px);
        margin: 4px;
        cursor: pointer;
    }

    .footer_wrapper {
        padding: 20px;
    }

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

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

    .project_detail_main_wrapper .tabs_container {
        overflow: auto;
    }

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

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

    .why_us_wrapper {
        width: calc((100% / 1) - 16px);
    }

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

@media only screen and (max-width: 400px) {
    .collection_item_wrapper {
        width: calc((100% / 1) - 16px);
    }
}

