/*
 * 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.2em;
    font-size:17px;
    line-height:20px;
}
a {
    color:#D7DDDE;
    text-decoration: none;
}
a:hover {
    color: #b5e5e9;
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #fff;
}
.navbar {
    background: #1a2033;
    margin-bottom:0;
    min-height:60px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
}
.navbar-inner {
    background: #1a2033;
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
}
.navbar .brand img {
    width:204px;
    height:56px;
    margin-bottom: -20px;
    margin-left:5px;
    position: relative; z-index: 1030;
}
.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 #1a2033;
    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 #b5e5e9;
    color: #fff;
    background-color: #1a2033;
    transition: border-color 1s ease;
}
.nav-pills {
    margin-bottom: 30px;
}
.nav-pills > li > a {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-right:5px;
    padding-left:25px;
    padding-right:25px;
    border: 1px solid #1a2033;
}
.nav-pills > li > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
    background: #1a2033;
    color: #fff;
}
.navbar .btn-navbar:hover, .navbar .btn-navbar {
    border-radius:0;
    background:#b5e5e9;
    color: #000;
}
/******
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;
}
.highlighted-box h1, .highlighted-box p {
    color: #1a2033 !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 #1a2033;
    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 #1a2033;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
}
.button:hover, .button:active{
    background-color:#1a2033;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
    background-color:#1a2033;
    color:#b5e5e9;
}
.button-sp:hover, .button-sp:active {
    background-color:#FFF;
    color:#1a2033;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#1a2033;
    color:#b5e5e9;
}
.button-ps:hover, .button-ps:active {
    background-color:#b5e5e9;
    color:#1a2033;
}
.primary-section .button-sp {
    background-color:#b5e5e9;
    color:#1a2033;
}
/*
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;
}
.thumb_desc {
    height:50px; overflow:hidden;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100%;
    left:50%;
    margin-left:-500px;
    padding-top:20%;
    width:1000px;
    height:1000px;
    font-size:32px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:0px;
    -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: #b5e5e9;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.85;
    filter: alpha(opacity=85);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#1a2033;
    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
************/
 .navsocial {
    list-style: none;
    float:right;
    margin:5px 5px;
    margin-top: 15px;
}
 .social {
    list-style: none;
    float: none;
    position:relative;
    margin:5px; auto;
}
.social li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 42px;
    padding:0 5px;
}
.navsocial li {float: left; margin-right: 4px; display: block; font-size: 28px; line-height: 24px; font-family:'Porta';}
.social  [class^="icon-"]:before, .social [class*=" icon-"]:before{
  font-size: 32px;
  position:relative;
  top:-5px;
}
.social li a, .navsocial li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #b5e5e9;
}
.navsocial li a {
    width:24px;
    height:24px;
}
.social li a:hover, .navsocial li a:hover {
    color:#fff;
}
/*
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;
}
.maintitle {
    font-size: 20px !important;
    color: #FFF !important;
    font-weight: lighter !important;
}
.primary-section {
    background-color: #1a2033;
}
.primary-section .triangle {
    border-top: 40px solid #000000;
}
.primary-section .title {
    border-bottom: 1px solid #FFF;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #ffffff;
}
.primary-section h1 {
    color:#FFF;
}
.secondary-section {
    background: #1e1301 url(../images/background.jpg) no-repeat center top;
}
.secondary-section .title {
    border-bottom: 1px solid #1a2033;
}
.secondary-section h1, .secondary-section .title p, .outline, .notify {
    color: #fff;
    text-shadow:
       -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
     	1px 1px 0 #000,
     	0px 0px 4px #000;
}
/* Third section use bacground image */
.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:75px;
    height:75px;
}
/*
3.2 Portfolio
***************************************/
#gallery img {
    margin: 4px; border: 1px solid white;
}

 .single-project {
    margin-bottom:30px;
    background:#1a2033;
}
.single-project img {
    width:100%;
}
.project-description {
    padding-right:20px;
}
.project-description p {
    padding:0 0 0 0;
}
.project-title {
    margin-top:5px;
    margin-bottom:5px;
    border-bottom:1px solid #b5e5e9;
}
.project-title h3 {
    float:left;
    margin-top:0;
    padding:0;
    width:80%;
}
.project-title .close {
    color: #b5e5e9;
    margin-top:10px;
    height:30px;
}
.project-title h3 {
    margin: 0;
}
.project-info span, .project-title h3 {
    color:#b5e5e9;
}
.project-info {
    font-weight:100;
    padding: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;
}
#blog-grid .blogmix {
    opacity: 0;
    display: none;
}
/*
3.3 About
******************************************************************/
 .team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}
.team .thumbnail:hover .social {
    z-index: 5;
}
.team .thumbnail:hover .social a {
    color:#fff;
}
.team .thumbnail .mask {
    background: #b5e5e9;
}
.team .thumbnail .mask h2 {
    margin-top:15%;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color:#181A17;
}
.about-text {
    margin-top:30px;
}
.about-text p {
    padding:0;
    font-size:16px;
}
.packages {
    overflow: hidden; 
}
.packages .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
    float: none;
    display: table-cell;
    vertical-align: top;
}
/*
3.4 Clients
**********************************************************************/
 .client-slider img {
    border:1px solid white;
}
.client-slider img:hover {
    background-color:#b5e5e9;
}
.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:#b5e5e9;
    border-radius:3px;
    width:20px;
    height:20px;
}
.client-nav li a:hover {
    background:#1a2033;
}
.testimonial p {
    color:#1a2033;
    background:#b5e5e9;
    padding:15px;
    margin:0;
}
.testimonial .arrow {
    margin-left:10px;
    width:0;
    border-top:10px solid #b5e5e9;
    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.6 Newsletter
********************************************************************/
 .newsletter, .newsletter h2 {
    color: #D7DDDE;
}
.newsletter .title h2 {
    text-align:left;
    padding:0;
    margin:0;
}
.newsletter form {
    text-align:right;
}
.newsletter input {
    margin-top:10px;
    padding:15px;
    height: auto;
}
.primary-section button {
    margin: 0 0 0 20px;
}
.primary-section .button-sp:hover, .newsletter .button-sp:active {
    background-color:#FFF;
    color:#1a2033;
}

/*
3.8 Footer
********************************************************************/
 .footer {
    background: #1a2033;
    text-align: center;
}
.footer > p {
    color: #fff;
    margin:0;
}

.footer a{
    color:#b5e5e9;
}

.footer a:hover, .footer a:focus{
    text-decoration: underline;
}
.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: #b5e5e9;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#000;
}

.trailer_button {
    opacity: 0.75; position:absolute; top:100%; left:100%;
    transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out;
    background-size: 320px 180px; margin-top:-180px; margin-left:-320px; width: 320px; height:180px; overflow:hidden;
}
.trailer_button img {width: 100%; height:100%;}
.trailer_button:hover {
    opacity:1;
}
/*
4 Responsible
********************************************************************/
@media (max-width: 1400px){
    .trailer_button {
        background-size: 240px 135px; margin-top:-135px; margin-left:-240px; width: 240px; height:135px;
    }
}
@media (max-width: 1076px){
    .navsocial {display: none;}
    .trailer_button {
        background-size: 160px 90px; margin-top:-90px; margin-left:-160px; width: 160px; height:90px;
    }
}
@media (max-width: 979px) {
.navsocial {display: block;}
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        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;
    }
    .newsletter form {
        text-align:center;
    }
    .thumb_desc {font-size: 12px;}
}
@media (max-width: 767px) {
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
    .thumb_desc {font-size: 17px;}
    .packages .thumbnail {float:left; display:block;}
}
@media (max-width: 445px) {
    .navsocial {display:none;}
    .trailer_button {
        background-size: 80px 45px; margin-top:-45px; margin-left:-80px; width: 80px; height:45px;
    }
}

.news_date {padding: 0px 8px 4px 8px; border-bottom: 1px solid #fffeea; position:relative; z-index:4;}
.addpad {padding: 4px 4px 20px 4px !important;}
.listdescription{font-size:12px;}
.span5 ul {list-style: none;}
.span5 input[type="checkbox"] {margin:8px; width:20px; height:20px;}
.notify {
    position: absolute; top:28%; left:5%; width:40%; height:44%;
    background-color:rgba(0, 0, 0, 0.6); text-align:center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
} .notify_pad{padding: 0 8px 8px 8px;}
.cta {text-shadow: none; padding-top:8px;}