

/*
font-family: 'Roboto', sans-serif;
*/

/* reset */
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	color: #252626;
	font-family: 'PT Sans', Arial, sans-serif;
}

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

body {-webkit-font-smoothing: antialiased;}


:focus::-webkit-input-placeholder,
:focus::-moz-placeholder,
:focus:-moz-placeholder,
:focus:-ms-input-placeholder {
	color: transparent
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea,
select,
button,
a {
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {outline: none;}

input[type=submit],
button,
a {
	cursor: pointer;
}


/* mix */
.error {
	box-shadow: inset 0 0 0px 3px #f00 !important;
	/*border: 1px solid #f00;*/
}

.transition {
	-moz-transition:    all 0.2s ease;
	-o-transition:      all 0.2s ease;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    outline: none;
    border-radius: 7px;
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
    padding: 30px 30px;
    min-width: 330px;
    background: linear-gradient(to bottom, #f37b1a, #f05612);
    box-shadow: inset 1px 1px 0 0px #f69e5a, inset -1px -1px 0 0px #dd5212;
}
.btn:hover {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to bottom, #f3b91a, #f09212);
}
.btn:active {
    background: linear-gradient(to top, #f3b91a, #f09212);
}
.btn:active, .btn:visited, .btn:focus {
    color: #fff;
    text-decoration: none;
}

.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }

.heading {}
.heading h2 {
    font-size: 50px;
    font-weight: bold;
    color: #252626;
    margin: 5px 0;
}
.heading h2 span {
    color: #f3921a;
}
.heading h3 {
    font-size: 36px;
    font-weight: normal;
    color: #252626;
    margin: 5px 0;
    line-height: 1.2;
}
.heading h3 span {
    color: #f3921a;
}

/* styles */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 100;
	transition: background-color 0.2s ease, padding 0.2s ease;
	background-color: transparent;
}
#header.fix {
	background-color: rgba(212, 229, 239, .95);
	padding: 10px 0;
	box-shadow: 0 3px 10px 0px rgba(0,0,0,.1);
}
#header.fix .logo img {
	/*transform: scale(.5);*/
	width: 69px;
}
#header.fix p.desc {
	color: #252626;
}
#header.fix .callback a,
#header.fix .callback a p,
#header.fix .callback a span {
	color: #252626;
}
#header .logo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    margin-top: 8px;
}
#header .logo img {
	width: 138px;
	/*transform: scale(1);*/
	transition: width 0.2s ease;
}
#header p.desc {
    font-size: 14px;
    color: #8b939c;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    line-height: 1.5;
    margin-top: 8px;
}
#header .callback {
    text-align: right;
}
#header .callback a {
    display: inline-block;
    vertical-align: middle;
}
#header .callback a p {
    font-family: 'Roboto', sans-serif;
    color: #e6e6eb;
    font-size: 22px;
    margin: 0;
}
#header .callback a span {
    font-family: 'Roboto', sans-serif;
    color: #e6e6eb;
    font-size: 12px;
}
#header .callback a:hover {
    text-decoration: none;
}
#header .callback a.phone {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: url(../img/icon-phone.svg) center no-repeat, #014c9f;
    background-size: 25px;
    text-align: center;
    line-height: 70px;
    margin-left: 20px;
}
#header .callback a.phone img {
    width: 25px;
    height: auto;
}
#header .callback a.phone:hover {
    background-color: #0c60bc;
}

#main {
	height: 958px;
	background: url(../img/bg/main.jpg) center no-repeat;
    position: relative;
    z-index: 10;
}
#main .title {
    margin-top: 200px;
}
#main .title h1 {
    color: #fff;
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0;
}
#main .title h1 span {
    background-color: #01458f;
    color: #fff;
    display: inline-block;
    line-height: 1.1;
    padding: 5px 30px;
}
#main .title h2 {
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    padding-left: 30px;
}
#main .button {
    margin-left: 30px;
    margin-top: 100px;
}
#main .button .btn-main {
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(to bottom, #014ea2, #014590);
    box-shadow: inset 1px 1px 0 0px #487fbc, inset -1px -1px 0 0px #013a7e;
}
#main .button .btn-main:hover {
    background: linear-gradient(to bottom, #0968d0, #075cb9);
}
#main .button .btn-main:active {
    background: linear-gradient(to top, #014ea2, #014590);
}
#main .button p {
    font-size: 13px;
    color: #8b939c;
    display: inline-block;
    vertical-align: middle;
    margin-left: 40px;
}
#main .icons {
    width: 831px;
    height: 176px;
    background: url(../img/desc-1.png) center no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 120px auto 0;
}
#main .icons .icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    text-align: left;
    margin: 0 50px;
}
#main .icons .icon img {
    margin-right: 20px;
}
#main .icons .icon p {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

#about {
	height: 1134px;
	background: url(../img/bg/about.jpg) center no-repeat;
    padding-top: 190px;
    position: relative;
}
#about .heading {
    text-align: center;
}
#about .items {
    margin-top: 110px;
}
#about .items .item {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-right: 60px;
    margin-bottom: 40px;
}
#about .items .item img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
#about .items .item p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}
#about p.desc {
    width: 820px;
    height: 83px;
    background: url(../img/desc-2.png) no-repeat;
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding-top: 25px;
    margin: 0px auto 0;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translate(-50%, -50%);
}

#photos {
	height: 1088px;
	background: url(../img/bg/photos.jpg) center no-repeat;
    padding-top: 160px;
}
#photos .heading {
    text-align: center;
}
#photos .slider {
    position: relative;
    text-align: center;
    margin-top: 50px;
}
#photos .slider .slide {
	background-color: #000;
}
#photos .slider .slide img {
	max-width: 830px !important;
}
#photos .slider .owl-item {
	background-color: #000;
	transition: transform 0.4s ease;
	transform: scale(.8);
	z-index: 50;
}
#photos .slider .owl-item img {
	opacity: .5 !important;
	transition: opacity 0.3s ease;
}
#photos .slider .owl-item.center {
	transform: scale(1);
	z-index: 100;
}
#photos .slider .owl-item.center img {
	opacity: 1 !important;
}
#photos .slider .owl-nav {
	display: block !important;
}
#photos .slider .owl-nav .owl-prev,
#photos .slider .owl-nav .owl-next {
	display: block;
	width:  40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	opacity: .8;
	top: 50%;
	z-index: 200;
}
#photos .slider .owl-nav .owl-prev {
	background: url(../img/arr-prev.svg) center no-repeat, #f37719;
	background-size: 18px;
	left: 80px;
}
#photos .slider .owl-nav .owl-next {
	background: url(../img/arr-next.svg) center no-repeat, #f37719;
	background-size: 18px;
	right: 80px;
}
#photos .button {
    text-align: center;
    margin-top: 60px;
}
#photos .button p {
    font-size: 14px;
    color: #8b939c;
    margin: 20px 0;
}
#photos .button .btn {}

#prods {
	height: 951px;
	background: url(../img/bg/prods.jpg) center no-repeat;
    text-align: center;
    padding-top: 40px;
}
#prods .heading {
    text-align: center;
}
#prods img {
	display: none;
}
#prods p.desc {
    width: 807px;
    height: 96px;
    background: url(../img/desc-3.png) no-repeat;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding-top: 20px;
    margin: 620px auto 0;
}

#shop {
	height: 1131px;
	background: url(../img/bg/shop.jpg) center no-repeat;
    padding-top: 110px;
}
#shop .heading {
    text-align: center;
}
#shop .items {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 60px;
}
#shop .items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    text-align: left;
    margin: 0 30px;
}
#shop .items .item img {
    margin-right: 20px;
}
#shop .items .item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
}
#shop .slider {
    position: relative;
    text-align: center;
    margin-top: 70px;
}
#shop .slider .slide {
	background-color: #000;
}
#shop .slider .slide img {
	max-width: 830px !important;
}
#shop .slider .owl-item {
	background-color: #000;
	transition: transform 0.4s ease;
	transform: scale(.8);
	z-index: 50;
}
#shop .slider .owl-item img {
	opacity: .5 !important;
	transition: opacity 0.3s ease;
}
#shop .slider .owl-item.center {
	transform: scale(1);
	z-index: 100;
}
#shop .slider .owl-item.center img {
	opacity: 1 !important;
}
#shop .slider .owl-nav {
	display: block !important;
}
#shop .slider .owl-nav .owl-prev,
#shop .slider .owl-nav .owl-next {
	display: block;
	width:  40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	opacity: .8;
	top: 50%;
	z-index: 200;
}
#shop .slider .owl-nav .owl-prev {
	background: url(../img/arr-prev.svg) center no-repeat, #f37719;
	background-size: 18px;
	left: 80px;
}
#shop .slider .owl-nav .owl-next {
	background: url(../img/arr-next.svg) center no-repeat, #f37719;
	background-size: 18px;
	right: 80px;
}

#profit {
	height: 808px;
	background: url(../img/bg/profit.jpg) center no-repeat;
    padding-top: 140px;
}
#profit .heading {}
#profit .heading h2,
#profit .heading h3 {
    color: #fff;
}
#profit .items {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    margin-top: 100px;
}
#profit .items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    text-align: left;
    margin: 0 0;
    margin-right: 50px;
}
#profit .items .item img {
    margin-right: 20px;
}
#profit .items .item p {
    color: #fff;
    font-size: 18px;
}
#profit .items .item span {
    color: #909090;
    display: block;
    font-size: 14px;
}
#profit .button {
    margin-top: 100px;
}
#profit .button .btn {
    display: inline-block;
    vertical-align: middle;
}
#profit .button p {
    margin: 0;
    color: #8b939c;
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 40px;
}

#steps {
	height: 2278px;
	background: url(../img/bg/steps.jpg) center no-repeat;
}
#steps .heading {
    text-align: center;
    padding-top: 100px;
}
#steps .heading h3 {
    margin-top: 30px;
}
#steps .items {}
#steps .items .item {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center
}
#steps .items .item:nth-child(even) {
    flex-direction: row-reverse;
}
#steps .items .item picture {
    margin: 0 100px;
}
#steps .items .item picture img {}
#steps .items .item .text {
    font-size: 16px;
    line-height: 1.2;
    max-width: 460px;
    text-align: left;
    margin: 0 130px;
}
#steps .items .item .text b {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
}
#steps .items .item:nth-child(even) picture {}
#steps .items .item:nth-child(even) .text {
    text-align: right;
}
#steps .items .item:nth-child(odd) {}
#steps .items .item-1 {}
#steps .items .item-2 {}
#steps .items .item-3 {}
#steps .items .item-4 {}
#steps .items .item-5 {}

#tools {
	height: 1041px;
	background: url(../img/bg/tools.jpg) center no-repeat;
    padding-top: 150px;
}
#tools .heading {
    text-align: center;
}
#tools .tabs {
    font-size: 0;
    text-align: center;
    border-radius: 6px;
    background: #e7f2f9;
    margin: 60px 0 25px;
}
#tools .tabs .tab {
    cursor: pointer;
    width: 25%;
    display: inline-block;
    text-align: center;
    outline: none;
    border-radius: 7px;
    color: #475e6e;
    font-size: 18px;
    background: transparent;
    padding: 18px 20px;
    box-shadow: inset 0 0 1px 1px #e7f2f9;
}
#tools .tabs .tab:hover {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to bottom, #f37b1a, #f05612);
}
#tools .tabs .tab.active {
    color: #fff;
    background: linear-gradient(to bottom, #f37b1a, #f05612);
}
#tools .contents {
    height: 550px;
}
#tools .contents .content {
    position: relative;
    height: 550px;
    background: #e7f2f9;
    border-radius: 6px;
    padding: 150px 0px 0;
    padding-left: 100px;
}
#tools .contents .content .text {
    /*display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;*/
}
#tools .contents .content .text img {
    margin-right: 50px;
}
#tools .contents .content .text p {
    margin: 0;
    font-size: 22px;
}
#tools .contents .content .text ul {
	padding-left: 20px;
}
#tools .contents .content .text ul li {
	color: #ee9261;
	padding: 4px 0;
}
#tools .contents .content .text ul li p {
	margin: 0;
    font-size: 22px;
}
#tools .contents .content > img {
    position: absolute;
}
#tools .contents #content-1 > img {
    right: 90px;
    top:  -10px;
}
#tools .contents #content-2 > img {
	right: -60px;
    top:    30px;
}
#tools .contents #content-2 > .text p {
	font-size: 20px;
}
#tools .contents #content-3 > img {
	right: -60px;
    top:  50px;
}
#tools .contents #content-3 > .text p {
	font-size: 20px;
}
#tools .contents #content-4 > img {
	right: 90px;
    top:  -10px;
}
#tools .contents #content-4 > .text img {
	display: inline-block;
	vertical-align: top;
}
#tools .contents #content-4 > .text p {
	display: inline-block;
	vertical-align: top;
}

#support {
	height: 1013px;
	background: url(../img/bg/support.jpg) center no-repeat;
    padding-top: 80px;
    text-align: center;
}
#support .heading {
    text-align: center;
}
#support .heading h3 {
    font-weight: bold;
}
#support .button {
    margin-top: 30px;
}
#support .button p {
    font-size: 13px;
    color: #a5a9ab;
    margin: 20px 0;
}
#support .button .btn {}
#support .desc {
    margin-top: 260px;
}
#support .desc p {
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}
#support .desc p span {
    display: inline-block;
    background-color: #01458f;
    color: #fff;
    padding: 5px 30px 10px;
}
#support .desc p b {
    color: #ff9c32;
    font-weight: normal;
}
#support .desc p i {
	font-style: normal;
    color: #ff9c32;
}
#support img {
	display: none;
}

#footer {
	height: 771px;
	background: url(../img/bg/footer.jpg) center no-repeat;
    text-align: center;
    padding-top: 120px;
}
#footer .heading {}
#footer .heading h2,
#footer .heading h3 {
    color: #fff;
}
#footer form {
    margin-top: 50px;
    margin-bottom: 100px;
}
#footer form fieldset {
    margin: 0;
    padding: 0;
    border: none;
}
#footer form input[type=text] {
    font-size: 16px;
    text-align: left;
    border: none;
    background-color: #fff;
    border-radius: 50px;
    padding: 18px 30px;
    margin: 0 10px 40px;
    min-width: 300px;
}
#footer form p {
    font-size: 13px;
    color: #a5a9ab;
}
#footer form .btn {
    border: none;
}
#footer .logo {
    display: inline-block;
    vertical-align: middle;
}
#footer .logo img {}
#footer p.desc {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    color: #8b939c;
    line-height: 2;
    margin-left: 40px;
}
#footer .contacts {
    margin-top: 30px;
}
#footer .contacts a {
    display: inline-block;
    color: #fff;
    font-size: 22px;
}
#footer .contacts a:hover {}


/* modals */
#modals {
	display: none;
}
.modal {
	padding: 40px 40px;
	text-align: center;
	max-width: 550px;
}
.modal h2 {
	font-size: 26px;
	margin: 0 0 30px;
	font-weight: normal;
}
.modal form {
	padding: 0 0px;
}
.modal form input[type=text] {
	text-align: left;
	font-size: 18px;
	border-radius: 40px;
	padding: 15px 30px;
	width: 100%;
	background-color: #e7e9f3;
	border: none;
	margin-bottom: 15px;
}
.modal form fieldset {
	overflow: hidden;
	padding: 0;
	margin: 0;
	border: none;
}
.modal form fieldset input[type=text]:first-child {
	width: 48%;
	float: left;
}
.modal form fieldset input[type=text]:last-child {
	width: 48%;
	float: right;
}
.modal form .btn {
	margin-top: 10px;
	border: none;
}
.modal form .accept {}


/* meadia */
@media (max-width: 1200px) {}
@media (max-width: 992px) {}
@media screen and (min-width: 200px) and (max-width: 867px) {

	.container {
		max-width: 390px;
	}
    
}
@media (max-width: 868px) {

	html, body {
		overflow-x: hidden;
	}

	.btn {
        letter-spacing: 0;
        font-size: 14px;
        padding: 15px 10px;
        min-width: 100px;
        max-width: 300px;
        width: 100%;
    }

	.heading {}
	.heading br {
        display: none;
    }
	.heading h2 {
        font-size: 18px;
    }
	.heading h3 {
        font-size: 16px;
    }

	#header {
        padding: 10px 0 !important;
    }
	#header .logo {
        margin-top: 0 !important;
    }
	#header .logo img {
        width: 50px !important;
    }
	#header p.desc {
        display: none;
    }
	#header .callback {}
	#header .callback a {}
	#header .callback a p {
        font-size: 16px;
        line-height: 1;
    }
	#header .callback a span {
        font-size: 8px;
        line-height: 1;
    }
	#header .callback a.phone {
        width: 30px;
        height: 30px;
        background-size: 15px;
        margin-left: 10px;
    }
	#header .callback a.phone img {}

	#main {
		height: auto;
		background: url(../img/m/main.jpg) center no-repeat;
		background-size: cover;
        padding-bottom: 20px;
	}
	#main .title {
        margin-top: 90px;
        text-align: center;
    }
    #main .title br {
        display: none;
    }
	#main .title h1 {
        font-size: 24px;
    }
    #main .title h1 span {
        padding: 5px 10px;
    }
	#main .title h2 {
        font-size: 18px;
        margin: 10px 0;
        padding-left: 0;
        padding: 0 15px;
    }
	#main .button {
        padding: 0;
        text-align: center;
        margin: 40px 0;
    }
	#main .button .btn {}
    #main .button p br {
        display: none;
    }
	#main .button p {
        margin-left: 0;
    }
	#main .icons {
        width: auto;
        height: auto;
        flex-direction: column;
        margin: 0 15px;
        padding: 0px 45px;
        align-items: flex-start;
        background: #186cd1;
        background: transparent;
    }
	#main .icons .icon {
        margin: 0 0 20px;
    }
	#main .icons .icon img {
        width: 32px;
        margin-right: 10px;
    }
	#main .icons .icon p {
        font-size: 14px;
    }

	#about {
		height: auto;
		background: #d5e5ef;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#about .heading {}
	#about .items {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-top: 30px;
        padding: 0 20px;
    }
    #about .items br {
        display: none;
    }
	#about .items .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
        text-align: left;
        margin: 0 0 30px;
    }
	#about .items .item img {
        width: 40px;
    }
	#about .items .item p {
        font-size: 14px;
    }
	#about .items .item p br {
        display: none;
    }
	#about p.desc {
        width: auto;
        height: auto;
        background: #186cd1;
        font-size: 14px;
        padding: 10px 10px;
        width: 100%;
    }

	#photos {
		height: auto;
		background: #fff;
        padding-top: 90px;
        padding-bottom: 30px;
	}
	#photos .heading {}
	#photos .slider {
        margin-top: 20px;
    }
	#photos .slider .slide {}
	#photos .slider .slide img {}
	#photos .slider .owl-nav {
        display: none !important;
    }
	#photos .slider .owl-nav .owl-prev {}
	#photos .slider .owl-nav .owl-next {}
	#photos .button {
        margin-top: 20px;
    }
	#photos .button p {
        font-size: 12px;
        padding: 0 30px;
    }
	#photos .button .btn {}

	#prods {
		height: auto;
		background: #d5e5ef;
        padding-top: 30px;
        padding-bottom: 0px;
	}
	#prods .heading {}
	#prods img {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
	#prods p.desc {
        width: auto;
        height: auto;
        background: #186cd1;
        font-size: 14px;
        padding: 10px 10px;
        width: 100%;
        margin-top: 0px;
    }

	#shop {
		height: auto;
		background: #fff;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#shop .heading {}
	#shop .items {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
        padding: 0 20px;
    }
	#shop .items .item {
        margin: 0 0 30px;
    }
	#shop .items .item img {
        width: 32px;
        margin-right: 10px;
    }
	#shop .items .item p {
        font-size: 12px;
    }
	#shop .slider {
        margin-top: 0px;
    }
	#shop .slider .slide {}
	#shop .slider .slide img {}
	#shop .slider .owl-nav {
        display: none !important;
    }
	#shop .slider .owl-nav .owl-prev {}
	#shop .slider .owl-nav .owl-next {}

	#profit {
		height: auto;
		background: url(../img/m/main.jpg) center no-repeat;
		background-size: cover;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#profit .heading {
        text-align: center;
    }
	#profit .items {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
        padding: 0 40px;
    }
	#profit .items .item {}
	#profit .items .item img {
        width: 32px;
        margin-right: 10px;
    }
	#profit .items .item p {
        font-size: 12px;
    }
    #profit .items .item p span {
        font-size: 9px;
    }
	#profit .button {
        text-align: center;
        margin-top: 20px;
    }
	#profit .button .btn {}
    #profit .button p br {
        display: none;
    }
	#profit .button p {
        font-size: 12px;
        margin: 20px 0 0;
    }

	#steps {
		height: auto;
		background: #d5e5ef;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#steps .heading {
        padding-top: 0;
    }
    #steps .heading h3 {
        margin-top: 10px;
    }
	#steps .items {
        display: block !important;
    }
	#steps .items .item {
        display: block !important;
        margin: 0 0 40px !important;
    }
	#steps .items .item picture {
        display: block;
        margin: 0 auto 10px !important;
        width: 100%;
        max-width: 200px;
    }
	#steps .items .item picture img {
        width: 100%;
        height: auto;
    }
    #steps .items .item p.text br {
        display: none;
    }
	#steps .items .item p.text {
        display: block;
        width: 100%;
        text-align: center !important;
        font-size: 12px;
        width: 100%;
        margin: 0 0 0 !important;
    }
	#steps .items .item .text b {
        font-size: 14px;
    }

	#tools {
		height: auto;
		background: #fff;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#tools .heading {}
	#tools .tabs {
        margin: 20px 0 20px;
    }
	#tools .tabs .tab {
        display: block;
        width: 100%;
        padding: 15px 10px;
        font-size: 14px;
    }
	#tools .tabs .tab.active {}
	#tools .contents {
        height: auto;
    }
	#tools .contents .content {
        padding: 25px 20px;
        height: auto;
    }
	#tools .contents .content .text {
        display: block;
    }
	#tools .contents .content .text img {
        width: 40px;
        display: block !important;
        margin: 0 auto 10px !important;
    }
    #tools .contents .content .text p br {
        display: none;
    }
	#tools .contents .content .text p {
        font-size: 14px !important;
    }
	#tools .contents .content .text ul {
        margin: 0;
    }
	#tools .contents .content .text ul li {
        font-size: 14px;
    }
	#tools .contents .content .text ul li p {
        font-size: 14px;
    }
    #tools .contents .content .text ul li p b {}
	#tools .contents .content > img {
        display: block !important;
        position: relative;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100%;
        height: auto;
        max-width: 180px;
        margin: 20px auto 0;
    }

	#support {
		height: auto;
		background: #d5e5ef;
        padding-top: 30px;
        padding-bottom: 15px;
	}
	#support .heading {}
	#support .button {
        margin-top: 0px;
    }
	#support .button p {
        margin-top: 10px;
    }
	#support .button .btn {}
	#support .desc {
        margin-top: 20px;
        background-color: #01458f;
        padding: 5px 0;
    }
    #support .desc br {
        display: none !important;
    }
    #support .desc p span {
        display: inline;
        padding: 0;
    }
	#support .desc p {
        font-size: 14px;
    }
	#support img {
        display: block;
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

	#footer {
		height: auto;
		background: url(../img/m/main.jpg) center no-repeat;
		background-size: cover;
        padding-top: 30px;
        padding-bottom: 30px;
	}
	#footer .heading {}
	#footer form {
        margin-top: 20px;
        margin-bottom: 30px;
    }
	#footer form fieldset {}
	#footer form input[type=text] {
        display: block;
        width: 100%;
        min-width: 100px;
        font-size: 14px;
        padding: 15px 20px;
        margin: 0 0 20px;
    }
	#footer form p {
        margin-top: 0;
    }
	#footer form .btn {}
	#footer .logo {
        display: none;
    }
	#footer .logo img {}
	#footer p.desc {
        display: none;
    }
    #footer .contacts {
        margin-top: 0;
        text-align: center;
    }
    #footer .contacts a {
        font-size: 14px;
        margin: 5px 0;
    }


	.modal {
        padding: 10px 10px;
        width: 100%;
    }
	.modal h2 {
        font-size: 14px;
    }
	.modal form {
        padding: 0;
    }
    .modal form fieldset {}
	.modal form input[type=text] {
        width: 100% !important;
        float: none !important;
        margin: 0 0 7px;
        font-size: 12px;
        padding: 10px 20px;
    }
	.modal form .btn {
        display: block;
        font-size: 12px !important;
        padding: 15px 0px;
        min-width: 50px;
        width: 100%;
    }
	.modal form .accept {}

}