
body {
  background-color: #f2f2f2;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    padding-top: 50px;

    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway";
    font-weight: 300;
    color: #333;
}


/* Paragraph & Typographic */
p {
    line-height: 28px;
    margin-bottom: 25px;
}

.centered {
    text-align: center;
}

/* Links */
a {
    color: #3bc492;
    word-wrap: break-word;

    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover,
a:focus {
    color: #c0392b;
    text-decoration: none;
    outline: 0;
}

a:before,
a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#headerwrap {
	background-color: #34495e;
	padding-top: 60px;
}

#headerwrap h1 {
	margin-top: 30px;
	color: white;
	font-size: 70px;
	
}

#headerwrap h3 {
	color: white;
	font-size: 30px;
}

#headerwrap h5 {
	color: white;
	font-weight: 700;
	text-align: left;
}

#headerwrap p {
	text-align: left;
	color: white
}

/* intro Wrap */

#intro {
	padding-top: 50px;
	border-top: #bdc3c7 solid 5px;
}

#features {
	padding-top: 50px;
	padding-bottom: 50px;
}

#features .ac a{
	font-size: 20px;
}

/* Showcase Wrap */

#showcase {
	display: block;
	background-color: #34495e;
	padding-top: 50px;
	padding-bottom: 50px;
}

#pricing{
	display: block;
	background-color: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

#showcase h1 {
	color: white;
}

#footerwrap {
	background-color: #2f2f2f;
	color: white;
	padding-top: 40px;
	padding-bottom: 60px;
	text-align: left;
}

#footerwrap h3 {
	font-size: 28px;
	color: white;
}

#footerwrap p {
	color: white;
	font-size: 18px;
}

/* Copyright Wrap */

#c {
	background: #222222;
	padding-top: 15px;
	text-align: right;
}

#c p {
	color: white
}

.pricingTable{
    border: 2px solid #4a4450;
    border-radius: 10px;
    text-align: center;
    padding: 25px 0 35px;
    position: relative;
}
.pricingTable .title{
    font-size: 24px;
    font-weight: 600;
    color: #4a4450;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}
.pricingTable .title:before,
.pricingTable .title:after{
    content: "";
    display: block;
    width: 23%;
    height: 2px;
    background: #4a4450;
    position: absolute;
    top: 40px;
}
.pricingTable .title:before{
    left: 0;
}
.pricingTable .title:after{
    right: 0;
}
.pricingTable .month{
    font-size: 40px;
    color: #4a4450;
    margin-bottom: 20px;
}
.pricingTable .month span{
    display: block;
    font-size: 15px;
    color: #4a4450;
}
.pricingTable .price-value{
    background: #727cb6;
    margin: 0 -2px 20px;
    font-weight: 700;
    color: #fff;
}
.pricingTable .amount{
    display: inline-block;
    font-size: 50px;
    position: relative;
}
.pricingTable .currency{
    font-size: 25px;
    position: absolute;
    top: 15px;
    right: -22px;
}
.pricingTable .pricing-content{
    padding: 0;
    margin: 0;
    list-style: none;
}
.pricingTable .pricing-content li{
    font-size: 15px;
    color: #4a4450;
    line-height: 30px;
}
.pricingTable .pricingTable-signup{
    display: inline-block;
    width: 125px;
    padding: 7px 10px;
    background: #727cb6;
    border: 1px solid #727cb6;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    margin: 0 auto;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    transition: all 0.4s ease 0s;
}
.pricingTable:hover .pricingTable-signup{
    text-decoration: none;
    background: #fff;
    color: #727cb6;
}
@media only screen and (max-width:990px){
    .pricingTable{ margin-bottom: 35px; }
}


