/* Minification failed. Returning unminified contents.
(1398,1): run-time error CSS1019: Unexpected token, found '}'
(1732,1): run-time error CSS1019: Unexpected token, found '}'
 */
.top-bar {
    display: none;
}

.product-head {
    background-color: #027bc4;
    background-image: linear-gradient(to right, #055393, #027bc4);
    padding: 0 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 10000;
    display:table;
    width:100%;
}
.product-head-backoffice {
    background-color: #fecb3f;
    background-image: linear-gradient(to right, #fecb3f, #ff7b02);
}
.product-head-workshop {
    background-color: #fff;
    background-image: linear-gradient(to right, #fff, #fff, #574545, #574545, #574545);
}
.product-head-turbo {
    background-color: #0474a8;
    background-image: linear-gradient(to right, #0474a8, #02aebc);
}
.product-head-restrosys {
    background-color: #000;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), #0096d6);
}

.product-head > .product-logo-context {
    display: table-cell;
    width: 170px;
    padding-left: 20px;
    vertical-align: middle;
}
.product-head > .product-logo-context > img {
    max-height:50px;
}

.product-head > .product-menu-context {
    display: table-cell;
    float: right;
    padding-right: 20px;
    vertical-align:middle;
}
        .product-head > .product-menu-context > .item {
            display: inline-block;
            color: #fff;
            padding: 20px 10px;
            font-size: 16px;
            font-family: 'Roboto',sans-serif;
            font-weight:300;
            text-decoration:none;
        }
        .product-head > .product-menu-context > .item:hover {
            color: #f7e410;
        }
            .product-head > .product-menu-context > .item > button {
                background-color: #f36523;
                border: none;
                border-radius: 4px;
                color: #fff;
                font-weight: 500;
                padding:5px 10px;
            }
            .product-head > .product-menu-context > .item > .button-turbo {
                background-color: #ed1b24;
            }
            .product-head > .product-menu-context > .item > .button-backoffice {
                background-color: #0ca579;
            }
            .product-head > .product-menu-context > .item > .button-workshop {
                background-color: #00a652;
            }

.product-banner {
    background-color: #04b61d;
    background-image: linear-gradient(to right, #055393, #027bc4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display:table;
    height:600px;
    width:100%;
}
.product-banner-backoffice {
    background-color: #fecb3f;
    background-image: linear-gradient(to right, #fecb3f, #ff7b02);
}
.product-banner-workshop {
    background-color: #ee514c;
    background-image: linear-gradient(to right, #ee514c, #574545);
}
.product-banner-turbo {
    background-color: #0474a8;
    background-image: linear-gradient(to right, #0474a8, #02aebc);
}
.product-banner-restrosys {
    background-color: #000;
    background-image: linear-gradient(to right, #000, #0096d6);
}
.product-banner-solution {
    position:relative;
    overflow:hidden;
    margin-top:0px;
    top:-10px;
}
.product-banner > .body {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
    .product-banner > .body > .title {
        padding:50px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        font-size: 80px;
        line-height: 80px;
        color: #fff;
        text-align: center;
        font-family: 'Roboto Condensed',sans-serif;
        font-weight: 700;
        text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.20);
    }
.product-banner-solution > .angle {
    background-color: #fff;
    position: absolute;
    height: 50px;
    width: 110%;
    transform: rotate(-2deg);
    bottom: -25px;
    left: 0px;
}

.play-context {
    background-image: url('/Images/aboutimg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: table;
}
    .play-context > .play-body {
        height: 500px;
        width: 100%;
        display: table-cell;
        vertical-align:middle;
    }
        .play-context > .play-body > .btn-context {
            width: 200px;
            height: 200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            text-align: center;
            cursor: pointer;
        }

            .play-context > .play-body > .btn-context > .btn-play {
                color: #f36523;
                width: 120px;
                height: 120px;
                border-radius: 50%;
                position: absolute;
                top: 40px;
                left: 40px;
                border: 10px solid rgba(255, 255, 255, 0.50);
            }
            .play-context > .play-body > .btn-context > .btn-play-turbo {
                color: #ed1b24;
            }
            .play-context > .play-body > .btn-context > .btn-play-backoffice {
                color: #363636;
            }

                .play-context > .play-body > .btn-context > .btn-play > i {
                    font-size: 50px;
                    background-color: #fff;
                    padding: 25px;
                    padding-left: 30px;
                    border-radius: 50%;
                    width: 100%;
                    height: 100%;
                }

            .play-context > .play-body > .btn-context > .btn-anim {
                width: 0px;
                height: 0px;
                top: 100px;
                left: 100px;
                position: absolute;
                border-radius: 50%;
                background-color: rgb(255, 255, 255);
                animation: btn-anim 2000ms linear infinite;
            }

@keyframes btn-anim {
    0% {
        width: 0px;
        height: 0px;
        top: 100px;
        left: 100px;
    }

    100% {
        width: 200px;
        height: 200px;
        top: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0);
    }
}

.product-benefits {
    width: 100%;
    display: table;
    padding: 50px;
}
    .product-benefits > .details-context {
        width: 45%;
        display: table-cell;
        vertical-align: middle;
        padding: 0px 50px;
    }
        .product-benefits > .details-context > .title {
            font-size: 35px;
            line-height:40px;
            color: #0d0d0d;
            font-weight: 700;
        }
            .product-benefits > .details-context > .title > span {
                color: #f36523;
            }
            .product-benefits > .details-context > .title > .span-back-office {
                color: #0bbea9;
            }
            .product-benefits > .details-context > .title > .span-workshop {
                color: #eb524d;
            }
        .product-benefits > .details-context > .details {
            font-size: 20px;
            line-height: 25px;
            color: #5e5e5e;
            font-family: 'Roboto',sans-serif;
            font-weight: 300;
            padding-top:10px;
        }

    .product-benefits > .benefits-context {
        width: 55%;
        display: table-cell;
        vertical-align: middle;
        padding-right:50px;
    }

    .product-benefits > .benefits-context > .item {
        position:relative;
        float:left;
        width:50%;
        padding:20px;
    }
        .product-benefits > .benefits-context > .item > i {
            height: 60px;
            width: 60px;
            background-color: #0f54fa;
            border-radius:10px;
            color:#fff;
            font-size:25px;
            padding-top:17px;
            text-align:center;
        }
        .product-benefits > .benefits-context > .item > .title {
            font-size: 22px;
            color: #0d0d0d;
            font-weight: 700;
            padding-top:10px;
        }
        .product-benefits > .benefits-context > .item > .details {
            font-size: 16px;
            color: #4c4c4c;
            font-family: 'Roboto',sans-serif;
            font-weight: 300;
            padding-top: 10px;
        }

.module-context {
    width: 100%;
    display: table;
}
    .module-context > .image-context {
        width: 50%;
        display: table-cell;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
    }
    .module-context > .details-context {
        width: 50%;
        display: table-cell;
        padding: 100px;
        padding-left:150px;
        background-color: #e6eaf5;
    }
        .module-context > .details-context > .title {
            font-family: 'Roboto',sans-serif;
            font-size: 60px;
            line-height:60px;
            font-weight:bold;
            color: #17295b;
        }
        .module-context > .details-context > .sub-title {
            font-size: 30px;
            line-height: 30px;
            font-family: 'Roboto',sans-serif;
            font-weight: bold;
            color: #17295b;
        }
        .module-context > .details-context .module {
            font-size: 18px;
            color: #1b295a;
            padding-top:10px;
        }
            .module-context > .details-context .module > i {
                font-size: 20px;
                color: #ff8a47;
            }
            .module-context > .details-context .module > .i-turbo {
                color: #ed1b24;
            }
            .module-context > .details-context .module > .i-backoffice {
                color: #0ebfa2;
            }
        .module-context > .details-context .item {
            height:150px;
        }
        .module-context > .details-context .carousel-indicators {
            bottom:-20px;
        }

.carousel-indicators li {
    width: 7px;
    height: 7px;
}
.carousel-indicators .active {
    width: 9px;
    height: 9px;
}

.one-screen {
    width: 100%;
    border: 30px solid #fff;
    background-color: #fff;
    background-image: linear-gradient(to bottom, #fff, #e9e8fe);
    padding:120px 80px;
}
.one-screen > .header {
    width: 100%;
    padding-bottom:50px;
}
    .one-screen > .header > .title {
        position: relative;
        float: left;
        width: 50%;
        color: #101010;
        font-family: 'Roboto Condensed',sans-serif;
        font-size: 42px;
        line-height:45px;
    }
        .one-screen > .header > .title > span {
            font-family: 'Roboto',sans-serif;
            font-weight: bold;
        }
        .one-screen > .header > .title > .span-workshop {
            color: #ea5048;
        }
        .one-screen > .header > .title > .span-backoffice {
            color: #04bfb6;
        }
    .one-screen > .header > .details {
        position: relative;
        float: left;
        width: 50%;
        color: #777777;
        font-family: 'Roboto',sans-serif;
        font-size:23px;
    }

    .one-screen > .item {
        position: relative;
        float: left;
        width: 33.33%;
        padding: 3px;
    }
        .one-screen > .item > .item-body {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            display: table;
            width: 100%;
            box-shadow: 0px 5px 7px rgba(23, 41, 91, 0.05);
        }
            .one-screen > .item > .item-body > .icon-context {
                display: table-cell;
                width: 70px;
                vertical-align: middle;
            }
        .one-screen > .item > .item-body > .icon-context > img {
            height:50px;
        }
            .one-screen > .item > .item-body > .details-context {
                display: table-cell;
                vertical-align: middle;
            }
            .one-screen > .item > .item-body > .details-context > .details-body {
                height:120px;
            }
                .one-screen > .item > .item-body > .details-context > .only-title {
                    display: table-cell;
                    vertical-align: middle;
                    height: 70px !important;
                }
                .one-screen > .item > .item-body > .details-context > .details-body > .title {
                    font-size: 17px;
                    font-family: 'Roboto',sans-serif;
                    font-weight: bold;
                }
                .one-screen > .item > .item-body > .details-context > .details-body > .details {
                    padding-top: 10px;
                    font-size: 15px;
                    font-family: 'Roboto',sans-serif;
                }

.suitable-for {
    padding: 50px 100px;
    text-align: center;
}
    .suitable-for > .title {
        font-family: 'Roboto',sans-serif;
        font-size: 40px;
        line-height: 50px;
    }
    .suitable-for > .sub-title {
        font-family: 'Roboto',sans-serif;
        font-size: 50px;
        font-weight: bold;
        line-height:60px;
    }
    .suitable-for > .suitable-item {
        display:inline-table;
        width: 24%;
        padding: 8px;
        border-radius:5px;
        margin:0px!important;
        vertical-align:top;
    }
        .suitable-for > .suitable-item > .item-body {
            display: table-cell;
            width: 100%;
            height: 150px;
            text-align: center;
            vertical-align: middle;
            padding: 10px;
            background-color: #f7f7f7;
            font-size: 20px;
            color: #636363;
        }
        .suitable-for > .suitable-item > .item-body > i {
            color: #1053be;
            font-size:30px;
        }
            .suitable-for > .suitable-item > .item-body > .i-bo {
                color: #ff7d03;
            }
            .suitable-for > .suitable-item > .item-body > .i-sw {
                color: #ee3e38;
            }

.pricing-plan {
    padding: 100px 150px;
}
    .pricing-plan > .title {
        font-family: 'Roboto',sans-serif;
        font-size:50px;
        font-weight:bold;
        text-align:center;
    }
    .pricing-plan > .details {
        font-family: 'Roboto',sans-serif;
        font-size: 18px;
        color: #838496;
        text-align: center;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-plan > .save {
        width: 350px;
        margin: 30px 0px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50px;
        text-align: right;
        background-color: #f3f4f6;
    }
        .pricing-plan > .save > .annual {
            position: relative;
            float: left;
            width: 210px;
            border-radius: 50px;
            font-size: 16px;
            padding: 18px 25px;
            cursor: pointer;
        }
            .pricing-plan > .save > .annual > span {
                float: left;
                font-size: 18px;
                font-weight:bold;
            }
        .pricing-plan > .save > .monthly {
            position: relative;
            float: left;
            width: 140px;
            font-size: 18px;
            font-weight: bold;
            padding: 18px 10px;
            text-align:center;
            border-radius: 50px;
            cursor: pointer;
        }

        .pricing-plan > .save > .active {
            background-color: #045493;
            background-image: linear-gradient(to right, #045493, #0097e6);
            color: #fff;
            pointer-events:none;
            transition:all .3s;
        }


    .pricing-plan > .price-context {
        display:flex;
        width:100%;
    }
    .pricing-plan > .price-context > .price-item {
        flex: 1;
        width:33.33%;
        padding:10px;
        text-align:center;
        vertical-align:middle;
    }
    .pricing-plan > .price-context > .price-item > .item-body {
        height:100%;
        border:1px solid #e1e1e1;
        border-radius:15px;
        padding:30px;
        box-shadow:0px 0px 7px rgba(0, 46, 142, 0.12);
        position:relative;
    }
        .pricing-plan > .price-context > .price-item > .item-body > .title {
            font-size: 25px;
            font-family: 'Roboto',sans-serif;
            font-weight: 700;
            color: #6c809b;
        }
        .pricing-plan > .price-context > .price-item > .item-body > .best-title {
            color: #ea5048;
        }
        .pricing-plan > .price-context > .price-item > .item-body > .price {
            font-size: 35px;
            line-height:40px;
            font-family: 'Roboto Condensed',sans-serif;
            font-weight: 700;
            padding-top:10px;
        }
        .pricing-plan > .price-context > .price-item > .item-body > .usd-price {
            font-size: 25px;
            line-height: 30px;
            font-family: 'Roboto Condensed',sans-serif;
            font-weight: 700;
            color: #888;
        }
        .pricing-plan > .price-context > .price-item > .item-body > .details {
            font-size: 15px;
            line-height: 30px;
            font-family: 'Roboto',sans-serif;
            font-weight: 500;
            padding: 20px 0px;
            color: #828282;
        }
            .pricing-plan > .price-context > .price-item > .item-body > .details > .old-price {
                text-decoration: line-through  red;
            }
            .pricing-plan > .price-context > .price-item > .item-body > .details > .new-price-note {
                font-size: 12px;
                color: #05b664;
                line-height: 10px;
                margin-bottom:15px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on {
                font-size: 15px;
                line-height:20px;
                border: 1px solid #ed1b24;
                border-radius: 5px;
                margin-left: auto;
                margin-right: auto;
                width: 80px;
                margin-top:10px;
            }
            .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on-item {
                cursor:pointer;
            }
            .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on-item > i {
                color:#0fc270;
            }
        .pricing-plan > .price-context > .price-item > .item-body > button {
            background-color: #fff;
            border: #4878f4 solid 1px;
            border-radius: 10px;
            color: #4878f4;
            font-size: 18px;
            font-weight: bold;
            padding: 15px;
            position: absolute;
            bottom:-27px;
            width: 86%;
            left: 7%;
        }

        .pricing-plan > .price-context > .price-item > .item-body > .best {
            background-color: #045493;
            background-image: linear-gradient(to right, #045493, #0097e6);
            color: #fff;
        }

        .pricing-plan > .price-context > .price-item > .item-body > button:hover {
            background-color: #045493;
            background-image: linear-gradient(to right, #045493, #0097e6);
            color: #fff;
        }


.rebolution {
    width: 100%;
    padding: 50px 150px;
    padding-top: 100px;
    font-family: 'Roboto',sans-serif;
    text-align: center;
}
    .rebolution > .sub-title {
        font-size: 25px;
        color: #f8500f;
        font-weight:bold;
    }
    .rebolution > .title {
        font-size: 40px;
        color: #1a2a44;
        font-weight: bold;
    }
    .rebolution > .item {
        position:relative;
        float:left;
        width:25%;
        padding:10px;
        margin-top:20px;
    }
    .rebolution > .item > img {
        height:50px;
        margin-bottom:15px;
    }
        .rebolution > .item > .title {
            font-size: 18px;
            color: #101010;
            font-weight: bold;
        }
        .rebolution > .item > .details {
            font-size: 14px;
            color: #252c36;
        }

.consultation {
    width: 100%;
    padding: 100px;
    font-family: 'Roboto',sans-serif;
    text-align:center;
}
    .consultation > .title {
        font-size: 40px;
        line-height:45px;
        color: #1a2842;
        font-weight: 700;
        margin-bottom:30px;
    }
        .consultation > .title > span {
            color: #ea5048;
        }
    .consultation > button {
        background-color: #f36523;
        border: none;
        border-radius: 10px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        padding: 10px 20px;
        transition: all 0.5s;
    }
        .consultation > button:hover {
            transform: scale(1.05);
            transition: all 0.5s;
        }
    .consultation > .button-turbo {
        background-color: #ed1b24;
    }
    .consultation > .button-backoffice {
        background-color: #04bfb6;
    }
    .consultation > .button-workshop {
        background-color: #00a650;
    }

@media (max-width:1100px) {
    .one-screen {
        border-width: 20px;
        padding: 50px 30px;
    }

    .suitable-for {
        padding: 50px;
    }

    .pricing-plan {
        padding: 100px;
    }
    .rebolution {
        padding:50px 100px;
    }
}
@media (max-width:1050px) {
    .product-benefits {
        padding:50px 0px;
    }
    .module-context > .details-context {
        padding: 100px;
    }
    .one-screen {
        border-width:20px;
       padding: 30px 20px;
    }
        .one-screen > .header {
            padding-bottom: 30px;
        }
    .pricing-plan {
        padding: 100px 50px;
    }
    .rebolution {
        padding:50px;
    }
}

@media (max-width:991px) {
    .product-head {
        padding: 0 10px;
    }

        .product-head > .product-menu-context > .item {
            padding: 20px 5px;
            font-size: 14px;
        }

            .product-head > .product-menu-context > .item > button {
                background-color: #f36523;
                border: none;
                border-radius: 4px;
                color: #fff;
                font-weight: 500;
                padding: 5px 10px;
            }

    .product-banner {
        height: 500px;
    }

        .product-banner > .body > .title {
            font-size: 60px;
            line-height: 60px;
        }

    .play-context > .play-body {
        height: 400px;
    }

    .product-benefits {
        padding: 50px 25px;
    }

        .product-benefits > .details-context {
            padding: 100px 25px;
        }

            .product-benefits > .details-context > .title {
                font-size: 30px;
                line-height: 35px;
            }

            .product-benefits > .details-context > .details {
                font-size: 18px;
                line-height: 23px;
            }

        .product-benefits > .benefits-context {
            padding-right: 25px;
        }

            .product-benefits > .benefits-context > .item {
                padding: 10px;
                padding-bottom: 20px;
            }

                .product-benefits > .benefits-context > .item > i {
                    height: 50px;
                    width: 50px;
                    font-size: 20px;
                    padding-top: 15px;
                }

                .product-benefits > .benefits-context > .item > .title {
                    font-size: 20px;
                    padding-top: 10px;
                }

                .product-benefits > .benefits-context > .item > .details {
                    font-size: 14px;
                }

    .module-context > .details-context {
        padding: 50px;
    }

        .module-context > .details-context > .title {
            font-size: 50px;
            line-height: 50px;
        }

        .module-context > .details-context > .sub-title {
            font-size: 25px;
            line-height: 25px;
        }

        .module-context > .details-context .module {
            font-size: 16px;
        }

            .module-context > .details-context .module > i {
                font-size: 18px;
            }


        .module-context > .details-context .item {
            height: 140px;
        }

    .one-screen {
        border-width: 20px;
        padding: 30px 20px;
    }

        .one-screen > .header {
            padding-bottom: 30px;
        }

            .one-screen > .header > .title {
                font-size: 35px;
                line-height: 35px;
            }

            .one-screen > .header > .details {
                font-size: 18px;
            }

        .one-screen > .item > .item-body {
            padding: 20px;
        }

            .one-screen > .item > .item-body > .icon-context {
                width: 60px;
            }

                .one-screen > .item > .item-body > .icon-context > img {
                    height: 40px;
                }

            .one-screen > .item > .item-body > .details-context > .details-body {
                height: 110px;
            }

                .one-screen > .item > .item-body > .details-context > .details-body > .title {
                    font-size: 16px;
                }

                .one-screen > .item > .item-body > .details-context > .details-body > .details {
                    padding-top: 5px;
                    font-size: 14px;
                }

    .suitable-for {
        padding: 50px 20px;
    }

        .suitable-for > .title {
            font-size: 30px;
            line-height: 30px;
        }

        .suitable-for > .sub-title {
            font-size: 40px;
            line-height: 40px;
        }

        .suitable-for > .suitable-item {
            width: 24%;
            padding: 5px;
        }

            .suitable-for > .suitable-item > .item-body {
                height: 130px;
                font-size: 18px;
            }

                .suitable-for > .suitable-item > .item-body > i {
                    font-size: 25px;
                }

    .pricing-plan {
        padding: 50px 10px;
    }

        .pricing-plan > .title {
            font-size: 35px;
        }

        .pricing-plan > .details {
            font-size: 16px;
        }

        .pricing-plan > .save {
            width: 300px;
            border-radius: 50px;
        }

            .pricing-plan > .save > .annual {
                width: 180px;
                font-size: 14px;
                padding: 15px 25px;
            }

                .pricing-plan > .save > .annual > span {
                    font-size: 14px;
                }

            .pricing-plan > .save > .monthly {
                width: 120px;
                font-size: 14px;
                padding: 15px 10px;
            }


            .pricing-plan > .price-context > .price-item > .item-body {
                padding:20px 10px;
            }

                .pricing-plan > .price-context > .price-item > .item-body > .title {
                    font-size: 20px;
                }

                .pricing-plan > .price-context > .price-item > .item-body > .price {
                    font-size: 30px;
                    line-height: 30px;
                    padding-top: 5px;
                }

                .pricing-plan > .price-context > .price-item > .item-body > .usd-price {
                    font-size: 20px;
                    line-height: 25px;
                }

                .pricing-plan > .price-context > .price-item > .item-body > .details {
                    font-size: 14px;
                    line-height: 25px;
                    padding: 10px 0px;
                    padding-bottom:20px;
                }

                    .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on {
                        font-size: 14px;
                        width: 70px;
                    }

                .pricing-plan > .price-context > .price-item > .item-body > button {
                    font-size: 15px;
                    padding: 10px;
                    bottom: -22px;
                }

    .rebolution {
        padding: 10px;
        padding-top: 30px;
    }

        .rebolution > .sub-title {
            font-size: 20px;
        }

        .rebolution > .title {
            font-size: 30px;
        }

        .rebolution > .item {
            width: 25%;
        }

            .rebolution > .item > img {
                height:40px;
                margin-bottom: 15px;
            }

            .rebolution > .item > .title {
                font-size: 16px;
            }

            .rebolution > .item > .details {
                font-size: 14px;
            }
    .consultation {
        padding:80px 50px;
    }

        .consultation > .title {
            font-size: 30px;
            line-height: 35px;
            margin-bottom: 20px;
        }

        .consultation > button {
            font-size: 18px;
            padding: 10px 20px;
        }
}

@media (max-width:800px) {
    .one-screen > .item > .item-body > .details-context > .details-body > .title {
        font-size: 15px;
    }

    .one-screen > .item > .item-body > .details-context > .details-body > .details {
        padding-top: 0px;
        font-size: 13px;
    }
}


@media (max-width:767px) {
    .product-head {
        padding: 0 0px;
    }

        .product-head > .product-logo-context {
            width: 130px;
        }
            .product-head > .product-logo-context > img {
                max-height: 40px;
            }

        .product-head > .product-menu-context > .item {
            padding: 15px 5px;
            font-size: 14px;
        }

            .product-head > .product-menu-context > .item > button {
                display: none;
            }

    .product-banner {
        height: 400px;
    }

        .product-banner > .body > .title {
            font-size: 50px;
            line-height: 50px;
        }

    .play-context > .play-body {
        height: 350px;
    }

        .play-context > .play-body > .btn-context {
            width: 160px;
            height: 160px;
        }

            .play-context > .play-body > .btn-context > .btn-play {
                width: 100px;
                height: 100px;
                top: 30px;
                left: 30px;
                border: 7px solid rgba(255, 255, 255, 0.50);
            }

            .play-context > .play-body > .btn-context > .btn-play > i {
                font-size: 40px;
                padding: 25px;
                padding-left: 30px;
            }

            .play-context > .play-body > .btn-context > .btn-anim {
                top: 80px;
                left: 80px;
            }

    @keyframes btn-anim {
        0% {
            width: 0px;
            height: 0px;
            top: 80px;
            left: 80px;
        }

        100% {
            width: 160px;
            height: 160px;
            top: 0px;
            left: 0px;
            background-color: rgba(255, 255, 255, 0);
        }
    }




    .product-benefits {
        padding: 50px 0px;
    }

        .product-benefits > .details-context {
            padding: 0px 10px;
        }

            .product-benefits > .details-context > .title {
                font-size: 22px;
                line-height: 25px;
            }

            .product-benefits > .details-context > .details {
                font-size: 15px;
                line-height: 18px;
            }

        .product-benefits > .benefits-context {
            padding-right: 0px;
        }

            .product-benefits > .benefits-context > .item {
                padding: 10px;
            }

                .product-benefits > .benefits-context > .item > i {
                    height: 40px;
                    width: 40px;
                    font-size: 18px;
                    padding-top: 12px;
                }

                .product-benefits > .benefits-context > .item > .title {
                    font-size: 16px;
                    padding-top: 5px;
                }

                .product-benefits > .benefits-context > .item > .details {
                    font-size: 13px;
                    padding-top: 5px;
                }

    .module-context > .details-context {
        padding: 30px;
    }

        .module-context > .details-context > .title {
            font-size: 40px;
            line-height: 40px;
        }

        .module-context > .details-context > .sub-title {
            font-size: 20px;
            line-height: 20px;
        }

        .module-context > .details-context .module {
            font-size: 14px;
            padding-top: 7px;
        }

            .module-context > .details-context .module > i {
                font-size: 16px;
            }


        .module-context > .details-context .item {
            height: 120px;
        }

    .one-screen {
        border-width: 10px;
        padding: 30px 10px;
    }

        .one-screen > .header {
            padding-bottom: 20px;
        }

            .one-screen > .header > .title {
                font-size: 25px;
                line-height: 25px;
            }

            .one-screen > .header > .details {
                font-size: 14px;
            }

            .one-screen > .item > .item-body {
                padding: 10px;
            }

                .one-screen > .item > .item-body > .icon-context {
                    width: 45px;
                }

                    .one-screen > .item > .item-body > .icon-context > img {
                        height: 35px;
                    }

                .one-screen > .item > .item-body > .details-context > .details-body {
                    height: 100px;
                }

                    .one-screen > .item > .item-body > .details-context > .details-body > .title {
                        font-size: 14px;
                    }

                    .one-screen > .item > .item-body > .details-context > .details-body > .details {
                        padding-top: 0px;
                        font-size: 13px;
                    }

    .suitable-for {
        padding: 30px 0px;
    }

        .suitable-for > .title {
            font-size: 25px;
            line-height: 25px;
        }

        .suitable-for > .sub-title {
            font-size: 30px;
            line-height: 30px;
        }

        .suitable-for > .suitable-item {
            width: 24%;
            padding: 5px;
        }

            .suitable-for > .suitable-item > .item-body {
                height: 100px;
                font-size: 16px;
            }

                .suitable-for > .suitable-item > .item-body > i {
                    font-size: 20px;
                }

    .pricing-plan {
        padding: 30px 10px;
    }

        .pricing-plan > .title {
            font-size: 25px;
        }

        .pricing-plan > .details {
            font-size: 14px;
        }

        .pricing-plan > .save {
            width: 240px;
            border-radius: 50px;
        }

            .pricing-plan > .save > .annual {
                width: 150px;
                font-size: 12px;
                padding: 10px 15px;
            }

                .pricing-plan > .save > .annual > span {
                    font-size: 12px;
                }

            .pricing-plan > .save > .monthly {
                width: 90px;
                font-size: 12px;
                padding: 10px 10px;
            }


        .pricing-plan > .price-context > .price-item > .item-body {
            padding: 20px 5px;
        }

            .pricing-plan > .price-context > .price-item > .item-body > .title {
                font-size: 18px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .price {
                font-size: 25px;
                line-height: 25px;
                padding-top: 5px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .usd-price {
                font-size: 18px;
                line-height: 22px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .details {
                font-size: 12px;
                line-height: 20px;
                padding: 10px 0px;
                padding-bottom: 10px;
            }

                .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on {
                    font-size: 12px;
                    width: 60px;
                }

            .pricing-plan > .price-context > .price-item > .item-body > button {
                font-size: 14px;
                padding:7px 10px;
                bottom: -20px;
            }

        .rebolution > .sub-title {
            font-size: 18px;
        }

        .rebolution > .title {
            font-size: 25px;
        }

        .rebolution > .item {
            width: 25%;
        }

            .rebolution > .item > img {
                height: 35px;
                margin-bottom: 10px;
            }

            .rebolution > .item > .title {
                font-size: 14px;
            }

            .rebolution > .item > .details {
                font-size: 12px;
            }

    .consultation {
        padding: 50px;
    }

        .consultation > .title {
            font-size: 25px;
            line-height: 30px;
        }

        .consultation > button {
            font-size: 15px;
            padding: 8px 20px;
        }
}

.client-context {
    width: 100%;
    padding: 50px;
    margin-top: 50px;
}

    .client-context > .head {
        font-size: 30px;
        font-family: 'Roboto', sans-serif;
        text-align: center;
        padding-bottom: 30px;
        text-transform: uppercase;
    }

    .client-context > marquee > .item-context {
        display: inline-block;
        padding: 15px;
        width: 150px;
        text-align: center;
        cursor: pointer;
    }

        .client-context > marquee > .item-context > .img-context {
            padding: 10px;
            height: 100px;
            width: 100%;
        }

            .client-context > marquee > .item-context > .img-context > img {
                max-height: 90px;
                max-width: 100px;
            }

        .client-context > marquee > .item-context > .details {
            visibility: hidden;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #e1e1e1;
            display: inline-block;
            text-align: left;
            font-size: 11px;
        }

        .client-context > marquee > .item-context:hover .details {
            visibility: visible;
        }

@media (max-width:700px) {
    .one-screen > .item > .item-body > .details-context > .details-body > .details {
        padding-top: 0px;
        font-size: 12px;
    }
}

@media (max-width:650px){
    .one-screen > .item {
        width:50%;
    }
    .rebolution > .sub-title {
        font-size: 16px;
    }

    .rebolution > .title {
        font-size: 20px;
        line-height:20px;
    }

    .rebolution > .item {
        width: 50%;
        margin-top:10px;
    }

        .rebolution > .item > img {
            height: 35px;
            margin-bottom: 10px;
        }

        .rebolution > .item > .title {
            font-size: 14px;
        }

        .rebolution > .item > .details {
            font-size: 12px;
            height:40px;
        }
}

@media (max-width:600px) {
    .product-head > .product-logo-context {
        width: 100px;
    }
        .product-head > .product-logo-context > img {
            max-height: 35px;
        }

    .product-head > .product-menu-context {
        padding-right: 0px;
    }

        .product-head > .product-menu-context > .item {
            padding: 12px 5px;
            font-size: 12px;
        }

    .product-banner {
        height: 300px;
    }

        .product-banner > .body > .title {
            font-size: 40px;
            line-height: 40px;
        }

    .play-context > .play-body {
        height: 250px;
    }

        .play-context > .play-body > .btn-context {
            width: 120px;
            height: 120px;
        }

            .play-context > .play-body > .btn-context > .btn-play {
                width: 70px;
                height: 70px;
                top: 25px;
                left: 25px;
                border: 5px solid rgba(255, 255, 255, 0.50);
            }

                .play-context > .play-body > .btn-context > .btn-play > i {
                    font-size: 25px;
                    padding: 18px;
                    padding-left: 22px;
                }

            .play-context > .play-body > .btn-context > .btn-anim {
                top: 60px;
                left: 60px;
            }

    @keyframes btn-anim {
        0% {
            width: 0px;
            height: 0px;
            top: 60px;
            left: 60px;
        }

        100% {
            width: 120px;
            height: 120px;
            top: 0px;
            left: 0px;
            background-color: rgba(255, 255, 255, 0);
        }
    }

    .product-benefits {
        padding: 25px 0px;
    }

        .product-benefits > .details-context {
            padding: 0px 10px;
        }

            .product-benefits > .details-context > .title {
                font-size: 18px;
                line-height: 20px;
            }

            .product-benefits > .details-context > .details {
                font-size: 13px;
                line-height: 13px;
            }

        .product-benefits > .benefits-context {
            padding-right: 0px;
        }

            .product-benefits > .benefits-context > .item {
                padding: 5px;
            }

                .product-benefits > .benefits-context > .item > i {
                    height: 35px;
                    width: 35px;
                    font-size: 15px;
                    padding-top: 10px;
                }

                .product-benefits > .benefits-context > .item > .title {
                    font-size: 14px;
                    padding-top: 5px;
                }

                .product-benefits > .benefits-context > .item > .details {
                    font-size: 12px;
                    padding-top: 5px;
                }

    .module-context > .details-context {
        padding: 20px;
    }

        .module-context > .details-context > .title {
            font-size: 30px;
            line-height: 30px;
        }

        .module-context > .details-context > .sub-title {
            font-size: 18px;
            line-height: 18px;
        }

        .module-context > .details-context .module {
            font-size: 13px;
            padding-top: 5px;
        }

            .module-context > .details-context .module > i {
                font-size: 15px;
            }


        .module-context > .details-context .item {
            height: 110px;
        }

    .suitable-for {
        padding: 30px 0px;
    }

        .suitable-for > .title {
            font-size: 20px;
            line-height: 20px;
        }

        .suitable-for > .sub-title {
            font-size: 25px;
            line-height: 25px;
        }

        .suitable-for > .suitable-item {
            width: 24%;
            padding:5px 3px;
        }

            .suitable-for > .suitable-item > .item-body {
                height: 100px;
                font-size: 14px;
            }

                .suitable-for > .suitable-item > .item-body > i {
                    font-size: 20px;
                }

    .pricing-plan {
        padding: 30px 5px;
    }

        .pricing-plan > .title {
            font-size: 22px;
        }

        .pricing-plan > .details {
            font-size: 12px;
        }

        .pricing-plan > .save {
            width: 210px;
            border-radius: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

            .pricing-plan > .save > .annual {
                width: 130px;
                font-size: 11px;
                padding: 8px 15px;
            }

                .pricing-plan > .save > .annual > span {
                    font-size: 11px;
                }

            .pricing-plan > .save > .monthly {
                width: 80px;
                font-size: 11px;
                padding: 8px 10px;
            }
        .pricing-plan > .price-context > .price-item {
            padding: 5px;
        }


        .pricing-plan > .price-context > .price-item > .item-body {
            padding: 20px 5px;
        }

            .pricing-plan > .price-context > .price-item > .item-body > .title {
                font-size: 16px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .price {
                font-size: 20px;
                line-height: 20px;
                padding-top: 5px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .usd-price {
                font-size: 16px;
                line-height: 20px;
            }

            .pricing-plan > .price-context > .price-item > .item-body > .details {
                font-size: 10px;
                line-height: 16px;
                padding: 10px 0px;
                padding-bottom: 10px;
            }

                .pricing-plan > .price-context > .price-item > .item-body > .details > .add-on {
                    font-size: 10px;
                    width: 50px;
                }

            .pricing-plan > .price-context > .price-item > .item-body > button {
                font-size: 12px;
                padding: 5px 10px;
                bottom: -16px;
            }
}

@media (max-width:500px) {
    .product-benefits {
        padding: 50px 5px;
    }

        .product-benefits > .details-context {
            width: 100%;
            display: block;
            padding: 5px;
        }

        .product-benefits > .benefits-context {
            width: 100%;
            display: block;
            padding-top: 20px;
        }

    .module-context > .details-context {
        padding: 15px;
    }

        .module-context > .details-context > .title {
            font-size: 25px;
            line-height: 25px;
        }

        .module-context > .details-context > .sub-title {
            font-size: 16px;
            line-height: 16px;
        }

        .module-context > .details-context .module {
            font-size: 12px;
            padding-top: 5px;
        }

            .module-context > .details-context .module > i {
                font-size: 14px;
            }


        .module-context > .details-context .item {
            height: 100px;
        }

    .one-screen {
        border-width: 5px;
        padding: 30px 3px;
    }

        .one-screen > .header {
            padding-bottom: 10px;
        }

            .one-screen > .header > .title {
                font-size: 20px;
                line-height: 20px;
            }

            .one-screen > .header > .details {
                font-size: 12px;
            }

        .one-screen > .item > .item-body {
            padding: 5px;
        }

            .one-screen > .item > .item-body > .details-context > .details-body {
                height: 90px;
            }

                .one-screen > .item > .item-body > .details-context > .details-body > .title {
                    font-size: 14px;
                }

                .one-screen > .item > .item-body > .details-context > .details-body > .details {
                    padding-top: 0px;
                    font-size: 12px;
                }

    .suitable-for > .title {
        font-size: 18px;
        line-height: 18px;
    }

    .suitable-for > .sub-title {
        font-size: 22px;
        line-height: 22px;
    }

    .suitable-for > .suitable-item {
        width: 32%;
        padding: 5px 3px;
    }

        .suitable-for > .suitable-item > .item-body {
            height: 90px;
            font-size: 12px;
        }

            .suitable-for > .suitable-item > .item-body > i {
                font-size: 18px;
            }

    .pricing-plan > .price-context {
        display: block;
    }

        .pricing-plan > .price-context > .price-item {
            display: block;
            flex: unset;
            width: 100%;
            max-width: 250px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 15px;
        }

    .consultation {
        padding: 50px 30px;
    }

        .consultation > .title {
            font-size: 20px;
            line-height: 25px;
        }

        .consultation > button {
            font-size: 14px;
            padding: 5px 20px;
        }


    .client-context {
        padding: 20px;
    }

        .client-context > .head {
            font-size: 20px;
        }

        .client-context > .details {
            font-size: 12px;
        }

        .client-context > marquee > .item-context {
            padding: 10px;
            width: 90px;
        }

            .client-context > marquee > .item-context > .img-context {
                height: 50px;
            }

                .client-context > marquee > .item-context > .img-context > img {
                    max-height: 40px;
                    max-width: 60px;
                }

            .client-context > marquee > .item-context > .details {
                padding: 5px 10px;
            }
}

@media (max-width:450px) {
    .product-banner {
        height: 250px;
    }

        .product-banner > .body > .title {
            font-size: 30px;
            line-height: 35px;
        }

    .play-context > .play-body {
        height: 200px;
    }
}

@media (max-width:400px) {
    .product-head > .product-logo-context {
        width:80px;
        padding-left:10px;
    }

        .product-head > .product-logo-context > img {
            max-height: 30px;
        }
    .product-head > .product-menu-context > .item {
        padding: 12px 5px;
        font-size: 10px;
    }
    .product-banner {
        height: 200px;
    }

        .product-banner > .body > .title {
            font-size: 25px;
            line-height: 30px;
        }

    .module-context > .details-context > .title {
        font-size: 18px;
        line-height: 18px;
    }

    .module-context > .details-context > .sub-title {
        font-size: 13px;
        line-height: 13px;
    }

    .module-context > .details-context .module {
        font-size: 10px;
        padding-top: 3px;
    }

        .module-context > .details-context .module > i {
            font-size: 12px;
        }


    .module-context > .details-context .item {
        height: 80px;
    }

    .one-screen > .item > .item-body > .details-context > .details-body > .title {
        font-size: 12px;
    }

    .one-screen > .item > .item-body > .details-context > .details-body > .details {
        padding-top: 0px;
        font-size: 11px;
    }

        .rebolution > .item > .title {
            font-size: 13px;
        }

        .rebolution > .item > .details {
            font-size: 11px;
            height: 30px;
        }
    .consultation {
        padding: 50px 10px;
    }

        .consultation > .title {
            font-size: 18px;
            line-height: 22px;
            margin-bottom:10px;
        }

        .consultation > button {
            font-size: 12px;
            padding: 5px 20px;
        }
}
@media (max-width:350px) {
    .one-screen > .item > .item-body > .details-context > .details-body > .details {
        padding-top: 0px;
        font-size: 10px;
    }
}
