﻿

@media (min-width: 991px) {
    .form-control-1 {
        width: 100%;
        height: 130px;
        background: no-repeat;
        box-shadow: none;
        padding-bottom: 90px;
        background-color: rgb(157 157 157 / 8%);
        border: none;
        border-radius: 4px;
        line-height: 1.2;
        color: var(--primary-t-color);
    }

    .btn-submit {
        background-color: #a1cc3f;
        color: white;
    }

    figure {
        margin: 0;
    }



    .main-container {
        margin: 1rem auto;
        width: 95%;
    }

    .items-1 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        margin: 2rem auto;
    }

    .item {
        box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
        display: flex;
        flex-direction: column;
        padding: 1rem;
        height: 100%;
        font-size: 1.1rem;
    }

        .item h3 {
            font-size: 2.2rem;
            line-height: 1.2rem;
            text-align: center;
        }



        .item .description {
            text-align: justify;
            padding-top: 80px;
        }

    .formup {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .form02 {
        padding-top: 20px;
    }

    .radio {
        margin: 0.5rem;
    }

        .radio input[type=radio] {
            position: absolute;
            opacity: 0;
        }

            .radio input[type=radio] + .radio-label:before {
                content: "";
                background: #f4f4f4;
                border-radius: 100%;
                border: 1px solid #b4b4b4;
                display: inline-block;
                width: 1.4em;
                height: 1.4em;
                position: relative;
                top: -0.2em;
                margin-right: 1em;
                vertical-align: top;
                cursor: pointer;
                text-align: center;
                transition: all 250ms ease;
            }

            .radio input[type=radio]:checked + .radio-label:before {
                background-color: #a2cc42;
                box-shadow: inset 0 0 0 4px #f4f4f4;
            }

            .radio input[type=radio]:focus + .radio-label:before {
                outline: none;
                border-color: #3197ee;
            }

            .radio input[type=radio]:disabled + .radio-label:before {
                box-shadow: inset 0 0 0 4px #f4f4f4;
                border-color: #b4b4b4;
                background: #b4b4b4;
            }

            .radio input[type=radio] + .radio-label:empty:before {
                margin-right: 0;
            }

    .align {
        display: flex;
    }
}



    /* Large devices (desktops, 992px and up)*/
    @media (min-width: 992px) {
        .main-container {
            max-width: 1180px;
        }
        .btn-submit {
            background-color: #a1cc3f;
            color: white;
        }
        .items-1 {
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 2rem;
            margin: 2rem auto;
        }

        .item {
            grid-template-rows: 3;
            grid-template-columns: 2fr;
            grid-template-columns: 1fr 1fr;
            grid-template-areas: "brand brand" "image-info item-info" ".  add-to-cart";
        }

            .item h3 {
                grid-area: brand;
            }



        .description {
            margin-block-start: 0;
        }
        .radio {
            margin: 0.5rem;
        }

            .radio input[type=radio] {
                position: absolute;
                opacity: 0;
            }

                .radio input[type=radio] + .radio-label:before {
                    content: "";
                    background: #f4f4f4;
                    border-radius: 100%;
                    border: 1px solid #b4b4b4;
                    display: inline-block;
                    width: 1.4em;
                    height: 1.4em;
                    position: relative;
                    top: -0.2em;
                    margin-right: 1em;
                    vertical-align: top;
                    cursor: pointer;
                    text-align: center;
                    transition: all 250ms ease;
                }

                .radio input[type=radio]:checked + .radio-label:before {
                    background-color: #a2cc42;
                    box-shadow: inset 0 0 0 4px #f4f4f4;
                }

                .radio input[type=radio]:focus + .radio-label:before {
                    outline: none;
                    border-color: #3197ee;
                }

                .radio input[type=radio]:disabled + .radio-label:before {
                    box-shadow: inset 0 0 0 4px #f4f4f4;
                    border-color: #b4b4b4;
                    background: #b4b4b4;
                }

                .radio input[type=radio] + .radio-label:empty:before {
                    margin-right: 0;
                }

    }

    @media(max-width: 991px) {

        .form-control-1 {
            width: 100%;
            height: 130px;
            background: no-repeat;
            box-shadow: none;
            padding-bottom: 90px;
            background-color: rgb(157 157 157 / 8%);
            border: none;
            border-radius: 4px;
            line-height: 1.2;
            color: var(--primary-t-color);
        }

        .item .description {
            text-align: justify;
            padding-top: 30px;
        }

        .item h3 {
            font-size: 2.2rem;
            line-height: 2.3rem;
            text-align: center;
        }

        section {
            position: relative;
            width: 100%;
            padding: 60px 0 90px !important;
        }

        .align {
            display: flex;
        }
        .align-4 {
            display: inline-block;
        }
        .align-1 {
            display: flex;
        }
        .align-2 {
            padding-top:10px;
            display: flex;
        }
        .r {
            display: table-caption;
        }
        .btn-submit {
            background-color: #a1cc3f;
            color: white;
        }
    }
