
body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #2b2a29;
}

figure, p, address {
    margin: 0;
}

p {
    line-height: 25px;
    font-family: 'Open Sans', sans-serif;
}

iframe {
    border: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

a, a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #2b2a29;
}

main > section {
    padding: 70px 0;
}

.btn {
    border-radius: 0;
    border: 0;
    position: relative;
    text-transform: uppercase;
}

.btn-blue {
    background-color: rgba(12, 68, 112, 0.7);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

.bg-blue {
    background-color: #0c4470;
}

/* Sweep To Right */
.btn-effect {
	vertical-align: middle;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	display: inline-block;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		 -o-transform: translateZ(0);
			transform: translateZ(0);
		  
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
			backface-visibility: hidden;
		  
	-webkit-transition-property: color;
	   -moz-transition-property: color;
		-ms-transition-property: color;
			transition-property: color;
		  
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
		  
	-moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	
	-webkit-transform: scaleX(0);
	   -moz-transform: scaleX(0);
		-ms-transform: scaleX(0);
			transform: scaleX(0);
			
	-webkit-transform-origin: 0 50%;
	   -moz-transform-origin: 0 50%;
		-ms-transform-origin: 0 50%;
			transform-origin: 0 50%;
			
	-webkit-transition-property: transform;
	   -moz-transition-property: transform;
		-ms-transition-property: transform;
			transition-property: transform;
			
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
			
	-webkit-transition-timing-function: ease-out;
	   -moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
			transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
	color: #0c4470;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
	-webkit-transform: scaleX(1);
	   -moz-transform: scaleX(1);
	    -ms-transform: scaleX(1);
			transform: scaleX(1);
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
    font-size: 36px;
    margin: 0 0 30px;
    padding-bottom: 30px;
    position: relative;
    text-align: left;

}

.sec-title.white h2 {
    color: #fff;
}
.sec-title.blue h2 {
    color: #0c4470;
}

/*.sec-title h2:after {
    border-bottom: 2px solid #2b2a29;
    content: ""; 
    display: block;
    left: 97%;
    bottom: 0;
    position: absolute;
    width: 40px;
} 

.sec-title.white h2:after {
    border-bottom: 1px solid #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
} */


/**
/*	Preloader
/* ==========================================*/

#preloader {
    background-color: #394454;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/*Battery*/
.loder-box {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  height: 100px;
  left: 50%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}

.battery{
    width: 60px;
    height: 25px;
    top: 35%;
    border: 1px #2b2a29 solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 5s linear infinite;
       -moz-animation: charge 5s linear infinite;
            animation: charge 5s linear infinite;
    margin: 0 auto;
}

.battery:after {
  background-color: #2b2a29;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2b2a29;}
    100%{box-shadow: inset 60px 0px 0px #2b2a29;}
}

@-moz-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2b2a29;}
    100%{box-shadow: inset 60px 0px 0px #2b2a29;}
}

@keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2b2a29;}
    100%{box-shadow: inset 60px 0px 0px #2b2a29;}
}





/**
/*	Header
/* ==========================================*/

#navigation {
    -webkit-transition: all 0.8s ease 0s;
       -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
         -o-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;


    background-color: rgb(256, 256, 256);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 10px;
	background-color: #fff;
}

#navigation.animated-header {
    padding: 20px 0;
	background-color: #fff;
}

h1.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
	height:80px;
	padding:0 15px;
}
h1.navbar-brand {
	color:#9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
    color: #2b2a29;
    font-size: 17px;
    text-transform: uppercase;
		font-weight:bold;
	letter-spacing:1px;
	padding: 15px;
	margin-top: 25px;
}


/*=================================================================
	Home Slider
==================================================================*/


#home-slider {
    position: relative;
    padding: 0;
}

.sl-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sl-slider {
    position: absolute;
    top: 0;
    left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} 

.sl-slide {
    z-index: 1;
}

.slide-caption {
    color: #fff;
    display: table;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 11;
}

.slide-caption .caption-content {
    vertical-align: middle;
    display: table-cell;
}

.caption-content h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
	text-shadow:1px 1px #0c4470;
}

.caption-content > span {
    display: block;
    font-size: 24px;
    margin-bottom: 45px;
    text-transform: capitalize;
}

.caption-content p {
    font-size: 29px;
    margin-bottom: 65px;
}

/* The duplicate parts/slices */

.sl-content-slice {
    overflow: hidden;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity : 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
    width: 100%;
    height: 50%;
    left: -200px;
    -webkit-transform: translateY(0%) scale(1);
    -moz-transform: translateY(0%) scale(1);
    -o-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
    top: -200px;
    padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
    top: 50%;
    padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
    width: 50%;
    height: 100%;
    top: -200px;
    -webkit-transform: translateX(0%) scale(1);
    -moz-transform: translateX(0%) scale(1);
    -o-transform: translateX(0%) scale(1);
    -ms-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
    left: -200px;
    padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
    left: 50%;
    padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
    position: absolute;
}

.sl-content {
    width: 100%;
    height: 100%;
}

/* Default styles for background colors

.btn-effect:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    content: "";
    position: absolute;
    z-index: -1;

    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

.btn-effect:hover,
.btn-effect:active {
    color: #0e83cd;
}

.btn-effect:hover:after,
.btn-effect:active:after {
    width: 100%;
} */


/* Project laughtbox setup */

.fancybox-item.fancybox-close {
    background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
    height: 50px;
    right: 0;
    top: 0;
    width: 50px;
}

.fancybox-next span {
    background: url("../img/right.png") no-repeat scroll center center #2b2a29;
    height: 50px;
    width: 50px;
    right: 0;
}

.fancybox-prev span {
    background: url("../img/left.png") no-repeat scroll center center #2b2a29;
    height: 50px;
    width: 50px;
    left: 0;
}

/*=================================================================
	About
==================================================================*/

#about {
    background: rgba(0, 0, 0, 0) url("../img/texture.png") repeat scroll 0 0;
    color: #fff;
}
#about .welcome-block {
   
	background-color:rgba(12, 68, 112, 0.8);
	padding: 20px 115px 30px;
	text-align: justify;
	}

#about h3 {
    color: #fff;
    margin: 0 0 35px;
    text-transform: uppercase;
}

#about .welcome-block h3 {
    margin: 0 0 65px;
	background-color:rgba(44,37,77,0.8);
}
#about .welcome-block h2 {
    margin: 0 0 65px;
	color:#fff;
}

#about .welcome-block img {
    border: 3px solid #fff;
    border-radius: 50%;
    margin-right: 35px;
    margin-bottom: 35px;
    max-width: 100px;
}

#about .message-body {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 50px;
}
#about .message-body p {
    font-size: 17px;
    line-height: 24px;
    padding-bottom: 20px;
}

.owl-buttons {
    border: 2px solid #fff;
    display: inline-block;
    float: right;
    padding: 1px 8px 5px;
}

.owl-buttons > div {
    display: inline-block;
    padding: 0 5px;
}

.welcome-message {
    padding: 0 50px;
}

.welcome-message img {
    display: block;
    height: auto;
    max-width: 100px;
    float: left;
}

.welcome-message p {
    font-size: 13px;
    margin-left: 135px;
}

/*=================================================================
	Services
==================================================================*/

.service-icon {
    border: 3px solid transparent;
    display: inline-block;
    width: 40px;
    line-height: 101px;


    -webkit-transition: all 0.3s ease 0s;
       -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
			
	color: #2b2a29;		
}


.service-item:hover .service-icon {
      border-bottom: 2px solid #dacdc8;
    margin-bottom: 20px;
    color: #dacdc8;
}

.service-icon i {
    -webkit-transform: rotate(-48deg);
       -moz-transform: rotate(-48deg);
        -ms-transform: rotate(-48deg);
         -o-transform: rotate(-48deg);
            transform: rotate(-48deg);
}

/*.service-icon em{
    -webkit-transform: rotate(-48deg);
       -moz-transform: rotate(-48deg);
        -ms-transform: rotate(-48deg);
         -o-transform: rotate(-48deg);
            transform: rotate(-48deg); */
}
.service-item h3 {
	color:#2b2a29;
    font-size: 19px;
   /* text-transform: uppercase; */
	line-height:24px;
}



/*=================================================================
	Portfolio
==================================================================*/


.project-wrapper {
    margin-top: -137px;
    padding: 0;
    list-style: none;
    text-align: center;
}



.project-wrapper li {
    display: inline-block;
}

.portfolio-item {
    cursor: pointer;
    margin: 0 1% 1% 0;
    overflow: hidden;
    position: relative;
    width: 32%;
}

figcaption.mask {
    background-color: rgba(43, 42, 41, 0.9);
    bottom: -126px;
    color: #fff;
    padding: 17px;
    position: absolute;
    width: 100%;
    text-align: left;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

.portfolio-item:hover figcaption.mask {
    bottom: 0;
}

figcaption.mask h3 {
    margin: 0;
    color: #fff;
	font-size: 19px;
}

ul.external {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -47px;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

ul.external li {
    display: inline-block;
}

ul.external li a {
    background-color: rgba(43, 42, 41, 0.8);
    color: #fff;
    display: block;
    padding: 10px 18px 13px;
    
    -webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
         -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}

ul.external li a:hover {
    background-color: #dacdc8;
    color: #fff;
}

.portfolio-item:hover ul.external {
    top: 0;
}

.fancybox-skin {
    border-radius: 0;
}

.fancybox-title.fancybox-title-inside-wrap {
    padding: 15px;
    background-color: #2B2A28 ;
}

.fancybox-title h3 {
    margin: 0 0 15px;
    color: #dacdc8;
     font-family: 'Open Sans', sans-serif;
}

.fancybox-title p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
     font-family: 'Open Sans', sans-serif;

}

.fancybox-title-inside-wrap {
    padding-top: 0;
}

/*=================================================================
	Testimonials
==================================================================*/


#testimonials {
    background-image: url(../img/parallax/testimonial.jpg);
    padding: 0;
    color: #fff;
}

#testimonials .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#testimonials .overlay {
    background-color: rgba(15, 155, 224, 0.6);
    padding: 70px 0 40px;
}

.testimonial-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}
.profil{
	
	 border-radius: 10%;
	 padding-top:10px;
}

.testimonial-item img {
    border: 3px solid #fff;
    border-radius: 10%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.testimonial-item > div {
    line-height: 30px;
    position: relative;
}

.testimonial-item > div:before {
    background-image: url("../img/icons/quotes.png");
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.testimonial-item > div:after {
    background-image: url("../img/icons/quotes.png");
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.testimonial-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#testimonials .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#testimonials .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#testimonials .owl-prev:hover,
#testimonials .owl-next:hover {
    color: #fff;
}

.price-table {
    border: 1px solid #e3e3e3;
}

.price-table.featured {
    -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
       -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
            box-shadow: 0 4px 5px rgba(0,0,0,0.19);
}

.price-table > span {
    color: #252525;
    display: block;
    font-size: 24px;
    padding: 30px 0;
    text-transform: uppercase;
}

.price-table .value {
    background-color: #f8f8f8;
    color: #727272;
    padding: 20px 0;

    -webkit-transition: all 0.7s ease 0s;
       -moz-transition: all 0.7s ease 0s;
        -ms-transition: all 0.7s ease 0s;
         -o-transition: all 0.7s ease 0s;
            transition: all 0.7s ease 0s;
}

.price-table.featured .value {
    background-color: #0c4470;
    color: #fff;
}

.price-table .value span {
    display: inline-block;
}

.price-table .value span:first-child {
    font-size: 32px;
    line-height: 32px;
}

.price-table .value span:nth-child(2) {
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 25px;
}

.price-table .value span:last-child {
    font-size: 16px;
}

.price-table ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.price-table ul li {
    border-top: 1px solid #e3e3e3;
    display: block;
    padding: 25px 0;

    -webkit-transition: all 0.7s ease 0s;
       -moz-transition: all 0.7s ease 0s;
        -ms-transition: all 0.7s ease 0s;
         -o-transition: all 0.7s ease 0s;
            transition: all 0.7s ease 0s;
}

.price-table ul li a {
    display: block;
    text-transform: uppercase;
}

.price-table.featured ul li:last-child,
.price-table ul li:last-child:hover {
    background-color: #0c4470;
}

.price-table.featured ul li:last-child a,
.price-table ul li:last-child:hover a {
    color: #fff;
}


/*=================================================================
	Price
==================================================================*/

#social {
    background-image: url("../img/slider/slider_image_3.jpg");
    padding: 0;
}

#social .overlay {
    background: url("../img/slide_bg.png") repeat scroll 0 0 transparent;
    padding: 100px 0 120px;
}

.social-button {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.social-button li {
    display: inline-block;
}

.social-button li:nth-child(2) {
    margin: 0 75px;
}

.social-button li a {
    border: 2px solid #394454;
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 65px;
    line-height: 75px;
    width: 65px;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
			
	padding-left: 17px;
	background-color: #394454;
}

.social-button li a:hover {
   color: #2b2a29;
   border: 2px solid #fff;
   background-color: #fff;
}


/*=================================================================
	Contact
==================================================================*/
.contact{
	background: rgba(0, 0, 0, 0) url("../img/texture.jpg") repeat scroll 0 0;
    background-color: #454b53;
}

.contact h2::after{
	border-bottom: 2px solid #fff;
/*content: ""; */
display: block;
left: 97%;
bottom: 0;
position: absolute;
width: 40px;
}
.input-field {
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #ececec;
    border-radius: 0;
    box-shadow: none;
    color: #818181;
    font-size: 16px;
    height: 50px;
}

textarea.form-control {
    width: 100%;
    height: 165px;
}

#submit:hover {
  color: #fff;
}

#submit:before {
  background-color: #0A85BB;
}

#submit.btn-effect:after {
  background: #2E2E2E;
}

.contact-details h3 {
    
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
        color:#fff; !important;
    font-family: 'Open Sans', sans-serif;
}

.contact-details p {
    line-height: 36px;
	font-size: 19px;
    color: #fff;
}

.contact-details p i {
    margin-right: 10px;
}

.contact-details p em {
    margin-right: 10px;
	color: #fff;
}

.contact-details span {
    display: block;
    margin-left: 24px;
}


/*============================================================
	Google Maps
==============================================================*/

#google-map {
    padding: 0;
}

#map-canvas {
    width: 100%;
    height: 300px;
}


/*============================================================
	Footer
==============================================================*/

#amea {
    background-color: #2b2a29;
    padding: 70px 0;
    color: #fff;
}
#amea h3,#amea ul li,#amea a,#amea ul li a{
    color: #ffffff;

}
#amea ul{list-style:none;}
#footer {
    background-color: #2E2E2E;
    padding: 70px 0;
    color: #fff;
}

.footer-content {
    width: 390px;
    margin: 0 auto;
}

.footer-content > div {
    margin-bottom: 40px;
}

.footer-content > div > p:first-child {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.subscribe-form {
    position: relative;
}

.subscribe.form-control {
    background-color: transparent;
    border: 1px solid #7f7f7f;
}

.subscribe.form-control:focus {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.submit-icon {
    background-color: #7f7f7f;
    border: 0 none;
    border-radius: 0;
    color: #c1c1c1;
    padding: 13px 20px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 0;
}

.submit-icon .fa-paper-plane {
    position: relative;
    top: 0;
    
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);

    -webkit-transition: all 0.3s ease 0.2s;
       -moz-transition: all 0.3s ease 0.2s;
        -ms-transition: all 0.3s ease 0.2s;
         -o-transition: all 0.3s ease 0.2s;
            transition: all 0.3s ease 0.2s;
}

.submit-icon:hover .fa-paper-plane {
    position: relative;
    top: -37px;
    
    -webkit-transform: translateX(30px);
       -moz-transform: translateX(30px);
        -ms-transform: translateX(30px);
         -o-transform: translateX(30px);
            transform: translateX(30px);
}

.footer-content .footer-social {
    margin: 40px 0 35px;
}

.footer-social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #7f7f7f;
    display: block;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.footer-social ul li a:hover {
    color: #0c4470;
}

.footer-content > p {
    color: #ababab;
    font-size: 12px;
}


ul.contact-details li a{
color: #0c4470  ! important;
}
ul.contact-details li {
            float: right;
            text-align: right;
            display: inline-block;
            vertical-align: top;
            margin-left: 35px;
            margin-top: 5px;
            color: #ffffff  ! important;
            font-weight: 500;
            font-size: 12px;

            -webkit-transition: color .35s ease-out;
                    transition: color .35s ease-out;
        }

        ul.contact-details i { margin-right: 4px; }
li a.jfontsize-button {
  font-weight: bold ! important;
  padding: 6px ! important;
  color: #2b2a29 ! important;
  border: solid 1px #ccc ! important;
}

li a.jfontsize-button:hover {
  text-decoration: none;
  background: #394454 ! important;
  color: #fff ! important;
  border: solid 1px #dacdc8 ! important;
}

li a.jfontsize-disabled, a.jfontsize-disabled:hover {
  color: #aaa ! important;
  border: solid 1px #eee ! important;
  background: #eee ! important;
}
#loading{display:none;}

img.click4web{margin:-3px 0 0 0;}

.amea-text{
    color: #2b2a29;
}

.amea-text:hover{
    color: #dacdc8;
}

.profile {
    
    padding-top: 50px;
    padding-bottom: 185px;
    
   
}

.text{
    text-align: justify;
    padding: 10px 78px;
    color: #2b2a29;
    font-size: 20px;


}

.left {
    font-size: 65px;
    float: left;
    color: #2b2a29;
}

.right {
    font-size: 65px;
    float: right;
    color: #2b2a29;
}

.profile h2 {
    color: #2b2a29;
}

.profile h2::after {
    border-bottom: 2px solid #2b2a29;
    content: "";
    display: block;
    left: 97%;
    bottom: 0;
    position: absolute;
    width: 40px;
}

.img-espa{
    float: right;
}

.text-mobile{
    color: #2b2a29;
    font-size: 19px;
    text-align: justify;
padding: 1px 6px;
}






.banner-style-three {
  background: #EBEBEB url(../img/slider/slider-image.jpg) bottom center no-repeat;
  background-size: cover;
  padding-top: 205px;
  padding-bottom: 400px;

}


.top-title{
   
    text-align: center;

}

.banner-style-three h1 {
    margin:0!important;
     font-family: 'Roboto Slab', sans-serif;
     font-size: 4em;
     font-weight: 700;
     font-style:italic;
   
}

.banner-style-three h3 {
    margin:0!important;
     font-family: 'Roboto Slab', sans-serif;
     font-size: 4em;
     font-weight: 700;
     font-style:italic;
   
}

.banner-style-three h2 {
    margin:0!important;
    font-family: 'Roboto Slab', sans-serif;
     font-size: 2em;
     font-weight: 700;
     text-align: center !important; 
     padding-bottom: 0px;

} 

.sec-title h1{
    margin-bottom: 30px;
}
.banner-style-three .sec-title {
    margin-bottom: 30px;
}

.featurette-divider {
    margin-top: 5px;
    margin-bottom: 24px;
    border: 0;
    border-top: 1px solid #95a5bc;
}


.sec-title-profil h2{
    font-size: 36px;
    margin: 0 0 0px;
    padding-bottom: 4px;
    position: relative;
    text-align: center;
    color: #95a5bc;
    font-family: 'Open Sans', sans-serif;
}

.sec-title-profil h2:after {
    border-bottom: 2px solid #2b2a29;
    /*content: ""; */
    display: block;
    left: 97%;
    bottom: 0;
    position: absolute;
    width: 40px;
}
.sec-title-profil {
    margin-bottom: 10px;
}



.sec-title-service h2{
    font-size: 36px;
    margin: 0 0 0px;
    padding-bottom: 4px;
    position: relative;
    text-align: center;
    color: #2d2c2b;
    font-family: 'Open Sans', sans-serif;
}

.sec-title-contact h2{
    font-size: 36px;
    margin: 0 0 0px;
    padding-bottom: 4px;
    position: relative;
    text-align: center;
    color: #95a5bc;
    font-family: 'Open Sans', sans-serif;
}


.sec-title-service {
    margin-bottom: 10px;
}


/* Colorize-zoom Container */
.img-hover-zoom--colorize img {
  transition: transform .5s, filter 1.5s ease-in-out;
  filter: grayscale(100%);
}

/* The Transformation */
.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}





/*scroll down button on header image */

.scroll-down {
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

.scroll-down {
 position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 65px;
  height: 65px;
  border: 4px solid #394454;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1)
}

.scroll-down:before {
    position: absolute;
    top: calc(41% - 8px);
    left: calc(50% - 9px);
    transform: rotate(-45deg);
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    border: 2px solid #394454;
    border-width: 0px 0 5px 5px;
}

    .scroll-down:hover{
        opacity: .8;
    }

    @-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-30px);}
    60% {-webkit-transform: translateY(-15px);}
    }
 
    @-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(-30px);}
    60% {-moz-transform: translateY(-15px);}
    }
 
    @-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(-30px);}
    60% {-o-transform: translateY(-15px);}
    }

    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
    }



    /*service box */



    .serviceBox{
    border: 2px solid ;
    color: #394454;
    padding: 37px 18px; 
    text-align:center;
    min-height: 400px;
    
}


.serviceBox:hover {
    background-color: #394454;
}







.serviceBox .service-icon em{
    position: relative;
    bottom: 0;
    color: #394454;
    display: inline-block;
    font-size: 32px;
    transition: all 0.2s ease 0s;
}
.serviceBox:hover em{
    bottom:5px;
    color: #f2f2f2;

}
.serviceBox .service-content h3{
    font-size:18px;
    text-transform: uppercase;
    color: hsl(0, 0%, 60%);
    margin-top: 0px!important;
}


.serviceBox:hover h3 {
   color: #f2f2f2;
}

.serviceBox .service-content p{
    color:hsl(0, 0%, 60%);
}

.serviceBox:hover p {
   color: #f2f2f2;
}



.serviceBox .service-content .line{
    background:#95a5bc;
    height: 2px;
    margin: 22px auto;
    width: 40px;
}







/*preloader */

.lds-ellipsis {
  background-color: #394454;
  border-radius: 1px;
  height: 100px;
  left: 53%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);

}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


/* scroll top button */

#button {
  display: inline-block;
  background-color: #394454;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* header line */
.line1{
       border-left: 5px solid;
    border-bottom: 5px solid;
    min-width: 100px;
    /* min-height: 27px; */
    width: 524px;
    margin-right: auto;
    margin-left: auto;
    color: #2d2c2b;
    background-color: rgb(250, 250, 250, 0.6);


}
.line2{
    border-right: 3px solid;
    border-bottom: 3px solid;  
   
    width: 270px;
    height: 110px;
    margin-left: auto;
    color: #fff;
    margin-right: -14px;
    transform: translate(11px, 25px);

}
.p-profil{
    text-align: justify; 
    text-justify: auto;
}

.sec-title-portfolio h2 {
    font-size: 36px;
    margin: 67px -15px 0px;
    padding-bottom: 4px;
    padding-right: 0px!important;
    text-align: center;
    color: #2d2c2b;
    font-family: 'Open Sans', sans-serif;
}


.sec-title-color{
    background-color: #95a5bc; 
    height: 300px; 
    width:100%; 
}

.img-responsive1{
    display: block;
    max-width: 100%;
    height: auto;
}


/*============================================================ 
	Responsive Styles
 ============================================================*/

/*============================================================
	For Small Desktop
==============================================================*/

@media ( min-width: 2500px ) {
     .scroll-down{
        display: none;
    }
}

@media ( min-width: 1900px ) {
     .scroll-down{
        display: none;
    }
}

@media (min-height: 2000px){
    .scroll-down{
        display: none;
    }

 }  



@media (min-width: 1200px) and (max-width: 1399px){
 /*   .scroll-down{
        display: none;
    }  */
    
}

@media only screen and (min-width: 1080px){
    h1.navbar-brand {
    transform: translate(-34px, -13px);
}

}
@media (min-width: 980px) and (max-width: 1150px) {

/*about*/
    #about .welcome-block img {
        margin-bottom: 30px;
    }

/* portfolio */
    figcaption.mask {
        bottom: -151px;
    }

    .testimonial-item > div:after {
        bottom: -40px;
    }

    .scroll-down{
        display: none;
    }

    h1.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    /* height: 80px; */
    /* padding: 0 15px; */
    transform: translate(-20px, 5px);
    }
}


/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {

/* home slider  */
    .caption-content h2 {
        font-size: 40px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 45px;
    }

/* about */
    .recent-works {
        margin-bottom: 50px;
    }

    .service-item {
        margin-bottom: 50px;
    }

/* portfolio */
    .portfolio-item {
        width: 48%;
    }

/* testimonial */
    .testimonial-item {
        width: 100%;
    }

    .testimonial-item {
        width: 80%;
    }

    .testimonial-item > div:after {
        bottom: -35px;
    }

/* price */
    .price-table {
        margin-bottom: 50px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

    .banner-style-three h1{
        font-size: 3em;
    }

     .scroll-down{
        display: none;
    }

    .line1 {
    width: 571px;
    }
}



/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/

@media only screen and (max-width: 767px) {

    body {
        font-size: 14px;
    }

    .parallax {
        background-position: centet tip !important;
    }

    .sec-title h2 {
        font-size: 19px;
    }

    .sec-title h2:after {
        left: 87%;
    }

/*navigation*/
    .navbar-inverse .navbar-toggle {
        border-color: #2d2c2b;
        transform: translate(2px, 45px);
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }

/* slider */
    .caption-content h2 {
        font-size: 18px;
    }

    .caption-content > span {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .caption-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .caption-content strong {
        font-size: 22px;
    }

/* about */
    .recent-works {
        margin-bottom: 85px;
    }

    #about h3 {
        font-size: 18px;
        margin: 0 0 35px !important;
    }

    #about .owl-buttons {
        margin-top: 20px;
    }

    #about .message-body {
        margin-bottom: 45px;
    }

    #about .welcome-block img {
        margin: 0 25px 15px 0;
    }

/* service */
    .service-item {
        width: 100%;
    }

/*portfolio*/
    .portfolio-item {
        margin: 0 auto 10px;
        font-size: 14px;
        width: 280px;
    }

    figcaption.mask {
        bottom: -107px;
        color: #fff;
        padding: 15px;
    }

/* lightbox */
    .fancybox-title h3 {
        font-size: 20px;
    }

    .fancybox-title p {
        font-size: 14px;
    }

/* testimonial */
    .testimonial-item {
        width: 95%;
    }

    .testimonial-item > div:before,
    .testimonial-item > div:after {
        background-image: none;
    }

    .testimonial-item > div > span {
        margin: 30px 0 20px;
    }

/* price */
    .price-table {
        margin-bottom: 50px;
    }

/* follow us */
    .social-button li:nth-child(2) {
        margin: 0 25px;
    }

    .social-button li a {
        height: 65px;
        line-height: 71px;
        width: 65px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

/* footer */
    .footer-content {
        width: 100%;
    }

    .footer-social ul li {
        margin: 0 7px;
    }
}


/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .sec-title h2:after {
        left: 38%;
    }

/* home slider */
    .caption-content h2 {
        font-size: 35px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 35px;
    }

/*about*/

    #about .welcome-block h3 {
        margin: 0 0 35px;
    }

/* service */

    .service-item {
        margin: 0 auto 50px;
        width: 55%;
    }

/* portfolio */
    .portfolio-item {
        width: 48%;
    }

    figcaption.mask {
        bottom: -132px;
    }

/* testimonial */
    .testimonial-item {
        width: 80%;
    }

    .testimonial-item > div:before {
        bottom: 160px;
    }

/* social */
    .social-button li:nth-child(2) {
        margin: 0 50px;
    }

    .social-button li a {
        height: 90px;
        line-height: 96px;
        width: 90px;
    }

/* price */
    .price-table {
        margin-bottom: 50px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

/* footer */
    .footer-content {
        width: 380px;
    }
	
.img-espa{
	float: none !important;
	margin: 0 auto !important;
}

 .scroll-down{
        display: none;
    }

    .sec-title-service h2 {
        padding-left: 10px;
    }

.sec-title-profil h2{
    padding-left: 10px;

}
.sec-title.white h2 {
    color: #fff;
    padding-left: 10px;
    }
	
}

@media (max-width: 395px){

    .navbar-inverse .navbar-toggle {
    transform: translate(0px, 78px);
    }
}



@media only screen and (min-width: 400px) and (max-width: 780px){

    .navbar-inverse .navbar-toggle{
    transform: translate(0px, 29px);
    }

    #navigation.animated-header {
    display: unset;
    }

    .line1 {
    width: 340px;
    }


    .banner-style-three h1 {
    font-size: 3em;
    }


    .line2 {
    display: contents;
    }


   .sec-title-portfolio h2 {
    padding-left: 10px;
    }
}

@media only screen and (min-width: 360px) and (max-width: 640px){
.img-espa{
	float: none !important;
	margin: 0 auto !important;
}
.navbar-inverse .navbar-nav > li > a{
	color: #fff;
font-size: 17px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
padding: 15px;
margin-top: 0;
}


.scroll-down{
    display: none;
}

.banner-style-three h1{
    font-size:3em;
}



.sec-title-service h2 {
    font-size: 28px;
    padding-left: 10px;
}

.sec-title-profil h2{
    font-size: 28px;
    padding-left: 10px;
}
#button::after{
    line-height: 35px;
    font-size: 1em;
}


#button {
    width: 35px;
    height: 35px;    
    bottom: 10px;
    right: 10px;

    }

    .navbar-inverse .navbar-toggle{
    transform: translate(0px, 29px);
    }

 #navigation.animated-header {
    display: unset;
    }
    .img-responsive {
        max-width: 80%;
    }


}

@media only screen and (min-width: 320px) and (max-width: 568px){
.navbar-inverse .navbar-nav > li > a{
	color: #2d2c2b;
font-size: 17px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
padding: 15px;
margin-top: 0;

}


.scroll-down{
    display: none;
}
	

.banner-style-three h1{
    font-size:3em;
}

.sec-title-profil h2{
padding-left: 10px; 
font-size: 28px;   
}


.sec-title-service h2 {
    font-size: 28px;
    padding-left: 10px;
}


.sec-title.white h2{
    padding-left: 10px;
}

#button::after{
    line-height: 35px;
    font-size: 1em;
}


#button {
    width: 35px;
    height: 35px;    
    bottom: 10px;
    right: 10px;

    }


.banner-style-three h1{
    font-size: 2em;
    }


     #navigation.animated-header {
    display: unset;
    }


    .img-responsive {
        max-width: 80%;
    }

    .line1{
        width: 249px;
    }

    .line2{
        display: contents;
    }

    .p-profil {
    text-align: center;
   }

   .sec-title-portfolio h2 {
    padding-left: 10px;
    }

    .sec-title-color {
    height: 270px;
    
    }
    .project-wrapper {
    margin-top: -94px;
    }

}






@media (max-width: 319px) {
    .img-responsive {
        max-width: 80%;
    }

    .scroll-down{
    display: none;
    }
}

@media only screen and (min-width: 972px) and (max-width: 1199px){
    
    .navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
    }


    .img-responsive{
        max-width: 80%;
    }

    .banner-style-three h1{
        font-size: 3em;
    }
    .banner-style-three h2{
        font-size: 1.5em;
    }

    .line1 {
    width: 400px;
    }

    .line2{
        transform: translate(0px, 53px);
    }
}