/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
 2.0.1) Font Face
 2.0.2) Global Headings
 2.0.3) Form Elements
 2.0.4) List styles
 2.0.5) General Text Formatting
 2.0.6) Link elements
 2.0.7) Table Elements
 2.0.8) Button Styles
 2.0.9) Sprite Icons
 2.1.0) 960 Grid Style
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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;
}

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;
}

/*
 2.) Global Typography
 ----------------------------------------*/
*, :before, :after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	line-height: 1;
	background: url(../images/1.jpg) top center no-repeat;
	font-family: 'Roboto', sans-serif;
	color: #373435;
	font-size: 62.5%;
}
/*
 2.0.1) Font Face
 -----------------------------*/
/*Put Your font face Styles here*/

/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #161e21;
	margin-bottom: 10px;
	line-height: 1;
}
h1 {

}
h2 {
	color: #373435;
	font-size: 3.7em;
	text-align: center;
	margin-bottom: 11px;
	font-family: 'Roboto Slab', serif;
}
h3 {
	color: #373435;
	font-size: 2.1em;
	margin-bottom: 17px;
	font-family: 'Roboto Slab', serif;
}
h3 > span {
	display: block;
	
}
h3 > span > span {
	line-height: 159%;
}
h4 {
	color: #fff;
	font-size: 3.8em;
	line-height: 93%;
	margin: 0;
	padding-left: 18px;
	font-family: 'Roboto Slab', serif;
}
h5 {
	color: #fff;
	font-size: 3em;
	position: relative;
	padding-left: 91px;
	margin-bottom: 43px;
	font-family: 'Roboto Slab', serif;
}

h5 > span {
	display: block;
	font-size: 0.6em;
	margin-bottom: 5px;
	padding-top: 7px;
	text-transform: uppercase;
	font-family: 'Roboto Slab', serif;
}
h6 {
	color: #fff;
	font-size: 2.7em;
	margin-bottom: 39px;
	line-height: 146%;
	font-family: 'Roboto Slab', serif;
}
/*
 2.0.3) Form Elements
 -----------------------------*/
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: inherit;
	background: #fff;
	border: 1px solid #ccc;
	font-family: 'Open Sans', sans-serif;
}
input {
	line-height: normal;
}
input:focus, select:focus, textarea:focus, button:focus {
	border: 1px #888 solid;
	outline: 0;
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	border: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] {
	-webkit-appearance: none;
	cursor: pointer;
	line-height: normal;
	overflow: visible;
}
button[disabled], input[disabled] {
	cursor: default;
	color: #999;
	border-color: #ccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

input[type="text"] {
	background: #fff;
	border-radius: 5px;
	color: #606062;
	font-size: 1.5em;
	font-style: italic;
	border: none;
	padding: 10px 15px;
	width: 100%;
	margin-bottom: 12px;
}

/*
 2.0.4) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size: 1.2em;
	line-height: 1;
}
li, dt {
	line-height: 1;
}
dl {
	margin: 0 0 10px 0;
}
dd {
	margin: 0 0 10px 5px;
}
ul {
	list-style-type: disc;
	margin: 0 0 10px 0;
}
ul li {
	list-style: none;
	font-size: 1.2em;
}

ol {
	list-style-type: decimal;
	margin: 0 0 10px 0;
}
ul ul, ol ul {
	list-style-type: circle;
	margin-top: 0;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
}

/*
 2.0.5) General Text Formatting
 -----------------------------------*/
p {
	font-size: 1.5em;
	line-height: 1.2;
}
blockquote, cite, q, var, dfn {
	font-style: italic;
}
blockquote {
	background: transparent;
	color: #666666;
}
small {

	font-size: 80%;
	line-height: 1;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre, code {
	color: #880000;
}
kbd, samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -5px;
}
sub {
	bottom: -5px;
}
img {
	max-width: 100%;
	height: auto;
}

strong {
	font-weight: bold;
}

/*
 2.0.6) Link style
 -------------------------*/
a {
	color: #4d87c7;
	text-decoration: none;
}
a:hover, a:focus {
	color: #4d87ff;
	text-decoration: none;
}
a:active {
	outline: none;
}

/*
 2.0.7) Table Elements
 --------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	color: #444444;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	margin: 0 0 1.35714em 0;
}
caption {
	font-variant: small-caps;
}
th, td {
	line-height: 1.5em;
	vertical-align: top;
	padding: 0.71429em 0.5em;
}
th *:first-child, td *:first-child {
	margin-top: 0;
}
thead th {
	text-align: left;
	color: #000;
	border-bottom: 2px #000 solid;
}
tbody th {
	text-align: left;
	border-top: 1px solid #ccc;
}
tbody td {
	text-align: left;
	border-top: 1px solid #ccc;
}

/*
 2.0.8) Button Styles
 -------------------------*/
.btn, input.btn, button.btn {
	display: inline-block;
	font-size: 12px;
	color: #000;
	line-height: normal;
	vertical-align: middle;
	padding: 0 5px;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #eee;
}
.btn:hover, .btn:focus, input.btn:hover, input.btn:focus, button.btn:hover, button.btn:focus {
	color: #4d87ff;
	border: 1px solid #888;
}
/*
 2.0.9) Sprite Icons
 -------------------------*/
[class^="icon-"], [class*="icon-"] {
	background-image: url(../images/sprite.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	display: inline-block;
	height: 14px;
	line-height: 14px;
	margin-top: 1px;
	vertical-align: text-top;
	width: 14px;
}
/*
 2.1.0) 960 Grid Style
 -------------------------*/
/*
 Variable Grid System (Fluid Version).
 Learn more ~ http://www.spry-soft.com/grids/
 Based on 960 Grid System - http://960.gs/ & 960 Fluid - http://www.designinfluences.com/

 Licensed under GPL and MIT.
 */

/* Containers
 ----------------------------------------------------------------------------------------------------*/
.container_12 {
	width: 92%;
	margin-left: 4%;
	margin-right: 4%;
}

/* Grid >> Global
 ----------------------------------------------------------------------------------------------------*/

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
	display: inline;
	float: left;
	position: relative;
	margin-left: 1%;
	margin-right: 1%;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
 ----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
	width: 6.333%;
}

.container_12 .grid_2 {
	width: 14.667%;
}

.container_12 .grid_3 {
	width: 23.0%;
}

.container_12 .grid_4 {
	width: 31.333%;
}

.container_12 .grid_5 {
	width: 39.667%;
}

.container_12 .grid_6 {
	width: 48.0%;
}

.container_12 .grid_7 {
	width: 56.333%;
}

.container_12 .grid_8 {
	width: 64.667%;
}

.container_12 .grid_9 {
	width: 73.0%;
}

.container_12 .grid_10 {
	width: 81.333%;
}

.container_12 .grid_11 {
	width: 89.667%;
}

.container_12 .grid_12 {
	width: 98.0%;
}

/* Prefix Extra Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
	padding-left: 8.333%;
}

.container_12 .prefix_2 {
	padding-left: 16.667%;
}

.container_12 .prefix_3 {
	padding-left: 25.0%;
}

.container_12 .prefix_4 {
	padding-left: 33.333%;
}

.container_12 .prefix_5 {
	padding-left: 41.667%;
}

.container_12 .prefix_6 {
	padding-left: 50.0%;
}

.container_12 .prefix_7 {
	padding-left: 58.333%;
}

.container_12 .prefix_8 {
	padding-left: 66.667%;
}

.container_12 .prefix_9 {
	padding-left: 75.0%;
}

.container_12 .prefix_10 {
	padding-left: 83.333%;
}

.container_12 .prefix_11 {
	padding-left: 91.667%;
}

/* Suffix Extra Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
	padding-right: 8.333%;
}

.container_12 .suffix_2 {
	padding-right: 16.667%;
}

.container_12 .suffix_3 {
	padding-right: 25.0%;
}

.container_12 .suffix_4 {
	padding-right: 33.333%;
}

.container_12 .suffix_5 {
	padding-right: 41.667%;
}

.container_12 .suffix_6 {
	padding-right: 50.0%;
}

.container_12 .suffix_7 {
	padding-right: 58.333%;
}

.container_12 .suffix_8 {
	padding-right: 66.667%;
}

.container_12 .suffix_9 {
	padding-right: 75.0%;
}

.container_12 .suffix_10 {
	padding-right: 83.333%;
}

.container_12 .suffix_11 {
	padding-right: 91.667%;
}

/* Push Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
	left: 8.333%;
}

.container_12 .push_2 {
	left: 16.667%;
}

.container_12 .push_3 {
	left: 25.0%;
}

.container_12 .push_4 {
	left: 33.333%;
}

.container_12 .push_5 {
	left: 41.667%;
}

.container_12 .push_6 {
	left: 50.0%;
}

.container_12 .push_7 {
	left: 58.333%;
}

.container_12 .push_8 {
	left: 66.667%;
}

.container_12 .push_9 {
	left: 75.0%;
}

.container_12 .push_10 {
	left: 83.333%;
}

.container_12 .push_11 {
	left: 91.667%;
}

/* Pull Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
	left: -8.333%;
}

.container_12 .pull_2 {
	left: -16.667%;
}

.container_12 .pull_3 {
	left: -25.0%;
}

.container_12 .pull_4 {
	left: -33.333%;
}

.container_12 .pull_5 {
	left: -41.667%;
}

.container_12 .pull_6 {
	left: -50.0%;
}

.container_12 .pull_7 {
	left: -58.333%;
}

.container_12 .pull_8 {
	left: -66.667%;
}

.container_12 .pull_9 {
	left: -75.0%;
}

.container_12 .pull_10 {
	left: -83.333%;
}

.container_12 .pull_11 {
	left: -91.667%;
}

/* Clear Floated Elements
 ----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/*
 3.) Site Wide Content
 ------------------------------*/
#wrapper {
}

#container {
	max-width: 1920px;
	width: 100% !important;
	margin: 0 auto;
}

.page {
	max-width: 940px;
	width: 100%;
	margin: 0 auto;
	position:relative;
}

/*
 4.) Header Styles
 ------------------------------*/
#header {
	background: #000000;
}

.logo {
	float: left;
}

.logo {
	float: left;
	margin: 9px 0 15px;
}
.local-marketing-logo {
	float: right;
	margin: 22px 0 33px;
}

/*
 5.) Footer Styles
 ------------------------------*/
#footer {
	background: #751b75;
	padding: 41px 0 42px;
}

#footer .page h2 {
    font-family: "Roboto";
    font-weight: 500;
    font-style: normal;
    font-size:3.92em;
    letter-spacing: -1px;
    padding:0;
    color: #fefefe;
    line-height:25px;
}

#footer .page h3 {
    line-height:25px;
    padding:0;
    color:#ffff00;
    font-family: "Roboto";
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    font-size:2.10em;
    text-align:center;
}
#footer .page .box {
    background-color:#ffffff;
    height:500px;
    float:left;
}
#footer .page .price-top {
    height:114px;
    background-color:#cccccc;
}
#footer .page .price-top .price-circle {
    position:absolute;
    left:50%;
    margin-left:-68px;
    z-index:2;
    width:137px;
    height:137px;
    background-image:url(images/footer-circle.png);
    color:#999999;
    margin-top:-20px;
}
#footer .page .price-top.active .price-circle {
    background-image:url(images/footer-circle-pink.png);
    color:#ffffff;
}
#footer .page .price-top .price-circle .price-circle-label{
    margin:50px 0 0 18px;
    font-size:32px;
    font-weight:900;
    color:#666666;    
}
#footer .page .price-top.active .price-circle .price-circle-label{
    color:#ffffff;    
    text-shadow: 2px 1px 2px #000;
}
#footer .page .price-top p {
    width:100%;
    text-align:center;
    font-size:18px;
    font-weight:500;
    color:#999999;
    position:absolute;
    top:0;
    margin:12px 0 0 10px;
}
#footer .page .price-top p.last {
    margin:12px 0 0 0px;
}
#footer .page .price-top.active p {
    color:#ffffff;
}
#footer .page .price-bottom {
    height:280px;
    background-color:#ffffff;
    padding:50px 0 0 0;
    border: 1px solid #efeeee ;
}
#footer .page .price-bottom p{
    color:#cccccc;
    font-size:18px;
    font-weight:500;
    text-align:center;
    padding:30px 0 20px 0;
    line-height:27px;
}
#footer .page .price-bottom button{
    padding:0 10px 5px 10px;
    height:43px;
    border:2px solid #cccccc;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
    color:#999999;
    margin-left:65px;
}
#footer .page .price-bottom p span {
    color:#cccccc;
}
#footer .page .price-bottom.active p span{
    color:#666666;
}
#footer .page .price-bottom p span strong{
    width:100%;
    font-weight:700;
}
#footer .page .price-bottom.active p span strong{
    font-weight:900;
    color:#d52b87;
}
#footer .page .price-bottom.active button{
    background-color:#d52b87;
    border:2px solid #ffffff;
    color:#ffffff;
}
#footer .page .price-bottom.active button:hover {
    background-color:#a8226a;
}
#footer .page .price-footer {
    margin:19px 0 19px auto;
}
#footer .page .price-footer ul li{
    color:#ffffff;
    font-size:16px;
    font-weight:500;
}
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}
#footer .page .price-top.active{
    background-color:#a8226a;
}
#footer .page .price-top img{
    width:65px;
    height:65px;
}
.offer-sec {
	background: #a8226a;
	border-radius: 10px;
	width: 95%;
	margin: 0 auto 56px;
	padding: 0 74px 0 59px;
	display: block;
	position: relative;
}
.com-logo-fotr {
	float: left;
	width: 30%;
	margin-top: 11px;
}
.com-logo-fotr span {
	display: block;
	color: #fefefe;
	font-size: 1.8em;
	margin-bottom: 5px;
}
.logos.last {
	margin: 0 0 15px;
	width: 100%;
}

.price {
	position: absolute;
	left: 0;
	right: 0;
	width: 132px;
	height: 132px;
	border-radius: 150px;
	margin: auto;
	top: -26px;
	background: url(images/price-bg.png) no-repeat 8px 9px #a8226a;
	overflow: hidden;
	padding-top: 44px;
}

.price > span {
	float: left;
	font-size: 1.8em;
	padding-left: 21px;
	color: #fefefe;
}
.price > strong {
	float: right;
	font-size: 6em;
	color: #fefefe;
	padding: 0 20px 0 0;
	margin-top: -8px;
}

.offer-price {
	float: right;
	color: #fefefe;
	overflow: hidden;
}
.offer-price > span {
	float: left;
	text-transform: uppercase;
	width: 88px;
	text-align: right;
	font-size: 2.1em;
	padding-top: 11px;
}
.offer-price > strong {
	float: right;
	width: 90px;
	text-align: right;
	font-size: 8em;
}
.offer-price > small {
	float: right;
	width: 110px;
	font-size: 2em;
	padding-top: 10px;
    text-align: right;
}
.offer-price > small > span {
	font-size: 2.3em;
	margin-bottom: 3px;
	text-transform: uppercase;
	display: block;
    line-height:38px;
}

.video-link.last { width:314px; margin:0 auto 5px; float:none;    position: inherit; }
.payment-mode.last { float:none; margin:0 auto; width:235px; overflow: hidden; }

