/***************** media queriy *************************************/
/*-------- Big tablet view -------------*/
@media only screen and (max-width: 1024px) {
    body h1 {
        font-size: 45px;
    }
}

/*-------- tablet view -------------*/
@media only screen and (max-width: 991px) {
    .col-3 {
        width: 50%;
    }
}

/*---------- landscape mobile view -------------*/
@media only screen and (max-width: 768px) {
    body h1 {
        font-size: 35px;
    }

    .col-3 {
        width: 100%;
    }

    .col-2 {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Footer section Start */
    #footer .ft-wrapper {
        display: flex;
        justify-content: center;
    }

    /* Footer section End */
}

/*---------- portrait mobile view -------------*/
@media only screen and (max-width: 480px) {
    body h1 {
        font-size: 30px;
    }

    body h2 {
        font-size: 25px;
    }

    .sec-title {
        margin-bottom: 30px;
    }

    .mb {
        margin-bottom: 15px;
    }

    /* Hero Section Start */
    #hero-sec {
        height: 430px;
    }

    /* Hero Section End */

    /* Logo Section Start */
    #logo-sec .ls-wrapper {
        width: 100%;
    }

    #logo-sec {
        padding: 30px 0;
    }

    /* Logo Section End */

    /* Product Section Start */
    #product-sec {
        padding: 30px 0;
    }

    #product-sec .pb-card-wrapper .po-image-content h4 {
        font-size: 21px;
    }

    #product-sec .pb-card-wrapper .po-image-content p {
        font-size: 13px;
    }

    #product-sec .pb-card-wrapper .po-image-content {
        padding: 20px 15px;
    }

    #product-sec .po-header-image {
        padding-top: 0;
    }

    #product-sec .pb-card-wrapper .po-header-image a {
        padding: 30px 0 20px;
    }

    /* Product Section End */

    /* Footer section Start */
    #footer .ft-wrapper {
        display: flex;
        justify-content: center;
    }

    #footer .ft-wrapper p {
        font-size: 12px;
    }

    #footer .ft-wrapper span {
        font-size: 13px;
    }

    #footer .col-2:last-child {
        margin-bottom: 0;
    }

    #footer .col {
        margin-bottom: 10px;
    }

    /* Footer section End */

    /* Privacy Policy Page and Terms Of Service Page Start*/
    #content-sec {
        padding: 25px 0;
    }

    #content-sec .content-wp-body p {
        font-size: 13px;
        margin: 0 0 10px;
    }

    #content-sec .content-wrapper p {
        font-size: 13px;
    }

    #content-sec h4 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    #content-sec .cs-pd-top {
        padding-top: 15px;
    }

    .p-bold>p {
        margin-bottom: 10px;
    }

    /* Privacy Policy Page and Terms Of Service Page End*/
}