
body {
    background-color: rgb(240, 240, 240);
    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: ;
    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-color: #283342 ;
    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: #fff ;
    display: none;
}

.fancybox-title h3 {
    margin: 0 0 15px;
    color: #395926;
    text-align: center;
     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-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: #283342;
}

.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 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: #fff;
    font-family: 'Open Sans', sans-serif;
}

.sec-title-profil h2:after {
    border-bottom: 2px solid #2b2a29;
    /*content: ""; */
    display: block;

    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;
    }
    #main{
    display: none;
}


 }  



@media (min-width: 1200px) and (max-width: 1399px){
 /*   .scroll-down{
        display: none;
    }  */
    
    #main{
    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) {




#main{
    display: none;
}

/* 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: 768px) {

    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;
    }

    #mainNav a {
    padding: 5px 6px!important;
    }
}


/*============================================================
	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: 400px){

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

    .bg-theme a{
   
    font-size: 25px!important;
}

}



@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;

}

.footer-bottom p {
    font-size: 12px!important;
    
}

.tz-gallery {
    padding: 0px !important; 
}
.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;
    }


    .img-gridItem.type-left img {
  margin-right: auto;
  height: 44vh;
}
.img-gridItem.type-right img {
  margin-left: auto;
  height: 50vh;
}
h2.head-small{
    font-size: 21px;
}
.img-caption {
   
    top: -2%!important;
}


}






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

    .scroll-down{
    display: none;
    }
    h2.head-small {
    font-size: 21px;
    }

    .img-caption {
    top: -2%!important;
    }
}

@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);
    }
}

/*========================================================================================================= */







/************************************GLOBAL*/

a {
    text-decoration: none;
}


#feature > h1, #container h2 {
    padding: 120px 0 50px 0;
    font-size: 400%!important;
}
 ul li{
    list-style: none;
 }

/**************************************LAYOUT*/
/*CONTAINER*/
#container {
    max-width: 1280px;
    min-width: 481px;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

/*HEADER*/
#mainHeader {
    position: fixed;
    width: 100%;

    background-size: contain!important;
    z-index: 10;
    background-color: rgb(240, 240, 240, 0.8);
}


.responsive-mainHeader{
    position: absolute;
    width: 100%;
    background-size: contain!important;
    z-index: 10;

}

header#responsive-mainHeader {
    background-color: #fff;
}


/**********************************HEADER SCROLLED*/
.headerScrolled {
    background-color: white!important;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}


/*NAV*/
#mainNav {
    margin-top: 20px;
    ;
}
#mainNav a {
    padding: 5px 10px;
    margin: 5px;
    color: #395926;
    font-weight: bold
}
#mainNav a:active, #mainNav a:visited, #mainNav a:link {
    outline: none;
}
#mainNav li {
    display: inline;
}


/*SALES*/
#sales .copy p {
    padding: 0 20px 0 0;
}
#sales .copy h4 {
    text-align: left;
    font-size: 180%;
    padding: 20px 0;
    font-family: "Playfair Display", serif;
}


/*FOOTER*/
#mainFooter {
    height: 80px;
    line-height: 80px;
    text-align: center;
}


/***************************************COLUMNS*/
.col12, .col13, .col23, .col33, .col14, .col15, .col16 {
    margin: 1%;
    padding: 1%;
}
.col13 {
    width: 29.3333%;
}
.col23 {
    width: 62.6666%;
}
.col33 {
}
.col12 {
    width: 46%;
}
.col14 {
    width: 21%;
}
.col15 {
    width: 16%;
}
.col16 {
    width: 12.6666%;
}
/**********************************REUSABLE CLASSES*/

.fl {
    float: left;
}
.fr {
    float: right;
}
.clear {
    clear: both;
}
.current {
    color: #000;
    cursor: default;
    border-bottom: 3px solid #a9c122;
}


/***********************************RESPONSIVE*****/
.responsive {
    width: 100%;
    height: auto;
}



/**********************************GO UP BUTTON*/
#goUp {
        position:fixed;
        right:50px;
        bottom:50px;
        display:none;
    }


/***********************************OVERRIDES***/
/*FLEXSLIDER GLOBAL */
.flexslider {
    border: none !important;
    margin: 0 !important;
    background-color: transparent;
}


/*FLEXSLIDER FULLSCREEN BG IMAGES*/
#home .flex-direction-nav {
    display: none;
}
#home .flex-control-nav {
    display: none;
}
#home .flex-caption {
    font-family: "Playfair Display", serif;
    background: transparent;
    position: absolute;
    bottom: 5%;
    left: 5%;
    line-height: 150%;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    font-size: 4vh;
    font-variant: small-caps;
    border: 1px solid #FFF;
    padding: 20px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.3);
}


/*BG ON SECTION JUST IN CASE FLEXSLIDER DOES NOT LOAD*/
#home {
    background-image: url(https://s20.postimg.cc/g7jsndsq5/slider_full_01.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    z-index: -10;
    position: relative;
}


/*FLEXSLIDER FULLSCREEN IMAGES AS BG*/
#home div {
    height: 100vh;
    width: auto;
}
#home #slide1 {
    background-image: url(https://s20.postimg.cc/g7jsndsq5/slider_full_01.jpg);
    background-position: center right;
    background-size: cover;
}
#home #slide2 {
    background-image: url(https://s20.postimg.cc/nnj297j0d/slider_full_02.jpg);
    background-position: center right;
    background-size: cover;
}
#home #slide3 {
    background-image: url(https://s20.postimg.cc/yn49kth59/slider_full_03.jpg);
    background-position: center;
    background-size: cover;
}






/*FLEXSLIDER - FEATURE - IMAGES WITH CAPTION*/
#feature .flex-caption {
    font-family: "Playfair Display", serif;
    background-color: rgba(31,207,204,0.40)!important;
    padding: 3%;
    width: 94%;
    text-align: left;
    color: #FFF;
    font-size: 150%;
    text-shadow: 2px 2px 2px #000;
}
#feature .flex-control-nav {
    display: none;
}




/*FLEXSLIDER - SALES - BG IMAGES AND TEXT*/
#sales .flex-control-nav {
    display: none;
}
#sales .flex-direction-nav .flex-next {
    right: 0 !important;
    margin-right: -30px;
    opacity: 1 !important;
}
#sales .flex-direction-nav .flex-prev {
    left: 0 !important;
    opacity: 1 !important;
    margin-left: -30px;
}
.flexsales .sales1 {
    background: url(https://s20.postimg.cc/vg9q156z1/slider-sales-1.jpg) no-repeat right top;
    background-size: cover;
    height: 30vh;
    padding: 20px;
    position: relative;
}
.flexsales .sales2 {
    background: url(https://s20.postimg.cc/94bx7s2q5/slider-sales-2.jpg) no-repeat right top;
    background-size: cover;
    height: 30vh;
    padding: 20px;
    position: relative;
}
.flexsales .sales3 {
    background: url(https://s20.postimg.cc/x82ow2swt/slider-sales-3.jpg) no-repeat right top;
    background-size: cover;
    height: 30vh;
    padding: 20px;
    position: relative;
}
.flexsales div h3 {
    text-align: left;
    color: #FFF;
    font-size: 250%;
    padding: 10px;
    text-shadow: 2px 2px 2px #000;
}
.flexsales div h4 {
    text-align: left;
    color: #FFF;
    font-family: "Roboto", Helvetica, sans-serif;
    text-shadow: 2px 2px 2px #000;
}
.flexsales button {
    position: absolute;
    left: 3%;
    bottom: 5%;
    font-family: "Roboto", Helvetica, sans-serif;
    background: #FFF;
    border: 1px solid #CCC;
    padding: 5px 8px;
    border-radius: 4px;
}




/*FLEXSLIDER CAROUSEL - PRODUCTS*/
#products .flex-control-nav {
    display: none;
}




/*FLEXSLIDER TEXT - TESTIMONIALS*/
#testimonials blockquote {
    background: #CCC;
    border: 1px solid #AAA;
    padding: 20px;
    line-height: 120%;
    border-radius: 8px;
}
#testimonials blockquote span {
    display: block;
    font-style: italic;
    color: #FFF;
    margin-top: 20px;
}
#testimonials .flex-direction-nav a {
    display: none;
}
#testimonials .flex-control-paging li a {
    width: 21px;
    height: 21px;
}


/***********************MEDIA QUERIES******/

@media screen and (max-width:480px) {
/*LAYOUT*/
#container {
    max-width: 480px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
}

/*COLUMNS*/

.col12, .col13, .col23, .col33, .col14, .col15, .col16 {
    display: block;
    float: none!important;
}
.col13 {
    width: 96%;
}
.col23 {
    width: 96%;
}
.col33 {
}
.col12 {
    width: 96%;
}
.col14 {
    width: 96%;
}
.col15 {
    width: 96%;
}
.col16 {
    width: 96%;
}
}



.header_slider {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 0;
    overflow: hidden;
    
}

.header_slider-container {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    image-fit: fill;
    object-fit: cover;

    &:before {
        content: "";
        position: absolute;
        z-index: 11;
        background: rgba(0,0,0,.25);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    &:after {
        content: "";
        position: absolute;
        z-index: 12;
        z-index: 20;
        background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
        right: 0;
        
    }
}

.header_slider-text {
    position: absolute;
    z-index: 20;
    width: 100%;
    max-width: 700px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
    text-align: center;
    color: white;
}

.header_slider-item {
   
    transition: 1s ease;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    
   }



   #block{
    position: relative;
  
   }
   
   #block h1{
    text-align: center;
    padding-bottom: 65px;
   }


.img-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
    flex-direction: column;
  justify-content: space-around;
}

.img-gridItem {
  position: relative;
  width: 100%;
  max-width: 1027px;
  margin-right: auto;
  margin-left: auto;
}
.img-gridItem img {
  display: block;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
.img-gridItem.type-left img {
  margin-right: auto;

}
.img-gridItem.type-right img {
  margin-left: auto;
 
}

.img-gridItem:nth-child(1) img {
  -webkit-transform: translateX(calc( var(--yBlock-4) * -0.03% ));
          transform: translateX(calc( var(--yBlock-4) * -0.03% ));
}
.img-gridItem:nth-child(2) img {
  -webkit-transform: translateX(calc( var(--yBlock-4) * 0.03% ));
          transform: translateX(calc( var(--yBlock-4) * 0.03% ));
}

.img-caption {
  position: absolute;
  top: 23%;
  width: 50%;
  -webkit-transform: translateY(-50%);
   transform: translateY(-50%);
}
.img-caption * {
  text-align: left;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.type-left .img-caption {
  right: 0;
}
.type-right .img-caption {
  left: 0;
}





.container.gallery-container {
    color: #35373a;
   
    padding: 30px 50px;
}



.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}



/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}




.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(169, 193, 34, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}



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

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

.overlay{
    padding: 180px 0 150px;
}

.back{
    background-color: rgba(40,51,66,0.8);
    padding: 20px;
}

.parallax-p {
    font-size: 25px;
    color: #FFF;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    margin-right: 30px;
    }

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


}

.footer-bottom {
    background: #2f2e2e;
    padding: 24.5px 0;
    }


.footer-bottom a{
    color: #AAC222
}

    .pull-left {
    float: left;
}

.pull-right {
    float: right;
    }


.footer-bottom p {
    margin: 0;
    color: #6D6D6D;
    font-size: 15px;
    font-family: 'Open Sans';
}




@-moz-keyframes flower-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  }
  50% {
    -moz-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
  }
}
@-webkit-keyframes flower-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  }
  50% {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -webkit-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
  }
}
@keyframes flower-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  }
  50% {
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
  }
}
/* :not(:required) hides this rule from IE9 and below */
.flower-loader:not(:required) {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #e96;
  border-radius: 100%;
  -moz-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  -webkit-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  -moz-animation: flower-loader 5s infinite ease-in-out;
  -webkit-animation: flower-loader 5s infinite ease-in-out;
  animation: flower-loader 5s infinite ease-in-out;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}





svg {
  
  max-height: 100vw;
}
.no-fill, .cactus-prickle {
  fill: none;
}


.pot {
  fill: #e3e5e1;
}
.pot-lighter {
  fill: #edeeeb;
}
.pot-lightest {
  fill: #f6f6f4;
}
.pot-top-lightest {
  fill: #fff;
}
.pot-top-soil {
  fill: #afb4a6;
}
.pot-shadow {
  fill: #a1b4bd;
}

.haworthia {
  clip-path: url(#haworthia-clip-path);
  fill: #7ea981;
}
.haworthia-strip {
  fill: #c7e5ce;
}
.haworthia-ouline {
  fill: #709c74;
  opacity: 0.5;
}

.cactus {
  clip-path: url(#cactus-clip-path);
  fill: #5b9a7c;
}
.cactus-lighter {
  fill: #63a689;
}
.cactus-lightest {
  fill: #6fb293;
}
.cactus-prickle {
  stroke: #4c8165;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}
.flower-root {
  fill: #71d1a8;
}
.flower-lighter {
  fill: #efad96;
}
.flower {
  fill: #e19680;
}
.flower-back {
  fill: #d38570;
}

.echeveria {
  clip-path: url(#echeveria-clip-path);
  fill: #78b1b5;
}
.echeveria-darker {
  fill: #6ea8a8;
}
.echeveria-lighter {
  fill: #88bfbf;
}

#portfolio h1{
    text-align: center;
    
    
}

#portfolio h1:after {
    border-bottom: 3px solid #AAC222;
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    position: relative;
    width: 115px;
    padding-top: 6px;
}

#block h1:after {
    border-bottom: 3px solid #AAC222;
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    position: relative;
    width: 115px;
    padding-top: 6px;
}

#about h2:after {
    border-bottom: 3px solid #AAC222;
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    position: relative;
    width: 115px;
    padding-top: 17px;
}

#contact h3:after{
    border-bottom: 3px solid #AAC222;
    content: "";
    display: block;
    left: 23%;
    bottom: 0;
    position: relative;
    width: 115px;
    padding-top: 17px;
}

.navbar-toggle{
   
    border: 2px solid #395926;
    margin-top: 25px;
}

span.icon-bar{
    background-color: #395926;
}
#nav ul{
    text-decoration: none;
    background-color: unset!important;
}
.nav-item > li > a{
    color: #395926;
    font-size: 17px;

    font-weight: bold;
    letter-spacing: 1px;
    padding: 15px;
    margin-top: 25px;
}

.cover-img{
    -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
 background-repeat:no-repeat;
    background-position: center center;
}









.media {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  margin-left: auto;
max-width: 1026px;
margin-right: auto;
}


@media (min-width: 701px) {
  .media {

    display: none;
  }
}


@media (max-width: 700px){
    .img-gridItem {
        display: none;
  }

}



.media__img {
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
 
  position: relative;
}

.media__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
 

}
.media__body {
  flex: 1 1 auto;
  padding: 20px;
}

.media--v {
  max-width: 400px;
  flex-direction: column;
}


.bg-theme{
    font-weight: 800;
    color: #fff;
    border: 1px solid;
    display: inline-block;
    padding: 10px 20px;
    font-size: 40px;
    margin-top: 30px;

}

.bg-theme a{
    color: #fff;
    padding-left: 10px;

}

#contact a{
    color: #fff;
    font-size: 16px;
}

#contact a:hover {
    color: #A6BE22;
}

.header_slider h1{
    font-size: 46px;
    color: #fff;
    text-shadow: 2px 4px 3px #1d2024;
}

.header_slider p{
    font-size: 25px;
    color: #fff;
    text-shadow: 2px 4px 3px #1d2024;
}


.fa-facebook{
font: normal normal normal 20px/1 FontAwesome !important;

}