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

/*
1. General
**********************************************************************/
 body {
    font-family:'Roboto', sans-serif;
    color: #FFF;
    line-height:1.2em;
    font-size:17px;
    line-height:20px;
}
a {
    color:#181A1C;
    text-decoration: none;
}
a:hover {
    color: #FECE1A;
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #333;
}
ul, ol {
    padding: 0;
    margin: 0 0 10px 25px;
    font-weight: 300;
}
.primary-section ul {
	color: #333;	
}
.navbar {
    background: #181A1C;
    margin-bottom:0;
    min-height:70px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
}
.navbar-inner {
    background: #fff;
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
}
.navbar .brand img {
    width:200px;
}
.navbar .nav > li > a {
    line-height: auto;
    vertical-align: middle;
    margin:10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 1px solid #ec1229;
    box-shadow: none;
    font-size:14px;
    text-shadow: none;
    color: #ec1229;
    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 #ec1229;
    color: #fff;
    background-color: #ec1229;
    transition: border-color 1s ease;
}
.nav > li > .dropdown-menu {
	margin-top: -5px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
.nav ul {
	display: none;
    position: absolute;
    background: #0b217f;
    padding: 0;
    z-index: 9999;
    list-style-type: none;
    margin: 0;
    text-align: left;
    min-width: 150px;
}
.nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    text-decoration:none;
}
.nav ul li
{
	float:none;
	border-bottom:1px dashed #ccc;
}

.nav ul li:last-child { border-bottom:none; }

.nav ul a
{
	
	padding:10px 15px;
	display:block;
	font-size:14px;
	color: #fff;
}
.nav ul a:hover
{
	background:#ec1229;
}
.nav ul ul
{
	top:0;
	left:100%
}
.nav li:hover > ul
{
	display:block;
}
.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 #181A1C;
}
.nav-pills > li > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
    background: #181A1C;
    color: #fff;
}
.navbar .btn-navbar:hover, .navbar .btn-navbar {
    border-radius:0;
    background:#ec1229;
    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;
}
.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 #fff;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}
.da-slide .da-link {
    display: inline-block;
    position: relative !important;
}
/*
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 #2e3293;
    color: #2e3293;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
}
.button:hover, .button:active{
    background-color:#181A1C;
    color:#fff;
}
/*
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;
}
.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: #FECE1A;
    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:#181A1C;
    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;
}

/*
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;
	color:#ff001b;
}
.section .title > p {
    font-size: 16px;
    color: #333;
    font-weight: lighter;
}
.section .title > ul.nolist {
    font-size: 16px;
    color: #333;
    font-weight: lighter;
	list-style:none;
	margin-left:0;
}
.heading {
    background-image: url(../images/burrand-heading.jpg);
    background-size: cover;
    background-position: top;
    height: 200px;
}
.primary-section {

}
.primary-section .triangle {
    border-top: 40px solid #000;
}
.primary-section .title {
    border-bottom: 1px solid #132883;
}
.primary-section {
    color: #000;
}
#owl-example .item {
    width: 100%;
    display: inline-block!important;
    margin: 10px 0;
    text-align: center;
}
.secondary-section {
    background:#000;
}
.secondary-section p {
	color:#fff;
}
.secondary-section .title {
    border-bottom: 1px solid #181A1C;
}
.secondary-section h1, .secondary-section .title p {
    color: #181A1C;
}
/* Third section use bacground image */
.third-section {
    padding-bottom: 70px;
    background: #181A1C url(../images/burrand-roof.jpg) no-repeat center;
    border-top:6px solid #eb0f21;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title {
    border-bottom: 1px solid #A1AAB7;
    color: #eb0f21;
}
.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;
}
.service img {
    width:150px;
    height:150px;
}
/*
3.3 About
******************************************************************/
 .team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 3px solid #0c2380;
	background:#fff;
}
.team .thumbnail .mask {
    background: #fff;
}
.team .thumbnail .mask h2{
    font-size: 24px;
    color: #333;
}
.team .thumbnail img {
    height:70px;
}
/*
3.4 Clients
**********************************************************************/
.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:#eb0f21;
    border-radius:3px;
    width:20px;
    height:20px;
}
.client-nav li a:hover {
    background:#181A1C;
}
.testimonial p {
    color:#181A1C;
    border: 3px solid #132983;
    padding:15px;
    margin:0;
}
.testimonial .arrow {
    margin-left:10px;
    width:0;
    border-top:10px solid #132983;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}
.testimonial .whopic {
    display:inline-block;
}
.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
********************************************************************/
 .contact {
}
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #181A1C;
}
.contact textarea, .contact input, .contact select {
    padding: 10px;
    line-height: 20px;
    height: auto;
}
.contact textarea {
   
}
.contact-form {
    border: 3px solid red;
    box-shadow: 2px 3px 4px #000;
}
.contact-form {
    background:#fff;
    z-index:110;
    position:relative;
    padding:20px;
}
.contact-form h3 {
    color:#333;
}
.message-btn {
    border:1px solid #747C89;
    color:#747C89;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
}
.message-btn:hover {
    background-color:#FECE1A;
}
.contact-info {
    text-align:center;
    font-size:22px;
}
.info-mail {
    border:1px solid white;
    width:60%;
    margin:0 auto;
    padding:15px;
    color:#181A1C;
}
.black {
    color:#181A1C;
}
.big-box {
	background:#fff;
	border:3px solid #e70f13;
	box-shadow: 2px 3px 4px #000;
	padding: 25px;
}
.big-box .in-box {
	display:flex;
}
.big-box i {
	font-size: 3em;
    text-align: center;
    color: #2e3293;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 30px;
    min-width: 45px;
    height: 45px;
}
.big-box span {
	color:#000;
	text-align:justify;
}
/*
3.8 Footer
********************************************************************/
/*
3.8 Footer
********************************************************************/
 .footer {
    background: #222;
    color:#fff;
	padding-bottom:0;
	font-size:14px;
}

.footer li { margin-bottom:5px; }

.footer a {
    color:#eee;
}

.footer h4 { 
	margin-top:20px; 
	text-transform:uppercase; 
	letter-spacing:2px; 
	font-size:16px;
}

.footer a:hover, .footer a:focus{
    color:#fff;
}

.footer p { font-size:13px; line-height:1.4em; color:#fff;}

.copyright {
	text-align:center;
	background:#920003;
	padding:0 0 10px;
	margin-top:40px;
	font-size:13px;
}

.copyright .triangle { border-top:40px solid #222; margin-bottom:30px; }

.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: #e70f13;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}
.navbar-fixed-top .navbar-inner {
		border-bottom:1px solid #fff;
	}
	
.cl:link { color: #333!important; text-decoration: none!important;  }
.cl:visited { color: #333!important;  text-decoration: none!important;  }
.cl:hover { color: #333!important;  text-decoration: none!important;  }
.cl:active { color: #333!important;  text-decoration: none!important;  }

.servsec {
    margin-bottom: 10px!important;
	padding-right: 40px!important;
}

.marketing {
	margin-top: 15px;
	margin-left: 0px;
	margin-bottom: -5px;
	color: #fa0000;
	font-size: 12px;
	font-weight: 500;
}



/*
4 Responsible
********************************************************************/
 @media (min-width: 1200px) {
    .thumbnail .more {
        margin-left:-41px;
        width:80px;
        height:80px;
        border-radius:40px;
        line-height: 80px;
    }
}
@media (max-width: 979px) {
    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;
		height: 380px; /* adjust mobile menu height here */
		overflow-x: hidden;
		overflow-y: auto;
    }
    .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: 971px) {
   
.nav > li > .dropdown{
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    left: 20px;
	display:block;
	position:relative;
}
.nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    color: #fff;
    text-decoration:none;
}
.navbar-collapse {
    overflow-x: auto;
	}
}
@media (max-width: 767px) {
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
	.testimonial {
        margin-top:30px;
    }
}
