﻿/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden;
        /* fix firefox animation glitch */
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper, .owl-carousel .owl-item {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
        }

    .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
        display: none;
    }

    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
        background: none;
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: -moz-grab;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }
/* No Js */
.no-js .owl-carousel {
    display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

    .owl-carousel .owl-item .owl-lazy {
        opacity: 0;
        -webkit-transition: opacity 400ms ease;
        -o-transition: opacity 400ms ease;
        -moz-transition: opacity 400ms ease;
        transition: opacity 400ms ease;
    }

        .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
            max-height: 0;
        }

    .owl-carousel .owl-item img.owl-lazy {
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: -o-transform 100ms ease;
    -moz-transition: transform 100ms ease, -moz-transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease, -moz-transform 100ms ease, -o-transform 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3, 1.3);
        -webkit-transform: scale(1.3, 1.3);
        -moz-transform: scale(1.3, 1.3);
        -o-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .owl-theme .owl-nav [class*='owl-'] {
        color: #FFF;
        font-size: 14px;
        margin: 5px;
        padding: 4px 7px;
        background: #D6D6D6;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
    }

        .owl-theme .owl-nav [class*='owl-']:hover {
            background: #869791;
            color: #FFF;
            text-decoration: none;
        }

    .owl-theme .owl-nav .disabled {
        opacity: 0.5;
        cursor: default;
    }

        .owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 10px;
        }

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px 7px;
            background: #D6D6D6;
            display: block;
            -webkit-backface-visibility: visible;
            -webkit-transition: opacity 200ms ease;
            -o-transition: opacity 200ms ease;
            -moz-transition: opacity 200ms ease;
            transition: opacity 200ms ease;
            border-radius: 30px;
        }

        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
            background: #869791;
        }

.bgm-article {
    padding-bottom: 32px;
    padding-bottom: 2rem;
}

    .bgm-article a {
        color: inherit;
    }

        .bgm-article a:hover, .bgm-article a:focus {
            text-decoration: none;
        }

    .bgm-article .image-block {
        text-align: center;
    }

        .bgm-article .image-block > * {
            margin: 0 auto;
        }

        .bgm-article .image-block img {
            max-width: 100%;
        }

    .bgm-article .text-block {
        position: relative;
    }

        .bgm-article .text-block .icon {
            position: absolute;
            top: -24px;
            top: -1.5rem;
            left: 16px;
            left: 1rem;
        }

@media (min-width: 992px) {
    .bgm-article .text-block .icon {
        left: 24px;
        left: 1.5rem;
    }
}

.bgm-article .text-block .text {
    padding-top: 64px;
    padding-top: 4rem;
}

@media (min-width: 992px) {
    .bgm-article .text-block .text {
        padding: 32px 16px 0 96px;
        padding: 2rem 1rem 0 6rem;
    }
}

.bgm-article .text-block .title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .bgm-article .text-block .title {
        font-size: 24px;
    }
}

.bgm-article .text-block .meta {
    border-bottom: 1px dashed rgb(219, 219, 219);
    color: rgb(135, 135, 135);
    font-size: 13px;
    font-style: italic;
    line-height: 27.2px;
    line-height: 1.7rem;
    padding: 16px 0;
    padding: 1rem 0;
}

    .bgm-article .text-block .meta ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .bgm-article .text-block .meta li {
        padding-bottom: 0;
        white-space: nowrap;
    }

        .bgm-article .text-block .meta li:after {
            content: '|';
            display: inline-block;
            font-style: normal;
            padding: 0 19.2px;
            padding: 0 1.2rem;
        }

        .bgm-article .text-block .meta li:last-child:after {
            display: none;
        }

    .bgm-article .text-block .meta i {
        margin-right: 9.6px;
        margin-right: .6rem;
    }

.bgm-article .text-block .content {
    border-top: 1px dashed rgb(219, 219, 219);
    font-size: 14px;
    margin-top: 1px;
    padding-top: 16px;
    padding-top: 1rem;
}

.bgm-article .text-block .cta {
    margin: 32px 0 0;
    margin: 2rem 0 0;
}

.bgm-article .bgm-icon {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    border: 1px solid;
    float: left;
    height: 65px;
    line-height: 65px;
    margin-right: 30px;
    padding: 2px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 65px;
}

    .bgm-article .bgm-icon:before {
        bottom: 3px;
        content: '';
        left: 3px;
        position: absolute;
        right: 3px;
        top: 3px;
        z-index: -1;
    }

    .bgm-article .bgm-icon.is-tag {
        border: none;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }

        .bgm-article .bgm-icon.is-tag:after {
            border-style: solid;
            border-width: 0 25px 20px 25px;
            content: '';
            left: 0;
            position: absolute;
            top: 100%;
        }

        .bgm-article .bgm-icon.is-tag, .bgm-article .bgm-icon.is-tag i, .bgm-article .bgm-icon.is-tag img {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            transform: none;
        }

    .bgm-article .bgm-icon i, .bgm-article .bgm-icon img {
        color: #ffffff;
        font-size: 25px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bgm-article .bgm-icon img {
        vertical-align: text-bottom;
        width: 28px;
    }

.bgm-block {
    padding-bottom: 64px;
    padding-bottom: 4rem;
}

    .bgm-block.block-grey {
        background: #f5f5f5;
    }

    .bgm-block.block-black {
        background: rgb(46, 46, 46);
        color: #ffffff;
    }

.bgm-btn {
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 1.3px;
    overflow: hidden;
    padding: .5em 1.5em;
    text-align: center;
    text-transform: uppercase;
}

    .bgm-btn:focus, .bgm-btn.focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .bgm-btn.btn-primary {
        background: transparent;
        border: 1px solid #202020;
        color: #202020;
    }

        .bgm-btn.btn-primary:not(:disabled).active:hover, .bgm-btn.btn-primary:not(:disabled).active:focus, .bgm-btn.btn-primary:not(:disabled):active:hover, .bgm-btn.btn-primary:not(:disabled):active:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .bgm-btn.btn-primary:not(:disabled).active, .bgm-btn.btn-primary:not(:disabled):active {
            background: transparent;
            border-color: #202020;
        }

        .bgm-btn.btn-primary:hover, .bgm-btn.btn-primary:focus {
            color: #ffffff;
        }

            .bgm-btn.btn-primary:hover:before, .bgm-btn.btn-primary:focus:before {
                -webkit-transform: translate3d(0, 0, 0);
                -moz-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }

            .bgm-btn.btn-primary:hover.btn-labeled:after, .bgm-btn.btn-primary:focus.btn-labeled:after {
                background: #ffffff;
                background: rgba(255, 255, 255, .1);
            }

        .bgm-btn.btn-primary:before {
            -webkit-transition: .3s ease-out;
            -o-transition: .3s ease-out;
            -moz-transition: .3s ease-out;
            transition: .3s ease-out;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            background: #202020;
            content: '';
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            -moz-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
            width: 100%;
            z-index: -1;
        }

    .bgm-btn.btn-labeled {
        height: 40px;
        height: 2.5rem;
        line-height: 1.75em;
        padding-right: 4.2em;
        position: relative;
        z-index: 1;
    }

        .bgm-btn.btn-labeled:after {
            background: #202020;
            content: '';
            height: 100%;
            position: absolute;
            right: 2.7em;
            top: 0;
            width: 1px;
        }

    .bgm-btn .btn-label {
        height: 40px;
        height: 2.5rem;
        line-height: 40px;
        line-height: 2.5rem;
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        width: 2.5rem;
    }

.bgm-carousel {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .bgm-carousel.owl-theme .owl-nav.disabled + .owl-dots, .bgm-carousel.owl-theme .owl-dots {
        margin-top: 48px;
        margin-top: 3rem;
    }

        .bgm-carousel.owl-theme .owl-dots .owl-dot:focus {
            outline: 0;
        }

            .bgm-carousel.owl-theme .owl-dots .owl-dot.active span, .bgm-carousel.owl-theme .owl-dots .owl-dot:hover span, .bgm-carousel.owl-theme .owl-dots .owl-dot:focus span {
                border-color: #2bb0ef;
            }

        .bgm-carousel.owl-theme .owl-dots .owl-dot span {
            background: transparent;
            border-radius: 0;
            border: 2px solid rgb(219, 219, 219);
            height: 9px;
            margin: 4px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            width: 9px;
        }

.bgm-iconbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    padding: 1rem;
}

    .bgm-iconbox .icon {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .bgm-iconbox .text {
        -webkit-box-flex: 4;
        -moz-box-flex: 4;
        -ms-flex: 4;
        flex: 4;
    }

    .bgm-iconbox .title {
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 2.5px;
        margin-bottom: 9.6px;
        margin-bottom: .6rem;
        padding: 0 0 0 30px;
        position: relative;
        text-transform: uppercase;
    }

        .bgm-iconbox .title:before {
            background: #202020;
            content: '';
            height: 2px;
            position: absolute;
            top: -moz-calc(50% - 2px);
            top: calc(50% - 2px);
            width: 20px;
            left: 0;
        }

    .bgm-iconbox p {
        font-size: 14px;
    }

    .bgm-iconbox.icon-right {
        text-align: right;
    }

        .bgm-iconbox.icon-right .title {
            padding: 0 30px 0 0;
        }

            .bgm-iconbox.icon-right .title:before {
                left: auto;
                right: 0;
            }

        .bgm-iconbox.icon-right .icon {
            -webkit-box-ordinal-group: 3;
            -moz-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
        }

        .bgm-iconbox.icon-right .text {
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
        }

        .bgm-iconbox.icon-right .bgm-icon {
            margin: 0 0 0 30px;
        }

.bgm-list-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 64px;
    margin-bottom: 4rem;
}

    .bgm-list-group.center {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .bgm-list-group .list-group-item {
        border-color: rgb(219, 219, 219);
        border-style: solid;
        border-width: 1px 0;
        margin-right: -5px;
        margin-top: 16px;
        margin-top: 1rem;
        padding: 0 9.6px;
        padding: 0 .6rem;
    }

        .bgm-list-group .list-group-item:first-child, .bgm-list-group .list-group-item:last-child {
            border-radius: 0;
        }

        .bgm-list-group .list-group-item:first-child {
            padding: 0 9.6px 0 22.4px;
            padding: 0 .6rem 0 1.4rem;
        }

        .bgm-list-group .list-group-item.active {
            background: transparent;
        }

            .bgm-list-group .list-group-item.active a:after {
                width: 100%;
            }

        .bgm-list-group .list-group-item a {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            color: #202020;
            display: block;
            font-size: 14px;
            line-height: 42px;
            padding: 0 14px 0;
            position: relative;
            text-transform: uppercase;
        }

            .bgm-list-group .list-group-item a:focus {
                outline: 0;
            }

            .bgm-list-group .list-group-item a:hover, .bgm-list-group .list-group-item a:focus {
                text-decoration: none;
            }

                .bgm-list-group .list-group-item a:hover:after, .bgm-list-group .list-group-item a:focus:after {
                    width: 100%;
                }

            .bgm-list-group .list-group-item a:after {
                -webkit-transition: .3s ease;
                -o-transition: .3s ease;
                -moz-transition: .3s ease;
                transition: .3s ease;
                -webkit-transition-property: all;
                -o-transition-property: all;
                -moz-transition-property: all;
                transition-property: all;
                bottom: -1px;
                background: #2bb0ef;
                content: '';
                display: block;
                height: 2px;
                left: 0;
                position: absolute;
                width: 0;
            }

.bgm-pricingbox {
    border: 1px solid rgb(219, 219, 219);
    padding-bottom: 52px;
    position: relative;
}

    .bgm-pricingbox.highlight {
        padding-bottom: 95px;
    }

        .bgm-pricingbox:hover .cta .btn, .bgm-pricingbox:focus .cta .btn, .bgm-pricingbox.highlight .cta .btn {
            bottom: -1px;
            opacity: 1;
            pointer-events: auto;
        }

            .bgm-pricingbox:hover .cta .btn:hover, .bgm-pricingbox:focus .cta .btn:hover, .bgm-pricingbox:hover .cta .btn:focus, .bgm-pricingbox:focus .cta .btn:focus, .bgm-pricingbox.highlight .cta .btn:hover, .bgm-pricingbox.highlight .cta .btn:focus {
                background: #202020;
            }

    .bgm-pricingbox .image-block img {
        max-width: 100%;
    }

    .bgm-pricingbox .text-block .wrap-title {
        margin-top: -16px;
        margin-top: -1rem;
        text-align: center;
    }

    .bgm-pricingbox .text-block .title {
        color: #ffffff;
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        margin: 0 auto;
        padding: 8px 48px;
        padding: .5rem 3rem;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }

        .bgm-pricingbox .text-block .title:before {
            border-style: solid;
            border-width: 10px 10px 0;
            border-color: #2bb0ef transparent transparent;
            bottom: -10px;
            content: "";
            height: 0;
            left: 50%;
            margin-left: -7px;
            position: absolute;
            width: 0;
        }

    .bgm-pricingbox .features {
        margin-bottom: 48px;
        margin-bottom: 3rem;
        padding: 48px 32px 0 48px;
        padding: 3rem 2rem 0 3rem;
    }

@media (min-width: 768px) {
    .bgm-pricingbox .features {
        padding: 48px 32px 0 80px;
        padding: 3rem 2rem 0 5rem;
    }
}

.bgm-pricingbox .features li {
    list-style: none;
    opacity: 0.85;
    padding: 8px 0 8px 30px;
    position: relative;
}

    .bgm-pricingbox .features li:before {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 512 512'%3e%3cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        content: '';
        height: 14px;
        left: 0;
        position: absolute;
        top: 14px;
        width: 14px;
    }

    .bgm-pricingbox .features li.item-x.item-x:before {
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea3e3e' viewBox='0 0 512 512'%3e%3cpath d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'/%3e%3c/svg%3e") no-repeat;
        margin-left: 2px;
    }

.bgm-pricingbox .features li {
    list-style: none;
    opacity: 0.85;
    padding: 8px 0 8px 30px;
    position: relative;
}

.bgm-pricingbox .price {
    font-family: sans-serif;
    text-align: center;
}

    .bgm-pricingbox .price .symbol {
        font-size: 22px;
        margin-right: 3.2px;
        margin-right: .2rem;
        position: relative;
        top: -24px;
        top: -1.5rem;
    }

    .bgm-pricingbox .price .price {
        font-size: 60px;
        font-weight: 700;
    }

.bgm-pricingbox .cta .btn {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all 0.3s ease-in-out;
    -o-transition-property: all 0.3s ease-in-out;
    -moz-transition-property: all 0.3s ease-in-out;
    transition-property: all 0.3s ease-in-out;
    border-radius: 0;
    bottom: 40px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    left: 0;
    letter-spacing: 1.5px;
    margin: 0 -1px;
    opacity: 0;
    padding: 10px 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
}

    .bgm-pricingbox .cta .btn:hover, .bgm-pricingbox .cta .btn:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.bgm-progress-block {
    margin-top: 30px;
    text-align: center;
}

    .bgm-progress-block .icon {
        -webkit-border-image: -webkit-gradient(linear, right bottom, left top, from(rgb(110, 110, 110)), to(rgb(110, 110, 110)));
        -webkit-border-image: -webkit-linear-gradient(right bottom, rgb(110, 110, 110), rgb(110, 110, 110));
        -moz-border-image: -moz- oldlinear-gradient(right bottom, rgb(110, 110, 110), rgb(110, 110, 110));
        -moz-border-image: linear-gradient(to left top, rgb(110, 110, 110), rgb(110, 110, 110));
        -o-border-image: -o-linear-gradient(right bottom, rgb(110, 110, 110), rgb(110, 110, 110));
        border-image: -webkit-gradient(linear, right bottom, left top, from(rgb(110, 110, 110)), to(rgb(110, 110, 110)));
        border-image: -moz- oldlinear-gradient(right bottom, rgb(110, 110, 110), rgb(110, 110, 110));
        border-image: linear-gradient(to left top, rgb(110, 110, 110), rgb(110, 110, 110));
        border-image-slice: 1;
        border-style: solid;
        border-width: 5px;
        display: inline-block;
        height: 130px;
        position: relative;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 130px;
    }

        .bgm-progress-block .icon:after {
            content: '';
            display: inline-block;
            position: relative;
        }

        .bgm-progress-block .icon:after {
            color: #202020;
            content: attr(data-percent) "%";
            display: inline-block;
            font-size: 30px;
            font-weight: 900;
            left: -10px;
            padding: 5px;
            top: -90px;
            -webkit-transform: rotate(-45deg) translateY(25%);
            -moz-transform: rotate(-45deg) translateY(25%);
            -ms-transform: rotate(-45deg) translateY(25%);
            -o-transform: rotate(-45deg) translateY(25%);
            transform: rotate(-45deg) translateY(25%);
            z-index: 1;
        }

        .bgm-progress-block .icon span {
            background: #f5f5f5;
            display: inline-block;
            height: 110px;
            position: relative;
            top: 5px;
            width: 110px;
        }

    .bgm-progress-block .content {
        margin: 8px 0 0;
        margin: .5rem 0 0;
        text-transform: uppercase;
    }

.bgm-quote {
    padding: 170px 30px 50px 30px;
    text-align: center;
}

@media (min-width: 1200px) {
    .bgm-quote {
        padding: 150px 80px 40px 80px;
    }
}

.bgm-quote .comment {
    font-size: 18px;
    font-style: italic;
    line-height: 30px;
    position: relative;
    top: -80px;
}

.bgm-quote .icon {
    border-radius: 50%;
    height: 70px;
    margin: 0 auto 40px;
    margin: 0 auto 2.5rem;
    text-align: center;
    width: 70px;
}

    .bgm-quote .icon i {
        color: #ffffff;
        font-size: 20px;
        line-height: 70px;
    }

.bgm-quote .subtitle {
    position: relative;
}

    .bgm-quote .subtitle .name {
        font-weight: 900;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

        .bgm-quote .subtitle .name:before {
            content: '';
            height: 30px;
            left: 50%;
            margin-left: -1px;
            position: absolute;
            top: -50px;
            width: 2px;
        }

    .bgm-quote .subtitle .position {
        font-size: 12px;
        font-style: italic;
        opacity: 0.85;
    }

.bgm-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 16px 0;
    margin: 1rem 0;
    padding: 0;
}

    .bgm-social li {
        padding-bottom: 0;
    }

        .bgm-social li + li {
            margin-left: 8px;
            margin-left: .5rem;
        }

    .bgm-social a {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        background: transparent;
        border-radius: 50%;
        border: 1px solid rgb(219, 219, 219);
        color: inherit;
        display: inline-block;
        font-size: 0;
        height: 50px;
        line-height: 50px;
        padding: 5.6px;
        padding: .35rem;
        text-align: center;
        width: 50px;
    }

        .bgm-social a:focus {
            outline: 0;
        }

            .bgm-social a:hover i, .bgm-social a:focus i {
                color: #ffffff;
            }

        .bgm-social a i {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            font-size: 18px;
        }

.bgm-title-section {
    padding: 80px 0;
    padding: 2rem 0;
    position: relative;
    text-align: center;
}

    .bgm-title-section .title {
        color: #202020;
        font-size: 25px;
        font-weight: 400;
        letter-spacing: 2.3px;
        line-height: 25px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }

        .bgm-title-section .title:after {
            background: url('/_ref/img/healthy/line.png');
            bottom: -39px;
            content: '';
            height: 12px;
            left: 50%;
            margin-left: -125.5px;
            position: absolute;
            width: 251px;
        }

        .bgm-title-section .title:before {
            color: #202020;
            content: attr(data-text);
            font-size: 80px;
            font-weight: 700;
            left: 50%;
            line-height: 80px;
            margin: 0 0 0 -25px;
            opacity: 0.1;
            position: absolute;
            text-algin: center;
            text-transform: uppercase;
            top: -27px;
        }

        .bgm-title-section .title span {
            font-weight: 900;
        }

    .bgm-title-section .subtitle {
        font-size: 14px;
        font-style: italic;
        margin: 64px 0 0;
        margin: 4rem 0 0;
        text-align: center;
    }

.bgm-widget {
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 36px 15px 42px 15px;
}

@media (min-width: 576px) {
    .bgm-widget {
        padding: 35px 30px 23px 40px;
    }
}

.bgm-widget .title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: normal;
    margin-bottom: 25px;
    padding-left: 30px;
    padding-top: 9px;
    position: relative;
    text-transform: uppercase;
}

    .bgm-widget .title:before {
        background: #ffffff;
        content: '';
        height: 2px;
        left: 0;
        position: absolute;
        top: 19px;
        width: 20px;
    }

.bgm-widget p {
    font-size: 14px;
    line-height: 28px;
    margin-top: 16px;
    margin-top: 1rem;
}

.bgm-about {
    padding-top: 80px;
    padding-top: 5rem;
}

    .bgm-about .title-main {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        font-size: 25px;
        letter-spacing: 3.5px;
        text-transform: uppercase;
        font-weight: 900;
    }

@media (min-width: 768px) {
    .bgm-about .title-main {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .bgm-about .title-main {
        font-size: 35px;
    }
}

@media (min-width: 1200px) {
    .bgm-about .title-main {
        font-size: 40px;
    }
}

.bgm-about .title-sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bgm-about .images-border {
    position: relative;
}

    .bgm-about .images-border img {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        max-width: 100%;
        padding-left: 48px;
        padding-left: 3rem;
        position: relative;
    }

    .bgm-about .images-border:before {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        border: 4px solid;
        bottom: 40px;
        content: '';
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        width: 95%;
    }

@media (min-width: 992px) {
    .bgm-about .images-border:before {
        width: 90%;
    }
}

.bgm-about .image-block {
    margin-top: 24px;
    margin-top: 1.5rem;
}

.bgm-about .text-block {
    margin-top: 24px;
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .bgm-about .text-block {
        padding-left: 64px;
        padding-left: 4rem;
    }
}

.bgm-about .text-block .title {
    margin-bottom: 80px;
    margin-bottom: 5rem;
    position: relative;
}

    .bgm-about .text-block .title:before, .bgm-about .text-block .title:after, .bgm-about .text-block .title-main:after {
        background: #202020;
        bottom: 0;
        content: '';
        height: 1px;
        left: 0;
        position: absolute;
        width: 48px;
        width: 3rem;
    }

    .bgm-about .text-block .title:before {
        bottom: -40px;
        bottom: -2.5rem;
    }

    .bgm-about .text-block .title:after {
        bottom: -36.8px;
        bottom: -2.3rem;
        width: 64px;
        width: 4rem;
    }

.bgm-about .text-block .title-main:after {
    bottom: -33.6px;
    bottom: -2.1rem;
    width: 96px;
    width: 6rem;
}

.bgm-about .text-block .content {
    font-size: 14px;
    margin-bottom: 32px;
    margin-bottom: 2rem;
}

.bgm-advantage .tab-block {
    background: #ffffff;
    -webkit-box-flex: 100%;
    -moz-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-top: 0;
    max-width: 100%;
    padding: 32px 9.6px 32px;
    padding: 2rem 0.6rem 2rem;
    position: relative;
    text-align: center;
    z-index: 10;
}

@media (min-width: 992px) {
    .bgm-advantage .tab-block {
        margin-top: 56px;
        margin-top: 3.5rem;
        max-width: 50%;
        padding: 96px 8px 72px;
        padding: 6rem .5rem 4.5rem;
    }
}

.bgm-advantage .tab-block .bgm-icon {
    background: #202020;
    border-color: #202020;
    color: #ffffff;
    float: left;
    height: 48px;
    line-height: 36px;
    margin-right: 26px;
    margin-top: 8px;
    overflow: hidden;
    padding: 2px;
    position: relative;
    text-align: center;
    width: 48px;
}

@media (min-width: 576px) {
    .bgm-advantage .tab-block .bgm-icon {
        margin-right: 36px;
    }
}

.bgm-advantage .tab-block .bgm-icon:before {
    background: transparent;
}

.bgm-advantage .tab-block .bgm-icon:after {
    content: attr(data-num);
    height: 36px;
    left: 50%;
    margin-left: -18px;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 36px;
}

.bgm-advantage .tab-block .bgm-icon i {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    font-size: 0;
    opacity: 0;
}

.bgm-advantage .tab-block .bgm-icon img {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    opacity: 0;
    width: 0;
}

.bgm-advantage .tab-block .bgm-icon span {
    display: block;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bgm-advantage .tab-block .bgm-icon.active {
    background: transparent;
    border-style: solid;
    border-width: 1px;
    font-size: 0;
    height: 64px;
    line-height: 64px;
    margin-top: 0;
    width: 64px;
}

    .bgm-advantage .tab-block .bgm-icon.active i {
        font-size: 28px;
        line-height: 56px;
        opacity: 1;
    }

    .bgm-advantage .tab-block .bgm-icon.active img {
        width: 28px;
    }

.bgm-advantage .tab-block .tab-nav {
    margin-bottom: 45px;
    margin-left: 36px;
    text-align: center;
}

.bgm-advantage .tab-block .tab-content .tab-pane .tab-title {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 32px;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
}

    .bgm-advantage .tab-block .tab-content .tab-pane .tab-title:after {
        background: #202020;
        content: '';
        height: 2px;
        left: 50%;
        margin-left: -15px;
        position: absolute;
        top: 46px;
        width: 30px;
    }

.bgm-advantage .tab-block .tab-content .tab-pane p {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 24px 48px;
    padding: 1.5rem 3rem;
}

.bgm-advantage .image-block {
    -webkit-box-flex: 100%;
    -moz-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-left: -15px;
    max-width: 100%;
}

@media (min-width: 992px) {
    .bgm-advantage .image-block {
        margin-left: -56px;
        max-width: 52%;
    }
}

.bgm-advantage .image-block img {
    max-width: 100%;
}

.bgm-advantage .bgm-icon {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    border: 1px solid;
    float: left;
    height: 65px;
    line-height: 65px;
    margin-right: 30px;
    padding: 2px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 65px;
}

    .bgm-advantage .bgm-icon:before {
        bottom: 3px;
        content: '';
        left: 3px;
        position: absolute;
        right: 3px;
        top: 3px;
        z-index: -1;
    }

    .bgm-advantage .bgm-icon.is-tag {
        border: none;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }

        .bgm-advantage .bgm-icon.is-tag:after {
            border-style: solid;
            border-width: 0 25px 20px 25px;
            content: '';
            left: 0;
            position: absolute;
            top: 100%;
        }

        .bgm-advantage .bgm-icon.is-tag, .bgm-advantage .bgm-icon.is-tag i, .bgm-advantage .bgm-icon.is-tag img {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            transform: none;
        }

    .bgm-advantage .bgm-icon i, .bgm-advantage .bgm-icon img {
        color: #ffffff;
        font-size: 25px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bgm-advantage .bgm-icon img {
        vertical-align: text-bottom;
        width: 28px;
    }

.bgm-appointment .bgm-container {
    max-width: 100%;
}

.bgm-appointment .image-block {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    margin: 0 -15px;
    padding: 32px;
    padding: 2rem;
}

@media (min-width: 1200px) {
    .bgm-appointment .image-block {
        padding: 100px 70px 80px;
    }
}

.bgm-appointment .carousel {
    background: #ffffff;
    background: rgba(255, 255, 255, .85);
}

.bgm-appointment .carousel-control-prev, .bgm-appointment .carousel-control-next {
    background: #202020;
    color: #ffffff;
    display: inline-block;
    font-size: 0;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    opacity: 1;
    outline: 0;
    text-align: center;
    top: 50%;
    width: 40px;
}

.bgm-appointment .carousel-control-prev-icon, .bgm-appointment .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M1.09,4 4.55,0.55 4,0 0,4 4,8 4.55,7.45z'/%3e%3c/svg%3e");
    margin: 8.8px 12.8px;
    margin: .55rem 0.8rem;
}

.bgm-appointment .carousel-control-prev {
    margin-left: -20px;
}

.bgm-appointment .carousel-control-next {
    margin-right: -20px;
}

.bgm-appointment .carousel-control-next-icon {
    -webkit-transform: translateX(-6px) rotate(180deg);
    -moz-transform: translateX(-6px) rotate(180deg);
    -ms-transform: translateX(-6px) rotate(180deg);
    -o-transform: translateX(-6px) rotate(180deg);
    transform: translateX(-6px) rotate(180deg);
}

.bgm-appointment .appointment-form {
    padding: 0 48px;
    padding: 0 3rem;
    text-align: center;
}

    .bgm-appointment .appointment-form input, .bgm-appointment .appointment-form select, .bgm-appointment .appointment-form textarea {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        background-color: transparent;
        border-color: transparent transparent #202020 transparent;
        border-width: 0 0 1px 0;
        font-size: 14px;
        padding: 12px 30px 12px 0;
        position: relative;
        vertical-align: text-top;
        width: 100%;
    }

        .bgm-appointment .appointment-form input:focus, .bgm-appointment .appointment-form select:focus, .bgm-appointment .appointment-form textarea:focus {
            outline: 0;
        }

            .bgm-appointment .appointment-form input:focus::-webkit-input-placeholder, .bgm-appointment .appointment-form select:focus::-webkit-input-placeholder, .bgm-appointment .appointment-form textarea:focus::-webkit-input-placeholder {
                font-size: 12px;
                opacity: .3;
            }

            .bgm-appointment .appointment-form input:focus::-ms-input-placeholder, .bgm-appointment .appointment-form select:focus::-ms-input-placeholder, .bgm-appointment .appointment-form textarea:focus::-ms-input-placeholder {
                font-size: 12px;
                opacity: .3;
            }

            .bgm-appointment .appointment-form input:focus::placeholder, .bgm-appointment .appointment-form select:focus::placeholder, .bgm-appointment .appointment-form textarea:focus::placeholder {
                font-size: 12px;
                opacity: .3;
            }

        .bgm-appointment .appointment-form input::-webkit-input-placeholder, .bgm-appointment .appointment-form select::-webkit-input-placeholder, .bgm-appointment .appointment-form textarea::-webkit-input-placeholder {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            color: #202020;
            font-style: italic;
            position: relative;
            top: 0;
        }

        .bgm-appointment .appointment-form input::-ms-input-placeholder, .bgm-appointment .appointment-form select::-ms-input-placeholder, .bgm-appointment .appointment-form textarea::-ms-input-placeholder {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            color: #202020;
            font-style: italic;
            position: relative;
            top: 0;
        }

        .bgm-appointment .appointment-form input::placeholder, .bgm-appointment .appointment-form select::placeholder, .bgm-appointment .appointment-form textarea::placeholder {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            color: #202020;
            font-style: italic;
            position: relative;
            top: 0;
        }

    .bgm-appointment .appointment-form .form-block {
        position: relative;
    }

        .bgm-appointment .appointment-form .form-block:before {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            background: #202020;
            bottom: -2px;
            content: "";
            height: 4px;
            position: absolute;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            width: 4px;
        }

        .bgm-appointment .appointment-form .form-block .error {
            color: #ea3e3e;
            font-size: 13px;
            font-style: italic;
            position: absolute;
            right: 0;
            top: 12.8px;
            top: .8rem;
            z-index: -1;
        }

    .bgm-appointment .appointment-form textarea {
        height: 10em;
    }

    .bgm-appointment .appointment-form button {
        width: auto;
    }

    .bgm-appointment .appointment-form .cta {
        margin: 64px 0;
        margin: 4rem 0;
    }

a {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
}

@media (min-width: 576px) {
    .bgm-container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .bgm-container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .bgm-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .bgm-container {
        max-width: 1200px;
    }
}

.bgm-contact .bgm-container {
    max-width: 100%;
}

.bgm-contact .image-block {
    height: 100%;
    margin: 0 -15px;
    position: relative;
}

    .bgm-contact .image-block > * {
        height: 60vh;
        width: 100%;
    }

@media (min-width: 992px) {
    .bgm-contact .image-block > * {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
    }
}

.bgm-contact .text-block input, .bgm-contact .text-block select, .bgm-contact .text-block textarea {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    background: transparent;
    border: 1px solid rgb(219, 219, 219);
    color: #202020;
    font-size: 14px;
    padding: 11.2px 16px;
    padding: .7rem 1rem;
    position: relative;
    vertical-align: text-top;
    width: 100%;
}

    .bgm-contact .text-block input:focus, .bgm-contact .text-block select:focus, .bgm-contact .text-block textarea:focus {
        outline: 0;
    }

    .bgm-contact .text-block input:hover, .bgm-contact .text-block select:hover, .bgm-contact .text-block textarea:hover, .bgm-contact .text-block input:focus, .bgm-contact .text-block select:focus, .bgm-contact .text-block textarea:focus {
        border-color: #2bb0ef;
    }

.bgm-contact .text-block .contact-form {
    margin-top: 16px;
    margin-top: 1rem;
    padding: 0 48px;
    padding: 0 3rem;
}

.bgm-contact .text-block .error {
    font-size: 14px;
    margin: 8px 0 0;
    margin: .5rem 0 0;
}

.bgm-contact .text-block textarea {
    height: 169.6px;
    height: 10.6rem;
}

    .bgm-contact .text-block textarea:focus {
        border-color: transparent transparent #2bb0ef;
    }

.bgm-contact .text-block .cta {
    margin: 64px 0;
    margin: 4rem 0;
    text-align: center;
}

.bgm-copyright {
    background: rgb(8, 8, 8);
    color: rgb(135, 135, 135);
    font-size: 15px;
    padding: 16px 0;
    padding: 1rem 0;
    text-align: center;
}

    .bgm-copyright a {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        color: #ffffff;
    }

.bgm-doctor .tab {
    position: relative;
}

.bgm-doctor .nav {
    left: 15px;
    position: absolute;
    top: 40px;
    z-index: 1;
}

@media (min-width: 576px) {
    .bgm-doctor .nav {
        left: 30px;
        top: 152px;
    }
}

.bgm-doctor .nav-pills .nav-link {
    border-radius: 0;
    border: 3px solid transparent;
    height: 70px;
    padding: 0;
    width: 70px;
}

    .bgm-doctor .nav-pills .nav-link + .nav-link {
        margin-top: 4.8px;
        margin-top: .3rem;
    }

    .bgm-doctor .nav-pills .nav-link img {
        max-width: 100%;
    }

    .bgm-doctor .nav-pills .nav-link.active, .bgm-doctor .nav-pills .show > .nav-link {
        background: transparent;
        border-color: #ffffff;
    }

.bgm-doctor .image-block img {
    max-width: 100%;
}

.bgm-doctor .text-block {
    background: #ffffff;
    margin-left: 0;
    padding: 64px 48px;
    padding: 4rem 3rem;
}

@media (min-width: 992px) {
    .bgm-doctor .text-block {
        margin: 72px 0 40px -64px;
        margin: 4.5rem 0 2.5rem -4rem;
        padding: 80px 64px;
        padding: 5rem 4rem;
    }
}

.bgm-doctor .text-block .title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1.3px;
    line-height: 30px;
    margin-bottom: 10px;
}

.bgm-doctor .text-block .position {
    font-style: italic;
    margin-bottom: 35px;
    opacity: 0.85;
    padding-left: 30px;
    position: relative;
}

    .bgm-doctor .text-block .position:before {
        background: #202020;
        content: '';
        height: 2px;
        left: 0;
        margin-bottom: 30px;
        position: absolute;
        top: 10px;
        width: 20px;
    }

.bgm-doctor .text-block p {
    font-size: 15px;
    margin-bottom: 32px;
    margin-bottom: 2rem;
}

.bgm-flats {
    padding-top: 32px;
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .bgm-flats {
        padding-top: 72px;
        padding-top: 4.5rem;
    }
}

.bgm-flats .flat {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 16px;
    padding: 2rem 1rem;
}

@media (min-width: 992px) {
    .bgm-flats .flat {
        padding: 0;
    }
}

.bgm-flats .icon {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.bgm-flats .text {
    -webkit-box-flex: 3;
    -moz-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
}

@media (min-width: 992px) {
    .bgm-flats .text {
        -webkit-box-flex: 2;
        -moz-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
    }
}

.bgm-flats .text .title {
    color: #202020;
    font-family: sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 5px;
}

.bgm-flats .text .subtitle {
    font-size: 13px;
    font-style: italic;
    opacity: 0.85;
    padding-left: 32px;
    position: relative;
}

    .bgm-flats .text .subtitle:before {
        background: #202020;
        content: '';
        height: 2px;
        left: 2px;
        position: absolute;
        top: 11px;
        width: 20px;
    }

.bgm-flats .text i {
    font-style: normal;
}

.bgm-flats .bgm-icon {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    border: 1px solid;
    float: left;
    height: 65px;
    line-height: 65px;
    margin-right: 30px;
    padding: 2px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 65px;
}

    .bgm-flats .bgm-icon:before {
        bottom: 3px;
        content: '';
        left: 3px;
        position: absolute;
        right: 3px;
        top: 3px;
        z-index: -1;
    }

    .bgm-flats .bgm-icon.is-tag {
        border: none;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }

        .bgm-flats .bgm-icon.is-tag:after {
            border-style: solid;
            border-width: 0 25px 20px 25px;
            content: '';
            left: 0;
            position: absolute;
            top: 100%;
        }

        .bgm-flats .bgm-icon.is-tag, .bgm-flats .bgm-icon.is-tag i, .bgm-flats .bgm-icon.is-tag img {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            transform: none;
        }

    .bgm-flats .bgm-icon i, .bgm-flats .bgm-icon img {
        color: #ffffff;
        font-size: 25px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bgm-flats .bgm-icon img {
        vertical-align: text-bottom;
        width: 100%;
    }

.bgm-footer {
    background: #202020;
    color: rgb(135, 135, 135);
    /*padding: 64px 0;*/
    padding: 0;
}

.bgm-footergroup .bottom {
    background-color: #101010;
    color: #858585;
    padding: 12px 0;
}

    .bgm-footergroup .bottom p {
        margin-bottom: 0;
    }

    .bgm-footergroup .bottom .copyright a {
        color: #fff;
    }

.bgm-widget img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .bgm-footer {
        /*padding: 80px 0 64px;*/
        padding: 0;
    }
}

.bgm-footer [class^='col-'] + [class^='col-'] .bgm-widget {
    margin-top: -1px;
    line-height: 30px;
}

@media (min-width: 992px) {
    .bgm-footer [class^='col-'] + [class^='col-'] .bgm-widget {
        margin-top: 0;
    }
}

.bgm-navbar {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    background: #ffffff;
    border: none;
    font-size: 14px;
    padding: 0;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .bgm-navbar {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.bgm-navbar :focus {
    outline: 0;
}

.bgm-navbar a {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: color;
    -o-transition-property: color;
    -moz-transition-property: color;
    transition-property: color;
    color: #ffffff;
}

@media (min-width: 1200px) {
    .bgm-navbar a {
        color: #202020;
    }
}

.bgm-navbar a:hover, .bgm-navbar a:focus {
    text-decoration: none;
}

.bgm-navbar .navbar-brand {
    margin: 12.8px 16px;
    margin: .8rem 1rem;
}

@media (min-width: 1200px) {
    .bgm-navbar .navbar-brand {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 32px;
        margin-left: 2rem;
    }
}

.bgm-navbar .navbar-brand img {
    max-height: 50px;
}

.bgm-navbar .navbar-collapse {
    background: #202020;
}

@media (min-width: 1200px) {
    .bgm-navbar .navbar-collapse {
        background: transparent;
        -webkit-box-flex: 8;
        -moz-box-flex: 8;
        -ms-flex-positive: 8;
        flex-grow: 8;
    }
}

.bgm-navbar .navbar-toggler {
    border: none;
}

    .bgm-navbar .navbar-toggler[aria-expanded="false"] .fa-bars {
        opacity: 1;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .bgm-navbar .navbar-toggler[aria-expanded="false"] .fa-times {
        opacity: 0;
    }

    .bgm-navbar .navbar-toggler[aria-expanded="true"] .fa-bars {
        opacity: 0;
    }

    .bgm-navbar .navbar-toggler[aria-expanded="true"] .fa-times {
        opacity: 1;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.bgm-navbar .navbar-toggler-icon {
    position: relative;
}

    .bgm-navbar .navbar-toggler-icon i {
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-property: all;
        -o-transition-property: all;
        -moz-transition-property: all;
        transition-property: all;
        font-size: 1.4em;
        position: absolute;
        right: 0;
        top: 0;
        width: 24px;
        width: 1.5rem;
    }

.bgm-navbar .navbar-nav {
    -webkit-box-flex: 10;
    -moz-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .bgm-navbar .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        padding-bottom: 0;
    }

@media (min-width: 1200px) {
    .bgm-navbar .navbar-nav .nav-item {
        padding: 0 3.2px;
        padding: 0 .2rem;
    }

    _:-ms-fullscreen, :root .bgm-navbar .navbar-nav .nav-item {
        padding: 0;
    }

    .bgm-navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu, .bgm-navbar .navbar-nav .nav-item.dropdown:focus .dropdown-menu {
        height: auto;
        opacity: 1;
        padding-top: 16px;
        padding-top: 1rem;
    }
}



@media (min-width: 1600px) {
    .bgm-navbar .navbar-nav .nav-item {
        padding: 0 24px;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1800px) {
    .bgm-navbar .navbar-nav .nav-item {
        padding: 16px 32px;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1200px) {
    .bgm-navbar .navbar-nav .nav-item.active .nav-link {
        color: #202020;
    }

        .bgm-navbar .navbar-nav .nav-item.active .nav-link:after, .bgm-navbar .navbar-nav .nav-item.active .nav-link:before {
            opacity: 1;
        }

        .bgm-navbar .navbar-nav .nav-item.active .nav-link:after {
            bottom: 0;
        }

        .bgm-navbar .navbar-nav .nav-item.active .nav-link:before {
            top: 0;
        }

        .bgm-navbar .navbar-nav .nav-item.active .nav-link:hover:after, .bgm-navbar .navbar-nav .nav-item.active .nav-link:focus:after {
            bottom: -5%;
        }

        .bgm-navbar .navbar-nav .nav-item.active .nav-link:hover:before, .bgm-navbar .navbar-nav .nav-item.active .nav-link:focus:before {
            top: -5%;
        }
}

.bgm-navbar .navbar-nav .nav-link {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: padding;
    -o-transition-property: padding;
    -moz-transition-property: padding;
    transition-property: padding;
    padding: 16px 32px;
    padding: 1rem 2rem;
    position: relative;
}

    .bgm-navbar .navbar-nav .nav-link:hover:after, .bgm-navbar .navbar-nav .nav-link:focus:after, .bgm-navbar .navbar-nav .nav-link:hover:before, .bgm-navbar .navbar-nav .nav-link:focus:before {
        opacity: 1;
    }

    .bgm-navbar .navbar-nav .nav-link:hover:after, .bgm-navbar .navbar-nav .nav-link:focus:after {
        bottom: 0;
    }

    .bgm-navbar .navbar-nav .nav-link:hover:before, .bgm-navbar .navbar-nav .nav-link:focus:before {
        top: 0;
    }

@media (min-width: 768px) {
    .bgm-navbar .navbar-nav .nav-link {
        padding: 16px 6px;
        padding: 1rem 0.3rem;
    }
}

@media (min-width: 992px) {
    .bgm-navbar .navbar-nav .nav-link {
        padding: 16px 12px;
        padding: 1rem 0.8rem;
    }
}

@media (min-width: 1200px) {
    .bgm-navbar .navbar-nav .nav-link {
        padding: 9.6px 16px;
        padding: .6rem 1rem;
    }

        .bgm-navbar .navbar-nav .nav-link:after, .bgm-navbar .navbar-nav .nav-link:before {
            border: none;
            content: '';
            display: block;
            height: 2px;
            left: 0;
            opacity: 0;
            position: absolute;
            width: 100%;
        }

        .bgm-navbar .navbar-nav .nav-link:after {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            bottom: -50%;
        }

        .bgm-navbar .navbar-nav .nav-link:before {
            -webkit-transition: .3s ease;
            -o-transition: .3s ease;
            -moz-transition: .3s ease;
            transition: .3s ease;
            -webkit-transition-property: all;
            -o-transition-property: all;
            -moz-transition-property: all;
            transition-property: all;
            top: -50%;
        }
}

.bgm-navbar .dropdown.show i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bgm-navbar .dropdown-menu {
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    background: rgb(41, 41, 41);
    border-radius: 0;
    border: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .bgm-navbar .dropdown-menu {
        background: #ffffff;
        display: block;
        height: 0;
        opacity: 0;
        overflow: hidden;
        width: 220px;
    }
}

.bgm-navbar .dropdown-item {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: border;
    -o-transition-property: border;
    -moz-transition-property: border;
    transition-property: border;
    padding: 16px 40px;
    padding: 1rem 2.5rem;
    white-space: normal;
}

@media (min-width: 1200px) {
    .bgm-navbar .dropdown-item {
        padding: 11.2px 24px;
        padding: .7rem 1.5rem;
        border-left: 0px solid transparent;
    }

        .bgm-navbar .dropdown-item:hover, .bgm-navbar .dropdown-item:focus {
            border-left-width: 8px;
            border-left-width: .5rem;
        }
}

.bgm-navbar .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.bgm-navbar .dropdown-item:hover, .bgm-navbar .dropdown-item:focus, .bgm-navbar .dropdown-item:active, .bgm-navbar .dropdown-item.active {
    background: transparent;
}

.bgm-navbar .dropdown-divider {
    border-top-color: rgba(255, 255, 255, .05);
    margin: 0;
}

.bgm-navbar .dropdown-toggle {
    position: relative;
}

    .bgm-navbar .dropdown-toggle + span {
        color: #ffffff;
        font-size: 19.2px;
        font-size: 1.2rem;
        line-height: rem;
        line-height: rem;
        padding: 12.8px 16px;
        padding: .8rem 1rem;
        position: absolute;
        right: 0;
        top: 0;
    }

@media (min-width: 1200px) {
    .bgm-navbar .dropdown-toggle + span {
        display: none;
    }
}

.bgm-navbar .dropdown-toggle + span i {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    -moz-transition-property: transform, -moz-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
}

.bgm-navbar .dropdown-toggle:after {
    display: none;
}

.bgm-navbar .language {
    color: #ffffff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1.5;
    -moz-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
    font-size: 0.9em;
    margin: 0;
    padding: 16px 32px;
    padding: 1rem 2rem;
}

@media (min-width: 1200px) {
    .bgm-navbar .language {
        color: #202020;
    }
}

.bgm-navbar .language li {
    display: inline-block;
    padding: 0;
    width:60px;
}

    .bgm-navbar .language li.current a {
        color: #ffffff;
    }

@media (min-width: 1200px) {
    .bgm-navbar .language li.current a {
        /*color: #202020;*/
    }
}

.bgm-navbar .language li a {
    /*color: rgb(161, 161, 161);*/
    white-space: nowrap;
}

.bgm-navbar .language li + li:before {
    content: '/';
    font-size: 1em;
    line-height: 16px;
    line-height: 1rem;
    margin: 0 12.8px;
    margin: 0 .8rem;
}

.bgm-progress {
    padding: 80px;
    padding: 5rem;
}

.bgm-services .bgm-container {
    max-width: 100%;
}

.bgm-services .bgm-title-section {
    padding-bottom: 32px;
    padding-bottom: 2rem;
}

.bgm-services .image-block {
    margin: 0 -15px;
}

@media (min-width: 576px) {
    .bgm-services .image-block {
        margin-right: 0;
    }
}

.bgm-services .image-block img {
    max-width: 100%;
}

@media (min-width: 768px) {
    .bgm-services .image-block img {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .bgm-services .image-block img {
        max-width: 100%;
    }
}

.bgm-services .bgm-icon {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    border: 1px solid;
    float: left;
    height: 65px;
    line-height: 65px;
    margin-right: 30px;
    padding: 2px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 65px;
}

    .bgm-services .bgm-icon:before {
        bottom: 3px;
        content: '';
        left: 3px;
        position: absolute;
        right: 3px;
        top: 3px;
        z-index: -1;
    }

    .bgm-services .bgm-icon.is-tag {
        border: none;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }

        .bgm-services .bgm-icon.is-tag:after {
            border-style: solid;
            border-width: 0 25px 20px 25px;
            content: '';
            left: 0;
            position: absolute;
            top: 100%;
        }

        .bgm-services .bgm-icon.is-tag, .bgm-services .bgm-icon.is-tag i, .bgm-services .bgm-icon.is-tag img {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            transform: none;
        }

    .bgm-services .bgm-icon i, .bgm-services .bgm-icon img {
        color: #ffffff;
        font-size: 25px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bgm-services .bgm-icon img {
        vertical-align: text-bottom;
        width: 28px;
    }
/* color
 */
.bgm-navbar a:hover, .bgm-navbar a:focus, .bgm-navbar .navbar-toggler-icon i, .bgm-navbar .navbar-nav .nav-item.active .nav-link, .bgm-navbar .dropdown-item.active, .bgm-list-group .list-group-item a:hover, .bgm-list-group .list-group-item a:focus, .bgm-list-group .list-group-item.active a, .bgm-article a:hover, .bgm-article a:focus, .bgm-copyright a:hover, .bgm-copyright a:focus {
    color: #2bb0ef;
}

.bgm-flats .bgm-icon, .bgm-services .bgm-icon, .bgm-advantage .bgm-icon.active, .bgm-appointment .appointment-form input:hover, .bgm-appointment .appointment-form select:hover, .bgm-appointment .appointment-form textarea:hover, .bgm-appointment .appointment-form input:focus, .bgm-appointment .appointment-form select:focus, .bgm-appointment .appointment-form textarea:focus {
    /*border-color: #2bb0ef;*/
}

.bgm-icon.is-tag:after {
    border-color: transparent #2bb0ef;
}

.bgm-icon:before, .bgm-advantage .tab-block .bgm-icon.active:before, .bgm-list-group .list-group-item a:after, .bgm-pricingbox .text-block .title, .bgm-pricingbox .cta .btn, .bgm-quote .icon, .bgm-quote .subtitle .name:before, .bgm-appointment .appointment-form .form-block:hover:before, .bgm-appointment .appointment-form .form-block:focus:before, .bgm-social a:hover, .bgm-social a:focus, .bgm-icon.is-tag {
    /*background: #2bb0ef;*/
}

.bgm-pricingbox .features li:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%232bb0ef' viewBox='0 0 512 512'%3e%3cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3e%3c/svg%3e");
}

.bgm-progress-block .icon[data-percent="1"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(1%, #2bb0ef), color-stop(1%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(1%, #2bb0ef), color-stop(1%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    border-image: linear-gradient(to left top, #2bb0ef 1%, rgb(110, 110, 110) 1%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="2"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(2%, #2bb0ef), color-stop(2%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(2%, #2bb0ef), color-stop(2%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    border-image: linear-gradient(to left top, #2bb0ef 2%, rgb(110, 110, 110) 2%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="3"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(3%, #2bb0ef), color-stop(3%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(3%, #2bb0ef), color-stop(3%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    border-image: linear-gradient(to left top, #2bb0ef 3%, rgb(110, 110, 110) 3%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="4"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(4%, #2bb0ef), color-stop(4%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(4%, #2bb0ef), color-stop(4%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    border-image: linear-gradient(to left top, #2bb0ef 4%, rgb(110, 110, 110) 4%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="5"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(5%, #2bb0ef), color-stop(5%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(5%, #2bb0ef), color-stop(5%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    border-image: linear-gradient(to left top, #2bb0ef 5%, rgb(110, 110, 110) 5%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="6"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(6%, #2bb0ef), color-stop(6%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(6%, #2bb0ef), color-stop(6%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    border-image: linear-gradient(to left top, #2bb0ef 6%, rgb(110, 110, 110) 6%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="7"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(7%, #2bb0ef), color-stop(7%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(7%, #2bb0ef), color-stop(7%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    border-image: linear-gradient(to left top, #2bb0ef 7%, rgb(110, 110, 110) 7%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="8"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(8%, #2bb0ef), color-stop(8%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(8%, #2bb0ef), color-stop(8%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    border-image: linear-gradient(to left top, #2bb0ef 8%, rgb(110, 110, 110) 8%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="9"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(9%, #2bb0ef), color-stop(9%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(9%, #2bb0ef), color-stop(9%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    border-image: linear-gradient(to left top, #2bb0ef 9%, rgb(110, 110, 110) 9%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="10"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(10%, #2bb0ef), color-stop(10%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(10%, #2bb0ef), color-stop(10%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    border-image: linear-gradient(to left top, #2bb0ef 10%, rgb(110, 110, 110) 10%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="11"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(11%, #2bb0ef), color-stop(11%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(11%, #2bb0ef), color-stop(11%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    border-image: linear-gradient(to left top, #2bb0ef 11%, rgb(110, 110, 110) 11%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="12"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(12%, #2bb0ef), color-stop(12%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(12%, #2bb0ef), color-stop(12%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    border-image: linear-gradient(to left top, #2bb0ef 12%, rgb(110, 110, 110) 12%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="13"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(13%, #2bb0ef), color-stop(13%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(13%, #2bb0ef), color-stop(13%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    border-image: linear-gradient(to left top, #2bb0ef 13%, rgb(110, 110, 110) 13%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="14"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(14%, #2bb0ef), color-stop(14%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(14%, #2bb0ef), color-stop(14%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    border-image: linear-gradient(to left top, #2bb0ef 14%, rgb(110, 110, 110) 14%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="15"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(15%, #2bb0ef), color-stop(15%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(15%, #2bb0ef), color-stop(15%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    border-image: linear-gradient(to left top, #2bb0ef 15%, rgb(110, 110, 110) 15%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="16"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(16%, #2bb0ef), color-stop(16%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(16%, #2bb0ef), color-stop(16%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    border-image: linear-gradient(to left top, #2bb0ef 16%, rgb(110, 110, 110) 16%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="17"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(17%, #2bb0ef), color-stop(17%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(17%, #2bb0ef), color-stop(17%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    border-image: linear-gradient(to left top, #2bb0ef 17%, rgb(110, 110, 110) 17%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="18"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(18%, #2bb0ef), color-stop(18%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(18%, #2bb0ef), color-stop(18%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    border-image: linear-gradient(to left top, #2bb0ef 18%, rgb(110, 110, 110) 18%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="19"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(19%, #2bb0ef), color-stop(19%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(19%, #2bb0ef), color-stop(19%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    border-image: linear-gradient(to left top, #2bb0ef 19%, rgb(110, 110, 110) 19%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="20"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(20%, #2bb0ef), color-stop(20%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(20%, #2bb0ef), color-stop(20%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    border-image: linear-gradient(to left top, #2bb0ef 20%, rgb(110, 110, 110) 20%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="21"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(21%, #2bb0ef), color-stop(21%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(21%, #2bb0ef), color-stop(21%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    border-image: linear-gradient(to left top, #2bb0ef 21%, rgb(110, 110, 110) 21%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="22"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(22%, #2bb0ef), color-stop(22%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(22%, #2bb0ef), color-stop(22%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    border-image: linear-gradient(to left top, #2bb0ef 22%, rgb(110, 110, 110) 22%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="23"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(23%, #2bb0ef), color-stop(23%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(23%, #2bb0ef), color-stop(23%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    border-image: linear-gradient(to left top, #2bb0ef 23%, rgb(110, 110, 110) 23%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="24"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(24%, #2bb0ef), color-stop(24%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(24%, #2bb0ef), color-stop(24%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    border-image: linear-gradient(to left top, #2bb0ef 24%, rgb(110, 110, 110) 24%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="25"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(25%, #2bb0ef), color-stop(25%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(25%, #2bb0ef), color-stop(25%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    border-image: linear-gradient(to left top, #2bb0ef 25%, rgb(110, 110, 110) 25%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="26"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(26%, #2bb0ef), color-stop(26%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(26%, #2bb0ef), color-stop(26%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    border-image: linear-gradient(to left top, #2bb0ef 26%, rgb(110, 110, 110) 26%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="27"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(27%, #2bb0ef), color-stop(27%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(27%, #2bb0ef), color-stop(27%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    border-image: linear-gradient(to left top, #2bb0ef 27%, rgb(110, 110, 110) 27%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="28"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(28%, #2bb0ef), color-stop(28%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(28%, #2bb0ef), color-stop(28%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    border-image: linear-gradient(to left top, #2bb0ef 28%, rgb(110, 110, 110) 28%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="29"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(29%, #2bb0ef), color-stop(29%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(29%, #2bb0ef), color-stop(29%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    border-image: linear-gradient(to left top, #2bb0ef 29%, rgb(110, 110, 110) 29%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="30"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(30%, #2bb0ef), color-stop(30%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(30%, #2bb0ef), color-stop(30%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    border-image: linear-gradient(to left top, #2bb0ef 30%, rgb(110, 110, 110) 30%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="31"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(31%, #2bb0ef), color-stop(31%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(31%, #2bb0ef), color-stop(31%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    border-image: linear-gradient(to left top, #2bb0ef 31%, rgb(110, 110, 110) 31%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="32"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(32%, #2bb0ef), color-stop(32%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(32%, #2bb0ef), color-stop(32%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    border-image: linear-gradient(to left top, #2bb0ef 32%, rgb(110, 110, 110) 32%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="33"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(33%, #2bb0ef), color-stop(33%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(33%, #2bb0ef), color-stop(33%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    border-image: linear-gradient(to left top, #2bb0ef 33%, rgb(110, 110, 110) 33%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="34"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(34%, #2bb0ef), color-stop(34%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(34%, #2bb0ef), color-stop(34%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    border-image: linear-gradient(to left top, #2bb0ef 34%, rgb(110, 110, 110) 34%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="35"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(35%, #2bb0ef), color-stop(35%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(35%, #2bb0ef), color-stop(35%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    border-image: linear-gradient(to left top, #2bb0ef 35%, rgb(110, 110, 110) 35%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="36"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(36%, #2bb0ef), color-stop(36%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(36%, #2bb0ef), color-stop(36%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    border-image: linear-gradient(to left top, #2bb0ef 36%, rgb(110, 110, 110) 36%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="37"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(37%, #2bb0ef), color-stop(37%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(37%, #2bb0ef), color-stop(37%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    border-image: linear-gradient(to left top, #2bb0ef 37%, rgb(110, 110, 110) 37%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="38"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(38%, #2bb0ef), color-stop(38%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(38%, #2bb0ef), color-stop(38%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    border-image: linear-gradient(to left top, #2bb0ef 38%, rgb(110, 110, 110) 38%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="39"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(39%, #2bb0ef), color-stop(39%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(39%, #2bb0ef), color-stop(39%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    border-image: linear-gradient(to left top, #2bb0ef 39%, rgb(110, 110, 110) 39%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="40"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(40%, #2bb0ef), color-stop(40%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(40%, #2bb0ef), color-stop(40%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    border-image: linear-gradient(to left top, #2bb0ef 40%, rgb(110, 110, 110) 40%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="41"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(41%, #2bb0ef), color-stop(41%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(41%, #2bb0ef), color-stop(41%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    border-image: linear-gradient(to left top, #2bb0ef 41%, rgb(110, 110, 110) 41%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="42"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(42%, #2bb0ef), color-stop(42%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(42%, #2bb0ef), color-stop(42%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    border-image: linear-gradient(to left top, #2bb0ef 42%, rgb(110, 110, 110) 42%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="43"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(43%, #2bb0ef), color-stop(43%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(43%, #2bb0ef), color-stop(43%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    border-image: linear-gradient(to left top, #2bb0ef 43%, rgb(110, 110, 110) 43%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="44"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(44%, #2bb0ef), color-stop(44%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(44%, #2bb0ef), color-stop(44%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    border-image: linear-gradient(to left top, #2bb0ef 44%, rgb(110, 110, 110) 44%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="45"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(45%, #2bb0ef), color-stop(45%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(45%, #2bb0ef), color-stop(45%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    border-image: linear-gradient(to left top, #2bb0ef 45%, rgb(110, 110, 110) 45%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="46"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(46%, #2bb0ef), color-stop(46%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(46%, #2bb0ef), color-stop(46%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    border-image: linear-gradient(to left top, #2bb0ef 46%, rgb(110, 110, 110) 46%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="47"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(47%, #2bb0ef), color-stop(47%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(47%, #2bb0ef), color-stop(47%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    border-image: linear-gradient(to left top, #2bb0ef 47%, rgb(110, 110, 110) 47%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="48"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(48%, #2bb0ef), color-stop(48%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(48%, #2bb0ef), color-stop(48%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    border-image: linear-gradient(to left top, #2bb0ef 48%, rgb(110, 110, 110) 48%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="49"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(49%, #2bb0ef), color-stop(49%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(49%, #2bb0ef), color-stop(49%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    border-image: linear-gradient(to left top, #2bb0ef 49%, rgb(110, 110, 110) 49%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="50"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #2bb0ef), color-stop(50%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #2bb0ef), color-stop(50%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    border-image: linear-gradient(to left top, #2bb0ef 50%, rgb(110, 110, 110) 50%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="51"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(51%, #2bb0ef), color-stop(51%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(51%, #2bb0ef), color-stop(51%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    border-image: linear-gradient(to left top, #2bb0ef 51%, rgb(110, 110, 110) 51%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="52"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(52%, #2bb0ef), color-stop(52%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(52%, #2bb0ef), color-stop(52%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    border-image: linear-gradient(to left top, #2bb0ef 52%, rgb(110, 110, 110) 52%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="53"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(53%, #2bb0ef), color-stop(53%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(53%, #2bb0ef), color-stop(53%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    border-image: linear-gradient(to left top, #2bb0ef 53%, rgb(110, 110, 110) 53%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="54"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(54%, #2bb0ef), color-stop(54%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(54%, #2bb0ef), color-stop(54%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    border-image: linear-gradient(to left top, #2bb0ef 54%, rgb(110, 110, 110) 54%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="55"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(55%, #2bb0ef), color-stop(55%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(55%, #2bb0ef), color-stop(55%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    border-image: linear-gradient(to left top, #2bb0ef 55%, rgb(110, 110, 110) 55%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="56"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(56%, #2bb0ef), color-stop(56%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(56%, #2bb0ef), color-stop(56%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    border-image: linear-gradient(to left top, #2bb0ef 56%, rgb(110, 110, 110) 56%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="57"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(57%, #2bb0ef), color-stop(57%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(57%, #2bb0ef), color-stop(57%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    border-image: linear-gradient(to left top, #2bb0ef 57%, rgb(110, 110, 110) 57%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="58"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(58%, #2bb0ef), color-stop(58%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(58%, #2bb0ef), color-stop(58%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    border-image: linear-gradient(to left top, #2bb0ef 58%, rgb(110, 110, 110) 58%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="59"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(59%, #2bb0ef), color-stop(59%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(59%, #2bb0ef), color-stop(59%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    border-image: linear-gradient(to left top, #2bb0ef 59%, rgb(110, 110, 110) 59%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="60"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(60%, #2bb0ef), color-stop(60%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(60%, #2bb0ef), color-stop(60%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    border-image: linear-gradient(to left top, #2bb0ef 60%, rgb(110, 110, 110) 60%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="61"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(61%, #2bb0ef), color-stop(61%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(61%, #2bb0ef), color-stop(61%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    border-image: linear-gradient(to left top, #2bb0ef 61%, rgb(110, 110, 110) 61%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="62"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(62%, #2bb0ef), color-stop(62%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(62%, #2bb0ef), color-stop(62%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    border-image: linear-gradient(to left top, #2bb0ef 62%, rgb(110, 110, 110) 62%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="63"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(63%, #2bb0ef), color-stop(63%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(63%, #2bb0ef), color-stop(63%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    border-image: linear-gradient(to left top, #2bb0ef 63%, rgb(110, 110, 110) 63%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="64"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(64%, #2bb0ef), color-stop(64%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(64%, #2bb0ef), color-stop(64%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    border-image: linear-gradient(to left top, #2bb0ef 64%, rgb(110, 110, 110) 64%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="65"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(65%, #2bb0ef), color-stop(65%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(65%, #2bb0ef), color-stop(65%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    border-image: linear-gradient(to left top, #2bb0ef 65%, rgb(110, 110, 110) 65%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="66"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(66%, #2bb0ef), color-stop(66%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(66%, #2bb0ef), color-stop(66%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    border-image: linear-gradient(to left top, #2bb0ef 66%, rgb(110, 110, 110) 66%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="67"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(67%, #2bb0ef), color-stop(67%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(67%, #2bb0ef), color-stop(67%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    border-image: linear-gradient(to left top, #2bb0ef 67%, rgb(110, 110, 110) 67%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="68"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(68%, #2bb0ef), color-stop(68%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(68%, #2bb0ef), color-stop(68%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    border-image: linear-gradient(to left top, #2bb0ef 68%, rgb(110, 110, 110) 68%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="69"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(69%, #2bb0ef), color-stop(69%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(69%, #2bb0ef), color-stop(69%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    border-image: linear-gradient(to left top, #2bb0ef 69%, rgb(110, 110, 110) 69%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="70"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(70%, #2bb0ef), color-stop(70%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(70%, #2bb0ef), color-stop(70%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    border-image: linear-gradient(to left top, #2bb0ef 70%, rgb(110, 110, 110) 70%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="71"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(71%, #2bb0ef), color-stop(71%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(71%, #2bb0ef), color-stop(71%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    border-image: linear-gradient(to left top, #2bb0ef 71%, rgb(110, 110, 110) 71%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="72"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(72%, #2bb0ef), color-stop(72%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(72%, #2bb0ef), color-stop(72%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    border-image: linear-gradient(to left top, #2bb0ef 72%, rgb(110, 110, 110) 72%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="73"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(73%, #2bb0ef), color-stop(73%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(73%, #2bb0ef), color-stop(73%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    border-image: linear-gradient(to left top, #2bb0ef 73%, rgb(110, 110, 110) 73%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="74"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(74%, #2bb0ef), color-stop(74%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(74%, #2bb0ef), color-stop(74%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    border-image: linear-gradient(to left top, #2bb0ef 74%, rgb(110, 110, 110) 74%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="75"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(75%, #2bb0ef), color-stop(75%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(75%, #2bb0ef), color-stop(75%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    border-image: linear-gradient(to left top, #2bb0ef 75%, rgb(110, 110, 110) 75%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="76"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(76%, #2bb0ef), color-stop(76%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(76%, #2bb0ef), color-stop(76%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    border-image: linear-gradient(to left top, #2bb0ef 76%, rgb(110, 110, 110) 76%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="77"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(77%, #2bb0ef), color-stop(77%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(77%, #2bb0ef), color-stop(77%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    border-image: linear-gradient(to left top, #2bb0ef 77%, rgb(110, 110, 110) 77%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="78"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(78%, #2bb0ef), color-stop(78%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(78%, #2bb0ef), color-stop(78%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    border-image: linear-gradient(to left top, #2bb0ef 78%, rgb(110, 110, 110) 78%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="79"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(79%, #2bb0ef), color-stop(79%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(79%, #2bb0ef), color-stop(79%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    border-image: linear-gradient(to left top, #2bb0ef 79%, rgb(110, 110, 110) 79%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="80"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(80%, #2bb0ef), color-stop(80%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(80%, #2bb0ef), color-stop(80%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    border-image: linear-gradient(to left top, #2bb0ef 80%, rgb(110, 110, 110) 80%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="81"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(81%, #2bb0ef), color-stop(81%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(81%, #2bb0ef), color-stop(81%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    border-image: linear-gradient(to left top, #2bb0ef 81%, rgb(110, 110, 110) 81%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="82"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(82%, #2bb0ef), color-stop(82%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(82%, #2bb0ef), color-stop(82%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    border-image: linear-gradient(to left top, #2bb0ef 82%, rgb(110, 110, 110) 82%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="83"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(83%, #2bb0ef), color-stop(83%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(83%, #2bb0ef), color-stop(83%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    border-image: linear-gradient(to left top, #2bb0ef 83%, rgb(110, 110, 110) 83%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="84"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(84%, #2bb0ef), color-stop(84%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(84%, #2bb0ef), color-stop(84%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    border-image: linear-gradient(to left top, #2bb0ef 84%, rgb(110, 110, 110) 84%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="85"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(85%, #2bb0ef), color-stop(85%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(85%, #2bb0ef), color-stop(85%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    border-image: linear-gradient(to left top, #2bb0ef 85%, rgb(110, 110, 110) 85%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="86"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(86%, #2bb0ef), color-stop(86%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(86%, #2bb0ef), color-stop(86%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    border-image: linear-gradient(to left top, #2bb0ef 86%, rgb(110, 110, 110) 86%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="87"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(87%, #2bb0ef), color-stop(87%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(87%, #2bb0ef), color-stop(87%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    border-image: linear-gradient(to left top, #2bb0ef 87%, rgb(110, 110, 110) 87%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="88"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(88%, #2bb0ef), color-stop(88%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(88%, #2bb0ef), color-stop(88%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    border-image: linear-gradient(to left top, #2bb0ef 88%, rgb(110, 110, 110) 88%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="89"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(89%, #2bb0ef), color-stop(89%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(89%, #2bb0ef), color-stop(89%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    border-image: linear-gradient(to left top, #2bb0ef 89%, rgb(110, 110, 110) 89%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="90"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(90%, #2bb0ef), color-stop(90%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(90%, #2bb0ef), color-stop(90%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    border-image: linear-gradient(to left top, #2bb0ef 90%, rgb(110, 110, 110) 90%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="91"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(91%, #2bb0ef), color-stop(91%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(91%, #2bb0ef), color-stop(91%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    border-image: linear-gradient(to left top, #2bb0ef 91%, rgb(110, 110, 110) 91%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="92"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(92%, #2bb0ef), color-stop(92%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(92%, #2bb0ef), color-stop(92%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    border-image: linear-gradient(to left top, #2bb0ef 92%, rgb(110, 110, 110) 92%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="93"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(93%, #2bb0ef), color-stop(93%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(93%, #2bb0ef), color-stop(93%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    border-image: linear-gradient(to left top, #2bb0ef 93%, rgb(110, 110, 110) 93%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="94"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(94%, #2bb0ef), color-stop(94%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(94%, #2bb0ef), color-stop(94%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    border-image: linear-gradient(to left top, #2bb0ef 94%, rgb(110, 110, 110) 94%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="95"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(95%, #2bb0ef), color-stop(95%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(95%, #2bb0ef), color-stop(95%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    border-image: linear-gradient(to left top, #2bb0ef 95%, rgb(110, 110, 110) 95%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="96"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(96%, #2bb0ef), color-stop(96%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(96%, #2bb0ef), color-stop(96%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    border-image: linear-gradient(to left top, #2bb0ef 96%, rgb(110, 110, 110) 96%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="97"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(97%, #2bb0ef), color-stop(97%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(97%, #2bb0ef), color-stop(97%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    border-image: linear-gradient(to left top, #2bb0ef 97%, rgb(110, 110, 110) 97%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="98"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(98%, #2bb0ef), color-stop(98%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(98%, #2bb0ef), color-stop(98%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    border-image: linear-gradient(to left top, #2bb0ef 98%, rgb(110, 110, 110) 98%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="99"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(99%, #2bb0ef), color-stop(99%, rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(99%, #2bb0ef), color-stop(99%, rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    border-image: linear-gradient(to left top, #2bb0ef 99%, rgb(110, 110, 110) 99%);
    border-image-slice: 1;
}

.bgm-progress-block .icon[data-percent="100"] {
    -webkit-border-image: -webkit-gradient(linear, right bottom, left top, color-stop(100%, #2bb0ef), to(rgb(110, 110, 110)));
    -webkit-border-image: -webkit-linear-gradient(right bottom, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    -moz-border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    -moz-border-image: linear-gradient(to left top, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    -o-border-image: -o-linear-gradient(right bottom, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    border-image: -webkit-gradient(linear, right bottom, left top, color-stop(100%, #2bb0ef), to(rgb(110, 110, 110)));
    border-image: -moz- oldlinear-gradient(right bottom, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    border-image: linear-gradient(to left top, #2bb0ef 100%, rgb(110, 110, 110) 100%);
    border-image-slice: 1;
}

@media (min-width: 1200px) {
    .bgm-navbar .navbar-nav .nav-link:after, .bgm-navbar .navbar-nav .nav-link:before {
        background: #2bb0ef;
    }

    .bgm-navbar .dropdown-item + .dropdown-item {
        /*border-top-color: #2bb0ef;*/
    }
}
/*# sourceMappingURL=healthy.css.map */
.bgm-blog {
    padding-top: 4rem;
}

    .bgm-blog .cover {
        box-shadow: #d6d6d6 5px 5px 5px;
    }

        .bgm-blog .cover img {
            width: 100%;
        }

    .bgm-blog .title {
        font-size: 36px;
    }

    .bgm-blog .info {
        color: #b3b3b3;
        border-bottom: 1px #bbbbbb dotted;
        padding: 10px 0px;
        font-size: 12px;
    }

    .bgm-blog .content {
        color: gray;
        padding: 20px 0px;
    }

    .bgm-blog .row {
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .bgm-footer {
        padding: 0;
    }

        .bgm-footer .bgm-widget {
            padding: 5px 15px;
        }
}
