/*-------------------- Header Start --------------------*/

.header-section {
    margin-bottom: 10px;
}

.header-section .section-title {
    display: inline-block;
    text-transform: uppercase;
    color: #F9452D;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 20%;
}

.header-section .section-heading {
    font-weight: 400;
    font-size: 48px;
    line-height: 67px;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    color: #000000;
}

.header-section .section-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #6D6D6D;
}
/*-------------------- Header End --------------------*/

/*-------------------- Tabs Start --------------------*/
.tabs-wrapper{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    list-style-type: none;
}
.tab{
    padding: 8px 14px;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal;
    background-color: white;
    color: #6D6D6D;
    white-space: nowrap;
    cursor: pointer;
}
.tab-active{
    background-color: black;
    color: white;
    border: 1px solid #000000;
}


/* Webkit-specific styles (Chrome, Edge, Safari) */
.tabs-wrapper::-webkit-scrollbar {
    width: 12px;
}

.tabs-wrapper::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px;
}

.tabs-wrapper::-webkit-scrollbar-track {
    background: #ddd;
}
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
/*-------------------- Tabs End --------------------*/

/*-------------------- Page Links Grid Start --------------------*/

.pages-links-grid {
    margin-top: 30px;
}

.page-link {
    border: 1px solid #E4E4E4;
    border-radius: 12px;
    padding: 24px;
    display: block;
    height: 100%;
}
.page-title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000000;
    position: relative;
}
.page-short-desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 400;
    color: #6D6D6D;
}

.page-title::after {
    content: "";
    display: inline-block;
    background-image: url(https://www.brickclay.com/wp-content/themes/brickclay-new/assets/images/pages/Home/icons/arrow-go.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0;
}

.page-link:hover .page-title::after {
    opacity: 1;
}
/*-------------------- Page Links Grid End --------------------*/





/* ----------- Features Start----------*/

.feature-pages {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.85px;
    color: #000000;
    font-weight: 400;
    margin-top: 33px;
    margin-bottom: 24px;
}


/* Product Cards */
.product-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card .lottie-thumbnail{
    /*height: 250px;*/
    border-radius: 10px;
    margin-bottom: 24px;
}

.card-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 8px;
    letter-spacing: -0.18px;
    color: #000;
    position: relative;
}
.card-title::after {
    content: "";
    display: inline-block;
    background-image: url("https://www.brickclay.com/wp-content/themes/brickclay-new/assets/images/pages/Home/icons/arrow-go.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 9px;
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0;
}
.product-link:hover .card-title::after {
    opacity: 1;
}

.card_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #6D6D6D;
}

/* ----------- Features End----------*/




@media only screen and (max-width: 1024px) {

    /*-------------------- Header Start --------------------*/
    .header-section .section-title {
        font-size: 14px;
        line-height: 20px;
    }
    .header-section .section-heading {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 10px;
        letter-spacing: -0.65px;
    }
    .header-section .section-text {
        font-size: 20px;
        line-height: 26px;
        color: #6D6D6D;
    }
    /*-------------------- Header End --------------------*/

    /*-------------------- Page Links Grid Start --------------------*/
    .pages-links-grid {
        display: grid !important;
        gap: 20px;
    }
    /*-------------------- Page Links Grid End --------------------*/


    /*-------------------- Tabs Start --------------------*/
    .tabs-wrapper{
        padding: 10px 0;
    }
    /*-------------------- Tabs End --------------------*/

    /*-------------------- Page Links Grid Start --------------------*/

    .page-link {
        padding: 20px;
    }
    /*-------------------- Page Links Grid End --------------------*/

    /* ----------- Features Start----------*/


    /* Product Cards */

    .feature-pages {
        font-size: 20px;
        margin-top: 23px;
        margin-bottom: 14px;
    }

    .product-card-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .product-card .lottie-thumbnail{
        height: auto;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 7px;
        letter-spacing: normal;

    }
    /* ----------- Features End----------*/

}
@media only screen and (max-width: 767.98px) {
    /*-------------------- Header Start --------------------*/
    .header-section .section-title {
        margin-bottom: 12px;
    }

    .header-section .section-heading {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.56px;
    }

    .header-section .section-text {
        font-size: 14px;
        line-height: 20px;

    }
    /*-------------------- Header End --------------------*/

    /*-------------------- Page Links Grid Start --------------------*/

    .pages-links-grid {
        margin-top: 30px;
    }

    .page-link {
        padding: 18px;
    }
    .page-title {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 2px;
    }
    .page-short-desc {
        font-size: 14px;
        line-height: 24px;
    }
    /*-------------------- Page Links Grid End --------------------*/

    /* ----------- Features Start----------*/

    /* Product Cards */

    .feature-pages {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 8px;
        letter-spacing: 0;
    }

    .product-card-grid {
        gap: 30px;
    }

    .card-title {
        font-size: 16px;
        line-height: 22px;
    }
    .card_desc {
        font-size: 14px;
        line-height: 20px;
    }

    /* ----------- Features End----------*/
}
