@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fade-in2 {

    0%,
    to {
        opacity: 0
    }

    70%,
    85% {
        opacity: 1
    }
}

@keyframes fade-in2 {

    0%,
    to {
        opacity: 0
    }

    70%,
    85% {
        opacity: 1
    }
}

@-webkit-keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

@keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

@-webkit-keyframes swing-in-right-fwd {
    0% {
        -webkit-transform: rotateY(-100deg);
        transform: rotateY(-100deg);
        -webkit-transform-origin: right;
        transform-origin: right;
        opacity: 0
    }

    to {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-transform-origin: right;
        transform-origin: right;
        opacity: 1
    }
}

@keyframes swing-in-right-fwd {
    0% {
        -webkit-transform: rotateY(-100deg);
        transform: rotateY(-100deg);
        -webkit-transform-origin: right;
        transform-origin: right;
        opacity: 0
    }

    to {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-transform-origin: right;
        transform-origin: right;
        opacity: 1
    }
}

@-webkit-keyframes swing-in-bottom-fwd {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 0
    }

    to {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 1
    }
}

@keyframes swing-in-bottom-fwd {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 0
    }

    to {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 1
    }
}

@-webkit-keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1
    }
}

@keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1
    }
}

@-webkit-keyframes heartbeat {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    20% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    30% {
        -webkit-transform: scale(.91, .95);
        transform: scale(.91, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    35% {
        -webkit-transform: scale(.98, .9);
        transform: scale(.98, .9);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: scale(.87, .3);
        transform: scale(.87, .3);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    20% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    30% {
        -webkit-transform: scale(.91, .95);
        transform: scale(.91, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    35% {
        -webkit-transform: scale(.98, .9);
        transform: scale(.98, .9);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: scale(.87, .3);
        transform: scale(.87, .3);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@-webkit-keyframes rustle-left {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(-1%, -1%) rotate(2deg);
        transform: translate(-1%, -1%) rotate(2deg)
    }

    80% {
        -webkit-transform: translate(1%, 1%) rotate(-2deg);
        transform: translate(1%, 1%) rotate(-2deg)
    }
}

@keyframes rustle-left {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(-1%, -1%) rotate(2deg);
        transform: translate(-1%, -1%) rotate(2deg)
    }

    80% {
        -webkit-transform: translate(1%, 1%) rotate(-2deg);
        transform: translate(1%, 1%) rotate(-2deg)
    }
}

@-webkit-keyframes rustle-x-right {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(4px, -4px) rotate(-3deg);
        transform: translate(4px, -4px) rotate(-3deg)
    }

    80% {
        -webkit-transform: translate(4px, 4px) rotate(3deg);
        transform: translate(4px, 4px) rotate(3deg)
    }
}

@keyframes rustle-x-right {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(4px, -4px) rotate(-3deg);
        transform: translate(4px, -4px) rotate(-3deg)
    }

    80% {
        -webkit-transform: translate(4px, 4px) rotate(3deg);
        transform: translate(4px, 4px) rotate(3deg)
    }
}

@-webkit-keyframes rustle-x-left {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(4px, 4px) rotate(-3deg);
        transform: translate(4px, 4px) rotate(-3deg)
    }

    80% {
        -webkit-transform: translate(4px, -4px) rotate(3deg);
        transform: translate(4px, -4px) rotate(3deg)
    }
}

@keyframes rustle-x-left {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(4px, 4px) rotate(-3deg);
        transform: translate(4px, 4px) rotate(-3deg)
    }

    80% {
        -webkit-transform: translate(4px, -4px) rotate(3deg);
        transform: translate(4px, -4px) rotate(3deg)
    }
}

@-webkit-keyframes rustle-x-left2 {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(112deg);
        transform: translate(0, 0) rotate(112deg)
    }

    20% {
        -webkit-transform: translate(-4px, 4px) rotate(108deg);
        transform: translate(-4px, 4px) rotate(108deg)
    }

    80% {
        -webkit-transform: translate(-4px, -4px) rotate(116deg);
        transform: translate(-4px, -4px) rotate(116deg)
    }
}

@keyframes rustle-x-left2 {

    0%,
    50%,
    to {
        -webkit-transform: translate(0, 0) rotate(112deg);
        transform: translate(0, 0) rotate(112deg)
    }

    20% {
        -webkit-transform: translate(-4px, 4px) rotate(108deg);
        transform: translate(-4px, 4px) rotate(108deg)
    }

    80% {
        -webkit-transform: translate(-4px, -4px) rotate(116deg);
        transform: translate(-4px, -4px) rotate(116deg)
    }
}

@-webkit-keyframes flicker {

    0%,
    35%,
    85%,
    to {
        opacity: .16
    }

    15%,
    55% {
        opacity: .26
    }
}

@keyframes flicker {

    0%,
    35%,
    85%,
    to {
        opacity: .16
    }

    15%,
    55% {
        opacity: .26
    }
}

@-webkit-keyframes flicker2 {

    0%,
    35%,
    85%,
    to {
        opacity: 1
    }

    15%,
    55% {
        opacity: .6
    }
}

@keyframes flicker2 {

    0%,
    35%,
    85%,
    to {
        opacity: 1
    }

    15%,
    55% {
        opacity: .6
    }
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff
}

a {
    text-decoration: none
}

.b-h1,
.b-h2,
.b-p {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #303778
}

.b-h2,
.b-p {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 8px
}

.b-p {
    font-weight: 400;
    font-size: 16px;
    color: #717a90;
    margin-bottom: 16px
}

.b-blod {
    color: #303778;
    font-weight: 700
}

.b-green {
    color: #fff;
    background-color: #00c27c
}

.b-logo {
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #303778;
    display: block
}

.b-nav {
    display: none;
    margin-right: 4%
}

.b-nav-button {
    display: inline-block;
    font-size: 16px;
    line-height: 150%;
    color: #717a90;
    margin-right: 24px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.b-nav-button:last-of-type {
    margin-right: 0
}

.b-nav-button:active,
.b-nav-button:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.b-online {
    display: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #303778
}

.b-online::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    width: 8px;
    height: 8px;
    background: #00c27c;
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 4px rgba(0, 194, 124, .24);
    box-shadow: 0 4px 4px rgba(0, 194, 124, .24)
}

.b-table {
    display: table;
    width: 100%
}

.b-table-cell {
    display: table-cell;
    vertical-align: middle
}

.b-table-cell:last-of-type {
    text-align: right
}

.b-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative
}

.b-button {
    max-width: 192px;
    text-align: center;
    display: block;
    background: #00c27c;
    -webkit-box-shadow: 0 8px 16px rgba(0, 194, 124, .24);
    box-shadow: 0 8px 16px rgba(0, 194, 124, .24);
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    padding: 16px;
    margin: 0 auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.b-button:active,
.b-button:hover {
    background: #00af70;
    -webkit-box-shadow: 0 4px 8px rgba(0, 194, 124, .24);
    box-shadow: 0 4px 8px rgba(0, 194, 124, .24)
}

.b-header {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px
}

.b-header-p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #717a90;
    margin-top: 8px
}

.b-header-img {
    max-width: 100%;
    height: 250px;
}

.b-header-background1 {
    width: 304px;
    height: 304px;
    left: calc(50% - 152px);
    top: 12px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
    position: absolute;
    background: -o-linear-gradient(135deg, #accbee 0, #e7f0fd 100%);
    background: linear-gradient(315deg, #accbee 0, #e7f0fd 100%)
}

.b-header-background1 .b-img-1 {
    width: 207px;
    position: absolute;
    z-index: 0;
    top: 60px;
    left: 60px;
    opacity: .16
}

.b-header-background1 .b-img-2 {
    width: 131px;
    position: absolute;
    z-index: 1;
    top: 86px;
    left: 86px
}

.b-header-background2 {
    display: none;
    width: 300px;
    height: 300px;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0
}

.b-header-background2 .b-img-1 {
    position: absolute;
    z-index: 0;
    top: -90px;
    right: 13px
}

.b-header-background2 .b-img-2 {
    position: absolute;
    z-index: 1;
    top: -59px;
    right: -153px
}

.b-header-button {
    margin-top: 40px
}

.b-header-top {
    background-color: #fff;
    padding: 16px 0;
    text-align: center;
    -webkit-box-shadow: 0 24px 80px rgba(48, 55, 120, .08);
    box-shadow: 0 24px 80px rgba(48, 55, 120, .08);
    position: fixed;
    height: 80px;
    width: 100%;
    z-index: 20
}

.b-header-middle {
    margin-top: 167px;
    position: relative;
    z-index: 10;
    text-align: center
}

.b-header-bottom {
    position: relative;
    z-index: 10;
    margin-top: 80px
}

.b-header-sliders {
    width: 304px;
    height: 144px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-left: calc(50% - 152px);
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .08);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .08);
    position: relative
}

.b-header-sliders .b-slider {
    display: none
}

.b-header-sliders .b-visible {
    display: block
}

.b-header-sliders__img,
.b-header-sliders__text {
    display: inline-block;
    vertical-align: top;
    width: 144px
}

.b-header-sliders__img {
    height: 144px;
    margin-right: 11px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px
}

.b-header-sliders__text {
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #303778
}

.b-header-sliders .b-btnbox {
    position: absolute;
    bottom: 15px;
    left: 160px
}

.b-header-sliders .b-btnbox .b-btn {
    padding: 5px 0;
    display: inline-block;
    margin-right: 4px;
    cursor: pointer;
    width: 16px
}

.b-header-sliders .b-btnbox .b-btn-item {
    width: 100%;
    height: 4px;
    background: #f1f4fa;
    border-radius: 2px
}

.b-header-sliders .b-btnbox .b-active .b-btn-item {
    background: #00c27c
}

.b-changes {
    opacity: 0
}

.b-changes-left {
    text-align: center
}

.b-changes-right {
    width: 304px;
    margin-left: calc(50% - 152px)
}

.b-changes-right__img {
    max-width: 100%;
    margin-top: 10.5%
}

.b-changes-right .b-slider {
    position: relative;
    display: none
}

.b-changes-right .b-slider-img1 {
    width: 21%;
    top: 0;
    left: 15.5%
}

.b-changes-right .b-slider-img1,
.b-changes-right .b-slider-img2,
.b-changes-right .b-slider-img3,
.b-changes-right .b-slider-img4 {
    position: absolute;
    -webkit-box-shadow: 24px 40px 40px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 40px rgba(48, 55, 120, .16);
    border-radius: 50%
}

.b-changes-right .b-slider-img2 {
    width: 41.5%;
    top: 0;
    right: 0
}

.b-changes-right .b-slider-img3,
.b-changes-right .b-slider-img4 {
    bottom: 20%
}

.b-changes-right .b-slider-img3 {
    width: 52.5%;
    left: 0
}

.b-changes-right .b-slider-img4 {
    width: 30.5%;
    right: 0
}

.b-changes-right .b-visible {
    display: block;
    cursor: pointer
}

.b-changes-btnbox__rangebox {
    max-width: 640px;
    margin: 0 auto
}

.b-changes-btnbox .b-range-input {
    position: relative;
    z-index: 10
}

.b-changes-btnbox .b-range-box {
    height: 0;
    padding: 0 22% 0 3%;
    position: relative;
    z-index: 1
}

.b-changes-btnbox .b-range-boxslider {
    position: relative;
    width: 25%;
    top: -60px
}

.b-changes-btnbox .b-range-boxslider__slider {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 32px
}

.b-changes-btnbox__range {
    background: -o-linear-gradient(top, rgba(47, 47, 47, 0) 0, rgba(227, 230, 235, 0) 36px, #f1f4fa 36px, #f1f4fa 40px);
    background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0, rgba(227, 230, 235, 0) 36px, #f1f4fa 36px, #f1f4fa 40px);
    height: 40px;
    border-radius: 2px;
    width: 100%;
    outline: 0;
    border: 0;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 0
}

.b-changes-btnbox__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 40px;
    background: url(../img/range_web.png) bottom center no-repeat;
    cursor: pointer;
    width: 25%
}

.b-changes-btnbox__range::-moz-range-track {
    border-radius: 2px
}

.b-changes-btnbox__range::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    border-radius: 2px;
    background: url(../img/range_web.png) bottom center no-repeat;
    cursor: pointer;
    border: 0;
    width: 25%
}

.b-changes-btnbox__range::-ms-fill-lower,
.b-changes-btnbox__range::-ms-fill-upper {
    background: 0 0
}

.b-changes-btnbox__range::-ms-track {
    border-radius: 2px
}

.b-changes-btnbox__range::-ms-thumb {
    position: relative;
    bottom: 18px;
    height: 40px;
    background: url(../img/range_web.png) bottom center no-repeat;
    cursor: pointer;
    width: 80px
}

.b-changes-btnbox__text {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    width: 23%;
    font-size: 12px;
    vertical-align: middle
}

.b-changes-btnbox .b-view {
    display: inline-block;
    color: #303778;
    font-weight: 700
}

.b-effect {
    text-align: center;
    padding: 84px 0 64px;
    background: #f1f4fa
}

.b-effect-item {
    opacity: 0
}

.b-effect-img {
    -webkit-box-shadow: 24px 40px 40px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 40px rgba(48, 55, 120, .16);
    border-radius: 50%;
    overflow: hidden;
    width: 144px;
    margin-bottom: 16px;
    margin-top: 24px
}

.b-effect-background1,
.b-effect-background2 {
    opacity: 0;
    position: absolute;
    width: 64px;
    height: 64px
}

.b-effect-background1 {
    top: -100px;
    left: 3%
}

.b-effect-background1 .b-img-1 {
    width: 64px;
    position: relative;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16)
}

.b-effect-background1 .b-img-2 {
    position: absolute;
    z-index: 5;
    width: 66px;
    left: 24px;
    bottom: 23px
}

.b-effect-background2 {
    bottom: -122px;
    right: 3%
}

.b-effect-background2 .b-img-1 {
    width: 64px;
    position: relative;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16)
}

.b-effect-background2 .b-img-2 {
    position: absolute;
    z-index: 5;
    width: 65px;
    right: 49px;
    bottom: 22px
}

.b-flag {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background: url(../img/flag.png)
}

.b-composition {
    padding: 84px 0 80px;
    overflow: hidden
}

.b-composition .b-h2 {
    text-align: center;
    position: relative;
    z-index: 10
}

.b-composition .b-p {
    max-width: 528px;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.b-composition-item {
    clear: both;
    position: relative;
    z-index: 10
}

.b-composition-img {
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    margin: 40px auto 24px;
    display: block;
    opacity: 0
}

.b-composition-background1 {
    position: absolute;
    width: 304px;
    height: 304px;
    bottom: -234px;
    right: -97px;
    background-color: #e7f0fd;
    border-radius: 50%
}

.b-composition-background1 .b-img-1 {
    width: 125px;
    position: absolute;
    z-index: 4;
    top: 90px;
    left: 90px
}

.b-composition-background1 .b-img-2 {
    position: absolute;
    z-index: 2;
    width: 190px;
    left: -17px;
    top: 56px;
    -webkit-transform: rotate(112deg);
    -ms-transform: rotate(112deg);
    transform: rotate(112deg)
}

.b-composition-background2 {
    position: absolute;
    width: 368px;
    height: 368px;
    top: 69px;
    left: -134px
}

.b-composition-background2 .b-img-1,
.b-composition-background3 .b-img-1 {
    width: 368px;
    position: absolute;
    z-index: 1
}

.b-composition-background3 {
    position: absolute;
    width: 368px;
    height: 368px;
    left: -135px;
    bottom: 20%
}

.b-doctor {
    overflow: hidden;
    padding: 79px 0 0;
    background: url(../img/bg_doctar.png) center top no-repeat #f1f4fa
}

.b-doctor-img {
    max-width: 370px;
    margin-left: calc(50% - 197px);
    margin-bottom: -3px;
    margin-top: -30px;
    z-index: 8;
    opacity: 0
}

.b-doctor-textbox {
    opacity: 0
}

.b-doctor .b-h2,
.b-reviews .b-h2 {
    text-align: center;
    margin-bottom: 16px
}

.b-reviews {
    padding: 84px 0 40px;
    overflow: hidden
}

.b-reviews .b-h2 {
    margin-bottom: 40px;
    position: relative;
    z-index: 10
}

.b-reviews-item {
    opacity: 0;
    background-color: #fff;
    border-radius: 24px;
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    margin-bottom: 40px;
    max-width: 416px;
    margin-left: auto;
    margin-right: auto
}

.b-reviews-item__ava {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    position: relative;
    z-index: 7
}

.b-reviews-item__textbox {
    margin-top: -24px;
    border-radius: 24px;
    background-color: #fff;
    padding: 16px;
    position: relative;
    z-index: 10
}

.b-reviews-background1 {
    position: absolute;
    width: 368px;
    height: 368px;
    top: 73px;
    left: -134px
}

.b-reviews-background1 .b-img-1,
.b-reviews-background2 .b-img-1 {
    width: 368px;
    position: absolute;
    z-index: -1
}

.b-reviews-background2 {
    position: absolute;
    width: 368px;
    height: 368px;
    bottom: -103px;
    right: -96px
}

.b-buy {
    background: #f1f4fa;
    text-align: center;
    padding: 84px 0 40px;
    overflow: hidden
}

.b-buy-h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #00c27c
}

.b-buy-boximg {
    width: 304px;
    height: 304px;
    position: relative;
    margin-bottom: -40px;
    margin-left: calc(50% - 152px)
}

.b-buy-boximg .b-img-1 {
    position: absolute;
    z-index: 1;
    width: 304px;
    top: 0;
    left: 0
}

.b-buy-boximg .b-img-2,
.b-buy-form {
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16)
}

.b-buy-boximg .b-img-2 {
    position: absolute;
    z-index: 2;
    width: 121px;
    top: 38px;
    left: 95px;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    border-radius: 50%;
    opacity: 0
}

.b-buy-boximg .b-img-3 {
    position: absolute;
    z-index: 1;
    width: 300px;
    left: 0;
    top: 0px;
}

.b-buy-form {
    background: #fff;
    border-radius: 24px;
    padding: 16px 16px 24px;
    position: relative;
    z-index: 10
}

.b-buy-listbox {
    opacity: 0;
    position: absolute;
    z-index: 5;
    right: 0
}

.b-buy-boxform {
    position: relative;
    z-index: 10;
    max-width: 385px;
    margin: 0 auto;
    opacity: 0
}

.b-buy-boxform__bg1 {
    position: absolute;
    z-index: 15;
    width: 48px;
    bottom: -32px;
    left: 0;
    -webkit-box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    box-shadow: 24px 40px 80px rgba(48, 55, 120, .16);
    border-radius: 50%;
    opacity: 0
}

.b-buy-boxform__bg2,
.b-buy-boxform__bg3 {
    position: absolute;
    z-index: 5;
    width: 33px;
    top: -24px;
    right: 44px
}

.b-buy-boxform__bg3 {
    width: 48px;
    top: -32px;
    right: -2px
}

.b-buy-input,
.b-buy-select {
    border: 1px solid #303778;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 40px;
    background: #fff;
    outline: 0;
    padding: 16px 30px;
    text-align: center;
    font-size: 16px;
    line-height: 150%;
    color: #717a90;
    margin-top: 16px;
    width: 100%;
    -moz-text-align-last: center;
    text-align-last: center
}

.b-buy-input:focus,
.b-buy-select:focus {
    outline: 0
}

.b-buy-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.b-buy-selectbox {
    position: relative
}

.b-buy-selectbox::after {
    content: '\27A4';
    font-size: 21px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    right: 18px;
    top: 30px;
    color: #accbee
}

.b-buy-button {
    outline: 0;
    border: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    cursor: pointer
}

.b-buy-button:active,
.b-buy-button:focus,
.b-buy-button:hover {
    outline: 0;
    border: 0
}

.old_price {
    text-align: center;
    font-size: 20px;
    text-decoration: line-through;
    margin-top: 10px
}

.new_price {
    text-align: center;
    font-size: 40px;
    color: #303778;
    font-weight: 700
}

.b-range-border {
    position: absolute;
    width: 2px;
    height: 45%;
    top: 20%;
    border-right: 2px dashed #e0eaff;
    z-index: -2
}

.b-range-border:nth-child(1) {
    left: calc(25% - 2px)
}

.b-range-border:nth-child(2) {
    left: calc(50% - 2px)
}

.b-range-border:nth-child(3) {
    left: calc(75% - 2px)
}

#b-buy {
    position: absolute;
    top: -80px
}

.fade-in {
    -webkit-animation: fade-in2 4s ease both;
    animation: fade-in2 4s ease both
}

.fade-in-03 {
    -webkit-animation: fade-in .8s linear both .3s;
    animation: fade-in .8s linear both .3s
}

.fade-in-06 {
    -webkit-animation: fade-in .8s linear both .7s;
    animation: fade-in .8s linear both .7s
}

.fade-in-09 {
    -webkit-animation: fade-in .8s linear both 1.1s;
    animation: fade-in .8s linear both 1.1s
}

.fade-in2 {
    -webkit-animation: fade-in 1s linear both;
    animation: fade-in 1s linear both
}

.slide-in-fwd-center0 {
    -webkit-animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both;
    animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both
}

.slide-in-fwd-center03 {
    -webkit-animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both .3s;
    animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both .3s
}

.slide-in-fwd-center08 {
    -webkit-animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both .8s;
    animation: slide-in-fwd-center 1s cubic-bezier(.25, .46, .45, .94) both .8s
}

.slide-in-fwd-center-btn {
    -webkit-animation: slide-in-fwd-center .6s cubic-bezier(.25, .46, .45, .94) both .6s;
    animation: slide-in-fwd-center .6s cubic-bezier(.25, .46, .45, .94) both .6s
}

.fade-in-top {
    -webkit-animation: fade-in-top 1s cubic-bezier(.39, .575, .565, 1) both;
    animation: fade-in-top 1s cubic-bezier(.39, .575, .565, 1) both
}

.swing-in-top-bck {
    -webkit-animation: swing-in-top-bck 1.3s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-top-bck 1.3s cubic-bezier(.175, .885, .32, 1.275) both
}

.swing-in-right-fwd {
    -webkit-animation: swing-in-right-fwd 1.3s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-right-fwd 1.3s cubic-bezier(.175, .885, .32, 1.275) both
}

.swing-in-bottom-fwd {
    -webkit-animation: swing-in-bottom-fwd 1.3s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-bottom-fwd 1.3s cubic-bezier(.175, .885, .32, 1.275) both
}

.puff-in-center {
    -webkit-animation: puff-in-center .7s cubic-bezier(.47, 0, .745, .715) both 1s;
    animation: puff-in-center .7s cubic-bezier(.47, 0, .745, .715) both 1s
}

.heartbeat {
    -webkit-animation: heartbeat 2s ease-in-out infinite both;
    animation: heartbeat 2s ease-in-out infinite both
}

.rustle-left {
    -webkit-animation: rustle-left 7s ease-in-out infinite both;
    animation: rustle-left 7s ease-in-out infinite both
}

.rustle-x-right {
    -webkit-animation: rustle-x-right 8s ease-in-out infinite both;
    animation: rustle-x-right 8s ease-in-out infinite both
}

.rustle-x-left {
    -webkit-animation: rustle-x-left 8s ease-in-out infinite both;
    animation: rustle-x-left 8s ease-in-out infinite both
}

.rustle-x-left2 {
    -webkit-animation: rustle-x-left2 8s ease-in-out infinite both;
    animation: rustle-x-left2 8s ease-in-out infinite both
}

.flicker {
    -webkit-animation: flicker 5s ease-in-out infinite both;
    animation: flicker 5s ease-in-out infinite both
}

.flicker2 {
    -webkit-animation: flicker2 5s ease-in-out infinite both;
    animation: flicker2 5s ease-in-out infinite both
}

@media screen and (min-width:400px) {
    .b-changes-btnbox__text {
        font-size: 14px
    }
}

@media screen and (max-width:400px) {
    footer div {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width:576px) {
    .b-container {
        padding: 0 30px
    }

    .b-header-background1 {
        width: 428px;
        height: 428px;
        left: calc(50% - 214px);
        top: -6px
    }

    .b-header-background1 .b-img-1 {
        width: 292px;
        top: 68px;
        left: 68px
    }

    .b-header-background1 .b-img-2 {
        width: 186px;
        top: 121px;
        left: 121px
    }

    .b-header-middle {
        margin-top: 201px
    }

    .b-header-img {
        max-width: 450px
    }

    .b-doctor-img {
        max-width: 550px;
        margin-left: calc(50% - 286px)
    }

    .b-buy-boximg {
        width: 426px;
        height: 426px;
        margin-left: calc(50% - 213px)
    }

    .b-buy-boximg .b-img-1 {
        width: 426px
    }

    .b-buy-boximg .b-img-2 {
        width: 170px;
        top: 53px;
        left: 133px
    }

    .b-buy-boximg .b-img-3 {
        width: 300px;
        top: 0;
        left: 50px;
    }

    .b-changes-btnbox__text {
        font-size: 16px
    }
}

@media screen and (min-width:768px) {
    .b-header-background1 {
        width: 513px;
        height: 513px;
        left: -125px;
        top: -26px
    }

    .b-header-background1 .b-img-1 {
        width: 349px;
        top: 82px;
        left: 82px
    }

    .b-header-background1 .b-img-2 {
        width: 222px;
        top: 146px;
        left: 146px
    }

    .b-header-background2 {
        display: block;
        width: 180px;
        height: 180px;
        top: 21px;
        right: -27px
    }

    .b-header-background2 .b-img-1 {
        width: 280px;
        top: -44px;
        right: 37px
    }

    .b-header-background2 .b-img-2 {
        width: 276px;
        top: -25px;
        right: -63px
    }

    .b-header-sliders {
        width: 752px;
        height: 280px;
        margin-left: calc(50% - 376px)
    }

    .b-header-sliders__img {
        width: 280px;
        height: 280px;
        margin-right: 51px
    }

    .b-header-sliders__text {
        width: 304px;
        margin-top: 80px;
        font-size: 24px
    }

    .b-header-sliders .b-btnbox {
        bottom: 56px;
        left: 336px
    }

    .b-header-sliders .b-btnbox .b-btn {
        width: 40px;
        margin-right: 12px
    }

    .b-effect {
        padding: 120px 0 104px
    }

    .b-effect-item {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 36px);
        margin-right: 32px
    }

    .b-effect-item:first-of-type {
        margin-right: 32px
    }

    .b-effect-item .b-p:nth-of-type(1) {
        margin-bottom: 0;
        height: 48px;
        display: table-cell;
        vertical-align: middle
    }

    .b-effect-head {
        display: table;
        margin-bottom: 16px;
        width: 100%;
        text-align: center
    }

    .b-effect-background1 {
        top: -143px
    }

    .b-effect-background2 {
        bottom: -145px
    }

    .b-doctor {
        overflow: visible;
        padding-bottom: 60px
    }

    .b-doctor .b-h2 {
        text-align: left
    }

    .b-doctor-textbox {
        max-width: 50%;
        margin-left: 50%
    }

    .b-doctor-img {
        position: absolute;
        max-width: 100%;
        width: 550px;
        right: 50%;
        bottom: -76px;
        margin: 0
    }
}

@media screen and (min-width:992px) {
    .b-h1 {
        font-size: 64px
    }

    .b-h2 {
        font-size: 32px
    }

    .b-nav,
    .b-online {
        display: inline-block
    }

    .b-header {
        padding-bottom: 192px
    }

    .b-header-p {
        font-size: 24px;
        margin-top: 24px
    }

    .b-header-button {
        margin: 56px 0 0
    }

    .b-header-background1 {
        width: 686px;
        height: 686px;
        left: -180px;
        top: -79px
    }

    .b-header-background1 .b-img-1 {
        width: 466px;
        top: 110px;
        left: 110px
    }

    .b-header-background1 .b-img-2 {
        width: 296px;
        top: 195px;
        left: 195px
    }

    .b-header-background2 {
        display: block;
        width: 240px;
        height: 240px;
        top: 0;
        right: 0
    }

    .b-header-background2 .b-img-1 {
        width: 374px;
        top: -59px;
        right: 21px
    }

    .b-header-background2 .b-img-2 {
        width: 368px;
        top: -34px;
        right: -111px
    }

    .b-header-top {
        text-align: initial
    }

    .b-header-img {
        display: inline-block;
        vertical-align: top;
        margin-right: 31px;
        height: 350px;
    }

    .b-header-middle {
        margin-top: 260px
    }

    .b-header-middle__content {
        display: inline-block;
        vertical-align: top;
        width: calc(100% - 500px);
        max-width: 640px;
        text-align: left
    }

    .b-header-bottom {
        margin-top: 120px
    }

    .b-changes {
        padding-bottom: 120px
    }

    .b-changes-left,
    .b-changes-right {
        display: inline-block;
        vertical-align: top
    }

    .b-changes-left {
        text-align: left;
        width: 50%
    }

    .b-changes-left .b-h2 {
        max-width: 500px
    }

    .b-changes-right {
        width: calc(49% - 90px);
        max-width: 576px;
        margin-left: 90px
    }

    .b-changes-right__img {
        max-width: 100%;
        margin-top: 0
    }

    .b-changes-right .b-slider {
        position: relative
    }

    .b-changes-right .b-slider-img1 {
        position: absolute;
        width: 21%;
        top: 9%;
        left: 15.5%
    }

    .b-changes-right .b-slider-img2 {
        position: absolute;
        width: 41.5%;
        top: 9%;
        right: 0
    }

    .b-changes-right .b-slider-img3 {
        position: absolute;
        width: 52.5%;
        bottom: 11.5%;
        left: 0
    }

    .b-changes-right .b-slider-img4 {
        position: absolute;
        width: 30.5%;
        bottom: 11.5%;
        right: 0
    }

    .b-changes-btnbox {
        max-width: 640px
    }

    .b-changes-btnbox__range {
        margin-top: 24px;
        max-width: 640px
    }

    .b-changes-btnbox__range::-ms-thumb {
        width: 150px
    }

    .b-changes-btnbox__text {
        display: inline-block;
        vertical-align: middle;
        width: 24.3%;
        padding: 0 5px;
        text-align: center
    }

    .b-changes-btnbox .b-view {
        display: inline-block;
        color: #303778;
        font-weight: 700
    }

    .b-effect {
        padding: 120px 0 104px
    }

    .b-effect-item {
        display: inline-block;
        vertical-align: top;
        width: calc(33% - 36px)
    }

    .b-effect-item:last-of-type {
        margin-right: 0
    }

    .b-effect-img {
        width: 192px;
        margin-bottom: 24px;
        margin-top: 64px
    }

    .b-effect-background1 {
        position: absolute;
        width: 80px;
        height: 80px;
        top: -175px;
        left: 3%
    }

    .b-effect-background1 .b-img-1 {
        width: 80px;
        position: relative;
        z-index: 10
    }

    .b-effect-background1 .b-img-2 {
        position: absolute;
        z-index: 5;
        width: 66px;
        left: 57px;
        bottom: 32px
    }

    .b-effect-background2 {
        position: absolute;
        width: 80px;
        height: 80px;
        bottom: -143px;
        right: 3%
    }

    .b-effect-background2 .b-img-1 {
        width: 80px;
        position: relative;
        z-index: 10
    }

    .b-effect-background2 .b-img-2 {
        position: absolute;
        z-index: 5;
        width: 65px;
        right: 69px;
        bottom: 32px
    }

    .b-composition {
        padding: 120px 0 40px
    }

    .b-composition-item {
        clear: both;
        margin: 80px 0;
        height: 416px
    }

    .b-composition-item .b-p {
        max-width: 515px;
        margin-left: 500px
    }

    .b-composition .b-item-2 img {
        float: right
    }

    .b-composition .b-item-2 .b-p {
        margin-left: 0;
        margin-right: 560px
    }

    .b-composition-img {
        margin: 0 auto;
        float: left
    }

    .b-composition-background1 {
        width: 768px;
        height: 768px;
        bottom: -436px;
        right: -546px
    }

    .b-composition-background1 .b-img-1 {
        width: 315px;
        top: 227px;
        left: 227px
    }

    .b-composition-background1 .b-img-2 {
        width: 468px;
        left: -33px;
        top: 116px
    }

    .b-composition-background2 {
        width: 582px;
        height: 582px;
        top: 40px;
        left: -134px
    }

    .b-composition-background2 .b-img-1,
    .b-composition-background3 .b-img-1 {
        width: 582px
    }

    .b-composition-background3 {
        width: 582px;
        height: 582px;
        bottom: -331px;
        left: -80px
    }

    .b-reviews {
        padding-bottom: 80px
    }

    .b-reviews .b-h2 {
        margin-bottom: 80px
    }

    .b-reviews-boxitem {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .b-reviews-item {
        max-width: 31.6%;
        margin: 0
    }

    .b-reviews-item:last-of-type {
        margin-right: 0
    }

    .b-reviews-item__textbox {
        padding: 20px
    }

    .b-reviews-background1 {
        width: 582px;
        height: 582px;
        top: 327px;
        left: -200px
    }

    .b-reviews-background1 .b-img-1,
    .b-reviews-background2 .b-img-1 {
        width: 582px
    }

    .b-reviews-background2 {
        width: 582px;
        height: 582px;
        bottom: 318px;
        right: -195px
    }

    .b-buy {
        padding: 84px 0 80px
    }

    .b-buy .b-h2 {
        margin-bottom: 80px
    }

    .b-buy-boxform,
    .b-buy-boximg {
        display: inline-block;
        vertical-align: top
    }

    .b-buy-boximg {
        margin-left: 0;
        margin-right: calc(49% - 426px)
    }

    .b-buy-boxform {
        margin-right: calc(50% - 385px)
    }
}

@media screen and (min-width:1200px) {
    .b-composition .b-container {
        padding: 0 90px
    }

    .b-doctor-textbox {
        max-width: 57%;
        margin-left: 43%
    }

    .b-doctor-img {
        width: 630px;
        right: 55%
    }

    .b-reviews {
        padding: 120px 0
    }

    .b-reviews-item__textbox {
        padding: 32px
    }

    .b-buy {
        padding: 120px 0
    }

    .b-buy-boximg {
        width: 528px;
        height: 528px;
        margin-right: calc(49% - 528px)
    }

    .b-buy-boximg .b-img-1 {
        width: 528px
    }

    .b-buy-boximg .b-img-2 {
        width: 145px;
        top: 65px;
        left: 285px
    }

    .b-buy-boximg .b-img-3 {
        width: 300px;
        top: 100px;
    }

    .b-buy-form {
        padding: 63px
    }

    .b-buy-boxform {
        margin-right: calc(50% - 480px);
        max-width: 480px
    }

    .b-buy-boxform__bg1 {
        width: 80px;
        bottom: -40px;
        left: -40px
    }

    .b-buy-boxform__bg2 {
        width: 59px;
        top: -48px;
        right: 32px
    }

    .b-buy-boxform__bg3 {
        width: 77px;
        top: -59px;
        right: -41px
    }
}

@media screen and (min-width:1372px) {
    .b-nav {
        margin-right: 7.5%
    }

    .b-container {
        padding: 0
    }

    .b-header-background1 {
        width: 856px;
        height: 856px;
        left: -81px;
        top: -96px
    }

    .b-header-background1 .b-img-1 {
        width: 582px;
        top: 137px;
        left: 137px
    }

    .b-header-background1 .b-img-2 {
        width: 370px;
        top: 243px;
        left: 243px
    }

    .b-header-background2 {
        width: 300px;
        height: 300px;
        top: 0;
        right: 0
    }

    .b-header-background2 .b-img-1 {
        width: 468px;
        top: -90px;
        right: 13px
    }

    .b-header-background2 .b-img-2 {
        width: 460px;
        top: -59px;
        right: -153px
    }

    .b-header-img {
        max-width: 100%;
        height: auto;
        width: 225px;
    }

    .b-header-middle {
        margin-top: 320px
    }

    .b-header-sliders {
        margin-left: 620px
    }

    .b-composition .b-container {
        padding: 0 125px
    }

    .b-composition-item .b-p {
        margin-left: 560px
    }

    .b-composition-item:nth-of-type(2) .b-p {
        margin-left: 0;
        margin-right: 560px
    }

    .b-doctor {
        padding: 120px 0 104px
    }

    .b-doctor-img {
        width: 689px;
        right: 55%;
        bottom: -120px
    }
}