/* Technology Page Start */

/* Banner Section Start */
.tech_banner {
    padding-bottom: 0;
}

.tech_banner .container_small {
    max-width: 1200px;
}

.tech_banner .container_small .header p {
    padding: 0 16px;
    margin-bottom: 26px;
}

/* Banner Section End */


/* Left Right Section Start  */
.technology_grid_section {
    padding: clamp(40px, 8.021vw, 154px);
    padding-bottom: 30px;
}

.technology_grid_section .technology_flex_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.technology_grid_section .flex_wrapper {
    gap: clamp(30px, 5.833vw, 112px);
    display: flex;
    flex-direction: column;
}

.technology_grid_section .flex_wrapper .flex_item {
    display: flex;
}

.technology_grid_section .flex_wrapper .flex_item:nth-child(even) .technology_flex_wrapper {
    flex-direction: row-reverse;
}

.technology_grid_section .technology_flex_wrapper .technology_box:nth-child(1) {
    max-width: 768px;
    width: 100%;
}

.technology_grid_section .technology_flex_wrapper .technology_box:nth-child(2) {
    flex: 1;
    max-width: 840px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.technology_grid_section .technology_flex_wrapper .technology_box h2 {
    margin-bottom: 12px;
}

.technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex {
    margin-top: 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_card {
    max-width: 368px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_card span {
    display: block;
    max-width: 48px;
}

.technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_detail {
    flex: 1;
}

.technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_detail h3 {
    margin-bottom: 8px;
}

.technology_grid_section .flex_item:nth-child(1) .technology_flex_wrapper .technology_box>p {
    padding-right: 14px;
    letter-spacing: 0.15px;
}


@media(max-width: 1600px) {
    .technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_card {
        max-width: 45%;
    }
}

@media(max-width: 1200px) {
    .technology_grid_section .technology_flex_wrapper .technology_box .technology_subflex .subflex_card {
        max-width: 100%;
    }

    .technology_grid_section .technology_flex_wrapper {
        align-items: start;
    }

    .technology_grid_section .technology_flex_wrapper .technology_box {
        position: sticky;
        top: 50px;
    }
    .technology_grid_section .technology_flex_wrapper .technology_box:nth-child(1) {
        flex: 1;
    }
}

@media(max-width: 991px) {

    .technology_grid_section .flex_wrapper .flex_item:nth-child(even) .technology_flex_wrapper,
    .technology_grid_section .technology_flex_wrapper {
        flex-direction: column;
    }

    .technology_grid_section .technology_flex_wrapper .technology_box {
        position: static;
        top: unset;
    }

    .technology_grid_section .technology_flex_wrapper {
        gap: 50px;
    }

    .technology_grid_section .flex_item:nth-child(1) .technology_flex_wrapper .technology_box>p {
        padding-right: 0;
    }
}
@media(max-width: 767px){
    .technology_grid_section {
        padding: 40px 0;
        /* padding-bottom: 30px; */
    }
    
}

/* Left Right Section End */


/* Tech Stack Section start */
.tech_stack_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    margin-top: clamp(30px, 33.333vw, 64px);
}

.tech_stack_section .grid_wrapper .grid_item .tech_stack_card {
    padding: 32px 24px;
    background-color: var(--primary_bg);
    border: 1px solid var(--strong_mid);
    border-radius: 16px;
    height: 100%;
    transition: all .4s ease-in-out;
}
#layout-2-smart_section.tech_stack_section .grid_wrapper .grid_item .tech_stack_card{
    text-align: center;
}
.tech_stack_section .grid_wrapper .grid_item .tech_stack_card:hover{
    transform: translateY(-10px);
}

.tech_stack_section .grid_wrapper .tech_stack_card .tech_stack_icon img{
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.tech_stack_section .grid_wrapper .grid_item .tech_stack_card .tech_stack_icon {
    margin-bottom: 10px;
    background: var(--strong_high);
    border-radius: 8px;
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.tech_stack_section .header {
    text-align: center;
    max-width: 1416px;
    margin: 0 auto;
}

.tech_stack_section .header h2 {
    margin-bottom: 8px;
}

.tech_stack_section .header p {
    letter-spacing: 0.15px;
}

@media(max-width: 1024px) {
    .tech_stack_section .grid_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 991px) {
    .tech_stack_section .grid_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .tech_stack_section .grid_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech_stack_section .grid_wrapper .grid_item .tech_stack_card {
        padding: 15px;
    }

    .tech_stack_section .grid_wrapper .grid_item .tech_stack_card .tech_stack_icon img {
        width: 30px;
    }
}
@media(max-width:575px){
    .tech_banner .container_small .header p{
        padding: 0 !important;
    }
    .tech_stack_section .grid_wrapper .grid_item .tech_stack_card .tech_stack_icon{
        width: 30px;
        height: 30px;
    }
    .tech_stack_section .grid_wrapper .grid_item .tech_stack_card .tech_stack_icon img{
        width: 18px;
        height: 18px;
    }
    .grocery_brand .grocery_brand_wrapper{
        margin-top: 0 !important;
    }
}
/* Tech Stack Section End */

/* Technology Page End */