/* Eric Meyer's CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	box-sizing: border-box;
}
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;
}
/* End of Eric Meyer's CSS Reset */

html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font: 18px/21px 'Roboto', sans-serif;
	height: 100%;
	text-align: center;
}

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

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

.fixed_wrapper{
	text-align: left;
	width: 95%;
	max-width: 1200px;
	display: inline-block;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
	height: 150px;
}

@media only screen and (max-width:1222px) {
	.header {
		height: auto;
		text-align: center;
		padding-bottom:20px;
	}
}

.logo {
    display: inline-block;
    margin: 32px 0 0;
}

@media only screen and (max-width:980px) {
	.logo {
		margin-top:42px;
	}
}

@media only screen and (max-width:767px) {
	.logo {
		display: block;
		text-align: center;
	}
}


.main_menu {
    display: inline-block;
    margin: 25px 0 0;
}

.main_menu li{
	display: inline-block;
	margin-left: 50px;
	line-height: 40px;
}

@media only screen and (max-width:1279px) {
	.main_menu li{
		margin-left: 1em;
	}
}

.main_menu li:first-child{
	margin-left: 0;
}

.main_menu a{
	color: #555555;
	text-decoration: none;
	font-size: 20px;
}

@media only screen and (max-width:1279px) {
	.main_menu a {
		font-size: 18px;
	}
}

.main_menu a:hover{
	color: #E51937;
}

.header_right{
	float: right;
	margin: 40px 0 0;
}

@media only screen and (max-width:980px) {
	.header_right{
		margin-top:52px;
	}
}

@media only screen and (max-width:767px) {
	.header_right{
		float: none;
		clear: both;
		margin-top:32px;
	}
}

@media only screen and (max-width:461px) {
	.header_right{
		text-align:center;
	}
}

.phone{
	background: url("../images/phone-icon.png") no-repeat 0px 5px;
    color: #ff8500;
    font-size: 37px;
    margin: 0 32px 0 0;
	padding-left:62px;
	font-weight: 700;
	vertical-align: middle;
}

@media only screen and (max-width:767px) {
	.phone {
		font-size: 30px;
		padding-bottom:15px;
	}
}

@media only screen and (max-width:461px) {
	.phone {
		float:none;
		clear:both;
		width:100%;
	}
}

.chat{
	text-transform: uppercase;
	padding: 0 48px 0 0;
	background: url('../images/chat-bg.png') no-repeat right 0 transparent;
	display: inline-block;
	color: #000000;
	text-decoration: none;
}

.chat-btn {
	color:#555555;
	font-size:16px;
	font-weight:400;
	border:1px solid #d4d4d4;
	padding:3px 12px;
	text-decoration:none;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

@media only screen and (max-width:767px) {
	.chat-btn {
		float:right;
	}
}

@media only screen and (max-width:461px) {
	.chat-btn {
		float:none;
		clear:both;
		display:block;
		margin:40px auto 0;
		width: 140px;
	}
}

.chat-btn .chat-icon {
	background: url('../images/chat-icon.png') no-repeat 0px 0px;
	display: inline-block;
    padding-right: 8px;
    vertical-align: middle;
    width: 27px;
	height: 19px;
}


/* Middle
-----------------------------------------------------------------------------*/
.content {
	padding: 0 0 240px;
	color: #555555;
}

.cta_area{
	background: url('../images/cta-area-bg.jpg') no-repeat center 0 transparent;
	background-size: cover;
	height: 767px;
}

@media only screen and (max-width:1260px) {
	.cta_area {
		height: auto;
		padding-bottom: 30px;
	}
}

.cta_area .fixed_wrapper{
	padding-top: 100px;
}

.cta_left {
    float: left;
	position:relative;
	width: 43%;
}

@media only screen and (max-width:991px) {
	.cta_left {
		float:none;
		width:100%;
		text-align:center;
	}
}

.cta_left .seal {
	position:absolute;
	bottom:0px;
}

@media only screen and (max-width:991px) {
	.cta_left .seal {
		left:50%;
	}
}

.product_box{
	margin: 0 0 0 35px;
	display: block;
}

.cta_right {
    float: right;
    text-align: center;
	width: 57%;
}

@media only screen and (max-width:991px) {
	.cta_right {
		float:none;
		width:100%;
	}
}

.cta_area h1 {
    font-size: 90px;
	font-weight: bold;
	font-weight: 900;
    line-height: 100px;
	color: #ffffff;
}

@media only screen and (max-width:767px) {
	.cta_area h1 {
		font-size: 70px;
		line-height: 1.5;
	}
}

.cta_area .title_description{
	font-size: 40px;
	line-height: 70px;
	font-weight: bold;
	font-weight: 700;
	color: #ffffff;
}

.cta_area .price{	
	font-size: 38px;
	line-height: 45px;
	font-weight: bold;
	font-weight: 700;
	color: #ffffff;
}

.cta_area .price span{
	font-size: 38px;
	color: #000000;
	background-color: #fefe00;
	padding: 0 10px;
	font-weight: bold;
}

.cta_area .price .price-info{
	font-size: 38px;
	color: #000000;
	background-color: #fefe00;
	padding: 0 10px;
	font-weight: bold;
	display:inline-block;
}
.cta_area .price .price-info .original-price, .cta_area .price .price-info .offer-price {
	display:block;
}

.cta_area .price .price-info .original-price.strike {
	color:#c62828;
	text-decoration:line-through;
}

.cta_area .product-offer {
	font-size: 43px;
	line-height: 70px;
	font-weight: 700;
	color: #ffffff;
}

.cta_area .product-offer .original-price {
	color:#ff8500;
	font-size: 73px;
    line-height: 73px;
	vertical-align: text-bottom;
}

.cta_area .product-offer .original-price.strike {
    color: #c0382b;
    display: inline-block;
    font-size: 43px;
    padding-left: 20px;
    position: relative;
	vertical-align: baseline;
}

.cta_area .product-offer .original-price.strike:before {
    background-color: #c0382b;
    content: "";
    height: 5px;
    left: 12px;
    position: absolute;
    top: 50%;
    width: 156px;
}

.cta_area .product-offer .offer-price {
    color: #ff8500;
    display: inline-block;
    font-size: 73px;
    line-height: 73px;
    padding-right: 10px;
    vertical-align: middle;
}

.cta_area .product-offer .year-txt.offer {
	color:#ffffff;
	font-size:30px;
	font-weight:500;
}

.get_now {
    background: url("../images/cta-btns.png") no-repeat scroll 0 0 transparent;
    display: inline-block;
    font-size: 34px;
    line-height: 102px;
    padding: 0 0 0 122px;
    text-align: left;
    width: 309px;
	color: #ffffff;
	text-decoration: none;
	margin: 55px 0 40px;
}

.get_now:hover{
	opacity: 0.8;
}

.cta_right p{
	font-weight: bold;
	color: #ffffff;
	
}

.left_column{
	width: 65%;
	float: left;
}

@media only screen and (max-width:991px) {
	.left_column{
		width: 100%;
		float: none;
		text-align:center;
	}
}

.right_column{
	width: 35%;
	float: right;
	text-align: center;
}

@media only screen and (max-width:991px) {
	.right_column {
		width: 100%;
		float: none;
		margin-top:40px;
	}
}

h2{
	font-size: 23px;
	font-weight: bold;
	padding: 0 0 40px;
}

h3{
	font-weight: bold;
}

.content > .fixed_wrapper{
	padding: 115px 0px;
}

.feature{
	margin: 0 0 50px;
}

@media only screen and (max-width:991px) {
	.feature{
		text-align:left;
	}
}

.bottom_cta {
    display: inline-block;
    text-align: center;
    width: 100%;
	font-size: 26px;
}
.bottom_cta p{
    padding: 0 0 45px
}

.free_download_btn{
    background: url("../images/cta-btns.png") no-repeat scroll 0 bottom transparent;
    color: #ffffff;
    display: inline-block;
    font-size: 37px;
    line-height: 98px;
    padding: 0 0 0 116px;
    text-align: left;
    text-decoration: none;
    width: 256px;
}

.free_download_btn:hover{
	opacity: 0.8;
}

.quotation {
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
}

.author {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0 15px;
}

.awards{
	text-transform: uppercase;
	font-size: 22px;
}

.awards img {
    width: 120px;
	height: auto;
	display: block;
	margin: 12px auto 0;
}

@media only screen and (max-width:991px) {
	.awards img {
		display: inline-block;
	}
}

.left_column .get_now {
    background: url("../images/cta-btns.png") no-repeat scroll 0px 0px transparent;
	background-color: rgba(51, 51, 51, 0.06);
    margin: 15px 0 15px -10px;
    border-radius: 15px;
}

.support-text {
	background-color: #000000;
	padding: 20px;
	line-height: 25px;
	color: #ffffff;
	font-size: 18px;
}

.support-text .phone-detail {
	color: #ff8500;
	font-size: 20px;
	font-weight: 700;
}





/* Footer
-----------------------------------------------------------------------------*/
.footer {
	margin: -240px auto 0;
	height: 240px;
	background: #252927;
	position: relative;
	color: #ffffff;
	font-size: 13px;
}

.footer .fixed_wrapper{
	text-align: center;
}

.footer a{
	text-decoration: none;
	color: #53a2e4;
}

.footer a:hover{
	text-decoration: underline;
}

.privacy li{
	display: inline-block;
	line-height: 60px;
}

.privacy li:first-child{
	margin-right: 11px;
}

.privacy li:first-child:after{
	content: "|";
	color: #515251;
	padding-left: 13px;
}

.socials{
	margin: 50px 0 0;
}

.socials li{
	display: inline-block;
	margin: 0 10px;
}

.socials li a{
	display: inline-block;
	width: 48px;
	height: 48px;
	background: url("../images/socials.png") no-repeat scroll 0 0 transparent;
}

.socials li.twitter a{
	background-position: -72px 0;
}

.socials li.google_plus a{
	background-position: -145px 0;
}

.socials li.youtube a{
	background-position: -218px 0;
}

.socials a:hover{
	opacity: 0.8;
}

