/* Minification failed. Returning unminified contents.
(553,1): run-time error CSS1019: Unexpected token, found '}'
(681,1): run-time error CSS1019: Unexpected token, found '}'
 */

.banner {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

    .banner > .banner-image {
        height: 100%;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        display: table;
    }

        .banner > .banner-image > .layer {
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.50);
        }

    .banner > .image-active {
        animation: active 10s ease;
        left: 0;
    }

    .banner > .image-inactive {
        animation: inactive 10s ease;
        left: -100%;
    }


@keyframes active {
    0% {
        display: table;
        left: 100%;
    }

    20% {
        left: 0px;
    }
}

@keyframes inactive {
    0% {
        left: 0px;
    }

    20% {
        left: -100%;
        display: none;
    }
}

.banner > .banner-image > .layer > .text-context {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
}

    .banner > .banner-image > .layer > .text-context > .head {
        font-size: 40px;
        color: #fff;
        text-transform: uppercase;
        font-family: Impact;
        letter-spacing: 3px;
        text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.60);
    }

        .banner > .banner-image > .layer > .text-context > .head > span {
            color: #f28f00;
        }

    .banner > .banner-image > .layer > .text-context > .details {
        font-size: 16px;
        color: #fff;
        text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.60);
        padding: 0px 15px;
        padding-top: 50px;
    }

    .banner > .banner-image > .layer > .text-context > .button {
        border-style: none;
        text-align: center;
        text-transform: uppercase;
        background-color: #f28f00;
        color: #fff;
        font-size: 13px;
        padding: 7px 20px;
        outline: none;
        transition: all 300ms;
        border-radius: 20px;
        margin-top: 20px;
    }

        .banner > .banner-image > .layer > .text-context > .button:hover {
            transition: all 300ms;
            background-color: #f27e00;
            color: #fff;
            text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.40);
        }

.banner > .banner-image > .layer > .text-active {
    animation: texteffict 10s ease;
}

.banner > .banner-image > .layer > .text-inactive {
    top: -100%;
}


@keyframes texteffict {

    0% {
        top: 100%;
    }

    15% {
        top: 100%;
    }

    30% {
        top: 180px;
    }

    32% {
        top: 200px;
    }

    90% {
        top: 200px;
    }

    100% {
        top: -100%;
    }
}


.banner > .banner-image > .layer > .text-context > .head div {
    display: inline-block;
    letter-spacing: -5px;
    font-size: 50px;
    text-transform: uppercase;
    font-family: Impact;
}

.banner > .banner-image > .layer > .text-context > .head .in {
    -webkit-animation: scale-up 6s infinite;
    -moz-animation: scale-up 6s infinite;
    animation: scale-up 6s infinite;
}

.banner > .banner-image > .layer > .text-context > .head .out {
    -webkit-animation: scale-down .6s infinite;
    -moz-animation: scale-down .6s infinite;
    animation: scale-down .5s infinite;
}


@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes scale-up {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }

    60% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.about-title {
    font-size: 40px;
    color: #495460;
    text-align: center;
    padding-top: 50px;
}

.about {
    padding: 50px;
    padding-top: 10px;
    display: flex;
}

    .about > .details {
        width: 50%;
        font-size: 14px;
        font-weight: normal;
        color: #6c6c6c;
        line-height: 30px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        flex: 1;
    }

        .about > .details > .title {
            font-size: 24px;
            font-weight: bold;
            color: #3c3c3c;
            padding-bottom: 10px;
        }

            .about > .details > .title > span {
                color: #f28f00;
            }

    .about > .image-context {
        width: 50%;
        min-height: 200px;
        padding: 20px;
        padding-top: 5px;
        flex: 1;
    }

        .about > .image-context > .image {
            width: 100%;
            height: 100%;
            background-image: url('/Images/bg2.jpg');
            background-position: center;
            background-size: cover;
        }

.product {
    padding: 50px;
}

    .product > .title {
        font-size: 40px;
        font-weight: bold;
        text-align: center;
        color: #f28f00;
    }

    .product > .product-context {
        width: 100%;
        height: 330px;
    }

        .product > .product-context > .item {
            position: relative;
            float: left;
            width: 33.33%;
            height: 100%;
            padding: 10px;
        }

            .product > .product-context > .item > .item-context {
                height: 100%;
                height: 100%;
                background-image: url('/Images/bg8.jpg');
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                background-attachment: fixed;
                cursor: pointer;
                overflow: hidden;
            }

.zoom-icom {
    transition: all 500ms;
}

.product > .product-context > .item > .item-context:hover .zoom-icom {
    transform: scale(1.2);
    transition: all 500ms;
}

.product > .product-context > .item > .item-context .layer {
    height: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px 20px;
    text-align: center;
}

    .product > .product-context > .item > .item-context .layer > .icon {
        height: 100px;
        text-align: center;
    }

        .product > .product-context > .item > .item-context .layer > .icon > img {
            height: 100%;
        }

    .product > .product-context > .item > .item-context .layer > .name {
        text-align: center;
        color: #fff;
        font-size: 25px;
        padding-top: 20px;
    }

    .product > .product-context > .item > .item-context .layer > .button {
        border-style: none;
        text-align: center;
        text-transform: uppercase;
        background-color: #f28f00;
        color: #fff;
        font-size: 13px;
        padding: 7px 20px;
        outline: none;
        transition: all 300ms;
        border-radius: 20px;
        margin-top: 20px;
    }

        .product > .product-context > .item > .item-context .layer > .button:hover {
            transition: all 300ms;
            background-color: #f27e00;
            color: #fff;
            text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.40);
        }



.partner {
    width: 100%;
    background-image: url('../Images/bg9.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 80% 100%;
    margin-bottom: 50px;
}

    .partner > .body {
        padding: 100px 50px 50px 50px;
        font-family: 'Roboto ', sans-serif;
        text-align: center;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

        .partner > .body > .title {
            font-size: 40px;
            color: #0094ff;
        }

            .partner > .body > .title > span {
                color: #f28f00;
            }

        .partner > .body > .description {
            font-size: 14px;
            color: #616569;
            padding-bottom: 20px;
        }

        .partner > .body > .button {
            border-style: none;
            background-color: #f28f00;
            text-align: center;
            text-transform: uppercase;
            color: #fff;
            font-size: 13px;
            padding: 10px 20px;
            outline: none;
            transition: all 300ms;
            border-radius: 20px;
        }

        .partner > .body .button:hover {
            transition: all 300ms;
            background-color: #3c3c3c;
            text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.40);
        }


@media (max-width:991px) {
    .about-title {
        font-size: 35px;
        padding-top: 40px;
    }

    .about {
        padding: 40px;
    }

        .about > .details {
            width: 50%;
            font-size: 13px;
        }

    .product > .title {
        font-size: 35px;
    }

    .product {
        padding: 40px;
    }
}

@media (max-width:900px) {

    .product {
        padding: 40px;
    }

        .product > .product-context > .item > .item-context .layer > .name {
            font-size: 20px;
        }
}

@media (max-width:767px) {
    .banner {
        height: 400px;
    }

        .banner > .banner-image > .layer > .text-context > .details {
            font-size: 14px;
        }

        .banner > .banner-image > .layer > .text-context > .head {
            font-size: 30px;
        }

            .banner > .banner-image > .layer > .text-context > .head div {
                font-size: 30px;
            }

    @keyframes texteffict {
        0% {
            top: 100%;
        }

        15% {
            top: 100%;
        }

        30% {
            top: 100px;
        }

        32% {
            top: 150px;
        }

        90% {
            top: 150px;
        }

        100% {
            top: -100%;
        }
    }


    .about-title {
        font-size: 30px;
        padding-top: 30px;
    }

    .about {
        padding: 20px;
    }

        .about > .details {
            width: 50%;
            font-size: 13px;
        }

            .about > .details > .title {
                font-size: 20px;
                padding-bottom: 5px;
            }

    .product {
        padding: 20px;
    }

        .product > .title {
            font-size: 30px;
        }

        .product > .product-context {
            height: 270px;
        }

            .product > .product-context > .item > .item-context .layer {
                padding: 20px 20px;
            }

                .product > .product-context > .item > .item-context .layer > .name {
                    font-size: 18px;
                }

    .partner > .body > .title {
        font-size: 30px;
    }

    .partner > .body {
        padding: 50px 30px 30px 30px;
    }
}

@media (max-width:700px) {
    .product {
        padding: 10px;
    }

        .product > .product-context {
            height: 220px;
        }

            .product > .product-context > .item > .item-context .layer {
                padding: 10px;
            }

                .product > .product-context > .item > .item-context .layer > .icon {
                    height: 70px;
                }

                .product > .product-context > .item > .item-context .layer > .name {
                    font-size: 18px;
                }

                .product > .product-context > .item > .item-context .layer > .button {
                    font-size: 11px;
                    padding: 5px 20px;
                }
}


@media (max-width:600px) {
    .banner {
        height: 350px;
    }

        .banner > .banner-image > .layer > .text-context > .details {
            font-size: 12px;
        }

        .banner > .banner-image > .layer > .text-context > .head {
            font-size: 25px;
        }

            .banner > .banner-image > .layer > .text-context > .head div {
                font-size: 25px;
            }

    @keyframes texteffict {
        0% {
            top: 100%;
        }

        15% {
            top: 100%;
        }

        30% {
            top: 100px;
        }

        32% {
            top: 130px;
        }

        90% {
            top: 130px;
        }

        100% {
            top: -100%;
        }
    }

    .banner > .banner-image > .layer > .text-context > .button {
        font-size: 12px;
        padding: 5px 20px;
    }

    .about-title {
        font-size: 25px;
    }

    .about {
        display: unset;
    }

        .about > .details {
            width: 100%;
            flex: unset;
            padding: 10px;
            font-size: 11px;
        }

            .about > .details > .title {
                font-size: 17px;
            }

        .about > .image-context {
            width: 100%;
            height: 100px;
            flex: unset;
            padding: 10px;
        }

    .product > .title {
        font-size: 20px;
    }

    .product > .product-context > .item {
        width: 100%;
    }

    .partner > .body > .title {
        font-size: 20px;
    }

    .partner > .body {
        padding: 50px 20px 30px 20px;
    }

        .partner > .body > .description {
            font-size: 12px;
        }

        .partner > .body > .button {
            font-size: 12px;
            padding: 5px 20px;
        }
}


@media (max-width:400px) {
    .banner {
        height: 300px;
    }

        .banner > .banner-image > .layer > .text-context > .details {
            font-size: 12px;
            padding-top: 20px;
        }

        .banner > .banner-image > .layer > .text-context > .head {
            font-size: 20px;
        }

            .banner > .banner-image > .layer > .text-context > .head div {
                font-size: 20px;
            }
}

