﻿

/***

====================================================================
						Home-Page
====================================================================

***/

/** main header area **/

.header-upper{
  position: relative;
  background: #2f3032;
  width: 100%;
  padding: 11px 35px 12px 35px;
}
.header-upper .top-left{
  position: relative;display: inline-block;
}
.header-upper .top-left li{
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: #c7cace;
  margin-right: 41px;
}
.header-upper .top-left li i{
  margin-right: 8px;
}

.header-upper .top-right{
  position: relative;
  display: inline-block;
  float: right;
}
.header-upper .top-right .social-top li{
  position: relative;
  display: inline-block;
  margin-left: 21px;
}
.header-upper .top-right .social-top li a{
  font-size: 14px;
  color: #c7cace;
  font-size: 12px;
  transition: all 500ms ease;
}
.header-upper .top-right .social-top li a:hover{
  color: #caa680;
  transition: all 500ms ease;
}

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color: #25120e;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  padding: 0px 35px;
  left:0px;
  top:0px;
  width:100%;
  background: #25120e;
  z-index:0;
  box-shadow: 0 0px 0 2px rgba(238, 238, 238, 0.66);
  transition:all 500ms ease;
}
.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* main menu */
.main-menu-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

/* language box mobile */
.language-box-mobile {
	display: none !important;
}

/* logo box */
.logo-box{
	position: relative;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	margin-top: 27.5px;
}

.logo-box > a {
	max-width: 217px;
}

.logo-box img {
	width: 100%;
	height: auto;
}

/* language box tablet */
.logo-box .language-box-tablet {
	display: none;
	text-align: center;
	flex-grow: 1;
}

.logo-box .language-box-tablet a {
	display: inline-block;
	font-weight: bold;
	margin: 0 0em;
	color: #caa680;
}

.logo-box .language-box-tablet a.current, .logo-box .language-box-tablet a:hover {
	color: white;
}

.logo-box .language-box-tablet a:after {
	content: ' | ';
	color: #caa680;
}

.logo-box .language-box-tablet a:last-child:after {
	content: '';
	display: none;
}

/* language box desktop */
.main-menu .navigation > li.language-box-desktop:hover > a{
	color: #caa680;
}

.main-menu .navigation > li.language-box-desktop > a {
	display: inline-block;
	padding: 0 !important;
}

.main-menu .navigation > li.language-box-desktop > a:hover,
.main-menu .navigation > li.language-box-desktop > a.current {
	color: white;
}

.main-menu .navigation > li.language-box-desktop > a:after {
	content: ' | ';
	color: #caa680;
}

.main-menu .navigation > li.language-box-desktop > a:last-child:after {
	content: '';
	display: none;
}

.menu-bar {
	display: block;
	text-align: center;
	flex-grow: 9999999999999;
}

@media screen and (min-width: 1400px) {
	.menu-bar {
		text-align: right;
	}
}

.main-menu {
  position:relative;
  display: inline-block;
}

.main-menu .navbar-collapse{
  padding:0px;
}

.main-menu .navigation{
  position:relative;
  margin:0px;
}

.main-menu .navigation > li{
  position:relative;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}


.main-menu .navigation > li > a > i:before{
  margin-right: 5px;
  font-size: 16px;
}
.main-menu .navigation > li > a{
  position:relative;
  display:block;
  font-size:15px;
  color: #caa680;
  line-height: 26px;
  font-weight:600;
  padding: 32px 6px 32px 6px;
  text-align: center;
  text-transform:uppercase;
  font-family: 'Open Sans', sans-serif;
  opacity:1;
  transition: all 500ms ease;
}

.main-menu .navigation > li:hover > a,.main-menu .navigation > li.current > a,
.main-menu .navbar-collapse > ul li.dropdown.current .dropdown-btn span:before{
  color: #fff;
  transition: all 500ms ease;
}

.main-menu .navigation > li:hover > a:after{
  opacity:1;
}

.main-menu .navigation > li > ul{
  position:absolute;
  left:0px;
  top: 90px;
  width:220px;
  padding:0px;
  z-index:100;
  display:none;
  background:#222;
  border-top:3px solid #caa680;
  transition:all 1000ms ease;
  -moz-transition:all 1000ms ease;
  -webkit-transition:all 1000ms ease;
  -ms-transition:all 1000ms ease;
  -o-transition:all 1000ms ease;
}
.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}
.main-menu .navigation > li > ul > li:last-child{
  border-bottom:none;
}

.main-menu .navigation > li > ul > li > a{
  position:relative;
  display:block;
  padding:10px 15px;
  line-height:28px;
  font-weight:600;
  font-size:14px;
  font-family: 'Open Sans', sans-serif;
  text-transform:capitalize;
  color: #ffffff;
  border-bottom: 1px dashed #caa680;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li:last-child >a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li:hover > a{
  color: #caa680;
  padding:10px 15px 10px 17px;
  transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
  color:#ffffff;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top:100%;
  transition:all 500ms ease;
}

.main-menu .navbar-collapse, .main-menu .navbar-collapse .navigation{
	border: 0 none !important;
	box-shadow: none !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
  display: inline-block;
  position: absolute;
  top: 32px;
  right: -12px;
  cursor: pointer;
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn span:before{
  font-size: 15px;
  color: #caa680;
  margin: 0px;
}
.header-lower{
  position: relative;
  padding: 0px 35px;
  background: #25120e;
}

.main-header .search-box-area .search-toggle i:before{
  font-size: 16px;
  color: #222;
  margin: 0px;
}

.main-header .search-box-area{
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 37px;
}

.main-header .search-box-area .search-box {
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 35px;
  transition: all 500ms ease 0s;
  visibility: hidden;
}
.main-header .search-box-area .form-group{
  position: relative;
}
.main-header .search-box-area .form-group button{
  position: absolute;
  top: 2px;
  right: 0px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #caa680;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: none;
  z-index: 10;
}
.main-header .search-box-area input{
  width: 250px;
  height: 50px;
  border: 2px solid #caa680;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 9;
}
.main-header .search-box.now-visible {
  top: 35px;
  right: 0px;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.main-header .info-box,
.main-header .cart-box,
.main-header .search-box-area{
  position: relative;
  display: inline-block;
  top: -1px;
}
.main-header .cart-box a{
  color: #222;
  font-size: 16px;
  font-weight: 600;
}


/** main slider **/
.main-slider .text{
  position: relative;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
}
#slide-1687-layer-4,#slide-1688-layer-4,#slide-1689-layer-4{
  padding: 0px !important;
  border: none;
}
#slide-1687-layer-4:hover,
#slide-1688-layer-4:hover,
#slide-1689-layer-4:hover{
  background: none !important;
}
.main-slider .tp-btn a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #fff;
  font-weight: 600;
  background: #caa680;
  text-transform: uppercase;
  padding: 11px 34px 11px 34px;
  text-align: center;
  transition: all 900ms ease;
}
.main-slider .tp-btn a:hover{
  background: #fff;
  color: #caa680;
  transition: all 900ms ease;
}

/** about-section **/

.about-section{
  position: relative;
  padding-bottom: 126px;
  padding-top: 111px;
}

.about-section.no-pt {
	padding-top: 0;
}

.about-section.mt-close {
	margin-top: -50px;
}

.about-section.mb-close {
	padding-bottom: 100px;
}

.about-section.mt-close .text + .sec-title {
	margin-top: 25px;
}

.about-section .img-box{
  position: relative;
  margin-top: -11px;
  padding-left: 35px;
}
.about-section .img-box:before{
  position: absolute;
  content: '';
  background: url(../images/about/shap.png);
  width: 100%;
  height: calc(100% - 51px);
  left: 117px;
  top: 80px;
  background-repeat: repeat-y;
  z-index: -1;
}
.about-section .img-box img{
  width: 100%;
}
.about-section .button{
  margin-top: 31px;
}

.about-section h2.offset {
	margin-top: 0.5em;
}

.about-section h2 small {
	color: inherit;
}

.about-section .logo-container {
	margin-top: 4.5em;
	display: flex;
	align-items: center;
	justify-content: center;
}

/** feature-section **/

.feature-section{
  position: relative;
  background: #f5f5f7;
  width: 100%;
  padding-bottom: 62px;
}
.feature-section:before{
  position: absolute;
  content: '';
  background: url(../images/home/f1.jpg);
  width: 50%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature-section .feature-content-area{
  position: relative;
  padding-left: 36px;
  padding-right: 60px;
}
.feature-section .feature-content-area .single-item{
  position: relative;
  padding: 0px 0px 0px 97px;
  margin-bottom: 26px;
}
.feature-section .feature-content-area .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: -3px;
  background: #ebebf0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
}
.feature-section .feature-content-area .single-item .icon-box i:before{
  font-size: 33px;
  color: #222;
  margin: 0px;
}
.feature-section .sec-title h2{
  margin-bottom: 61px;
}
.feature-section .feature-content-area .single-item h4{
  font-weight: 600;
  margin-bottom: 7px;
}


/** service-section **/

.service-section{
  position: relative;
}
.service-section .single-item{
  position: relative;
  padding: 0px 16px 0px 16px;
  margin-bottom: 32px;
  min-height: 250px;
}
.service-section .single-item:before{
  position: absolute;
  content: '';
  background: #efefef;
  width: 1px;
  height: 229px;
  top: 0px;
  right: -15px;
}
.service-section .service-column:nth-child(4) .single-item:before{
  display: none;
}
.service-section .single-item .icon-box{
  margin-bottom: 20px;
}
.service-section .single-item .icon-box i:before{
  font-size: 45px;
  color: #222;
  margin: 0px;
  transition: all 500ms ease;
}
.service-section .single-item .icon-box:hover i:before{
  color: #caa680;
  transition: all 500ms ease;
}
.service-section .single-item h4{
  margin-bottom: 16px;
}
.service-section .single-item h4 a{
  font-weight: 600;
}
.service-section .single-item p{
  margin-bottom: 22px;
}
.service-section .sec-title h2{
  margin-bottom: 82px;
}


/** project-section **/

.project-section{
  position: relative;
  background: #f5f5f7;
  padding-right: 51px;
  padding-left: 51px;
}

.main-gallery-page .post-filter {
	padding-top: 20px;
}

.post-filter{
  position: relative;
  margin-bottom: 42px;
  clear: both;
}
.post-filter li{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  transition: all 500ms ease;
}
.post-filter li.active{
  color: #caa680;
  transition: all 500ms ease;
}
.project-section .sec-title h2{
  margin-bottom: 44px;
}

.about-section-gallery {
	margin-top: -50px;
}

.about-section-gallery .single-project .img-box {
  height: 350px;
}

.single-project .img-box {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
}
.single-project .img-box img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.single-project .img-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform .4s ease, opacity .4s ease, visibility .4s ease;
  transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
}
.single-project .img-box .overlay .box {
  display: table;
  width: 100%;
  height: 100%;
}
.single-project .img-box .overlay .box .content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.single-project:hover .img-box .overlay {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.single-project .content a i:before{
  font-size: 30px;
  margin: 0px;
  color: #caa680;
}
.single-project .lower-content h4{
  margin-bottom: 0px;
}
.single-project .lower-content{
  position: relative;
  background: #fff;
  width: 100%;
  padding: 23px 10px 13px 20px;
  transition: all 500ms ease;
}
.single-project{
  position: relative;
  box-shadow: 0px 0 10px 3px rgba(204, 204, 204, 0.6);
  margin-bottom: 50px;
}
.owl-dots{
  display: none !important;
}


/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding-bottom: 55px;
}
.testimonial-section .testimonial-content{
  position: relative;
  padding: 0px 140px;
}
.testimonial-section .testimonial-content .author-img{
  position: relative;
  display: block;
  width: 110px;
  margin: auto;
  margin-bottom: 39px;
}
.testimonial-section .testimonial-content .text{
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 28px;
}
.testimonial-section .testimonial-content .author-info h4{
  margin-bottom: 1px;
}
.testimonial-section .testimonial-content .author-info p{
  font-style: italic;
}
.owl-next {
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -25px;
}
.owl-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -25px;
}
.testimonial-section .sec-title h2{
  margin-bottom: 69px;
}


/** cta-section **/

.cta-section{
  position: relative;
  background: url(../images/home/cta.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 82px;
  padding-bottom: 87px;
}
.cta-section:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: .75;
}
.cta-section .cta-content{
  position: relative;
  z-index: 1;
}
.cta-section .text{
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 15px;
}
.cta-section .title{
  position: relative;
  font-size: 44px;
  line-height: 50px;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.cta-section .btn-one{
  background: #caa680;
  border: 2px solid #caa680;
  color: #fff;
}
.cta-section .btn-one:hover{
  color: #caa680;
  bordder: 2px solid #caa680;
  background: transparent;
}


/** team-section **/

.team-section{
  position: relative;
  padding-bottom: 81px;
}
.team-section .single-item{
  position: relative;
}
.team-section .single-item .img-content{
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.team-section .single-item .team-social li{
  position: relative;
  display: inline-block;
  margin: 0px 2px;
}
.team-section .single-item .team-social li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 2px solid #c8caca;
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-section .single-item .team-social li a:hover{
  background: #fff;
  border: 2px solid #fff;
  color: #222;
  transition: all 500ms ease;
}
.team-section .single-item .team-social {
  position: absolute;
  bottom: -200px;
  width: 100%;
  padding: 15px 0px 15px 0px;
  transition: all 900ms ease;
}
.team-section .single-item:hover .team-social{
  bottom: 15px;
  transition: all 900ms ease;
}

.team-section .single-item .shadow-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px -110px 30px -15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 1500ms ease;
}
.team-section .single-item:hover .shadow-box {
  opacity: 1;
  transition: all 1500ms ease;
}
.team-section .single-item .lower-content .title a{
  position: relative;
  font-size: 22px;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 30px;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.team-section .single-item .lower-content .title a:hover{
  color: #caa680;
}
.team-section .single-item .lower-content p{
  font-style: italic;
}
.team-section .single-item img{
  width: 100%;
}
.team-section .sec-title h2{
  margin-bottom: 72px;
}


/** brand-section **/

/* on index */
/*
.brand-section{
	position: relative;
	padding: 51px 0px 37px 0px;
	background: rgb(107, 88, 84);
  }
*/

/* new */
.brand-section{
	position: relative;
	padding: 15px 0 15px 0;
	background: #25120e;
	/*border-bottom: 3px solid #caa680;*/
  }

.brand-section .brand-content{
  position: relative;
  padding: 0px 0px;
}
.brand-section .owl-next {
  display: none !important;
}
.brand-section .owl-prev {
  display: none !important;
}

.brand-section .owl-stage {
	display: flex;
	align-items: center;
}

.brand-section .owl-item {
	height: 55px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand-section img, .index-brands img {
	filter: contrast(1);
}

.index-brands {
  margin-top: 60px;
  background-color: #25120e;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 150px 150px;
}

.index-brands img {
  margin: 0 auto;
  height: 100%;
}

.index-catalogs-header {
	margin-top: -50px;
}

.index-catalogs {
  padding-bottom: 0 !important;
}

.index-catalogs .blog-flex {
  justify-content: center;
}

/** main-footer **/

.main-footer{
  position: relative;
  /*background: #1b1c1e;*/
  background-color: rgb(20, 8, 4);
  width: 100%;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .footer-title h4{
  color: #fff;
  margin-bottom: 23px;
  text-transform: none;
}
.main-footer p,
.main-footer a,
.footer-bottom p{
  color: #b7bbc1;
}
.main-footer p{
  margin-bottom: 22px;
}
.main-footer .footer-social li{
  position: relative;
  display: inline-block;
  margin: 0px 4px;
}
.main-footer .footer-social li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  background: rgb(152, 116, 78);
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.main-footer .footer-social li a:hover{
  background: #caa680;
  color: #fff;
  transition: all 500ms ease;
}
.main-footer .gallery-widget li{
  position: relative;
  display: inline-block;
  margin: 5px 3px 5px 4px;
}
.main-footer .gallery-widget li img{
	width: 83px;
	height: 83px;
	object-fit: cover;
  }
.main-footer .gallery-widget{
  position: relative;
  padding: 0px 51px 0px 41px;
}
.main-footer .gallery-widget .footer-title h4{
  margin-bottom: 28px;
}
.main-footer .service-widget .list li a{
  position: relative;
  display: block;
  margin-bottom: 14px;
  padding: 0px 0px 0px 13px;
}
.main-footer .service-widget .list li a:before{
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  left: 0px;
  top: 0px;
}
.main-footer .service-widget .footer-title h4{
  margin-bottom: 25px;
}
.main-footer .service-widget .list li a:hover{
  text-decoration: underline;
}

.main-footer .logo-widget .list li{
	position: relative;
	display: block;
	padding: 0px 0px 0px 20px;
	margin-bottom: 6px;
	color: rgb(183, 187, 193);
}

.main-footer .logo-widget .list{
	position: relative;
	margin-top: -1px;
	margin-bottom: 25px;
}

.main-footer .logo-widget .list li:before{
	position: absolute;
	content: "\f101";
	font-size: 14px;
	font-family: "FontAwesome";
	left: 2px;
	top: 0px;
	color: #caa680;
}

.main-footer .logo-widget .list li a:hover, .main-footer .logo-widget .list li a.current {
	color: #caa680;
}

.main-footer .logo-widget .links {
	margin-top: -1px;
	margin-bottom: 25px;
}

.main-footer .logo-widget .links li a:hover, .main-footer .logo-widget .links li.current a {
	color: #caa680;
}

input,
textarea{
  position: relative;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  transition: all 900ms ease;
}
input:focus,
textarea:focus{
  border: 1px solid #caa680;
  transition: all 900ms ease;
}
.main-footer .subscribe-widget input{
  background: #0f0f10;
  border: 1px solid #0f0f10;
  margin-bottom: 15px;
  transition: all 900ms ease;
}
.main-footer .subscribe-widget input:focus{
  border: 1px solid #caa680;
  transition: all 900ms ease;
}
.main-footer .subscribe-widget .btn-one{
  background: #caa680;
  color: #fff;
  border: 2px solid #caa680;
  padding: 10px 31px 10px 32px;
}
.main-footer .subscribe-widget .btn-one:hover{
  color: #caa680;
  background: transparent;
}

/** footer bottom **/

.footer-bottom{
  position: relative;
  background:#25120e;
  padding: 20px 0px 19px 0px;
}
.footer-bottom .copyright a{
  color: #fff;
}
.footer-bottom .copyright a:hover{
  color: #caa680;
}
.footer-bottom .copyright p{
  margin-bottom: 0px;
}

.footer-bottom select {
	color: #caa680;
	background-color: #25120e;
	margin-left: 1em;
	padding: 0 22px 0 5px;
	background: url(/images/select_open.png) no-repeat center right;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/***

====================================================================
						Home page Two
====================================================================

***/

/** header style two **/

.header-style-two .header-lower{
  position: relative;
  background: transparent;
  margin-bottom: -90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-style-two .main-menu .navigation > li > a{
  color: #fff;
}
.header-style-two .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn span:before{
  color: #fff;
}
.header-style-two .main-menu .navigation > li:hover > a,
.header-style-two .main-menu .navigation > li.current > a,
.header-style-two .main-menu .navbar-collapse > ul li.dropdown.current .dropdown-btn span:before {
  color: #caa680;
  transition: all 500ms ease;
}
.header-style-two .search-box-area .search-toggle i:before{
  color: #fff;
}
.header-style-two .cart-box a{
  color: #fff;
}
.header-style-two .sticky-header{
  background: #222;
  box-shadow: none;
}

/** welcome-style-two **/

.welcome-style-two{
  position: relative;
  padding-bottom: 83px;
}
.welcome-style-two .single-item{
  position: relative;
  padding: 0px 25px 0px 25px;
}
.welcome-style-two .single-item .icon-box{
  position: relative;
  margin: auto;
  margin-bottom: 23px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
}
.welcome-style-two .single-item .icon-box i:before{
  font-size: 36px;
  margin: 0px;
  color: #caa680;
}
.welcome-style-two .single-item h4{
  font-weight: 600;
  margin-bottom: 16px;
}
.welcome-style-two .sec-title h2{
  margin-bottom: 46px;
}
.welcome-style-two .welcome-title{
  position: relative;
  margin-bottom: 42px;
}
.cta-style-two:before{
  opacity: .5;
}

/** project-style-two **/

.project-style-two{
  position: relative;
  background: #fff;
}
.project-style-two .single-project{
  margin-bottom: 30px;
}
.project-style-two .single-project:hover .lower-content{
  background: #f5f5f7;
  transition: all 500ms ease;
}
.project-style-two .button{
  position: relative;
  margin-top: 20px;
}

/** testimonial-style-two **/

.testimonial-style-two{
  position: relative;
  background: url(../images/testimonial/bg.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100px;
}
.testimonial-style-two:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: .35;
}
.testimonial-style-two .testimonial-content .text,
.testimonial-style-two .testimonial-content .author-info h4{
  color: #fff;
}
.testimonial-style-two .testimonial-content .author-info p{
  color: #caa680;
}

/** about-style-two **/

.about-style-two{
  position: relative;
  background: #f5f5f7;
  padding: 0px;
}
.about-style-two .about-content{
  padding-bottom: 95px;
  padding-left: 35px;
}
.about-style-two .about-content p{
  margin-bottom: 31px;
}
.video-gallery {
  position: relative;
  float: right;
  text-align: center;
}
.video-gallery .img-box img {
  position: relative;
  max-width: none;
}
.video-gallery:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: .35;
}
.video-gallery .overlay-gallery {
  background-color: transparent;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  transition: all 500ms ease;
}
.video-gallery .overlay-gallery .icon-holder{
  display: table;
  height: 100%;
  width: 100%;
}
.video-gallery .overlay-gallery .icon-holder .icon{
  display: table-cell;
  vertical-align: middle;
}
.video-gallery .overlay-gallery .icon-holder .icon a{
  z-index: 1;
}
.video-gallery .overlay-gallery .icon-holder .icon a img{
  width: auto;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}

.video-gallery .overlay-gallery .icon-holder .icon a:hover img{
  transform: scale(1.1);
}

/** our-skills **/

.our-skills{
  position: relative;
  padding-bottom: 88px;
}
.Skills-progress {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 2px;
}
.Skills-progress .progress {
  height: 4px;
  border-radius: 0px;
}
.Skills-progress .progress-item .progress {
  background-color: #e5e5e5;
  margin-bottom: 28px;
  overflow: visible;
}
.Skills-progress .progress-item .progress-bar {
  background-color: #222;
  font-size: 12px;
  height: 4px;
  line-height: 18px;
  padding-left: 10px;
  position: relative;
  text-align: left;
  -webkit-transition: all 3s ease 0s;
  -moz-transition: all 3s ease 0s;
  -ms-transition: all 3s ease 0s;
  -o-transition: all 3s ease 0s;
  transition: all 3s ease 0s;
  width: 0;
}
.Skills-progress .progress-bar .value-holder {
  background-color: #222;
  position: absolute;
  text-align: center;
  top: -5px;
  right: -4px;
  height: 14px;
  width: 4px;
}
.Skills-progress .progress-bar .value-holder .value {
  position: relative;
  color: #848484;
  font-size: 14px;
  line-height: 33px;
  top: -32px;
  right: -17px;
}
.Skills-progress .single-item p{
  margin-bottom: 3px;
}
.perctnt-box {
  position: absolute;
  color: #777;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  top: -24px;
  right: -41px;
}


/***

====================================================================
						Home page Three
====================================================================

***/

.about-style-three{
  position: relative;
  background: #f5f5f7;
  padding: 92px 0px 83px 0px;
}
.about-style-three .about-title-three h2{
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
}
.about-style-three .text{
  position: relative;
  padding: 0px 35px 0px 30px;
}
.about-style-three .about-title-three{
  position: relative;
  padding: 0px 20px;
}
.about-style-three .about-title-three:before{
  position: absolute;
  content: '';
  background: #777777;
  width: 2px;
  height: 63px;
  top: 9px;
  right: -15px;
}


/** feature-style-two **/

.feature-style-two{
  position: relative;
  padding-top: 100px;
  padding-bottom: 83px;
}
.feature-style-two .single-item{
  position: relative;
  padding: 0px 25px 0px 25px;
}
.feature-style-two .single-item:before{
  position: absolute;
  content: '';
  background: #efefef;
  width: 1px;
  height: 290px;
  top: 0px;
  right: -15px;
}
.feature-style-two .feature-column:nth-child(3) .single-item:before{
  display: none;
}
.feature-style-two .single-item .lower-content h4{
  font-weight: 600;
  margin-bottom: 16px;
}
.feature-style-two .single-item .img-box{
  margin-bottom: 23px;
}


/** service-style-two **/

.service-style-two{
  position: relative;
}
.service-bg{
  position: relative;
  background: url(../images/home/paralax-02.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 90px 0px 189px 0px;
}
.service-bg:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: .4;
}
.service-bg .sec-title h2{
  color: #fff;
}
.service-bg .sec-title h2:before{
  background: #fff;
}
.service-style-two .service-content{
  position: relative;
  width: 100%;
  margin-top: -170px;
  padding-bottom: 100px;
  background: transparent;
}
.service-style-two .service-section .single-item{
  background: #fff;
  width: 100%;
  padding: 65px 5px 55px 5px;
  box-shadow: 0px 0 10px 3px rgba(204, 204, 204, 0.6);
}
.service-separator {
	clear: both;
	margin-bottom: 25px;
}
.service-style-two .service-section .single-item:before{
  display: none;
}


/** project-style-three **/

.project-style-three{
  position: relative;
}
.project-style-three .single-project{
  position: relative;
  box-shadow: none;
}
.project-style-three .single-project .lower-content{
  background: #f5f5f7;
  padding: 10px 10px 13px 0px;
}
.project-style-three .button{
  position: relative;
  margin-top: -30px;
}


/** team-style-two **/

.team-style-two{
  position: relative;
  padding-bottom: 92px;
}
.team-style-two img{
  width: 100%;
}
.team-style-two .lower-content .team-title a{
  position: relative;
  font-size: 22px;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 30px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 1px;
  display: block;
  transition: all 500ms ease;
}
.team-style-two .lower-content .team-title a:hover{
  color: #caa680;
  transition: all 500ms ease;
}
.team-style-two .img-box{
  margin-bottom: 22px;
}
.team-style-two .lower-content .team-social li{
  position: relative;
  display: inline-block;
  margin: 0px 15px;
}
.team-style-two .lower-content p{
  margin-bottom: 2px;
}
.team-style-two .sec-title h2{
  margin-bottom: 72px;
}


/** testimonial-style-three **/

.testimonial-style-three{
  position: relative;
  background: url(../images/testimonial/bg1.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 81px;
}
.testimonial-style-three:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: .5;
}
.testimonial-style-three .sec-title h2{
  color: #fff;
}
.testimonial-style-three .sec-title h2:before{
  background: #fff;
}
.testimonial-style-three .testimonial-content .text{
  position: relative;
  background: #fff;
  width: 100%;
  padding: 34px 10px 25px 29px;
  margin-bottom: 25px;
}
.testimonial-style-three .testimonial-content .text:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 20px;
  height: 20px;
  left: 36px;
  bottom: -7px;
  transform: rotate(45deg);
}
.testimonial-style-three .owl-theme .owl-controls{
  display: none !important;
}
.testimonial-style-three .testimonial-content .author-box{
  position: relative;
  margin-left: 15px;
}
.testimonial-style-three .testimonial-content .author-box .img-box{
  display: inline-block;
  margin-right: 16px;
}
.testimonial-style-three .testimonial-content .author-box .author-info{
  position: relative;
  display: inline-block;
  top: -13px;
}
.testimonial-style-three .testimonial-content .author-box .author-info h4{
  color: #fff;
  margin-bottom: 1px;
}
.testimonial-style-three .testimonial-content .author-box .author-info p{
  color: #caa680;
}
.testimonial-style-three .sec-title h2{
  margin-bottom: 72px;
}
