/* ******* TABLE OF CONTENTS ******* */

/* 
1.Banner


*/


/* ******* TABLE OF CONTENTS ******* */


/* -------------- 1. Banner Start -------------- */

.prod-banner-main {
    background-image: url('/rgbsupport/rgb/./assets/images/products.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 60vh;
}

.prod-banner-main::before {
    content: '';
    position: absolute;
    background-color: #212121;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.prod-banner-info h1 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
}


/* -------------- 1. Banner End -------------- */

/* Branded garments start */

.row.branded-garments {
    background-color: #eef0ff;
    padding: 20px 10px;
    border-radius: 15px;
}

.branded-garments p {
    line-height: 1.7;
    text-align: justify;
}

.rounded-edge {
    border-radius: 15px;
}

.brand-btn {
    background-color: rgb(43, 113, 226);
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    width: 40%;
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
}

.brand-btn:hover {
    background-color: #181818;
    color: #fff;
}

.branded-garments .col-lg-7 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Branded garments end */

/* Products start */

.product-heading {
    margin-bottom: 10px;
}

.product-heading h2 {
    text-align: start;
}

.products {
    margin-bottom: 40px;
}

.products h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1B181F;
    margin-bottom: 15px;
}

.products ul {
    text-align: center;
}

.products ul li {
    padding: 5px 10px;
    background-color: #eef0ff;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    display: inline-block;
}

.products ul li i {
    color: #4bb945;
    font-size: 18px;
}

.products .heading-desc {
    text-align: center;
    margin-bottom: 15px;
}

.products-card {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.products-card .card {
    padding: 0;
    border: 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px;
    overflow: hidden;
    max-width: 19rem;
    width: 100%;
}

.products-card .card h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0 0 10px 0;
    color: #1B181F;
}

.products-card .card .card-body {
    text-align: center;
}

.products-card .card .card-body a {
    background-color: var(--bs-primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    width: 100%;
}

.products-card .card .card-body button {
    background-color: var(--bs-primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    width: 100%;
}



/* Products end */


/* Product Modal start */

.prod-modal .modal-dialog {
    max-width: 800px;
    position: relative;
}

.prod-modal .modal-content {
    overflow: hidden;
    padding: 20px 15px;
}

.modal-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    cursor: pointer;
    border: none;
}

.prod-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prod-img {
    width: 40%;

}

.prod-content img {
    border-radius: 10px;
    /* width: 100%; */
}

.prod-content .prod-desc {
    width: 55%;
}

.prod-content .prod-desc h3 {
    font-weight: 700;
    color: var(--bs-primary-color);
}

.prod-content .prod-desc p {
    text-align: justify;
}

.prod-content .prod-btn {
    background-color: rgb(43, 113, 226);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 30px;
    width: 100%;
}


/* Product Modal End */


/* Form start */

.get-in-touch-section {
    background-color: #f6f7fc;
}

.get-in-touch-section .contact-btn {
    background-color: #4bb945;
    color: #fff;
    width: 97%;
    margin: 0 auto;
    padding: 10px;
}

.get-in-touch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-in-touch textarea {
    resize: none;
    height: 200px;
}

.contact-form .form-control, .contact-form  .form-select {
    padding: 10px;
}

.contact-form {
    margin-top: 30px;
}

/* Form End */


/* T shirt Manufacturing start */

.tsm-content h3 {
    font-weight: 700;
    color: rgb(43, 113, 226);
}

.tsm-content h4 {
    font-weight: 500;
}

.tsm-content p, .tsm-content li {
    color: #3b3b3b;
}

.tsm-content .ft {
    font-size: 1.2rem;
    font-weight: 500;
    color: #181818;
    margin-bottom: 10px;
}

.tsm-content ul {
    list-style: disc;
    padding-left: 15px;

}

.tsm-content li {
    margin-bottom: 8px;
}


/* T shirt Manufacturing End */


/* Media Query */

@media only screen and (max-width: 920px) {

    .prod-banner-main {
        height: 35vh;
        background-position-y: 48px;
        background-position-x: center;
    }

    .product-heading h2 {
        text-align: center;
    }

    .brand-btn {
        margin: 30px auto;
    }

    .products-card {
        grid-template-columns: auto auto;
    }
}

@media only screen and (max-width: 540px) {

    .prod-banner-main {
        height: 40vh;
    }

    .products-card {
        grid-template-columns: auto;
    }

    .brand-btn {
        width: 60%;
    }

    .product-heading h2 {
        font-size: 1.8rem
    }

    .products ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: start;
    }

    .prod-content {
        flex-direction: column;
    }

    .prod-img {
        width: 70%;
    }

    .prod-content .prod-desc {
        width: 100%;
    }

    .prod-content .prod-desc h3 {
        text-align: center;
    }
}