/*
 * A Design by GraphBerry
 * Author: GraphBerry
 * Author URL: http://graphberry.com
 * License: http://graphberry.com/pages/license
 */

/* Table of content
1.General - This is created general styles and overide some bootstrap classes.
2.Layout
 2.1 Animations
 2.2 Buttons
 2.3 Thumbnail - overide bootstrap thumbnail and add mased efect
 2.4 Socail icons -style for social icons list
3 Sections - definition for section and subsection
 3.1 Services
 3.2 Portfolio
 3.3 About
 3.4 Clients
 3.5 Price table
 3.6 Newsletter
 3.7 Contact
 3.8 Footer
4 Responsive 
**********************************************************************/

/*
1. General
**********************************************************************/
 body {
    font-family:'Roboto', sans-serif;
    color: #FFF;
    line-height:1.6em;
    font-size:15px;
}
a {
    color:#221814;
    text-decoration: none;
}
a:hover {
    color: #EAEEF0;
    text-decoration:none;
}
a:active{
}
a:hover img{
	opacity:0.6;
	filter:alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	background:none!important;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: boldl;
}
h1 {
    margin: 10px;
}
p {
    padding: 0;
    font-weight: 100;
    color: #fff;
}
.navbar {
    background: #221814;
    margin-bottom:0;
    min-height:70px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
}
.navbar-inner {
    background: #221814;
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
}
.navbar .brand img {
    width:200px;
    height:auto;
}
.navbar .nav > li > a {
    text-transform:uppercase;
    line-height: auto;
    vertical-align: middle;
    margin:10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 1px solid #221814;
    box-shadow: none;
    font-size:15px;
    text-shadow: none;
    color: #fff;
    transition: border-color 1s ease;
}
.navbar .nav > li:hover> a, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
    border: 1px solid #EAEEF0;
    color: #fff;
    background-color: #221814;
    transition: border-color 1s ease;
}
.nav-pills {
    margin-bottom: 30px;
}
.nav-pills > li > a {
    background: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-right:5px;
    padding-left:25px;
    padding-right:25px;
	color:#FFF;
    border: 1px solid #FFF;
}
.nav-pills > li > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
    background: #FFF;
    color: #221814;
}
.navbar .btn-navbar:hover, .navbar .btn-navbar {
    border-radius:0;
    background:#EAEEF0;
    color: #000;
}

/**** CLEAR ************************/
.clearFix{
    overflow:hidden;
}

.clearFix:after{
    content: "";
    display: block;
    clear: both;
    height: 0px;
    overflow: hidden;
}

/*¥*/
* html .clearFix{
    height: 1em;
    overflow: visible;
}
/**/

/* or */
.clear{
	clear:both;
}

.float-rt {
	float: right !important;
}
.float-lt {
	float: left !important;
}

.aln-lt {
	text-align: left;
}
.aln-cr {
	text-align: center;
}
img{
     vertical-align: bottom;
}




/******
2. Layout
**********************************************************************/
.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}
/* Use this class if you want ceter element with span* class */
 .center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}
.highlighted-box {
    background:#F4F8F9;
    padding:20px 30px;
}
.highlighted-box h1 {
    margin:0px;
}
.large-text {
    line-height:1.2em;
    font-size: 30px;
    color: #004286;
    padding:20px;
    margin-bottom:20px;
}
.highlighted-box h1, .highlighted-box p {
    color: #004286 !important;
}
.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    -khtml-border-radius: 500px;
    border: 3px solid #fff;
}
.left-align {
    text-align:left;
}
.right-align {
    text-align:left;
}
.error {
    color: #CF0000;
    display: none;
}
.invisible {
    display:none;
    visibility:visible;
}
.triangle {
    margin: 0 auto;
    text-align:center;
    width: 0;
    height: 0;
    border-top: 30px solid #004286;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}
/*
2.1 Animations
**********/
 .zoom-in {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    transition: all 250ms ease;
}
.zoom-in:hover {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
}
/*
2.2 Buttons - There are buttons on a transparent background, primary and secondary color background.
**********/
 .button,  .button:visited, .button:focus {
    display:inline-block;
    border:1px solid #004286;
    color:#004286;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
}
.button:hover, .button:active{
    background-color:#004286;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
    background-color:#EAEEF0;
    color:#004286;
}
.button-sp:hover, .button-sp:active {
    background-color:#004286;
    color:#EAEEF0;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#004286;
    color:#EAEEF0;
}
.button-ps:hover, .button-ps:active {
    background-color:#EAEEF0;
    color:#004286;
}
/*
2.3 Thumbnails - Predefined bootstrap's thumbnail class.
**********/
 .thumbnail {
    width:100%;
    height:100%;
    padding:0;
    overflow: hidden;
    position: relative;
    border:0;
    border-radius:0;
    box-shadow:none;
    text-align:center;
    background: #191a1c;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100px;
    left:50%;
    margin:0 auto;
    margin-left:-41px;
    width:80px;
    height:80px;
    font-size:40px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:40%;
    margin-top:-40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3 s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.thumbnail h3, 
.thumbnail p {
    margin:0;
    padding:0;
    position:relative;
    z-index:4;
}
.thumbnail h3 {
    color: #EAEEF0;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.5;
    filter: alpha(opacity=50);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#A61955;
    position:absolute;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2 s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
    top:0;
}
/*
2.4 Socail icons
************/
 .social {
    list-style: none;
    float: none;
    position:relative;
    margin:5px; auto;
}
.social li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 32px;
    padding:0 5px;
}
.social li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #EAEEF0;
}
.social li a:hover {
    color:#004286;
}

/*
トップページ 
***************************************************************************/
.section_n{
	padding:30px 0 30px 0;
	}

.book{
	float:left;
	width:40%;
	padding-top:10px;
	}
.book_right{
	float:right;
	width:55%;
	color:#004286;
	}
.book_right p{
	color:#0C2E3B;
	}
/*
プッシュ通知 
***************************************************************************/
.section_push{
	padding:0;
	}
.push_left{
	padding-top:50px;
	width:43%;
	float:left;
	}
.push_left h2{
	margin-top:20px;
	}
.push_left strong{
	color:#000;
	font-size:18px;
	background-color:#FFF;
	padding:7px 12px;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */
	}
.push_image{
	width:55%;
	float:right;
	}

/*
プラン紹介
***************************************************************************/

.plan_left{
	float:left;
	width:73%;
	}
.plan_right{
	float:right;
	width:24%;
	}

.plan_title img{
	float:left;
	margin-right:30px;
	margin-top:10px;
	}
.plan_title h2{
	color:#004286;
	margin:0;
	font-size:45px;
	line-height:1.2em;
	}
.plan_title2{
	margin-bottom:20px;
	}
.plan_title2 h3{
	color:#0C2E3B;
	margin:20px 0 5px 0;
	}
.plan_title2 h4{
	color:#20ADE5;
	font-size:24px;
	border-bottom:1px solid #CCC;
	margin:30px 0 10px 0;
	padding-bottom:7px;
	}
.plan_title2 p{
	color:#0C2E3B;
	}

.planbox_l{
	float:left;
	width:45%;
	background-color:#FFF;
	padding:0 15px;
	margin-top:20px;
	border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */ 
	}
.planbox_l h4{
	color:#20ADE5;
	font-size:24px;
	border-bottom:1px solid #CCC;
	margin:30px 0 10px 0;
	padding-bottom:7px;
	}
.planbox_l p{
	color:#0C2E3B;
	}
.planbox_r{
	float:right;
	width:45%;
	background-color:#FFF;
	padding:0 15px;
	margin-top:20px;
	border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */ 
	}
.planbox_r h4{
	color:#20ADE5;
	font-size:24px;
	border-bottom:1px solid #CCC;
	margin:30px 0 10px 0;
	padding-bottom:7px;
	}
.planbox_r p{
	color:#0C2E3B;
	}
.planbox_right{
	float:right;
	width:65%;
	}
.planbox_right p img{
	width:60%;
	margin-top:10px;
	}
.planbox_left{
	float:left;
	width:33%;
	padding-top:20px;
	}



.pro_box{
	background:url(../01_images/pro/design.png) bottom right no-repeat;
	}	
.pro_title img{
	float:left;
	margin-right:30px;
	margin-top:10px;
	}
.pro_title h2{
	color:#FFF;
	margin:0;
	font-size:45px;
	line-height:1.2em;
	}
.pro_title2{
	margin-bottom:30px;
	width:50%;
	}
.pro_title2 h3{
	color:#0C2E3B;
	margin:20px 0 5px 0;
	}
.pro_title2 p{
	color:#FFF;
	padding-bottom:30px;
	}
/*
機能 
***************************************************************************/
.kino_title{
	text-align:center;
	margin-bottom:30px;
	}
.kino_title h2{
	color:#004286;
	}
.kino_title p{
	color:#0C2E3B;
	}

.kino_table{
	background:#0C2E3B;
	border-collapse:separate;
	border-spacing:0 1px;
	width:100%;
	margin-bottom:10px;
}
.kino_table th{
	font-weight:bold !important;
	line-height:1.2em !important;
	padding:10px;
	width:40%;
	min-width:90px;
	vertical-align:middle;
	border:1px #EAEEF0 solid;
	background:#83949D;
	font-weight:normal;
}
.kino_table td{
	color:#0C2E3B;
	padding:10px 20px;
	height:32px;
	vertical-align:middle;
	border:1px #EAEEF0 solid;
	background:#FFF;
}
.kino_table th span{
	font-weight:normal !important;
	font-size:12px;
	}
.kino_table .price{
	font-weight:bold;
	font-size:19px;
	background-color:#FDF1EF;
}
.kino_table .title{
	color:#FFF;
	font-weight:bold;
	background-color:#004286;
}
.kino_table img{
	margin-bottom:8px;
}
.kino_table .maru{
	font-weight:700 !important;
	color:#F00;
	font-size:18px;
}

/*
3. Sections 
***************************************************************************/
 .section {
    padding-bottom: 50px;
}
.section .container {
    padding-top:50px;
}
.section .title {
    text-align: center;
    padding:10px;
    margin-bottom: 30px;
}
.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}
.section .title > p {
    font-size: 20px;
    color: #FFF;
    font-weight: lighter;
}
.primary-section {
    background:#004286;
}
.primary-section .triangle {
    border-top: 40px solid #EAEEF0;
}
.primary-section .title {
    border-bottom: 1px solid #FFF;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #EAEEF0;
}
.primary-section h1 {
    color:#FFF;
}
.secondary-section {
    background:#EAEEF0;
}
.secondary-section .title {
    border-bottom: 1px solid #004286;
}
.secondary-section h1, .secondary-section .title p {
    color: #004286;
}
/* Third section use bacground image */
.third-section {
    padding-bottom: 70px;
    background: #004286 url(../images/brand-bg.png) no-repeat center;
    border-top:6px solid #EAEEF0;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title {
    border-bottom: 1px solid #A1AAB7;
    color: #EAEEF0;
}
.sub-section {
    margin-top:30px;
}
.sub-section .title {
    padding:0;
}
/*******
3.1 Services  
***************************************/
.service{
    margin-top:20px;
}
 .service, .service h2 {
    padding-top:15px;
}
.service p {
    padding:0px 50px;
    height:60px;
}
.service img {
    width:150px;
    height:150px;
}
/*
3.2 Portfolio
***************************************/
 .single-project {
    margin-bottom:30px;
    background:#DFE6EA;
}
.single-project img {
    width:100%;
}
.project-description {
    padding-right:20px;
}
.project-description p {
    padding-left:0;
	color:#0C2E3B;
}
.project-title {
    margin-top:15px;
    margin-bottom:15px;
    border-bottom:1px solid #CCC;
}
.project-title h3 {
    float:left;
    margin-top:0;
    padding:0;
    width:80%;
}
.project-title .close {
    color: #0C2E3B;
    margin-top:10px;
}
.project-info span, .project-title h3 {
    color:#0C2E3B;
}
.project-info {
    font-weight:100;
    padding:10px 0;
}
.project-info span {
    width: 80px;
    display: inline-block;
}
.project-info div {
    margin-bottom:5px;
}
.close {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}
#portfolio-grid .mix {
    opacity: 0;
    display: none;
}
#portfolio-grid h3{
	margin-bottom:10px;
	}



/*
3.4 Clients
**********************************************************************/
 .client-slider img {
    border:1px solid white;
}
.client-slider img:hover {
    background-color:#EAEEF0;
}
.client-nav {
    list-style:none;
    margin-top:10px;
}
.client-nav li {
    float:left;
    display:block;
    margin-left:10px;
}
.client-nav li a {
    display:inherit;
    padding:5px;
    background:#EAEEF0;
    border-radius:3px;
    width:20px;
    height:20px;
}
.client-nav li a:hover {
    background:#004286;
}
.testimonial p strong{
	font-size:20px;
	}
.testimonial p {
    color:#004286;
    background:#EAEEF0;
    padding:15px;
    margin:0;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
}
.testimonial .arrow {
    margin-left:10px;
    width:0;
    border-top:10px solid #EAEEF0;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}
.testimonial .whopic {
    display:inline-block;
}
.testimonial .whopic img {
    margin-top:10px;
    width:50px;
    height:50px;
    float:left;
}
.testimonial .whopic strong {
    float:left;
    margin-top:10px;
    padding-left:10px;
}
.testimonial .whopic small {
    display:block;
    font-size:12px;
    
}
.testimonial-text{
    display:block;
    font-size:22px;
    text-align:center;
    margin:0 auto;
    margin-top:30px;
    width:70%;
    line-height:1.3em;
}


/*
3.7 Contact
********************************************************************/
.tel_box{
	background-color:#FFF;
	padding:10px 20px;
	margin-bottom:30px;
	border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */ 
	}
.entry_table{
	background:#0C2E3B;
	border-collapse:separate;
	border-spacing:0 1px;
	width:100%;
	margin-bottom:10px;
}
.entry_table th{
	font-weight:bold !important;
	line-height:1.2em !important;
	padding:10px;
	width:20%;
	min-width:90px;
	vertical-align:middle;
	border:1px #EAEEF0 solid;
	background:#83949D;
	font-weight:normal;
}
.entry_table td{
	color:#0C2E3B;
	padding:10px 20px;
	height:32px;
	vertical-align:middle;
	border:1px #EAEEF0 solid;
	background:#FFF;
}
.entry_form textarea{
	width:90%;
	margin:2px;
	}
.entry_form .button{
	padding:10px;
	margin-top:20px;
	color:#FFF;
	font-weight:bold;
	background-color:#722400;
	border:none;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */ 
	}
.entry_form .button:hover{
	background-color:#4A0800;
	}
.entry_form .button2{
	padding:10px;
	margin-top:20px;
	color:#FFF;
	font-weight:bold;
	background-color:#666;
	border:none;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */ 
	}
.entry_form .button2:hover{
	background-color:#444;
	}
.entry_form p{
	margin:0;
	}
.f_parts1{
	width:50%;
	margin:2px;
	}
.f_parts2{
	margin:2px;
	}
.f_parts3{
	padding:3px;
	}
.form_caption{
	margin-bottom:20px;
	padding:10px;
	background-color:#FFF;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */ 
	}
.form_caption p{
	border-top:1px solid #CCC;
	padding-top:5px;
	}
	
	

 .contact {
    background: #EAEEF0;
}
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #004286;
}
.contact textarea, .contact input[type="text"], .contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
}
.contact textarea {
    height: 120px;
}
.contacts, .contact .social {
    color: #fff;
    list-style: none;
    margin-left: 10px;
}
.contacts > li {
    margin-top: 15px;
}
.contacts > li > a {
    color: #fff;
}
.contact-info {
    margin-top:10px;
    margin-bottom:10px;
}
.contact-info p{
     font-weight:normal;
}
.contact-info .icon {
    margin:10px auto;
    font-size:30px;
}

.contact .social {
    display: inline-block;
    margin-left:0;
}
.contact .social li {
    line-height: 32px;
    padding:10px 10px;
    font-family:'Porta';
    font-size: 50px;
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
}
.contact .social li a {
    color:#fff;
}
.contact .social li a:hover {
    color:#004286;
}
.contact-form {
    background:#fff;
    background: rgba(255, 255, 255, 0.9);
    z-index:110;
    position:relative;
    margin-top:-25px;
    padding:20px;
}
.contact-form h3 {
    color:#838589;
    padding-bottom:20px;
}
.message-btn {
    border:1px solid #747C89;
    color:#747C89;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
}
.message-btn:hover {
    background-color:#EAEEF0;
}
.contact-info {
    text-align:center;
    font-size:22px;
}
.info-mail {
    border:1px solid white;
    width:60%;
    margin:0 auto;
    padding:15px;
    color:#004286;
}
.black {
    color:#004286;
}
.error_messe{
	color:#004286
	}
/*
3.8 Footer
********************************************************************/
.footer2{
	text-align:center;
	padding:20px 0;
	}
.footer2 p{
	color:#333;
	margin:5px 0 0 0;
	}
 .footer {
    background: #004286;
    text-align: center;
}
.footer > p {
    color: #fff;
    margin:0;
}
.scrollup {
    text-align:center;
    cursor:pointer;
    vertical-align:middle;
    width:39px;
    height:39px;
    border-radius:5px;
    font-size:20px;
    position:fixed;
    bottom:30px;
    right:20px;
	border:1px solid #fff;
    display:none;
    background: #EAEEF0;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}
/*
4 Responsible
********************************************************************/
 @media (min-width: 1200px) {
    .thumbnail .more {
        margin-left:-41px;
        width:80px;
        height:80px;
        border-radius:40px;
        line-height: 80px;
    }
}
@media (max-width: 1200px) {
	.navbar .brand img {
    width:160px;
	}
	}
@media (max-width: 979px) {
    body {
        padding-left:0;
        padding-right:0;
    }
	.no{
		display:none;
		}
		
	/****/
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section, .section_n, .section_push {
        padding-left:20px;
        padding-right:20px;
    }

    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .thumbnail .more {
        margin-left:-21px;
        width:40px;
        height:40px;
        border-radius:30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top:-20px;
    }
    .newsletter form {
        text-align:center;
    }
}
@media (max-width: 767px) {
	
	h2{
		font-size:20px;
		line-height:1.4em !important;
		}
	.book{
		float:none;
		width:100% !important;
		}
	.book_right{
		float:none;
		width:100% !important;
		}
	.push_left{
		float:none;
		width:100% !important;
		}
	.push_image{
		float:none;
		width:100% !important;
		}
	.plan_left{
		float:none;
		width:100% !important;
		}
	.plan_right{
		float:none;
		width:100% !important;
		}
	.plan_title h2{
		font-size:30px;
		line-height:1.4em;
		}
	.title_logo{
		float:none;
		}
	.planbox_l{
		float:none;
		width:90%;
		}
	.planbox_r{
		float:none;
		width:90%;
		}
	.planbox_l h4{
		line-height:1.4em;
		}
	.planbox_r h4{
		line-height:1.4em;
		}
	.pro_box{
		background:none;
		}
	.pro_title h2{
		font-size:30px;
		line-height:1.4em;
		}
	.pro_title2{
		float:none;
		width:100% !important;
		}
		
	.plan_title img{
		float:none;
		margin-bottom:10px;
	}
	.pro_title img{
		float:none;
		margin-bottom:10px;
	}


	
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
}