/* 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, 
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;
}
body {
	line-height: 1;
}
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;
}

/* fonts */

@font-face {
    font-family: 'SegoeUI';
    src: url('../fonts/SegoeUI-Regular.woff2') format('woff2'),
        url('../fonts/SegoeUI-Regular.woff') format('woff'),
        url('../fonts/SegoeUI-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../fonts/SegoeUI-Semibold.woff2') format('woff2'),
        url('../fonts/SegoeUI-Semibold.woff') format('woff'),
        url('../fonts/SegoeUI-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pattaya';
    src: url('../fonts/Pattaya-Regular.woff2') format('woff2'),
        url('../fonts/Pattaya-Regular.woff') format('woff'),
        url('../fonts/Pattaya-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* styles */

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

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

body {
	min-width: 480px;
	background-color: #fafafa;
	font-family: 'SegoeUI', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #262626;
	cursor: default;
}

.main_wrapper {
	margin: 0 auto;
	padding: 71px 0 0;
	width: 480px;
}

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

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

b, strong {
	font-weight: 600;
}

/* fixed block */

.fixed_section {
	width: 100%;
	min-width: 480px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.fixed_block {
	margin: 0 auto;
	padding: 15px 20px;
	width: 480px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
}

.fixed_block h3 {
	float: left;
	font-family: 'Pattaya', sans-serif;
	font-size: 24px;
	line-height: 40px;
}

.fixed_block .button {
	display: block;
	float: right;
	width: 180px;
	height: 40px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #3897f0;
	font-weight: 600;
	line-height: 38px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	outline: none;
}

/* section */

section {
	margin: 0 0 25px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
}

/* offer */

.offer_section .offer_title {
	padding: 23px 0;
	background-color: #cc2366;
	background-image: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -moz-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -o-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.offer_section h1 {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 36px;
	line-height: 42px;
}

.offer_section p {
	font-size: 19px;
	line-height: 28px;
}

.offer_section img {
	display: block;
	width: 100%;
}

/* titles */

section .title_block {
	margin: 0 0 20px;
	padding: 15px 20px;
	border-bottom: 1px solid #ededed;
}

.description_section .title_block, 
.video_section .title_block {
	margin: 0;
}

section h2 {
	font-size: 24px;
	line-height: 30px;
}

section h2 i {
	font-family: 'Pattaya', sans-serif;
	font-size: 30px;
}

.in-blue_title h2 i {
	color: #3897f0;
}

.in-blue_title.dark_theme h2 i {
	color: #fff;
}

section h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
}

section h4 + p {
	margin: 4px 0 0;
}

/* content */

.content_block {
	margin: 0 0 20px;
	border-bottom: 1px solid #ededed;
}

.content_block:last-child {
	margin: 0;
	border: none;
}

.content_block i {
	color: #003569;
}

/* post image */

.post_image {
	display: block;
	margin: -1px auto 0;
}

/* video */

.video-container {
	margin: -1px auto 0;
	width: 480px;
	height: 270px;
	background-color: #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;
}

/* text */

.text_block {
	margin: 20px;
}

.list3.two_column + .text_block {
	margin: 0 20px 20px;
}

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

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

.text_block .in-login {
	margin: 0 5px 0 0;
}

/* author */

.author_block {
	display: table;
	margin: 0 20px 20px;
	position: relative;
}

.author_block:before {
	display: block;
	content: '';
	width: 4px;
	height: 20px;
	background: url(../images/icons.png) -119px -56px no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 0;
}

.author_block .avatar {
	display: table-cell;
	vertical-align: middle;
	width: 60px;
}

.author_block img {
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.author_block .author_info {
	display: table-cell;
	vertical-align: middle;
	padding: 0 24px 0 20px;
	width: 380px;
}

.author_block .name {
	font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.author_block .in-login {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
}

.author_block.verified .in-login:after {
	display: inline-block;
	vertical-align: middle;
	content: '';
	margin: -4px 0 0 8px;
	width: 18px;
	height: 18px;
	background: url(../images/icons.png) -112px -31px no-repeat;
}

.author_block .text {
	font-size: 14px;
    line-height: 22px;
    color: #999ca1;
}

/* stats */

.in-stats_block {
	margin: 15px 20px;
}

.in-stats_block .icons {
	margin: 0 0 10px;
}

.in-stats_block .icon {
	float: left;
	margin: 0 20px 0 0;
	background: url(../images/icons.png) no-repeat;
}

.in-stats_block .like_icon {
	width: 24px;
	height: 21px;
	background-position: 0 0;
}

.in-stats_block .comment_icon {
	width: 22px;
	height: 22px;
	background-position: -36px 0;
}

.in-stats_block .send_icon {
	width: 27px;
	height: 21px;
	background-position: -68px -1px;
}

.in-stats_block .share_icon {
	float: right;
	margin: 0;
	width: 16px;
	height: 20px;
	background-position: -105px -1px;
}

.in-stats_block .likes_count {
	font-weight: 600;
}

.in-date {
	margin: 20px;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 1px;
	color: #999;
	text-transform: uppercase;
}

.vk-stats_block, 
.ok-stats_block {
	display: none;
}

/* reviews */

.reviews2_section .reviews_list {
	padding: 10px 0;
}

.reviews2_section .review_item {
	margin: 0 20px 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #ededed;
}

.reviews2_section .review_item:last-child {
	padding: 0;
	border: none;
}

.reviews2_section .review_wrapper {
	margin: 0;
}

.reviews2_section img {
	display: block;
	float: left;
	margin: 0 20px 0 0;
	width: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.reviews2_section .review_text {
	float: left;
	width: 360px;
}

.reviews2_section h4 {
	display: none;
}

.reviews2_section .in-login {
	margin: 0 5px 0 0;
}

.reviews2_section .vk-likes_count {
	display: none;
}

.reviews2_section .ok-buttons {
	display: none;
}

/* lists */

.list_section.dark_theme {
	border: none;
	background-color: #cc2366;
	background-image: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -moz-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -o-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	color: #fff;
}

.list_section.dark_theme .title_block {
	border-color: rgba(255,255,255,0.3);
}

.list_section.dark_theme h4 {
	color: #fff;
}

/* list 1 */

.list_section .list1 {
	padding: 10px 0;
}

.content_block .list1 {
	margin: 20px 0;
}

.list1 .list_item {
	display: table;
	margin: 0 20px 20px;
}

.list1 .image_block {
	display: table-cell;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}

.list1.va_middle .image_block {
	vertical-align: middle;
}

.list1.image60x60 .image_block {
	width: 60px;
}

.list1.image70x70 .image_block {
	width: 70px;
}

.list1.image80x80 .image_block {
	width: 80px;
}

.list1.image90x90 .image_block {
	width: 90px;
}

.list1.image110x110 .image_block {
	width: 110px;
}

.list1 .image_wrapper {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #f7f7f7;
	text-align: center;
	overflow: hidden;
}

.list1.dark_icon .image_wrapper {
	background-color: #cc2366;
	background-image: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -moz-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: -o-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.list_section.dark_theme .image_wrapper {
	background-color: #fff;
	background-image: none;
}

.list1.image60x60 .image_wrapper {
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.list1.image70x70 .image_wrapper {
	width: 70px;
	height: 70px;
	line-height: 70px;
}

.list1.image80x80 .image_wrapper {
	width: 70px;
	height: 70px;
	line-height: 70px;
}

.list1.image90x90 .image_wrapper {
	width: 90px;
	height: 90px;
	line-height: 90px;
}

.list1.image110x110 .image_wrapper {
	width: 110px;
	height: 110px;
	line-height: 110px;
}

.list1.image_border .image_wrapper {
	border: 2px solid #efefef;
}

.list_section.dark_theme .list1.image_border .image_wrapper {
	border-color: #fff;
}

.list1 .image_wrapper img {
	display: inline-block;
	vertical-align: middle;
}

.list1.image_border.image60x60 .image_wrapper {
	line-height: 56px;
}

.list1.image_border.image70x70 .image_wrapper {
	line-height: 66px;
}

.list1.image_border.image80x80 .image_wrapper {
	line-height: 66px;
}

.list1.image_border.image90x90 .image_wrapper {
	line-height: 86px;
}

.list1.image_border.image110x110 .image_wrapper {
	line-height: 106px;
}

.list1 .text_block {
	display: table-cell;
	vertical-align: top;
	margin: 0;
	padding: 0 0 0 20px;
}

.list1.image60x60 .text_block {
	width: 380px;
}

.list1.image70x70 .text_block {
	width: 370px;
}

.list1.image80x80 .text_block {
	width: 360px;
}

.list1.image90x90 .text_block {
	width: 350px;
}

.list1.image110x110 .text_block {
	width: 330px;
}

.list1.va_middle .text_block {
	vertical-align: middle;
}

.use_steps2 .list1 .image_block {
	width: 40px;
}

.use_steps2 .list1 .image_wrapper {
	margin: 6px 0 0;
	width: 40px;
	height: auto;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: none;
	font-family: 'Pattaya', sans-serif;
	font-size: 48px;
	line-height: 48px;
	color: #3897f0;
	overflow: visible;
}

.use_steps2.dark_theme .list1 .image_wrapper {
	color: #fff;
}

.use_steps2 .list1 .text_block {
	width: 400px;
}

.list1 .text_block p {
	margin: 0;
}

.list1 .text_block h4 + p {
	margin: 4px 0 0;
}

/* list 2 */

.list_section .list2 {
	padding: 10px 0 5px;
}

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

.list2 .list_item {
	margin: 0 20px 25px;
}

.list2.two_column .list_item {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 25px 0;
	width: 210px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: normal;
}

.list2.two_column .list_item:nth-child(even) {
	margin: 0 0 25px;
}

.list2 .list_item img {
	display: block;
	margin: 0 auto 15px;
}

.list2.two_column .list_item h4 {
	font-size: 18px;
	line-height: 26px;
}

/* list 3 */

.list_section .list3 {
	padding: 10px 0;
}

.content_block .list3 {
	margin: 20px 0;
}

.list3 .list_item {
	margin: 0 20px 20px;
	position: relative;
}

.list3.marker1 .list_item {
	padding: 0 0 0 39px;
}

.list3.marker2 .list_item {
	padding: 0 0 0 34px;
}

.list3 .list_item:before {
	display: block;
	content: '';
	background: url(../images/icons.png) no-repeat;
	position: absolute;
	left: 0;
}

.list3.marker1 .list_item:before {
	width: 24px;
	height: 24px;
	background-position: -124px 0;
	top: 1px;
}

.list_section.dark_theme .list3.marker1 .list_item:before {
	background-position: -151px 0;
}

.list3.marker2 .list_item:before {
	width: 19px;
	height: 20px;
	background-position: -86px -32px;
	top: 2px;
}

.list_section.dark_theme .list3.marker2 .list_item:before {
	background-position: -86px -58px;
}

.list3.two_column {
	margin: 0 20px;
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;
}

.content_block .list3.two_column {
	margin: 20px 20px 0;
}

.list3.two_column .list_item {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 20px 0;
	width: 210px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: normal;
}

.list3.two_column .list_item:nth-child(even) {
	margin: 0 0 20px;
}

.list3.two_column .list_item h4 {
	font-size: 18px;
	line-height: 26px;
}

/* image */

.image_section {
	margin: 0 0 25px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
}

.image_section img {
	display: block;
	margin: 0 auto;
}

/* slider */

.slider {
	margin: 0 0 25px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
}

.content_block .slider {
	margin: -1px 0 0;
	border: none;
	background: none;
}

.slider .owl-prev, 
.slider .owl-next {
	width: 40px;
	height: 40px;
	background: url(../images/icons.png) no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -20px;
}

.slider .owl-prev {
	background-position: 0 -28px;
	left: 15px;
}

.slider .owl-next {
	background-position: -40px -28px;
	right: 15px;
}

/* vote */

.vote_section {
	display: none;
}

/* order */

.order_section.dark_theme {
	border: none;
	background-color: #cc2366;
    background-image: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background-image: -moz-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background-image: -o-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	color: #fff;
}

.order_section.dark_theme .title_block {
	border-color: rgba(255,255,255,0.3);
}

.order_section .order_block {
	padding: 10px 0 30px;
}

/* price */

.price_block {
	margin: 0 auto 20px;
	width: 380px;
	position: relative;
}

.order_section .price_block {
	margin: 0 auto 30px;
}

.price_block:before {
	display: block;
	content: '';
	width: 21px;
	height: 40px;
	background: url(../images/icons.png) 0 -72px no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px auto auto -10px;
}

.order_section.dark_theme .price_block:before {
	background-position: -22px -72px;
}

.price_block .price_item {
	float: left;
	width: 180px;
	text-align: center;
}

.price_block .price_item.old {
	margin: 0 20px 0 0;
}

.order_section.dark_theme .price_block .price_item.old {
	color: rgba(255,255,255,0.7);
}

.price_block .price_item .text {
	margin: 0 0 4px;
}

.price_block .price_item .value {
	font-size: 38px;
	line-height: 38px;
}

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

.price_block .price_item.new .value {
	font-weight: 600;
	color: #3897f0;
}

.order_section.dark_theme .price_item.new .value {
	color: #fff;
}

/* form */

.order-block-v1{
    
}
.order-block-v1 .cost-cont>div{
    position: relative;
    float: left;
    width: 50%;
    padding: 35px 20px 25px;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.order-block-v1 .cost-cont>div>span{
    display: block;
    padding: 4px 0 0;
    font-size: 38px;
    line-height: 1em;
    text-transform: none;
    letter-spacing: normal;
}
.order-block-v1 .cost-cont .old-cost>span{
    color: #262626;
}
.order-block-v1 .cost-cont .old-cost>span{
    text-decoration: line-through;
}
.order-block-v1 .cost-cont .new-cost>span{
    font-weight: 600;
    color: #3897f0;
}
.order-block-v1 .cost-cont .new-cost:after, .order-block-v1 .cost-cont .new-cost:before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 35px;
    height: 1px;
    top: 56%;
    left: -15px;
    margin: -13px 0 0;
    background: #ddd;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    transform: rotate(50deg);
}
.order-block-v1 .cost-cont .new-cost:after{
    margin: 13px 0 0;
    -webkit-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    transform: rotate(-50deg);
}
.order-block-v1 .ost-col{
    padding: 30px 20px;
    font-size: 11px; 
    text-transform: uppercase;
    letter-spacing: 1px;  
    color: #3897f0; 
}
.order-block-v1 .ost-col:before{
    content: '!';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #3897f0;
    border-radius: 50%;
}

/* Р—Р°РєР°Р·Р°С‚СЊ-v1  color-sheme*/

.order-block-v1.color-sheme .cost-cont .old-cost>span{
    color: rgba(255,255,255,.6);
}
.order-block-v1.color-sheme .cost-cont .new-cost>span{
    color: #fff;
}
.order-block-v1 .timer-cont{
    margin: 25px 0 0;
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.3);
}
.order-block-v1 .timer-cont>h4{
    padding: 0 0 5px;
    text-align: center;
}
.order-block-v1 .timer-action .timer-col{
    position: relative;
    display: inline-block;
    width: 55px;
    margin: 0 10px;  
}
.order-block-v1 .timer-action .timer-col:after{
    content: ':';
    position: absolute;
    top: 15%;
    right: -12px;
    font-size: 1.2em;
}
.order-block-v1 .timer-action .timer-col:last-child:after{
    display: none;
}
.order-block-v1 .timer-action .timer-col>strong{
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 1em;
    line-height: 48px;
    font-size: 2em;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
}
.order-block-v1 .timer-action .timer-col>span{
    display: inline-block;
    font-weight: 400;
}

.button-m{
    position: relative;
    display: block;
    width: 380px;
    height: 70px;
    margin: 0 auto;
    border: 0;
    text-decoration: none;
    cursor: pointer; 
    line-height: 70px;
    font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1.2px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #3897f0;
    border-bottom: 2px solid #347cbf;
    border-radius: 5px;
	text-transform: uppercase;
}
.m1-form>div{
    margin: 0 auto 12px;
}
.m1-form>div:last-of-type{
    margin-bottom: 0;
}
.m1-form input, .m1-form select {
    position: relative;
    display: block;
    outline: 0;
    border: 0;
    width: 380px;
    height: 66px;
    line-height: 66px;
    margin: 0 auto;
    background: #fff;
    text-indent: 25px;
    font-size: 18px;
    font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
    font-weight: 400;  
    border-radius: 5px;
	color: #33333;
}

section.color-sheme{
    color: #fff;
    border: 0;
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.lvl-title-v1{
    font-size: 26px;
    padding: 15px 20px 15px 20px;
    font-weight: 400;
    line-height: 1.2em;  
	text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.color-sheme .lvl-title-v1{
    border-bottom: 1px solid rgba(255,255,255,.3);
}

/* footer */

footer {
	margin: 0 0 25px;
	padding: 25px 20px 20px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
}

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

footer a {
	background-color: transparent;
	color: #111;
	text-decoration: underline;
	outline: none;
}
.sec-but {
	margin-left: 250px;
	background-color: #3897f0;
	display: inline-block;
	padding: 10px;
}
.button1 {
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
    font-weight: 600;
}