/* reset */

.feedback_button {
    display: block;
    margin: 10px auto;
    width: 300px;
    height: 80px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 80px;
    color: #000;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    background-color: #ffcc00;
    border-radius: 7px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
input,
button {
    outline: none;
}

a {
    background-color: transparent;
    text-decoration: underline;
    -webkit-text-decoration-skip: objects;
}

input,
button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* styles */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-width: 320px;
    background: #fff;
    font-family: 'GothamPro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #222;
    cursor: default;
}

header,
section,
footer {
    margin: 0 auto;
    max-width: 1920px;
}

.wrapper {
    margin: 0 auto;
    padding: 0 10px;
    width: 960px;
    position: relative;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
}

b {
    font-weight: 700;
}


/* button */

.button_block {
    margin: 0 auto;
    width: 300px;
    height: 65px;
    position: relative;
}

.button_block:before {
    display: block;
    content: '';
    width: 326px;
    height: 38px;
    background: url(../img/shadowcd435.png) center no-repeat;
    position: absolute;
    bottom: -22px;
    left: 50%;
    margin-left: -163px;
}

.button_block .button {
    display: block;
    width: 300px;
    height: 60px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: #e6a501;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#df7b0b), to(#e6a501));
    background-image: -webkit-linear-gradient(bottom, #df7b0b 0%, #e6a501 100%);
    background-image: -moz-linear-gradient(bottom, #df7b0b 0%, #e6a501 100%);
    background-image: -o-linear-gradient(bottom, #df7b0b 0%, #e6a501 100%);
    background-image: linear-gradient(to top, #df7b0b 0%, #e6a501 100%);
    -webkit-box-shadow: 0 5px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    -moz-box-shadow: 0 5px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    box-shadow: 0 5px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    font-family: 'GothamPro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 60px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 0 #cb720e;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.button_block .button:hover {
    background-color: #dc9e02;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#d7770b), to(#dc9e02));
    background-image: -webkit-linear-gradient(bottom, #d7770b 0%, #dc9e02 100%);
    background-image: -moz-linear-gradient(bottom, #d7770b 0%, #dc9e02 100%);
    background-image: -o-linear-gradient(bottom, #d7770b 0%, #dc9e02 100%);
    background-image: linear-gradient(to top, #d7770b 0%, #dc9e02 100%);
}

.button_block .button:active {
    top: 1px;
    -webkit-box-shadow: 0 4px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    -moz-box-shadow: 0 4px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    box-shadow: 0 4px 0 #cb7008, 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}


/* titles */

h2 {
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    text-align: center;
}


/* video */

.video-container {
    width: 100%;
    height: 529px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.video-container iframe,
.video-container object,
.video-container embed {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/* triggers */

.triggers_section {
    padding: 15px 0;
    background: #5a462f;
}

.triggers_section ul {
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: justify;
}

.triggers_section ul:after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.triggers_section li {
    display: inline-block;
    vertical-align: middle;
    background-position: left center;
    background-repeat: no-repeat;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: normal;
    color: #fff;
    text-align: left;
}

.triggers_section li:nth-child(1) {
    padding: 0 0 0 56px;
    width: 285px;
    background-image: url(../img/triggers__trigger1_icon5f775.png);
}

.triggers_section li:nth-child(2) {
    padding: 0 0 0 55px;
    width: 180px;
    background-image: url(../img/triggers__trigger2_iconf0c59.png);
}

.triggers_section li:nth-child(3) {
    padding: 0 0 0 49px;
    width: 280px;
    background-image: url(../img/triggers__trigger3_iconce337.png);
}

.triggers_section li b {
    color: #b3be10;
}


/* offer */

.offer_section {
    padding: 47px 0 0;
    background-color: #4f3619;
    background-position: center top;
    background-repeat: no-repeat;
}

.offer_section.offer_top {
    height: 584px;
    background-image: url(../img/desctop__offer_top_bgee707.jpg);
}

.offer_section.offer_bottom {
    height: 578px;
    background-image: url(../img/desctop__offer_bottom_bg87c8a.jpg);
}

.offer_section .title_block {
    margin: 0 0 40px 180px;
    color: #4f3619;
    text-transform: uppercase;
}

.offer_section .title_block .main_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
}

.offer_section .title_block .subtitle {
    font-size: 24px;
    line-height: 30px;
}

.offer_section .discount_block {
    padding: 16px 0 0;
    width: 108px;
    height: 97px;
    background: url(../img/offer__discount_bg14bc9.png) center no-repeat;
    color: #fff;
    text-shadow: 0 2px 0 #cb720e;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 170px;
    left: 480px;
}

.offer_section .discount_block .text {
    margin: 0 0 2px;
    font-size: 18px;
    line-height: 18px;
}

.offer_section .discount_block .value {
    font-weight: 700;
    font-size: 38px;
    line-height: 38px;
}

.offer_section .price_block {
    float: left;
    margin: 301px 0 0 280px;
    width: 300px;
    position: relative;
}

.offer_section .price_block:before {
    display: block;
    content: '';
    border-left: 20px solid #fff;
    border-top: 32px solid #969f14;
    border-bottom: 32px solid #969f14;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -10px;
}

.offer_section .price_block .price_item {
    float: left;
    width: 50%;
    height: 64px;
    text-align: center;
}

.offer_section .price_block .price_item.old {
    padding: 13px 5px 0 0;
    -webkit-border-radius: 12px 0 0 12px;
    -moz-border-radius: 12px 0 0 12px;
    border-radius: 12px 0 0 12px;
    background: #fff;
}

.offer_section .price_block .price_item.new {
    padding: 13px 0 0 5px;
    -webkit-border-radius: 0 12px 12px 0;
    -moz-border-radius: 0 12px 12px 0;
    border-radius: 0 12px 12px 0;
    background: #969f14;
    color: #fff;
}

.offer_section .price_block .text {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}

.offer_section .price_block .value {
    font-size: 24px;
    line-height: 24px;
}

.offer_section .price_block .price_item.old .value {
    text-decoration: line-through;
}

.offer_section .price_block .price_item.new .value {
    font-weight: 700;
}

.offer_section .form_block {
    float: right;
    width: 340px;
}

.offer_section .timer_block {
    margin: 0 auto;
    width: 244px;
    color: #4f3619;
    text-align: center;
}

.offer_section .timer_block p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
}

.offer_section .timer_block .timer_item {
    float: left;
    margin: 0 26px 0 0;
    width: 64px;
    position: relative;
}

.offer_section .timer_block .timer_item:last-child {
    margin: 0;
}

.offer_section .timer_block .timer_item:before {
    display: block;
    content: ':';
    width: 26px;
    font-size: 30px;
    line-height: 56px;
    position: absolute;
    top: 0;
    right: -26px;
}

.offer_section .timer_block .timer_item:last-child:before {
    display: none;
}

.offer_section .timer_block .count {
    margin: 0 0 8px;
    width: 64px;
    height: 58px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-color: #facb7f;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#facb7f), color-stop(50%, #facb7f), color-stop(50%, #eeb072), to(#eeb072));
    background-image: -webkit-linear-gradient(bottom, #facb7f 0%, #facb7f 50%, #eeb072 50%, #eeb072 100%);
    background-image: -moz-linear-gradient(bottom, #facb7f 0%, #facb7f 50%, #eeb072 50%, #eeb072 100%);
    background-image: -o-linear-gradient(bottom, #facb7f 0%, #facb7f 50%, #eeb072 50%, #eeb072 100%);
    background-image: linear-gradient(to top, #facb7f 0%, #facb7f 50%, #eeb072 50%, #eeb072 100%);
    font-weight: 700;
    font-size: 34px;
    line-height: 58px;
}

.offer_section .timer_block .text {
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    text-transform: uppercase;
}

.offer_section form {
    /* margin-top: -49px; */
    padding: 20px 0 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: rgba(79, 54, 25, 0.9);
}

.offer_section .input {
    display: block;
    margin: 0 auto 10px;
    padding: 0 20px;
    width: 300px;
    height: 60px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background: #fff;
    font-family: 'GothamPro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #222;
    text-align: center;
}

.offer_section .input::-webkit-input-placeholder {
    opacity: 1;
    color: #666;
}

.offer_section .input:-moz-placeholder {
    opacity: 1;
    color: #666;
}

.offer_section .input::-moz-placeholder {
    opacity: 1;
    color: #666;
}

.offer_section .input:-ms-input-placeholder {
    opacity: 1;
    color: #666;
}

.offer_section .input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.offer_section .input:focus:-moz-placeholder {
    opacity: 0;
}

.offer_section .input:focus::-moz-placeholder {
    opacity: 0;
}

.offer_section .input:focus:-ms-input-placeholder {
    opacity: 0;
}

.offer_section .products_count {
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

.offer_section .products_count:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: -2px 10px 0 0;
    width: 23px;
    height: 21px;
    background: url(../img/offer__products_count_icon87d5f.png) center no-repeat;
}

.offer_section .products_count b {
    color: #a0a828;
}


/* problems */

.problems_section {
    padding: 30px 0 40px;
    background: #f4f4f6;
    color: #4f3619;
}

.problems_section h2 b {
    color: #c92f16;
}

.problems_section .problems_list {
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: center;
}

.problems_section .problem_item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
    width: 180px;
    border: 3px solid #e2e2e5;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.problems_section .problem_item:last-child {
    margin: 0;
}

.problems_section .problem_item:before {
    display: block;
    content: '';
    width: 38px;
    height: 43px;
    background: url(../img/problems__cross_iconbd0c5.png) center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.problems_section .problem_item img {
    display: block;
}

.problems_section .problem_item .text_block {
    display: table;
    width: 100%;
    height: 54px;
}

.problems_section .problem_item p {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: normal;
}


/* about */

.about_section {
    padding: 40px 0;
    background: #fffef3;
}

.about_section .content_block {
    margin: 0 0 40px 330px;
    min-height: 368px;
    position: relative;
}

.about_section h3 {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 36px;
    color: #969f14;
}

.about_section h3:after {
    display: block;
    content: '';
    margin: 15px 0 0;
    width: 24px;
    height: 2px;
    background: #cbcbc5;
}

.about_section h3 b {
    display: block;
}

.about_section .content_block img {
    display: block;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: -330px;
}

.about_section .content_block .info {
    margin: 20px 0 0;
    padding: 15px 20px 15px 76px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #f4f4f6 url(../img/about__tick_icon1126b.jpg) 20px center no-repeat;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.about_section ul {
    height: 204px;
    background: url(../img/desctop__about__use_bgf9ef6.png) left center no-repeat;
    position: relative;
}

.about_section ul li {
    font-size: 14px;
    line-height: 22px;
    position: absolute;
}

.about_section ul li:nth-child(1) {
    top: 19px;
    left: 0;
}

.about_section ul li:nth-child(2) {
    top: 29px;
    left: 564px;
}

.about_section ul li:nth-child(3) {
    top: 87px;
    left: 0;
}

.about_section ul li:nth-child(4) {
    top: 97px;
    left: 564px;
}

.about_section ul li:nth-child(5) {
    width: 330px;
    top: 150px;
    left: 0;
}

.about_section ul li:nth-child(6) {
    top: 164px;
    left: 564px;
}


/* benefits */

.benefits_section {
    padding: 30px 0 0;
    height: 800px;
    background: #4f3619 url(../img/desctop__benefits_bga0db9.jpg) center top no-repeat;
}

.benefits_section h2 {
    color: #fff;
}

.benefits_section h2 b {
    color: #ebb734;
}

.benefits_section .benefits_list {
    margin: 0 0 40px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: center;
}

.benefits_section .benefit_item {
    display: inline-block;
    vertical-align: top;
    margin: 0 6px 0 0;
    width: 230px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.benefits_section .benefit_item:last-child {
    margin: 0;
}

.benefits_section .benefit_item img {
    display: block;
}

.benefits_section .benefit_item p {
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: normal;
}

.benefits_section .benefit_item:last-child p {
    padding: 10px 20px;
}


/* video */

.video_section {
    margin-top: -300px;
}

.video_section h2 {
    color: #fff;
}

.video_section h2 b {
    color: #ebb734;
}


/* use */

.use_section {
    padding: 30px 0 60px;
    position: relative;
    overflow: hidden;
}

.use_section:after {
    display: block;
    content: '';
    border-top: 60px solid #fff;
    border-left: 960px solid #f4f4f6;
    border-right: 960px solid #f4f4f6;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -960px;
}

.use_section h2 b {
    display: block;
    color: #969f14;
}

.use_section .content_block {
    margin: 0 0 40px;
}

.use_section .content_block img {
    display: block;
    float: right;
    width: 300px;
}

.use_section .content_block .text_block {
    float: left;
    margin: 34px 0 0;
    padding: 0 0 0 20px;
    width: 610px;
    border-left: 3px solid #969f14;
}

.use_section .content_block p {
    margin: 0 0 15px;
}

.use_section .content_block p:last-child {
    margin: 0;
}

.use_section .content_block p b {
    color: #969f14;
}

.use_section ul {
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: center;
}

.use_section ul li {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 0 0;
    padding: 47px 0 0;
    width: 220px;
    background: url(../img/use__tick_icon3b70b.jpg) center top no-repeat;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: normal;
}

.use_section ul li:last-child {
    margin: 0;
}


/* comparison */

.comparison_section {
    padding: 30px 0 70px;
    background: #f4f4f6;
}

.comparison_section h2 b {
    color: #969f14;
}

.comparison_section .description {
    margin: -10px 0 30px;
    text-align: center;
}

.comparison_section .table {
    border: 1px solid #efefef;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.comparison_section .row {
    display: table;
    width: 100%;
}

.comparison_section .column {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 15px;
    width: 226px;
    background: #fcfcfd;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.comparison_section .column:first-child {
    width: 260px;
    text-align: left;
}

.comparison_section .column:nth-child(2) {
    background: #a3ad1a;
    color: #fff;
    font-weight: 700;
}

.comparison_section .column:nth-child(3) {
    border-right: 1px solid #efefef;
}

.comparison_section .column.yes:after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: 0 0 0 10px;
    width: 18px;
    height: 14px;
    background: url(../img/comparison__green_tick_icon19615.png) center no-repeat;
}

.comparison_section .column:nth-child(2).yes:after {
    background-image: url(../img/comparison__white_tick_iconcf917.png);
}

.comparison_section .column.no:after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: -2px 0 0 10px;
    width: 15px;
    height: 15px;
    background: url(../img/comparison__cross_icon8e1c2.png) center no-repeat;
}

.comparison_section .row:first-child .column img {
    display: block;
    margin: 0 auto;
    border: 6px solid #f4f4f6;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #f4f4f6;
}

.comparison_section .row:first-child .column:nth-child(2) img {
    border-color: #969f14;
    background: #969f14;
}

.comparison_section .row:nth-child(even) .column {
    background: #fff;
}

.comparison_section .row:nth-child(2) .column {
    font-weight: 700;
}

.comparison_section .row:nth-child(even) .column:nth-child(2) {
    background: #969f14;
}

.comparison_section .order_button {
    display: block;
    width: 300px;
    height: 60px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background: #a3ad1a;
    -webkit-box-shadow: 0 4px 0 #969f14;
    -moz-box-shadow: 0 4px 0 #969f14;
    box-shadow: 0 4px 0 #969f14;
    font-weight: 700;
    font-size: 20px;
    line-height: 60px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: absolute;
    bottom: -98px;
    left: 50%;
    margin-left: -150px;
    z-index: 99;
}

.comparison_section .order_button:hover {
    background: #9ba419;
}

.comparison_section .order_button:active {
    -webkit-box-shadow: 0 3px 0 #969f14;
    -moz-box-shadow: 0 3px 0 #969f14;
    box-shadow: 0 3px 0 #969f14;
    bottom: -99px;
}


/* opinion one */

.opinion_one_section {
    padding: 70px 0 40px;
}

.opinion_one_section .content_block {
    margin: 0 0 0 380px;
    min-height: 376px;
    position: relative;
}

.opinion_one_section h3 {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 36px;
    color: #4f3619;
}

.opinion_one_section h3:after {
    display: block;
    content: '';
    margin: 15px 0 0;
    width: 24px;
    height: 2px;
    background: #cbcbc5;
}

.opinion_one_section .author_block {
    width: 350px;
    border: 3px solid #f4f4f6;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #efefef;
    position: absolute;
    top: 0;
    left: -380px;
    overflow: hidden;
}

.opinion_one_section .author_block img {
    display: block;
}

.opinion_one_section .author_block .author_info {
    padding: 10px 20px;
}

.opinion_one_section .author_block .name {
    font-weight: 700;
}

.opinion_one_section .author_block .text {
    font-size: 14px;
    line-height: 22px;
}

.opinion_one_section .text_block p {
    margin: 0 0 15px;
}

.opinion_one_section .text_block p:last-child {
    margin: 0;
}


/* reviews */

.reviews_section {
    padding: 70px 0 40px;
    background: #4f3619 url(../img/desctop__reviews_bg18813.jpg) center top no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
}

.reviews_section h2 b {
    display: block;
    color: #ebb734;
}

.reviews_section .reviews_list {
    margin: 0 auto;
    max-width: 820px;
}

.reviews_section .review_item img {
    display: block;
    float: right;
    width: 232px;
    border: 6px solid #e2e2e5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e2e2e5;
}

.reviews_section .review_item .text_block {
    float: left;
    margin: 18px 0 0;
    width: 558px;
}

.reviews_section .review_item .author_info {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 36px;
}

.reviews_section .review_item .author_info:after {
    display: block;
    content: '';
    margin: 15px 0 0;
    width: 24px;
    height: 2px;
    background: #fff;
}

.reviews_section .owl-prev,
.reviews_section .owl-next {
    width: 26px;
    height: 98px;
    background-image: url(../img/reviews__arrowsa0763.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 67px;
}

.reviews_section .owl-prev {
    background-position: left center;
    left: -60px;
}

.reviews_section .owl-next {
    background-position: right center;
    right: -60px;
}


/* opinion two */

.opinion_two_section {
    padding: 30px 0 0;
}

.opinion_two_section h2 {
    margin: 0 0 20px;
}

.opinion_two_section h2 b {
    display: block;
    color: #969f14;
}

.opinion_two_section .opinion_block {
    margin: 0 0 40px;
}

.opinion_two_section .opinion_block img {
    display: block;
    float: left;
    width: 174px;
}

.opinion_two_section .opinion_block .text_block {
    float: left;
    margin: 68px 0 0 15px;
    width: 751px;
}


/* order steps */

.order_steps_section {
    margin-top: 0;
    padding: 30px 0;
    background: #f4f4f6;
}

.order_steps_section h2 {
    color: #4f3619;
}

.order_steps_section h2 b {
    display: block;
    color: #969f14;
}

.order_steps_section .step_item {
    float: left;
    margin: 0 20px 0 0;
    padding: 0 45px;
    width: 300px;
    text-align: center;
    position: relative;
}

.order_steps_section .step_item:last-child {
    margin: 0;
}

.order_steps_section .step_item:before {
    display: block;
    content: '';
    width: 26px;
    height: 98px;
    background: url(../img/order_steps__arroweac0a.png) center no-repeat;
    position: absolute;
    top: 43px;
    right: -23px;
}

.order_steps_section .step_item:last-child:before {
    display: none;
}

.order_steps_section .step_item .image_block {
    margin: 0 auto 15px;
    width: 184px;
    position: relative;
}

.order_steps_section .step_item img {
    display: block;
    border: 6px solid #e6e6e6;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e6e6e6;
}

.order_steps_section .step_item .number {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #969f14;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}


/* footer */

.footer_section {
    padding: 25px 0;
    background: #e6e6e6;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.footer_section img {
    display: block;
    margin: 0 auto 10px auto;
}

.footer_section a {
    color: #222;
}

.footer_section a:hover {
    text-decoration: none;
}

.video-reviews {
    padding: 40px 0;
}

.vrev {
    text-align: center;
    font-size: 0;
}

.vrev li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 10px 20px;
}

.vrev a {}

.vrev img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 959px) {
    /* styles */
    .wrapper {
        width: 640px;
    }
    /* titles */
    h2 {
        font-size: 30px;
        line-height: 36px;
    }
    /* video */
    .video-container {
        height: 349px;
    }
    /* triggers */
    .triggers_section {
        display: none;
    }
    /* offer */
    .offer_section {
        padding: 25px 0 0;
    }
    .offer_section.offer_top {
        height: auto;
        background-image: url(../img/tablet__offer_bg301c7.jpg);
    }
    .offer_section.offer_bottom {
        height: auto;
        background-image: url(../img/tablet__offer_bg301c7.jpg);
    }
    .offer_section .title_block {
        margin: 0 0 25px;
        text-align: center;
    }
    .offer_section .title_block .main_title {
        font-size: 30px;
        line-height: 36px;
    }
    .offer_section .title_block .subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    .offer_section .discount_block {
        top: 85px;
        left: 180px;
    }
    .offer_section .price_block {
        margin: 300px 0 0;
        width: 290px;
    }
    .offer_section .form_block {
        width: 320px;
    }
    .offer_section form {
        padding: 67px 0 30px;
        -webkit-border-radius: 8px 8px 0 0;
        -moz-border-radius: 8px 8px 0 0;
        border-radius: 8px 8px 0 0;
    }
    /* problems */
    .problems_section {
        padding: 30px 0 20px;
    }
    .problems_section .problem_item {
        margin: 0 10px 20px;
    }
    .problems_section .problem_item:last-child {
        margin: 0 10px 20px;
    }
    /* about */
    .about_section {
        padding: 30px 0 40px;
    }
    .about_section .content_block {
        margin: 0 0 30px;
        min-height: auto;
    }
    .about_section h3 {
        margin: 0 0 30px;
        text-transform: uppercase;
        text-align: center;
    }
    .about_section h3:after {
        display: none;
    }
    .about_section .content_block img {
        position: static;
        float: left;
        margin: 10px 30px 0 0;
        width: 200px;
    }
    .about_section ul {
        padding: 0 0 0 160px;
        height: auto;
        background-image: url(../img/tablet__about__use_bg5fa00.png);
    }
    .about_section ul li {
        margin: 0 0 10px;
        padding: 0 0 0 15px;
        font-size: 16px;
        line-height: 24px;
        position: relative;
    }
    .about_section ul li:nth-child(1),
    .about_section ul li:nth-child(2),
    .about_section ul li:nth-child(3),
    .about_section ul li:nth-child(4),
    .about_section ul li:nth-child(5),
    .about_section ul li:nth-child(6) {
        top: auto;
        left: auto;
    }
    .about_section ul li:nth-child(5) {
        width: auto;
    }
    .about_section ul li:last-child {
        margin: 0;
    }
    .about_section ul li:before {
        display: block;
        content: '';
        width: 5px;
        height: 5px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: #222;
        position: absolute;
        top: 9px;
        left: 0;
    }
    /* benefits */
    .benefits_section {
        padding: 30px 0 345px;
        background-image: none;
        height: auto;
    }
    .benefits_section .benefits_list {
        margin: 0;
    }
    .benefits_section .benefit_item {
        margin: 0 20px 40px;
    }
    .benefits_section .benefit_item:last-child {
        margin: 0 20px 40px;
    }
    /* video */
    .video_section {
        margin-top: -315px;
    }
    /* use */
    .use_section {
        padding: 30px 0 0;
    }
    .use_section:after {
        display: none;
    }
    .use_section .content_block img {
        float: none;
        margin: 0 auto 30px;
    }
    .use_section .content_block .text_block {
        float: none;
        margin: 0;
        padding: 0;
        width: 100%;
        border: none;
        text-align: center;
    }
    .use_section ul li {
        margin: 0 20px 40px;
    }
    .use_section ul li:last-child {
        margin: 0 20px 40px;
    }
    /* comparison */
    .comparison_section h2 b {
        display: block;
    }
    .comparison_section .column {
        width: 200px;
    }
    .comparison_section .column:first-child {
        width: 218px;
    }
    .comparison_section .column:nth-child(3) {
        display: none;
    }
    /* opinion one */
    .opinion_one_section {
        padding: 60px 0 30px;
    }
    .opinion_one_section .content_block {
        margin: 0;
        min-height: auto;
        text-align: center;
    }
    .opinion_one_section h3 {
        margin: 0 0 30px;
        text-transform: uppercase;
        text-align: center;
    }
    .opinion_one_section h3:after {
        display: none;
    }
    .opinion_one_section .author_block {
        position: static;
        margin: 0 auto 20px;
    }
    /* reviews */
    .reviews_section {
        padding: 50px 0;
        background-image: none;
    }
    .reviews_section .review_item img {
        float: none;
        margin: 0 auto 20px;
    }
    .reviews_section .review_item .text_block {
        float: none;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .reviews_section .review_item .author_info {
        font-size: 24px;
        line-height: 30px;
    }
    .reviews_section .review_item .author_info:after {
        display: none;
    }
    .reviews_section .owl-prev {
        left: 100px;
    }
    .reviews_section .owl-next {
        right: 100px;
    }
    /* opinion two */
    .opinion_two_section .opinion_block .text_block {
        margin: 60px 0 0 15px;
        width: 431px;
    }
    /* order steps */
    .order_steps_section {}
    .order_steps_section .step_item {
        margin: 0 10px 0 0;
        padding: 0;
        width: 200px;
    }
    .order_steps_section .step_item:before {
        display: none;
    }
}

@media screen and (max-width: 639px) {
    /* styles */
    .wrapper {
        width: 320px;
    }
    /* titles */
    h2 {
        font-size: 20px;
        line-height: 28px;
    }
    /* video */
    .video-container {
        height: 169px;
    }
    /* offer */
    .offer_section {
        padding: 20px 0 25px;
    }
    .offer_section.offer_top {
        background-image: url(../img/mobile__offer_bg37b59.jpg);
    }
    .offer_section.offer_bottom {
        background-image: url(../img/mobile__offer_bg37b59.jpg);
    }
    .offer_section .title_block {
        margin: 0 0 327px;
    }
    .vrev li {
        width: 100%;
        padding: 0 0 20px;
    }
    .fancybox-slide {
        padding: 0 !important;
    }
    .offer_section .title_block .main_title {
        font-size: 22px;
        line-height: 30px;
    }
    .offer_section .title_block .main_title span {
        display: block;
        font-size: 38px;
        line-height: 44px;
    }
    .offer_section .title_block .subtitle {
        display: none;
    }
    .offer_section .discount_block {
        top: 100px;
        left: 200px;
    }
    .offer_section .price_block {
        float: none;
        margin: 0 auto 59px;
        width: 300px;
    }
    .offer_section .form_block {
        float: none;
        width: 300px;
    }
    .offer_section .timer_block p {
        margin: 0 0 15px;
        color: #fff;
    }
    .offer_section form {
        padding: 67px 0 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        background: none;
    }
    /* problems */
    .problems_section {
        padding: 30px 0 0;
    }
    .problems_section .problem_item {
        margin: 0 0 30px;
    }
    .problems_section .problem_item:last-child {
        margin: 0 0 30px;
    }
    .problems_section .problem_item .text_block {
        display: block;
        height: auto;
    }
    .problems_section .problem_item p {
        display: block;
        padding: 8px 15px;
    }
    /* about */
    .about_section {
        padding: 30px 0;
    }
    .about_section h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .about_section .content_block img {
        float: none;
        margin: 0 auto 20px;
        width: 100%;
    }
    .about_section .content_block p {
        text-align: center;
    }
    .about_section .content_block .info {
        padding: 70px 15px 15px;
        background-position: center 20px;
        text-align: center;
    }
    .about_section ul {
        padding: 0;
        background: none;
    }
    /* benefits */
    .benefits_section {
        padding: 30px 0 234px;
    }
    .benefits_section .benefit_item {
        margin: 0 0 30px;
    }
    .benefits_section .benefit_item:last-child {
        margin: 0 0 30px;
    }
    /* video */
    .video_section {
        margin-top: -199px;
    }
    /* use */
    .use_section .content_block img {
        margin: 0 auto 20px;
    }
    .use_section .content_block {
        margin: 0 0 30px;
    }
    .use_section ul li {
        margin: 0 0 30px;
    }
    .use_section ul li:last-child {
        margin: 0 0 30px;
    }
    /* comparison */
    .comparison_section {
        padding: 30px 0 60px;
    }
    .comparison_section .row:first-child,
    .comparison_section .row:nth-child(2) {
        display: none;
    }
    .comparison_section .column {
        padding: 10px;
        width: 118px;
    }
    .comparison_section .column:first-child {
        width: 180px;
    }
    .comparison_section .column:nth-child(4) {
        display: none;
    }
    .comparison_section .order_button {
        bottom: -88px;
    }
    /* opinion one */
    .opinion_one_section h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .opinion_one_section .author_block {
        width: 100%;
    }
    .opinion_one_section .author_block .name {
        font-size: 14px;
        line-height: 22px;
    }
    /* reviews */
    .reviews_section .review_item img {
        width: 180px;
    }
    .reviews_section .review_item .author_info {
        font-size: 18px;
        line-height: 26px;
    }
    .reviews_section .owl-prev,
    .reviews_section .owl-next {
        top: 41px;
    }
    .reviews_section .owl-prev {
        left: 0;
    }
    .reviews_section .owl-next {
        right: 0;
    }
    /* opinion two */
    .opinion_two_section h2 {
        margin: 0 0 30px;
    }
    .opinion_two_section .opinion_block {
        margin: 0 0 30px;
    }
    .opinion_two_section .opinion_block img {
        float: none;
        margin: 0 0 20px 71px;
    }
    .opinion_two_section .opinion_block .text_block {
        float: none;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    /* order steps */
    .order_steps_section {}
    .order_steps_section h2 b {
        display: inline;
    }
    .order_steps_section .step_item {
        float: none;
        margin: 0 auto 30px;
    }
    .order_steps_section .step_item:last-child {
        margin: 0 auto;
    }
}

.owl-carousel {
    touch-action: manipulation;
}