@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Light.woff2') format('woff2'), url('../fonts/subset-OpenSans-Light.woff') format('woff'), url('../fonts/subset-OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans.woff2') format('woff2'), url('../fonts/subset-OpenSans.woff') format('woff'), url('../fonts/subset-OpenSans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Italic.woff2') format('woff2'), url('../fonts/subset-OpenSans-Italic.woff') format('woff'), url('../fonts/subset-OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Semibold.woff2') format('woff2'), url('../fonts/subset-OpenSans-Semibold.woff') format('woff'), url('../fonts/subset-OpenSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-SemiboldItalic.woff2') format('woff2'), url('../fonts/subset-OpenSans-SemiboldItalic.woff') format('woff'), url('../fonts/subset-OpenSans-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Bold.woff2') format('woff2'), url('../fonts/subset-OpenSans-Bold.woff') format('woff'), url('../fonts/subset-OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Extrabold.woff2') format('woff2'), url('../fonts/subset-OpenSans-Extrabold.woff') format('woff'), url('../fonts/subset-OpenSans-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.col-xs-2 {
    -ms-flex-preferred-size: 16.66%;
    -webkit-flex-basis: 16.66%;
    flex-basis: 16.66%;
    max-width: 16.66%;
}

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-xs-4 {
    -ms-flex-preferred-size: 33.33%;
    -webkit-flex-basis: 33.33%;
    flex-basis: 33.33%;
    max-width: 33.33%;
}

.col-xs-5 {
    -ms-flex-preferred-size: 41.66%;
    -webkit-flex-basis: 41.66%;
    flex-basis: 41.66%;
    max-width: 41.66%;
}

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-xs-7 {
    -ms-flex-preferred-size: 58.33%;
    -webkit-flex-basis: 58.33%;
    flex-basis: 58.33%;
    max-width: 58.33%;
}

.col-xs-8 {
    -ms-flex-preferred-size: 66.66%;
    -webkit-flex-basis: 66.66%;
    flex-basis: 66.66%;
    max-width: 66.66%;
}

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-xs-10 {
    -ms-flex-preferred-size: 83.33%;
    -webkit-flex-basis: 83.33%;
    flex-basis: 83.33%;
    max-width: 83.33%;
}

.col-xs-11 {
    -ms-flex-preferred-size: 91.66%;
    -webkit-flex-basis: 91.66%;
    flex-basis: 91.66%;
    max-width: 91.66%;
}

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.col-xs-offset-0,
.col-sm-offset-0 {
    margin-left: 0;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33%;
}

.center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
}

.end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
}

.around-xs {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1;
}

@media only screen and (min-width: 768px) {

    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.66%;
        -webkit-flex-basis: 16.66%;
        flex-basis: 16.66%;
        max-width: 16.66%;
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        -webkit-flex-basis: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.33%;
        -webkit-flex-basis: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.66%;
        -webkit-flex-basis: 41.66%;
        flex-basis: 41.66%;
        max-width: 41.66%;
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        -webkit-flex-basis: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.33%;
        -webkit-flex-basis: 58.33%;
        flex-basis: 58.33%;
        max-width: 58.33%;
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.66%;
        -webkit-flex-basis: 66.66%;
        flex-basis: 66.66%;
        max-width: 66.66%;
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        -webkit-flex-basis: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-xs-offset-0,
    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-sm-offset-1 {
        margin-left: 8.33%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        text-align: center;
    }

    .first-sm {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        order: -1;
    }
}

@media only screen and (min-width: 992px) {

    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-8,
    .col-md-10,
    .col-md-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        -webkit-flex-basis: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.33%;
        -webkit-flex-basis: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.66%;
        -webkit-flex-basis: 41.66%;
        flex-basis: 41.66%;
        max-width: 41.66%;
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        -webkit-flex-basis: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.66%;
        -webkit-flex-basis: 66.66%;
        flex-basis: 66.66%;
        max-width: 66.66%;
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.33%;
        -webkit-flex-basis: 83.33%;
        flex-basis: 83.33%;
        max-width: 83.33%;
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-xs-offset-0,
    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-md-offset-2 {
        margin-left: 16.66%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33%;
    }

    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        text-align: start;
    }
}

@media only screen and (min-width: 1200px) {

    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-8,
    .col-lg-9,
    .col-lg-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.66%;
        -webkit-flex-basis: 16.66%;
        flex-basis: 16.66%;
        max-width: 16.66%;
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        -webkit-flex-basis: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.33%;
        -webkit-flex-basis: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.66%;
        -webkit-flex-basis: 41.66%;
        flex-basis: 41.66%;
        max-width: 41.66%;
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        -webkit-flex-basis: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.66%;
        -webkit-flex-basis: 66.66%;
        flex-basis: 66.66%;
        max-width: 66.66%;
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        -webkit-flex-basis: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-xs-offset-0,
    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66%;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    min-width: 320px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: relative;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

a:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
}

.section {
    overflow: hidden;
}

h1 {
    font-size: 57px;
    line-height: 57px;
    font-family: "PeaceSans";
    font-weight: 500;
    color: #241c18;
    margin-top: 15px;
    margin-bottom: 9px;
}

h2 {
    font-size: 40px;
    font-family: "PeaceSans";
    font-weight: 500;
    color: #241c18;
    line-height: 53px;
    margin-bottom: 17px;
}

.section1 h2 {
    font-size: 26px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 48px;
}

h3 {
    font-size: 46px;
    line-height: 65px;
    font-family: "PeaceSans";
    font-weight: 500;
    color: #241c18;
    margin-top: 12px;
    margin-bottom: 27px;
}

.section4 h3 {
    margin-bottom: 40px;
}

.section5 h3 {
    margin-bottom: 39px;
}

.section7 h2 {
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    line-height: 29px;
    margin-top: 9px;
}

h5 {
    color: #241c18;
    line-height: 24px;
    margin-bottom: 17px;
    font-size: 24px;
}

.menu {
    background: url(../img/icon-menu.gif) no-repeat center center #f5f5f5;
    height: 59px;
    width: 67px;
    position: fixed;
    top: 28px;
    right: 0;
    z-index: 100;
}

.menu_content {
    width: 373px;
    background-color: #f6f6f6;
    position: fixed;
    top: 28px;
    right: 0;
    z-index: 101;
}

.menu_content ul {}

.menu_content li {
    border-top: 1px solid #eaeaea;
    padding: 0 30px 0;
}

.menu_content li:first-child {
    border-top: none;
}

.menu_content li a {
    padding: 13px 0 15px 23px;
    display: block;
    font-size: 17px;
    color: #000;
    text-decoration: none;
    position: relative;
}

.menu_content li.active a:focus,
.menu_content li.active a:hover {
    text-decoration: none;
}

.menu_content li a:focus,
.menu_content li a:hover {
    text-decoration: underline;
}

.menu_content li a:after,
.menu_content li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 0;
    height: 0;
    border-style: solid;
}

.menu_content li a:after {
    border-color: transparent transparent transparent #f6f6f6;
    border-width: 5px;
    margin-top: -5px;
}

.menu_content li a:before {
    border-color: transparent transparent transparent #95cf32;
    border-width: 9px;
    margin-top: -9px;
    border-radius: 5px;
}

.menu_content li.active a {
    color: #95cf32;
    font-weight: 700;
}

.menu_content li.active a:after,
.menu_content li.active a:before {}

.btn_close {
    background: url(../img/icon-close.gif) no-repeat center center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 24px;
    top: 15px;
    border: none;
    z-index: 200;
}

.composition>div {
    padding-top: 237px;
}

.composition4 {
    background: url(../img/img-seed.jpg) no-repeat center 46px;
}

.composition5 {
    background: url(../img/img-raspberry2.jpg) no-repeat center 46px;
}

.composition6 {
    background: url(../img/img-pepper.jpg) no-repeat center 46px;
}

.textSmaller {
    font-size: 14px;
    line-height: 17px;
}

.textSmall {
    font-size: 18px;
}

.textBig {
    font-size: 24px;
}

.textBig2 {
    font-size: 20px;
}

.textBiger {
    font-size: 30px;
    line-height: 16px;
}

.textWhite {
    color: #fff;
}

.textGray {
    color: #bbb;
    text-decoration: line-through;
}

.textGreen {
    color: #95cf32;
}

.backGreen {
    background-color: #95cf32;
}

.borderGreen {
    position: relative;
    display: ;
}

.borderGreen:after {
    background-color: #95cf32;
    height: 3px;
    width: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
}

.borderGreenGo.borderGreen:after {
    -webkit-transition: width 2s;
    transition: width 2s;
    width: 100%;
}

.backGreen2 {
    background-color: #a3e03c;
}

.section3 .row>div {
    position: relative;
    background-color: #efefef;
}

.section3 .row>div:nth-child(1) {
    z-index: 5;
}

.section3 .row>div:nth-child(2) {
    z-index: 4;
}

.section3 .row>div:nth-child(3) {
    z-index: 3;
}

.section3 .row>div:nth-child(4) {
    z-index: 2;
}

.section3 .row>div:nth-child(5) {
    z-index: 1;
}

.section3 .row>div:before {
    background-color: #95cf32;
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -20px;
    top: -189px;
    width: 28px;
    height: 136px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section3 .row>div.blockGo:before {
    -webkit-transition: all 2s;
    transition: all 2s;
    top: 0;
}

span.backGreen {
    padding: 0 2px;
}

.section1 span.backGreen {
    padding: 0 2px 2px 5px;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.layout {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.wrap {
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.section1 {
    background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl.jpg) no-repeat 10.1% top;
    padding: 26px 0 375px 0;
    overflow: hidden;
}

.section1 p {
    min-height: 83px;
    padding: 20px 0 0 89px;
}

.section1 li {
    background: url(../img/icon-arrow.png) no-repeat left 2px;
    line-height: 22px;
    padding: 0 0 20px 34px;
}

.action {
    padding: 14px 21px 6px 12px;
    margin: 1px 0 7px 0;
}

.action span.bold {
    display: block;
}

.recomended {
    background: url(../img/icon-recommended.png) no-repeat left top;
    color: #241c18;
}

.quality {
    background: url(../img/icon-quality.png) no-repeat left top;
    color: #241c18;
}

.natural {
    background: url(../img/icon-natural.png) no-repeat left top;
    color: #241c18;
}

.section2 {
    padding-bottom: 42px;
    background-color: #fdfdfd;
    position: relative;
    z-index: 2;
}

.section2 .hidden-xxs {
    position: relative;
}

.section2 p {
    line-height: 24px;
    margin-bottom: 24px;
}

img.gif {
    margin-top: 12px;
    max-height: 445px;
    float: right;
    margin-right: 3px;
}

.section3,
.section7 {
    background-color: #efefef;
}

.section3 {
    padding: 53px 0 58px;
    position: relative;
    z-index: 1;
}

.section3 .row div {
    text-align: center;
}

.icon_advantage {
    min-height: 127px;
    position: relative;
}

.icon_advantage1 {
    background: url(../img/icon-advantage1.png) no-repeat center top;
}

.icon_advantage2 {
    background: url(../img/icon-advantage2.png) no-repeat center top;
}

.icon_advantage3 {
    background: url(../img/icon-advantage3.png) no-repeat center top;
}

.icon_advantage4 {
    background: url(../img/icon-advantage4.png) no-repeat center top;
}

.icon_advantage5 {
    background: url(../img/icon-advantage5.png) no-repeat center top;
}

.section7 .foto {
    background-size: auto 100%;
}

.section7 .foto,
.section8 .foto {
    min-height: 200px;
    margin-bottom: 10px;
}

.product1 {
    background: url(../img/img-product1.png) no-repeat center top;
    padding-top: 299px;
}

.product4 {
    background: url() no-repeat center top;
    min-height: 339px;
    background-size: auto;
}

.foto1 {
    background: url(../img/foto1.jpg) no-repeat center top;
}

.foto2 {
    background: url(../img/foto2.jpg) no-repeat center top;
}

.foto3 {
    background: url(../img/foto3.jpg) no-repeat center top;
}

.foto4 {
    background: url(../img/foto4.jpg) no-repeat left top;
}

.foto5 {
    background: url(../img/foto5.jpg) no-repeat left top;
}

.foto6 {
    background: url(../img/foto6.jpg) no-repeat left top;
}

.foto7 {
    background: url(../img/foto7.jpg) no-repeat left top;
}

.section4 {
    padding: 49px 0 73px 0;
}

.section5 {
    background: url(../img/img-girl2.png) no-repeat 80% bottom, url(../img/img-grass6.jpg) no-repeat left bottom #efefef;
    padding: 48px 0 196px 0;
}

.section5 span {
    padding: 1px 9px 4px;
}

.section5 p {
    padding: 15px 0 42px 30px;
}

.section6 {
    background: url(../img/back.png) repeat-x left bottom, url(../img/img-doctor.jpg) no-repeat 12.65% bottom;
    padding: 49px 0 18px;
}

.section6 .doctor .box {
    border-left: 1px solid #e5e5e5;
    padding-left: 25px;
    position: relative;
    margin-top: 58px;
}

.section6 .doctor .box:after,
.section6 .doctor .box:before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    top: 50%;
    border-style: solid;
}

.section6 .doctor .box:after {
    left: -16px;
    margin-top: -8px;
    border-width: 8px;
    border-color: transparent #e5e5e5 transparent transparent;
}

.section6 .doctor .box:before {
    left: -12px;
    margin-top: -6px;
    border-width: 6px;
    border-color: transparent #fff transparent transparent;
    z-index: 1;
}

.section6 .doctor .italic:first-child {
    padding-bottom: 20px;
}

.section6 .backMan li .backGreen2 {
    position: relative;
}

.section6 .backMan li .backGreen2 .textWhite {
    position: relative;
    z-index: 1;
}

.section6 .backMan li .backGreen2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #95cf32;
    z-index: 0;
}

.section6 .backMan li:nth-child(1) .backGreen2.percentGo:after {
    width: 100%;
    -webkit-transition: width 2s;
    transition: width 2s;
}

.section6 .backMan li:nth-child(2) .backGreen2.percentGo:after {
    width: 100%;
    -webkit-transition: width 2s;
    transition: width 2s;
}

.section6 .backMan li:nth-child(3) .backGreen2.percentGo:after {
    width: 98%;
    -webkit-transition: width 2s;
    transition: width 2s;
}

.section6 .backMan li:nth-child(4) .backGreen2.percentGo:after {
    width: 95%;
    -webkit-transition: width 2s;
    transition: width 2s;
}

.section6 .bodies>div:nth-child(1) .backGreen2 .backGreen {
    margin-right: 84%;
}

.section6 .bodies>div:nth-child(2) .backGreen2 .backGreen {
    margin-right: 52%;
}

.section6 .bodies>div:nth-child(3) .backGreen2 .backGreen {
    margin-right: 64%;
}

.section6 .backMan {
    background: url(../img/icon-man.png) no-repeat 3px top;
    padding-left: 154px;
    padding-bottom: 40px;
    margin-top: 33px;
}

.section6 .backMan .textWhite {
    padding-left: 10px;
    margin-top: 4px;
    padding-bottom: 6px;
}

.section6 .bodies .backGreen2 {
    margin-left: 17px;
    width: 34%;
}

.section6 .bodies .backGreen {
    padding-bottom: 0;
}

.section6 li {
    color: #241c18;
    margin: 20px 0 0;
    font-size: 15px;
}

.body1,
.body2,
.body3 {
    min-height: 114px;
    padding-top: 35px;
    color: #dc4242;
    padding-left: 79px;
}

.body1 {
    background: url(../img/body1.png) no-repeat left center;
}

.body2 {
    background: url(../img/body2.png) no-repeat left center;
}

.body3 {
    background: url(../img/body3.png) no-repeat left center;
}

.weight .backGray {
    text-align: center;
    background-color: #efefef;
    border-radius: 5px;
    padding: 15px;
}

.weight,
.bodies {
    margin-top: 30px;
    margin-bottom: 40px;
}

.weight span {
    display: block;
    padding: 15px 0 28px 0;
}

.weight div:nth-child(1) span {
    background: url(../img/weight1.png) no-repeat center top;
}

.weight div:nth-child(2) span {
    background: url(../img/weight2.png) no-repeat center top;
}

.weight div:nth-child(3) span {
    background: url(../img/weight3.png) no-repeat center top;
}

.quality2 {
    background: url(../img/icon-quality2.jpg) no-repeat left top;
    padding-left: 119px;
    padding-bottom: 25px;
}

.quality2 li,
.quality2 span {
    display: inline;
    line-height: 24px;
    vertical-align: top;
}

.section7 {
    padding: 28px 0 55px;
}

.section7 .textBig2 {
    background: url(../img/icon-arrow4.png) no-repeat left 6px;
    padding-left: 24px;
    margin-top: 23px;
    margin-bottom: 16px;
}

.section7 .textBig2 span {
    background: url(../img/icon-arrow5.png) no-repeat right center;
    padding-right: 24px;
    display: inline-block;
}

.reducedLength {
    background: url(../img/body4.png) no-repeat left 4px;
    padding-left: 27px;
    padding-right: 0;
}

.reducedWeight {
    background: url(../img/weight4.png) no-repeat left 4px;
    padding-left: 16px;
    padding-right: 0;
}

.btn {
    background: #93cd2f;
    background: -webkit-linear-gradient(#a0df34, #93cd2f);
    background: -o-linear-gradient(#a0df34, #93cd2f);
    background: -moz-linear-gradient(#a0df34, #93cd2f);
    background: linear-gradient(#a0df34, #93cd2f);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #669f05;
    text-align: center;
    position: relative;
    text-decoration: none;
    display: inline-block;
    margin-left: 24px;
    margin-bottom: 37px;
    padding: 9px 32px 12px 15px;
    cursor: pointer;
}

.btn:after,
.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.btn:before {
    margin-top: -5px;
    right: 12px;
    border-width: 5px;
    border-color: transparent transparent transparent #fff;
}

.btn:after {
    margin-top: -2px;
    right: 18px;
    border-width: 2px;
    border-color: transparent transparent transparent #99d631;
}

.section8 {
    padding: 20px 0 54px;
}

.section8 .row:nth-child(2),
.section8 .row:nth-child(4) {
    background: url(../img/img-grass4.png) no-repeat left bottom;
    padding: 42px 0 78px 0;
}

.section8 .row:nth-child(3) {
    background: url(../img/img-grass5.jpg) no-repeat left bottom;
    padding: 42px 0 78px 0;
}

.section8 .row:nth-child(5) {
    padding: 42px 0 0 0;
}

.section8 .row:nth-child(2) {
    padding: 5px 0 78px 0;
}

.section8 .textBig2 {
    padding: 15px 0 6px;
}

.section10 p {
    padding: 89px 0 0 0;
    margin-bottom: 20px;
}

.section10 {
    padding: 44px 0 52px 0;
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.back_product1 {
    background: url(../img/img-product4.jpg) no-repeat left top;
}

.boxOrder .prices {
    margin-top: 3px;
    text-align: center;
}

.action+.textBig {
    text-align: center;
}

.new_price {
    display: block;
}

.boxOrder {
    background: #f7f6f6;
    background: -webkit-linear-gradient(#f7f6f6, #e1dee0);
    background: -o-linear-gradient(#f7f6f6, #e1dee0);
    background: -moz-linear-gradient(#f7f6f6, #e1dee0);
    background: linear-gradient(#f7f6f6, #e1dee0);
    padding: 20px;
    position: relative;
    margin-top: 15px;
    margin-left: 29px;
}

.boxOrder #grassContainer {
    position: absolute;
    width: 266px;
    height: 1220px;
    bottom: 60px;
    right: -132px;
}

.boxOrder #grass {
    position: absolute;
    bottom: 0;
    background: url(../img/img-grass2.png) no-repeat right top;
    width: 266px;
    height: 555px;
    z-index: 1;
}

.section1 .boxOrder:before {
    content: "";
    position: absolute;
    bottom: 60px;
    right: -132px;
    z-index: 0;
    background: url(../img/img-grass2.png) no-repeat right top;
    width: 266px;
    height: 555px;
}

.order_form {
    position: relative;
}

.blockInputForm {
    border-top: 1px solid #cbcbcb;
}

.input-form {
    display: block;
    width: 100%;
    padding: 11px 16px 13px;
    margin-bottom: 21px;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: none;
    line-height: 20px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #241c18;
}

input {
    outline: none;
}

.order_form .submit-form {
    width: 100%;
    margin-top: 8px;
    z-index: 100;
}

.submit-form {
    background: #ffb50b;
    background: -webkit-linear-gradient(#ffcb53, #ffb50b);
    background: -o-linear-gradient(#ffcb53, #ffb50b);
    background: -moz-linear-gradient(#ffcb53, #ffb50b);
    background: linear-gradient(#ffcb53, #ffb50b);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #d19408;
    color: #72530d;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    display: block;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 1px rgba(255, 255, 255, 0.43), 0 -1px rgba(75, 55, 9, 1);
    position: relative;
    text-decoration: none;
    padding: 12px 0 13px;
}

.submit-form:hover {
    background: #ffc338;
    background: -webkit-linear-gradient(#ffda85, #ffc338);
    background: -o-linear-gradient(#ffda85, #ffc338);
    background: -moz-linear-gradient(#ffda85, #ffc338);
    background: linear-gradient(#ffda85, #ffc338);
}

.submit-form:active {
    background: #ffb304;
    background: -webkit-linear-gradient(#ffb304, #ffbb1e);
    background: -o-linear-gradient(#ffb304, #ffbb1e);
    background: -moz-linear-gradient(#ffb304, #ffbb1e);
    background: linear-gradient(#ffb304, #ffbb1e);
    border-bottom: 1px solid #d19408;
    margin-bottom: 2px;
}

a.submit-form {
    display: inline-block;
    padding-left: 40px;
    padding-right: 40px;
    float: right;
}

.section4 .action,
.section7 .action {
    margin: 0;
    padding: 14px 8px 13px 8px;
}

.section4 .action .textBiger,
.section7 .action .textBiger {
    line-height: 30px;
}

.section4 .action:first-child,
.section7 .action:first-child {
    border-right: 1px dashed #fff;
}

.mob991,
.mob767,
.mob480 {
    display: none;
}

.popup {
    overflow-y: hidden;
}

.block_scroll {
    overflow-y: scroll;
    max-height: 600px;
    margin: 10px 0 0;
    -webkit-overflow-scrolling: touch;
}

.popup img {
    margin: 0 26px 0 0;
}

.popup .row {
    margin-left: 0;
    margin-right: 0;
}

.popup .col-xs-2,
.popup .col-xs-4,
.popup .col-xs-10,
.popup .col-xs-12 {
    padding: 0;
}

.popup .block1 {
    padding: 30px 30px 32px;
}

.popup .block1 .bold,
.popup .block1 .italic {
    margin-left: 27px;
}

.popup .block3 {
    padding: 20px 30px 10px;
    background-color: #efefef;
}

.popup .block2 {
    padding: 0 30px;
}

.popup .reducedLength {
    background: url(../img/body5.png) no-repeat left center;
    padding-left: 30px;
    margin: 2px 0 8px 0;
}

.popup .reducedWeight {
    background: url(../img/weight5.png) no-repeat left center;
    padding-left: 30px;
}

.popup p {
    margin-bottom: 16px;
}

.popup_close {
    color: #aaa;
    cursor: pointer;
    position: absolute;
    padding: 0;
    right: 10px;
    top: 0;
    font-size: 42px;
    line-height: 42px;
    width: 42px;
    font-weight: 700;
    background-color: transparent;
}

.popup_close:hover {
    color: #333;
}

.popup_btn {
    text-align: center;
}

.popup .submit-form {
    float: none;
}

.btn:hover {
    background: #a0df34;
    background: -webkit-linear-gradient(#93cd2f, #a0df34);
    background: -o-linear-gradient(#93cd2f, #a0df34);
    background: -moz-linear-gradient(#93cd2f, #a0df34);
    background: linear-gradient(#93cd2f, #a0df34);
}

.lt65 {
    font-size: 13px;
}

footer {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    display: block;
    margin: 15px 0;
    text-decoration: none;
    color: #333;
}

footer img {
    width: auto;
}

footer p {
    padding: 0;
    margin: 0;
}

@media only screen and (max-width : 1570px) {
    .section6 {
        background: url(../img/back.png) repeat-x left bottom, url(../img/img-doctor.jpg) no-repeat left bottom;
        padding: 49px 0 18px;
    }

    .section1 {
        background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl.jpg) no-repeat left top;
    }
}

@media only screen and (max-width : 1470px) {
    .section1 {
        background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl.jpg) no-repeat -150px top;
    }
}

@media only screen and (max-width : 1320px) {
    .section6 {
        background: url(../img/back.png) repeat-x left bottom, url(../img/img-doctor.jpg) no-repeat -100px bottom;
        padding: 49px 0 18px;
    }
}

@media only screen and (max-width : 1280px) {
    .section1 {
        background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl.jpg) no-repeat -200px top;
    }
}

@media only screen and (max-width : 1199px) and (min-width: 992px) {
    .list .textSmall {
        font-size: 15px;
    }

    .section1 li {
        padding: 0 0 10px 34px;
        line-height: 18px;
    }

    .list .col-md-12 {
        padding: 0;
    }

    .section6 .bodies .backGreen2 {
        width: 50%;
    }
}

@media only screen and (min-width: 767px) {
    .section8 .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width : 1199px) {
    .section5 {
        background-position: 100% bottom;
        background-size: contain;
    }

    #timer {
        padding-right: 0;
    }

    .section1 {
        background-size: auto 400px, auto;
        padding: 26px 0 300px 0;
    }

    .product1 {
        background-position: left top;
        padding-top: 227px;
        background-size: auto 250px;
    }

    .section6 .backMan {
        background: url(../img/icon-man.png) no-repeat 3px center;
        background-size: auto 344px;
    }

    .back_product1 {
        background: url(../img/img-product41.jpg) no-repeat left center;
        background-size: 70%;
    }

    .list {
        margin-left: 116px;
        margin-top: 20px;
    }

    .section7 .foto,
    .section8 .foto {
        min-height: 165px;
    }

    .btn {
        padding: 9px 30px 12px 14px;
    }

    .weight div:nth-child(1) span,
    .weight div:nth-child(2) span,
    .weight div:nth-child(3) span {
        background-size: contain;
    }

    .section8 .foto {
        background-size: contain;
    }
}

@media only screen and (max-width : 1024px) {
    .back_product1 {
        background: url(../img/img-product41.jpg) no-repeat left center;
        background-size: 58%;
    }
}

@media only screen and (max-width:1100px) {}

@media only screen and (max-width:1040px) {}

@media only screen and (max-width : 991px) {
    .section10 {
        overflow: hidden;
    }

    .section7 .foto,
    .section8 .foto {
        background-size: contain;
        min-height: 125px;
    }

    .section1 p {
        background-size: 60px;
        padding: 20px 0 0 66px;
    }

    .section6 .bodies .backGreen2 {
        width: 50%;
    }

    .reducedLength {
        margin-left: 1rem;
    }

    .section5 {
        background-position: 120% bottom;
        background-size: contain;
    }

    .section1 .container,
    .section10 .container {}

    .bodies .col-sm-4 {
        padding-right: 0;
        padding-left: 0;
    }

    .action {
        padding-left: 0;
        padding-right: 0;
    }

    .weight div:nth-child(1) span,
    .weight div:nth-child(2) span,
    .weight div:nth-child(3) span {
        background-size: 100%;
    }

    .weight .backGray {
        padding: 5px;
    }

    a.submit-form {
        padding: 12px 15px 12px;
    }

    .section1 .container {
        width: 100%;
    }

    .boxGray {
        background: #f7f6f6;
        background: -webkit-linear-gradient(#f7f6f6, #e1dee0);
        background: -o-linear-gradient(#f7f6f6, #e1dee0);
        background: -moz-linear-gradient(#f7f6f6, #e1dee0);
        background: linear-gradient(#f7f6f6, #e1dee0);
    }

    .product1 {
        background: none;
        padding-top: 0;
    }

    .list {
        margin-top: 32px;
        margin-left: 0;
    }

    .mob991 {
        display: block;
    }

    .section1 {}

    .section1 {
        background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl6.jpg) no-repeat left top;
        background-size: auto, auto;
        padding: 26px 0 200px 0;
    }

    .composition>div {
        padding-top: 237px;
        background-size: contain;
    }

    .composition>div:first-child {
        background-size: auto;
    }

    .product1 {
        padding-left: 45px;
        padding-right: 0;
    }

    .list>div {
        padding-left: 0;
        padding-right: 0;
    }

    .product4 {
        background: url(../img/img-product1.png) no-repeat center top;
        min-height: 276px;
        background-size: auto 285px;
    }

    h2 br {
        display: none;
    }
}

@media only screen and (max-width : 910px) {
    .section6 {
        background: url(../img/back.png) repeat-x left bottom, url(../img/img-doctor.jpg) no-repeat -200px bottom;
        padding: 49px 0 18px;
    }
}

@media only screen and (max-width : 767px) {
    h2 {
        padding-right: 0;
    }

    h1 {
        font-size: 50px;
        line-height: 61px;
        margin-top: 2px;
        margin-left: 20px;
    }

    h2 {
        font-size: 32px;
        line-height: 39px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 47px;
        line-height: 60px;
    }

    h4 {
        font-size: 16px;
        line-height: 21px;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .quality2 h5 {
        position: relative;
        font-size: 16px;
        line-height: 20px;
    }

    .quality2 h5:before {
        position: absolute;
        content: '';
        left: -20px;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: #95cf32;
        -ms-transform: skewX(-15deg);
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg);
    }

    .section1 {
        padding: 22px 0 0 0;
    }

    .section5 {
        background: url(../img/img-girl2.png) no-repeat 145% bottom #efefef;
        background-size: contain;
        padding: 48px 0;
    }

    .boxOrder {
        background: none;
        margin: 10px 0;
    }

    #grassContainer {
        display: none;
    }

    .section1 .boxOrder:before {
        right: -15%;
        z-index: 0;
    }

    .section10 .boxOrder:before {
        content: "";
        position: absolute;
        bottom: 40px;
        left: -15px;
        z-index: 0;
        background: url(../img/img-grass2.png) no-repeat right top;
        width: 266px;
        height: 555px;
        right: auto;
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    .mob767 {
        display: block;
    }

    .hidden-xs {
        display: none !important;
    }

    .section6 {
        background: none;
        padding: 20px 0 0;
    }

    .section6 .backMan {
        padding-left: 145px;
    }

    .section6 .doctor {
        background: url(../img/back.png) repeat-x left bottom, url(../img/img-doctor.jpg) no-repeat left top;
        background-size: auto, 50%;
    }

    .section6 .doctor .box {
        margin-left: 50%;
        margin-bottom: 52px;
        margin-top: 0;
    }

    .section1 p,
    .section10 p {
        padding: 64px 0 0;
        background-position: top center;
        text-align: center;
        background-size: 60px;
    }

    .section10 .boxOrder:after {
        content: "";
        position: absolute;
        right: 28px;
        top: -321px;
        width: 137px;
        height: 390px;
        background: url() no-repeat center center;
        z-index: 0;
    }

    .section10 .boxOrder {
        background: #95cf32;
        background: -webkit-linear-gradient(#a8d73b, #95cf32);
        background: -o-linear-gradient(#a8d73b, #95cf32);
        background: -moz-linear-gradient(#a8d73b, #95cf32);
        background: linear-gradient(#a8d73b, #95cf32);
        margin-left: 0;
        margin-top: 140px;
    }

    .section10 .backGreen {
        background-color: #fff;
    }

    .back_product1 {
        background: url(../img/img-product51.png) no-repeat center top;
        background-size: 375px;
    }

    .section10 .textWhite {
        color: #95cf32;
    }

    .section10 .textGray {
        color: #000;
    }

    .section6 {
        overflow: hidden;
    }

    .quality2 {
        background: none;
        padding-left: 40px;
    }

    .section6 h3 {
        background: url(../img/icon-quality2.jpg) no-repeat right 4px;
        margin-right: 20px;
        padding-right: 100px;
        padding-left: 30px;
        margin-bottom: 17px;
    }

    a.submit-form {
        width: 100%;
    }

    .quality2 li {
        display: block;
        margin: 0;
    }

    .quality2 ul {
        margin: 20px 0 0;
    }

    .action {
        padding-left: 12px;
        padding-right: 21px;
    }

    .weight div:nth-child(1) span,
    .weight div:nth-child(2) span,
    .weight div:nth-child(3) span {
        background-size: auto;
    }

    .weight .backGray {
        margin-bottom: 10px;
    }

    a.submit-form {
        padding: 11px 10px 13px;
        float: left;
    }

    .section7 .foto,
    .section8 .foto {
        min-height: 200px;
        background-size: auto 100%;
        margin-bottom: 0;
    }

    .orderGreen {
        padding: 0;
    }

    .section1 .boxOrder:before {
        right: -15%;
        z-index: 0;
    }

    .foto1,
    .foto2,
    .foto3 {
        background-position: left top;
    }

    .section8 .col-xs-7 {
        margin-left: 1rem;
    }

    .section7 .percentGo .col-xs-5,
    .section4 .percentGo .col-xs-5 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        padding: 0;
    }

    .pd0 {
        padding: 0;
    }

    .weight.around-xs>div {
        margin-right: 25px;
    }

    .reducedLength {
        padding-left: 25px;
    }

    .blogs .col-xs-8+.col-xs-4 {
        padding-left: 0;
        padding-right: 0;
    }

    .name {
        padding-left: 0;
    }

    .blogs>div:nth-child(1),
    .blogs>div:nth-child(2) {
        background: url(../img/img-grass4.png) no-repeat 40px bottom;
        padding: 0 0 25px 0;
        margin-bottom: 12px;
    }

    .blogs>div:nth-child(3) {
        padding: 0 0 25px 0;
    }

    .composition>div {
        background-size: auto;
    }

    .composition .composition4 {
        padding-top: 155px;
        background-position: center 0;
    }

    .composition .composition5 {
        padding-top: 173px;
        background-position: center 8px;
    }

    .composition .composition6 {
        padding-top: 154px;
        background-position: center -10px;
    }

    .section7 .col-xs-4 .reducedLength,
    .section7 .col-xs-4 .reducedWeight {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .product4 {
        min-height: 290px;
        background: url() no-repeat center top;
        background-size: auto 285px;
    }

    .section5 .container .col-xs-11 {
        -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
        max-width: 66.66%;
    }

    .reducedLength {
        margin-left: 0;
    }

    .section2 {
        background: url(../img/img-grass9.jpg) repeat-x left top #fdfdfd;
        padding-top: 77px;
        padding-bottom: 21px;
    }

    .section3 {
        padding: 34px 0 44px;
    }

    .section4 {
        padding: 20px 0 51px 0;
    }

    .section5 {
        padding: 18px 0;
    }

    .section5 h3 {
        margin-bottom: 35px;
    }

    .section5 p {
        padding: 15px 0 28px 30px;
    }

    .section8 .row:nth-child(2),
    .section8 .row:nth-child(4),
    .section8 .row:nth-child(3) {
        background-position: center bottom;
    }

    .section8 {
        padding: 20px 0 44px;
    }

    .section8 .row:nth-child(3),
    .section8 .row:nth-child(4) {
        padding: 20px 0 53px 0;
    }

    .section8 .row:nth-child(2) {
        padding: 5px 0 53px 0;
    }

    .section8 .row:nth-child(5) {
        padding: 20px 0 0 0;
    }

    .section10 {
        padding: 21px 0 52px 0;
    }
}

@media only screen and (max-width : 768px) and (min-width : 481px) {
    .menu_content li a {
        padding: 9px 0 10px 24px;
    }

    .btn_close {
        top: 0;
        right: 3px;
    }
}

@media only screen and (max-width:715px) {}

@media only screen and (max-width : 640px) {
    a.submit-form {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .section5 {
        background-position: 290px bottom;
        background-size: auto 100%;
    }

    .section1 {
        background: url(../img/img-grass.png) repeat-x left bottom, url(../img/img-girl6.jpg) no-repeat left top;
        background-size: auto, auto;
    }
}

@media only screen and (max-width : 600px) and (min-width : 481px) {

    .section7 .foto,
    .section8 .foto {
        background-size: 100% 100%;
    }
}

@media only screen and (max-width : 615px) {

    h1,
    h3 {
        font-size: 38px;
        line-height: 47px;
    }
}

@media only screen and (max-width : 590px) {
    .popup .block1 {
        padding: 10px 10px 12px;
    }

    .popup .block1 .bold,
    .popup .block1 .italic {
        margin-left: 27px;
    }

    .popup .block3 {
        padding: 20px 10px 10px;
        background-color: #efefef;
    }

    .popup .block2 {
        padding: 0 10px;
    }

    #timer.col-xs-8 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .section7 .percentGo .col-xs-5,
    .section4 .percentGo .col-xs-5,
    .section7 .percentGo .col-xs-6,
    .section4 .percentGo .col-xs-6 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width : 560px) {
    .section6 .backMan {
        background: none;
        padding-left: 0;
    }
}

@media only screen and (max-width : 520px) {

    .weight div:nth-child(1) span,
    .weight div:nth-child(2) span,
    .weight div:nth-child(3) span {
        background-size: 100%;
    }
}

@media only screen and (max-width : 520px) {

    .popup .block1 .col-xs-4,
    .popup .block2 .col-xs-2 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media only screen and (max-width : 490px) {
    a.submit-form {
        padding: 20px 0 17px;
        font-size: 22px;
    }
}

@media only screen and (max-width : 480px) {
    .prices .textBiger {
        line-height: 34px;
    }

    .pd0_480 {
        padding: 0;
    }

    .section8 .col-xs-7 {
        margin-left: 0;
    }

    .blogs .col-xs-8+.col-xs-4 {
        padding: 0 1rem;
    }

    .weight.around-xs>div {
        margin-right: 0;
    }

    .weight .backGray {
        margin-bottom: 6px;
    }

    .section6 {
        padding: 20px 0 0;
    }

    .section8 .foto {
        min-height: 180px;
    }

    .quality2 {
        padding-bottom: 27px;
    }

    .section6 .backMan {
        margin-top: 20px;
    }

    .reducedLength {
        margin-left: 0;
    }

    h1 {
        font-size: 32px;
        line-height: 40px;
        margin-top: 19px;
        margin-bottom: 2px;
    }

    h2 {
        font-size: 22px;
        line-height: 26px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 13px;
    }

    h4 {
        font-size: 15px;
        line-height: 18px;
    }

    h5 {
        font-size: 15px;
        line-height: 18px;
    }

    a.submit-form {
        display: block;
        float: none;
    }

    .section1 .col-xs-5,
    .section1 .col-xs-7,
    .section1 .col-xs-9,
    .section2 .col-xs-8,
    .section4 .col-xs-9,
    .section4 .col-xs-5,
    .section4 .col-xs-6,
    .section4 .col-xs-10,
    .section6 .bodies .col-xs-4,
    .section6 .col-xs-9,
    .section7 .blogs .col-xs-4,
    .section7 .blogs .col-xs-8,
    .section7 .col-xs-5,
    .section7 .col-xs-6,
    .section8 .col-xs-4,
    .section8 .col-xs-7,
    .section10 .col-xs-8 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .section3 .col-xs-4 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .section1 .col-xs-offset-3,
    .section1 .col-xs-offset-4 {
        margin-left: 0;
    }

    .section7 {
        padding: 28px 0 40px;
    }

    .section7 .row.bold .col-xs-4 {
        -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }

    .weight .col-xs-3 {
        -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
        max-width: 49%;
        padding: 0;
    }

    .weight div:nth-child(1) span,
    .weight div:nth-child(2) span,
    .weight div:nth-child(3) span {
        background-size: auto;
    }

    .section1 {
        background: none;
        padding: 26px 0 0 0;
    }

    .section1 .boxOrder {
        margin-left: 0;
    }

    .section6 .doctor {
        padding-left: 0;
        padding-right: 0;
        background: url(../img/back.png) repeat-x left bottom;
    }

    .bodies {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .section6 .doctor .box {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        margin-top: 0;
        margin-left: 0;
        padding-top: 10px;
    }

    .weight {
        position: relative;
    }

    .weight>div {
        margin-bottom: 0;
    }

    .weight:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: -40px;
        background: url(../img/img-doctor.jpg) no-repeat right top;
        background-size: 100%;
        width: 45%;
        height: 60%;
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    .section6 .doctor .box:after,
    .section6 .doctor .box:before {
        top: 0;
        left: 30%;
        margin-top: 0;
    }

    .section6 .doctor .box:before {
        border-color: transparent transparent #fff transparent;
        top: -12px;
        margin-left: 2px;
    }

    .section6 .doctor .box:after {
        border-color: transparent transparent #e5e5e5 transparent;
        top: -16px;
    }

    .hidden-xxs {
        display: none;
    }

    .mob480 {
        display: block;
    }

    .section6 .bodies .backGreen2 {
        width: auto;
        margin-left: 0;
    }

    .section10 p span {
        display: none;
    }

    .boxOrder:after,
    .section10 .boxOrder:before {
        display: none;
    }

    .body1,
    .body2,
    .body3 {
        margin-bottom: 20px;
    }

    .section1 .boxGray {
        background: #fff;
    }

    .section1 .boxGray .col-xs-7 {
        background: #f7f6f6;
        background: -webkit-linear-gradient(#f7f6f6, #e1dee0);
        background: -o-linear-gradient(#f7f6f6, #e1dee0);
        background: -moz-linear-gradient(#f7f6f6, #e1dee0);
        background: linear-gradient(#f7f6f6, #e1dee0);
        padding-left: 0;
        padding-right: 0;
    }

    .textBig {
        font-size: 22px;
        line-height: 22px;
    }

    .section6 .row .col-xs-9,
    .section6 .row.bodies .col-xs-4 {
        padding: 0;
    }

    .order-first {
        -webkit-order: -1;
        order: -1;
        margin-bottom: 20px;
    }

    .section6 h3,
    .quality2 {
        padding-left: 0;
        background: none;
    }

    .quality2 h5:before {
        left: -10px;
        -ms-transform: skewX(-5deg);
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    .weight.around-xs {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .blogs>div:nth-child(1),
    .blogs>div:nth-child(2),
    .blogs>div:nth-child(3) {
        background: none;
        padding: 0;
        margin-bottom: 0;
    }

    .section8 .row:nth-child(2),
    .section8 .row:nth-child(4),
    .section8 .row:nth-child(3),
    .section8 .row:nth-child(5) {
        background: none;
        padding: 5px 0 40px;
    }

    .section8 {
        padding: 20px 0 0;
    }

    .section4 .percentGo .col-xs-5,
    .section4 .percentGo .col-xs-6,
    .section7 .percentGo .col-xs-5,
    .section7 .percentGo .col-xs-6 {
        padding: 0;
    }

    .section7 .textBig2 {
        margin-top: 13px;
        padding-left: 20px;
    }

    .section7 .textBig2 span {
        padding-right: 20px;
    }

    .name {
        padding: 0;
    }

    .btn {
        padding: 9px 32px 12px 10px;
        margin-left: 0;
        font-size: 15px;
        width: 100%;
    }

    .section5 {
        background: url(../img/img-girl8.jpg) no-repeat right bottom #efefef;
        background-size: contain;
        padding: 18px 0 9px;
    }

    .section5 h3 {
        margin-bottom: 23px;
    }

    .section5 p {
        padding: 15px 0 25px 20px;
    }

    .section1 p {
        font-size: 12px;
    }

    .product4 {
        background: url(../img/img-product6.jpg) no-repeat center top;
        min-height: 226px;
    }

    #timer.col-xs-8 {
        -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
        max-width: 66.66%;
    }

    .section1 .row.around-xs {
        margin-right: 0;
        margin-left: 0;
    }

    .product1 {
        padding-left: 18px;
    }

    .list {
        margin-right: 0;
    }

    .list .textSmall {
        font-size: 16px;
    }

    .section1 li {
        line-height: 18px;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .section2 {
        background: url(../img/img-girl7.jpg) no-repeat right 83px, url(../img/img-grass8.jpg) repeat-x left top #fdfdfd;
        padding-top: 39px;
        padding-bottom: 4px;
    }

    .icon_advantage {
        background-size: contain;
    }

    .section3 {
        padding: 23px 0 47px;
    }

    .section4 {
        padding: 19px 0 40px 0;
    }

    .section4 h3 {
        margin-bottom: 25px;
    }

    .composition>div {
        padding-left: 0;
        padding-right: 0;
    }

    .menu {
        display: none;
        height: 39px;
        width: 45px;
    }

    .boxOrder .col-xs-8 {
        padding: 0;
    }
}

@media only screen and (max-width : 370px) and (min-width : 320px) {

    .section7 .foto,
    .section8 .foto {
        min-height: 160px;
        background-size: 100% 160px;
    }
}

@media only screen and (max-width : 400px) {
    .menu_content {
        width: 100%;
        top: 0;
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

footer,
section {
    display: block;
}

b,
strong {
    font-weight: bold;
}

img {
    border: 0;
}

button,
input {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
    border: 0;
    outline: 0;
}

button {
    text-transform: none;
}

button {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

img {
    vertical-align: middle;
}

[role="button"] {
    cursor: pointer;
}

.collapse {
    display: none;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}

@media (min-width: 320px) {
    .modal-dialog {
        width: 90%;
        margin: 126px auto 0;
    }
}

@media (min-width: 370px) {
    .modal-dialog {
        margin: 10px auto;
    }
}

@media (min-width: 480px) {
    .modal-dialog {}
}

@media (min-width: 640px) {
    .modal-dialog {
        margin: 30px auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 80%;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 992px) {
    .modal-dialog {
        width: 900px;
    }
}

@-ms-viewport {
    width: device-width;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

.delivery-section,
.delivery-section *,
.work-section,
.work-section * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.max-wrap {
    max-width: 980px;
    margin: 0 auto;
}

[class*="icon-"],
.delivery-note>span:before,
.steps-list li:after {
    background: url(../img/hotfooter-sprite.png) no-repeat;
    display: inline-block;
    vertical-align: top;
}

.delivery-note>span:before {
    background-position: 0 0;
    width: 11px;
    height: 13px;
}

.post-country {
    display: none;
}

.icon-step-01 {
    background-position: 0 -143px;
    width: 36px;
    height: 36px;
}

.icon-step-02 {
    background-position: 0 -199px;
    width: 41px;
    height: 41px;
}

.icon-step-03 {
    background-position: 0 -260px;
    width: 37px;
    height: 37px;
}

.icon-step-04 {
    background-position: 0 -317px;
    width: 37px;
    height: 38px;
}

.steps-list li:after {
    background-position: 0 -375px;
    width: 61px;
    height: 13px;
}

#RUS-post-img .post-country {
    display: inline-block;
    background-position: 0 -478px;
    width: 113px;
    height: 55px;
}

.delivery-section {
    background: #fff;
}

.delivery-post {
    padding: 10px 15px;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    text-align: center;
}

.delivery-post,
.delivery-post * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.delivery-post .deliver-holder {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 1% 0 0;
    max-width: 68%;
    border: solid #e1e1e1;
    border-width: 0 2px 0 0;
}

.post-country {
    background-position: -100px -100px;
    vertical-align: middle;
    margin: 8px 10px;
}

.delivery-post .delivery-label {
    display: inline-block;
    vertical-align: middle;
    padding: 0 11px;
    font-size: 22px;
    line-height: 26px;
}

.delivery-post#RUS-post-img .delivery-label {
    max-width: 42%;
}

.delivery-note {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    max-width: 28%;
}

.delivery-note>span {
    display: block;
    padding: 0 0 0 18px;
    position: relative;
}

.delivery-note>span>em {
    font-style: normal;
    display: inline-block;
    vertical-align: top;
}

.delivery-note>span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.work-section {
    background-color: #000;
}

.work-steps {
    padding: 31px 10px 20px;
    color: #fff;
}

.steps {
    padding: 0 0 20px 35px;
    overflow: hidden;
}

.steps-label {
    float: left;
    font-size: 20px;
    line-height: 22px;
    padding: 5px 27px 0 0;
    max-width: 230px;
}

.steps-wrap {
    overflow: hidden;
    padding: 0 0 20px;
}

.steps-list {
    padding: 0;
    list-style: none;
    font-size: 0;
    letter-spacing: -4px;
    margin: 0 -12px 0 0;
}

.steps-list li {
    width: 25.0%;
    font-size: 16px;
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.steps-list li:after {
    content: '';
    position: absolute;
    right: 100%;
    top: 100%;
    width: 61px;
    height: 13px;
    margin: -1px 15px 0 0;
}

.steps-list li:first-child:after {
    content: none;
    display: none;
}

.step-item {
    font-size: 12px;
    line-height: 14px;
    overflow: hidden;
}

.steps-list li .step-item {
    padding: 0 15px 0 0;
}

.step-img {
    padding: 0 10px 0 0;
    float: left;
}

.step-description {
    padding: 2px 0 0;
    display: block;
    overflow: hidden;
}

.call {
    text-align: center;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    padding: 0 0 9px;
}

.call>span {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.call .call-title:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    margin: 3px 13px 0 -17px;
    height: 17px;
    width: 17px;
    background-color: #05a210;
    border-radius: 50%;
}

@media only screen and (max-width:979px) {
    .delivery-post .deliver-holder {
        padding: 0 0 10px;
        margin: 0 0 8px;
        border-width: 0 0 2px 0;
        display: block;
        max-width: none;
    }

    .delivery-post .delivery-label {
        margin: 0;
    }

    .delivery-post#RUS-post-img .delivery-label {
        max-width: none;
    }

    .delivery-note {
        display: block;
        text-align: center;
        max-width: none;
    }

    .delivery-note>span {
        display: inline-block;
        vertical-align: top;
        padding: 0;
    }

    .delivery-note>span:before {
        content: '';
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        vertical-align: top;
        width: 11px;
        height: 13px;
        margin: 1px 5px 0 0;
    }

    .work-steps {
        padding: 22px 10px 23px;
    }

    .steps {
        padding: 0 29px 12px;
    }

    .steps-label {
        display: block;
        text-align: center;
        float: none;
        padding: 0 0 37px;
        max-width: none;
    }

    .steps-wrap {
        overflow: visible;
        padding: 20px 0;
    }

    .steps-list {
        margin: 0;
    }

    .steps-list li:after {
        top: auto;
        bottom: 100%;
        margin: 0 -31px 4px 0;
        -webkit-transform: scaleY(-1);
        -moz-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        transform: scaleY(-1);
    }

    .step-item {
        text-align: center;
    }

    .steps-list li .step-item {
        padding: 0 12px;
    }

    .step-img {
        padding: 0 0 10px;
        float: none;
        text-align: center;
        min-height: 47px;
    }

    .call {
        font-size: 19px;
        line-height: 24px;
        padding: 0 100px;
    }
}

@media only screen and (max-width:639px) {
    .delivery-post {
        text-align: center;
        padding: 7px 15px 15px;
    }

    .delivery-post .deliver-holder {
        padding: 0 0 10px;
        margin: 0 0 8px;
    }

    .delivery-post .delivery-label {
        padding: 0;
    }

    .delivery-note {
        margin: 0;
    }

    .work-steps {
        padding: 16px 15px;
    }

    .steps {
        padding: 0 0 7px;
    }

    .steps-label {
        padding: 0 0 20px;
    }

    .steps-wrap {
        padding: 0 30px;
        width: 218px;
        margin: 0 auto;
    }

    .steps-list {
        margin: 0;
    }

    .steps-list li {
        display: block;
        width: auto;
        padding: 0 0 23px;
    }

    .steps-list li:after {
        top: auto;
        right: -40px;
        bottom: 100%;
        margin: 0 0 9px;
        -webkit-transform: rotate(83deg) scaleY(-1);
        -moz-transform: rotate(83deg) scaleY(-1);
        -ms-transform: rotate(83deg) scaleY(-1);
        -o-transform: rotate(83deg) scaleY(-1);
        transform: rotate(83deg) scaleY(-1);
    }

    .steps-list li:nth-child(odd):after {
        right: auto;
        left: -52px;
        -webkit-transform: rotate(-83deg) scaleY(-1) scaleX(-1);
        -moz-transform: rotate(-83deg) scaleY(-1) scaleX(-1);
        -ms-transform: rotate(-83deg) scaleY(-1) scaleX(-1);
        -o-transform: rotate(-83deg) scaleY(-1) scaleX(-1);
        transform: rotate(-83deg) scaleY(-1) scaleX(-1);
        margin: 0 0 5px;
    }

    .step-item {
        text-align: left;
    }

    .steps-list li .step-item {
        padding: 0;
    }

    .step-img {
        padding: 0 10px 0 0;
        float: left;
        min-height: 0;
        text-align: left;
    }

    .step-description {
        padding: 6px 5px 0 0;
    }

    .call {
        font-size: 14px;
        line-height: 30px;
        font-weight: normal;
        padding: 0;
    }

    .call .call-title {
        display: inline;
        font-size: 20px;
        line-height: 27px;
        font-weight: bold;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .call .call-title {
        display: block;
    }
}

@media only screen and (max-width:319px) {
    .call {
        font-size: 14px;
        line-height: 18px;
    }
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Thin'), local(Roboto-Thin), url('../fonts/robotothin.woff2') format('woff2'), url('../fonts/robotothin.woff') format('woff'), url('../fonts/robotothin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Thin Italic'), local(Roboto-ThinItalic), url('../fonts/robotothinitalic.woff2') format('woff2'), url('../fonts/robotothinitalic.woff') format('woff'), url('../fonts/robotothinitalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Light'), local(Roboto-Light), url('../fonts/robotolight.woff2') format('woff2'), url('../fonts/robotolight.woff') format('woff'), url('../fonts/robotolight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Light Italic'), local(Roboto-LightItalic), url('../fonts/robotolightitalic.woff2') format('woff2'), url('../fonts/robotolightitalic.woff') format('woff'), url('../fonts/robotolightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: local(Roboto), local(Roboto-Regular), url('../fonts/roboto.woff2') format('woff2'), url('../fonts/roboto.woff') format('woff'), url('../fonts/roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Italic'), local(Roboto-Italic), url('../fonts/robotoitalic.woff2') format('woff2'), url('../fonts/robotoitalic.woff') format('woff'), url('../fonts/robotoitalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local(Roboto-Medium), url('../fonts/robotomedium.woff2') format('woff2'), url('../fonts/robotomedium.woff') format('woff'), url('../fonts/robotomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium Italic'), local(Roboto-MediumItalic), url('robotomediumitalic.woff2') format('woff2'), url('../fonts/robotomediumitalic.woff') format('woff'), url('../fonts/robotomediumitalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local(Roboto-Bold), url('../fonts/robotobold.woff2') format('woff2'), url('../fonts/robotobold.woff') format('woff'), url('../fonts/robotobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold Italic'), local(Roboto-BoldItalic), url('../fonts/robotobolditalic.woff2') format('woff2'), url('../fonts/robotobolditalic.woff') format('woff'), url('../fonts/robotobolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black'), local(Roboto-Black), url('../fonts/robotoblack.woff2') format('woff2'), url('../fonts/robotoblack.woff') format('woff'), url('../fonts/robotoblack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black Italic'), local(Roboto-BlackItalic), url('../fonts/robotoblackitalic.woff2') format('woff2'), url('../fonts/robotoblackitalic.woff') format('woff'), url('../fonts/robotoblackitalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}