body {
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif; 
    /*color: #fff;*/
    font-size: 15px;
     
    line-height: 1.33;
    -webkit-font-smoothing:antialiased;
    -webkit-backface-visibility:visible !important;
    background: url(../img/1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /*background-color: #464646;*/
}


.animated{ visibility: hidden;} 
.visible {visibility: visible;}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    
    text-transform: uppercase;
     
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:767px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

@media(max-width:767px) {
    .logoimg {
        display: none !important;
    }
    
}

a {
    color: #219ab3;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #11505d;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #333;
    opacity: 0.95;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    padding-top:15px;
}

.navbar-custom .no-padding {
    font-weight: 700;
    padding-top:0px;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #000;
}

.navbar-custom a.whiteclass {
    color: #fff;
}

.navbar-custom .nav li.active {	 
        background: rgba(13, 29, 49, 0.30);
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a.active {
    outline: 0;
    background-color: rgba(255,255,255,.3);
}

@media(min-width:767px) {
    .navbar {
        padding: 0px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: rgba(129, 134, 140, .8);
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
}
.header-hr{
	max-width: 200px;
	border: 1px solid #fff;
}
.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    
/*    background:url(../img/intro-violet.jpg);
    background-repeat:no-repeat;
    background-size: 100%  650px;*/
	 
}
.intro-text{
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}
.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:767px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 25px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 35px;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 100px;
}
.parallax {
    padding-top: 100px;
}


@media(min-width:767px) {
    .content-section {
        padding-top: 70px;
    }

	.parallax {
		padding-top: 70px;
    }
    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 0px;
		margin-bottom: 20px;
    }
}

.btn {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}



ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer {
    padding: 50px 0;
}

footer p {
    margin: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #808080;
    background: rgba(128,128,128);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}
/*Services*/
.gray{
	color: #333;
}
.gray:hover{
	color: #efca71;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.section-heading {
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 400;
	margin-top: 85px;
	margin-bottom: 30px;
	color: #333;
}
.section-subheading{
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 300;
}
.hr-services{
	max-width: 400px;
	border: 1px solid #dc143c;
}
.md{
	font-size: 45px;
}
.hr-service{
	max-width: 100px;
	border: 1px solid #dc143c;
	margin-top: 0px;
}
.service-heading{
	color: #333;
	margin-top: 10px;
	margin-bottom: 10px;
}
.service-text{
	 
	font-weight: 600;
	font-size: 14px;
	text-align: justify;
        transition:all 0.2s ease-in-out;
}
/*Parallax image*/
.download-section {
    width: 100%;
    padding: 0px 0;
    color: #fff;
    background: url(../img/water.jpg) no-repeat center center fixed;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
	height: 100%;
	position: relative;
}
.home-text-wrapper {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
   height: 100%;
   position: relative;
    vertical-align: middle;
    margin: auto;
    width: 100%;
    padding: 80px 0;
    background: url(../img/pattern.png);
}
.download{
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 300;
}
.vert-text {
  vertical-align: middle;
  text-align: center;
}

.vert-text h1 {
  padding: 0;
  margin: 0;
  font-size: 4.5em;
  font-weight: 700;
}
.btn-default {
    border: 1px solid #efca71;
    color: #efca71;
    background-color: rgba(255,255,255,.3);
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #efca71;
    outline: 0;
    color: #333;
    background-color: #efca71;
}
/*About*/
.circle-finish {
    width: 100%;
	height: 197px;
    padding: 50px 0;
    color: #fff;
    background: url(../img/circle_finish.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.fixer{
	min-width: 280px;
	width: 100%;
}
.team-section{
	background-color: #DDD;
	color: #333;
}
.team-section h4{
	margin-bottom: 5px;
}
.team-section a{
	font-size: 22px;
	color: #333;
}
.team-section a:hover{
	font-size: 26px;
	color: #555;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.team-heading{
	margin-top: 0px;
}
.position{
	font-family: "Open Sans",arial,sans-serif;
	font-weight: 100;
	font-style: italic;
	margin-top: 0px;
}
.team-content {
	font-family: "Open Sans",arial,sans-serif;
	font-weight: 100;
	font-size: 16px;
	margin-bottom: 0px;
}
.team-fixer{
	margin-top: 30px;
	width: 70%;
	min-width: 280px;
}
/*Portfolio*/
.portfolio-heading{
	margin-top: 80px;
}
.cbp-rfgrid {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    position: relative;
    width: 75%;
}
 
.cbp-rfgrid li {
    position: relative;
    float: left;
    overflow: hidden;
    /*width: 16.6666667%; /* Fallback */
    /*width: -webkit-calc(100% / 4);
    /*width: calc(100% / 4);*/
}
.cbp-rfgrid li .image {
   
  width: 159px;
  line-height: normal;
}
 
.cbp-rfgrid li a,
.cbp-rfgrid li a img {
    display: block;
    width: 100%;
    cursor: pointer;
}
 
.cbp-rfgrid li a img {
    max-width: 100%;
}
 
/* Flexbox is used for centering the heading */
.cbp-rfgrid li a div {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(240,205,120,0.9);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    opacity: 0;
	cursor: crosshair;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
 
.cbp-rfgrid li a:hover div {
    opacity: 1;
}
 
.cbp-rfgrid li a div h3 {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4em;
    letter-spacing: 2px;
    padding: 0 10px;
}
.cbp-rfgrid li a div i{
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 3.2em;
    letter-spacing: 2px;
    padding: 0 10px;
}
 
/* Example for media query: change number of items per row */
 
@media screen and (max-width: 1190px) {
    .cbp-rfgrid li {
        width: 20%; /* Fallback */
        width: -webkit-calc(100% / 4);
        width: calc(100% / 4);
    }
}
 
@media screen and (max-width: 945px) {
    .cbp-rfgrid li {
        width: 25%; /* Fallback */
        width: -webkit-calc(100% / 4);
        width: calc(100% / 4);
    }
}
 
@media screen and (max-width: 660px) {
    .cbp-rfgrid li {
        width: 33.3333333%; /* Fallback */
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2);
    }
}
 
@media screen and (max-width: 660px) {
    .cbp-rfgrid li {
        width: 33.3333333%; /* Fallback */
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2);
    }
}
 
@media screen and (max-width: 400px) {
    .cbp-rfgrid li {
        width: 50%; /* Fallback */
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2);
    }
}
 
@media screen and (max-width: 300px) {
    .cbp-rfgrid li {
        width: 100%;
    }
}
/*Testimonials*/
#testimonials{
	margin-top: 40px;
}
.hr-testimonials{
	max-width: 150px;
	border: 1px solid #333;
}
.testimonials{
	font-weight: 400;
}
.testimonials-text{
	margin-top: 10px;
	font-weight: 300;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
	font-style: italic;
}
.test-fixer{
	min-width: 60px;
	width: 10%;
	margin-bottom: 5px;
}
.testm i{
	color: #efca71;
	font-size: 16px;
}
.person{
	color: #333;
	margin-bottom: 0px;
}
.testm-position{
	color: #999;
	font-size: 14px;
}
/*Contact*/
.fluidmap{
	width: 100%;
	padding-left: 0px;
	padding-right: 0px;
	pointer-events: none;
}
.contact-form{
	margin-top: 30px;
}
.text-field{
	font-weight: 300;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
	color: #333;
	height: 50px;
	border-radius: 0px;
	border: 2px solid #efca71;
}
.text-area{
	font-weight: 300;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
	color: #333;
	height: 200px;
	border-radius: 0px;
	border: 2px solid #efca71;
}
.btn-submit{
	border: 1px solid #efca71;
	border-radius: 0px;
	background: #fff;
	color: #333;
	text-transform: uppercase;
	font-weight: 400;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
	padding: 10px 20px 10px 20px;
}
.btn-submit:hover{
	background: #efca71;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	border: 1px solid #efca71;
}
.contact-dets{
	color: #333;
	text-transform: uppercase;
	font-weight: 400;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
}
.contact-dets i {
	font-size: 30px;
}
/*Footer*/
footer{
	background: #333;
	margin-top: 20px;
	font-weight: 300;
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 16px;
}