* {
	box-sizing: border-box;  
    -moz-box-sizing: border-box;  
    -webkit-box-sizing: border-box;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	margin: 0;
	height: 100%;
}

body {
	height: 100%;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

header, nav, section, article, aside, figure, footer {
   display:block;
}

/* tags */

a {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

p {
    font-family: 'Roboto', sans-serif;
	padding: 0 0 15px 0;
	margin: 0;
}

ul, ol {
    list-style: none;
	padding: 0;
	margin: 0;
}

img {
	display: block;
	border: none;
}

/* end tags */

/* titles */

h1 {
	font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    padding: 0 10px;
    margin: 0;
}

h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    padding: 0 10px 20px 10px;
    margin: 0;
}

h4 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    padding: 0 0 18px 0;
    margin: 0;
}

/* end titles */

/* form elements */

input:focus, textarea:focus {
    outline: none;
    -webkit-appearance: none;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	height: 24px;
	display: block;
	font-size: 12px;
	font-family: inherit;
	color: #999;
	line-height: 14px;
	padding: 5px 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fff;
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

input[type="button"],
input[type="submit"] {
	font-family: inherit;
}

textarea {
	width: 100%;
	height: 90px;
	font-size: 12px;
	font-family: inherit;
	color: #999;
	line-height: 14px;
	padding: 5px 10px;
	margin: 0;
	border: 1px solid #ccc;
	resize: vertical;
	background: #fff;
}

.icheckbox {
	width: 15px;
	height: 15px;
	display: inline-block;
	cursor: pointer;
	margin: 0 3px 0 0;
	position: relative;
	top: 3px;
	background: url(../images/checkbox-bg.png) no-repeat 0 0;
}

.icheckbox.hover {
	background-position: 0 -15px;
}

.icheckbox.checked {
	background-position: 0 -30px;
}

.icheckbox.checked.hover {
	background-position: 0 -45px;
}

.iradio {
	width: 14px;
	height: 14px;
	display: inline-block;
	cursor: pointer;
	margin: 0 3px 0 0;
	position: relative;
	top: 3px;
	background: url(../images/radio-bg.png) no-repeat 0 0;
}

.iradio.hover {
	background-position: 0 -14px;
}

.iradio.checked {
	background-position: 0 -28px;
}

.iradio.checked.hover {
	background-position: 0 -42px;
}

form label {
	cursor: pointer;
}

/* end form elements */

/* different select */

.selectboxit-container {
    position: relative;
    display: block;
}

.selectboxit-btn {
    width: 100%;
    height: 44px;
    display: block;
    font-size: 16px;
    font-family: inherit;
    color: #bbbbbb;
    outline: none;
    margin: 0;
    position: relative;
    border: 1px solid #e1e1e2;
    border-radius: 5px;
    -webkit-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    -moz-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    -o-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    background: #fff;
}

.selectboxit-btn .selectboxit-option-icon-container {
    display: none;
}

.selectboxit .selectboxit-text {
    max-width: 100% !important;
    display: block;
    line-height: 44px;
    cursor: pointer;
    padding: 0 45px 0 15px;
}

.selectboxit .selectboxit-arrow-container {
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    top: 16px; right: 15px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #999;
}

.selectboxit-options {
    width: 100%;
    height: 150px;
    display: none;
    overflow-y: scroll;
    padding: 5px 0;
    position: absolute;
    left: 0; top: 45px;
    z-index: 500;
    border-radius: 5px;
    -webkit-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    -moz-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    -o-box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    box-shadow: inset 1px 1px 8px rgba(0,0,0,0.14);
    background: #fff;
}

.selectboxit-options a {
    color: #bbb;
    display: block;
    line-height: 18px;
    text-decoration: none;
    cursor: pointer;
    padding: 7px 15px;
    border-top: 1px solid #ddd;
}

.selectboxit-options li:first-child a {
    border: none;
}

.selectboxit-options a:hover,
.selectboxit-options li a.selected {
    color: #666;
}

/* end different select */

/* buttons */

.button {
    height: 58px;
	display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 56px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	border: none;
}

.button.green {
    color: #ffffff;
    border-bottom: 2px solid #22be12;
    background: #149207;
}

.button.green:hover {
    background: #41bc23;
}

/* end buttons */

/* navigation */

nav.inline ul {
	list-style: none;
	padding: 0;
}

nav.inline ul li {
	float: left;
}

nav.center {
	overflow-x: hidden;
}

nav.center ul {
	float: left;
	position: relative;
	left: 50%;
}

nav.center ul li {
	position: relative;
	right: 50%;
}

/* end navigation */

/* global class */

.left {
	float: left;
}

.right {
	float: right;
}

.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: '';
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
}

.wrapper {
    width: 100%;
	height: auto !important;
	height: 100%;
	min-height: 100%;
	margin: auto;
	position: relative;
}

.inner-block {
	width: 1024px;
	margin: auto;
}

/* global blocks */

/* top section */

.top-section {
    min-height: 842px;
    margin: 0 0 52px 0;
    background: url(../images/top-section-bg.jpg) no-repeat center top;
}

.top-section .brand-list {
    padding: 58px 0 0 0;
}

.top-section .brand-list li {
    padding: 0 0 30px 0;
}

.top-section .left-block {
    width: 550px;
}

.top-section .left-block .logo {
    padding: 26px 0 15px 32px;
}

.top-section .left-block .logo a {
    display: block;
    width: 236px    ;
}

.top-section .left-block .promo-block {
    position: relative;
    padding: 17px 50px 30px 50px;
    border: 3px solid #ffffff;
    border-radius: 10px;
    background: rgba(255,255,255,0.47);
}

.top-section .left-block .promo-block .button {
    width: 366px;
}

.top-section .left-block .promo-block .arrow {
    position: absolute;
    bottom: -28px; right: 42px;
}

.top-section .graph-block {
    width: 488px;
    padding: 30px 22px 0 22px;
    border: 1px solid #d2d2d2;
    margin: 0 33px;
    background: #ffffff;
}

.top-section .graph-block .steps {
    padding: 0 0 33px 0;
}

.top-section .graph-block .steps .step {
    width: 220px;
    float: left;
}

.top-section .graph-block .steps .step .number {
    width: 48px;
    height: 48px;
    float: left;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    background: #ff9523;
}

.top-section .graph-block .steps .step .text {
    width: 167px;
    float: right;
    line-height: 20px;
    padding: 2px 0 0 0;
}

.top-section .info-block {
    float: left;
    padding: 50px 0 0 0;
}

.top-section .info-block li {
    padding: 0 0 21px 0;
}

.top-section .info-block li .image {
    float: left;
    padding: 4px 16px 0 0;
}

.top-section .info-block li .image img {
    width: 45px;
}

.top-section .info-block li .text {
    width: 230px;
    float: left;
    font-size: 25px;
    line-height: 24px;
    color: #ffffff;
}

/* end top section */

/* info section */

.info-section {
    padding: 0 0 36px 0;
}

.info-section header {
    text-align: center;
    position: relative;
    padding: 0 0 8px 0;
}

.info-section header:before {
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    top: 21px; left: 0;
    z-index: 5;
    background: #cdcdcd;
}

.info-section header h4 {
    display: inline-block;
    padding: 0 25px;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.info-section .awards-block {
    text-align: center;
    padding: 0 0 57px 0;
}

.info-section .awards-block img {
    display: inline-block;
    vertical-align: top;
    padding: 0 45px;
}

.info-section .payment-block {
    text-align: center;
    padding: 20px 110px 45px 110px;
}

.info-section .payment-block img {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}

.info-section .button {
    width: 366px;
    margin: auto;
}

/* end info section */

/* description section */

.description-section {
    padding: 0 0 43px 0;
}

.description-section p {
    text-align: center;
}

.description-section .video-block {
    width: 854px;
    padding: 33px 0 58px 0;
    margin: auto;
}

.description-section .button {
    width: 366px;
    margin: auto;
}

/* end description section */

/* reviews section */

.reviews-section {
    padding: 0 0 60px 0;
}

.reviews-section h4 {
    padding: 0 0 32px 0;
}

.review-block {
    padding: 0 0 55px 0;
}

.review-block .image {
    width: 122px;
}

.review-block .image figure {
    width: 122px;
    height: 122px;
    display: block;
    padding: 6px;
    margin: 0 0 4px 0;
    background: url(../images/user-frame.gif) no-repeat 0 0;
}

.review-block .image figure img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.review-block .image .name {
    text-align: center;
    font-size: 13px;
    color: #535353;
}

.review-block .text {
    width: 846px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #7a7b7b;
    position: relative;
    padding: 19px 22px 24px 22px;
    margin: 5px 0 0 0;
    border: 1px solid #c5c5c5;
}

.review-block .text p {
    padding: 0 0 18px 0;
}

.review-block .text:before {
    content: '';
    width: 31px;
    height: 30px;
    display: block;
    position: absolute;
    top: -1px; left: -31px;
    background: url(../images/review-arrow.png) no-repeat 0 0;
}

.reviews-section .button {
    width: 366px;
    margin: auto;
}

/* end reviews section */

/* footer */

.footer-spacer {
	height: 100px;
}

footer.main {
    width: 100%;
    height: 100px;
    margin: -100px 0 0 0;
    position: relative;
    z-index: 100;
    border-top: 1px solid #dcdcdc;
}

footer.main .logo {
    padding: 26px 45px 0 0;
}

footer.main .logo a {
    display: block;
}

footer.main .logo a img {
    width: 82px;
}

footer.main .copyrights {
    font-size: 12px;
    color: #7a7b7b;
    padding: 43px 0 0 0;
}

footer.main .awards {
    padding: 18px 0 0 70px;
}

footer.main .awards img {
    float: left;
    padding: 0 17px;
}

footer.main .social {
    padding: 26px 0 0 44px;
}

footer.main .social a {
    width: 39px;
    height: 39px;
    display: block;
    border-radius: 50%;
    margin: 0 0 0 12px;
}

footer.main .social .facebook {
    background: url(../images/icons-social.png) no-repeat -1px -1px;
    -webkit-transition: background 0.2s ease 0s;
    -moz-transition: background 0.2s ease 0s;
    -o-transition: background 0.2s ease 0s;
    transition: background 0.2s ease 0s;
}

footer.main .social .facebook:hover {
    background: url(../images/icons-social.png) no-repeat -1px -47px;
}

footer.main .social .youtube {
    background: url(../images/icons-social.png) no-repeat -104px -1px;
    -webkit-transition: background 0.2s ease 0s;
    -moz-transition: background 0.2s ease 0s;
    -o-transition: background 0.2s ease 0s;
    transition: background 0.2s ease 0s;
}

footer.main .social .youtube:hover {
    background: url(../images/icons-social.png) no-repeat -104px -47px;
}

footer.main .privacy {
    padding: 33px 0 0 0;
}

footer.main .privacy a {
    font-size: 12px;
    color: #7a7b7b;
}

/*  end footer */

@media screen and (max-width:1366px) {

    .top-section {
        min-height: 755px;
        margin: 0 0 30px;
        -moz-background-size: 1557px;
        -webkit-background-size: 1557px;
        -o-background-size: 1557px;
        background-size: 1557px;
    }

    h1,
    h2 {
        font-size: 30px;
        text-align: left;
        line-height: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .top-section .left-block .logo {
        padding: 0 0 5px 32px;
    }

    .top-section .left-block .logo img {
        width: 150px;
    }

    .top-section .info-block {
        padding: 110px 0 0 0;
    }

    .top-section .info-block li {
        padding: 0 0 12px 0;
    }

    .top-section .info-block li .image img {
        width: 40px;
    }

    .top-section .info-block li .text {
        font-size: 20px;
        line-height: 20px;
    }

    .top-section .brand-list {
        padding: 20px 0 0 0;
   }

    .top-section .brand-list li {
        padding: 0 0 18px 0;
    }

    .top-section .graph-block {
        padding: 10px 22px 0;
    }

    .top-section .graph-block .steps {
        padding: 0 0 12px;
    }

    .top-section .left-block .promo-block .arrow {
        bottom: -14px;
    }

}