/* common */

.section-padding{
  padding: 100px 0;
}

/* common */


.transparent-header .logo-two img{
    max-width: 150px;
}
footer .footer-logo img{
    max-width: 200px;
}
footer .footer-social .list-wrap{
    justify-content: space-between;
    max-width: 230px;
    margin-top: 30px;
}
.transparent-header .logo-two .image-2{
    display: none;
}
.transparent-header .logo-two.active .image-2{
    display: block;
}
.transparent-header .logo-two.active .image-1{
    display: none;
}
.header-action .header-contact ul li a{
    color: var(--tg-primary-color);
}
.header-action .icon a{
    border-color: var(--tg-primary-color) !important;
}
.menu-open .header-action .icon a{
  border-color: var(--tg-white) !important;
}
.header-action .icon a>span{
    background: var(--tg-primary-color) !important;
}
.menu-open .header-action .icon a>span{
  background: var(--tg-white);
}
.about-content .section-title .title span{
  color: #BD9A68;
}
.banner-area-eight{
    padding-top: 120px;
}
.portfolio-section {
	padding-top: 30px;
	transition: 1.3s;
	box-sizing: border-box;
	height: auto;
  }
  
  .portfolio-tab ul {
	text-align: center;
	margin-top: 50px;
	display:flex;
	flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }
  .portfolio-tab ul li {
	color: #000;
	background: transparent;
	display: inline;
	font-weight: 500;
	text-transform: uppercase;
	padding: 12px 16px;
	border: 2px solid #BD9A68;
	margin: 0 5px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	-webkit-tap-highlight-color: transparent;
  }
  .portfolio-tab ul li:hover {
	background: #BD9A68;
	color: #fff
  }
  .portfolio-tab ul .active {
	background: #BD9A68;
	color: #fff
  }
  .clearfix:after {
	display: table;
	content: " ";
	clear: both;
  }
  .portfolio-grid {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 300px;
	column-gap: 30px;
	row-gap: 30px;
  }
  .portfolio-grid .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	display:none;
	overflow:hidden;
}
.portfolio-wrapper {
  overflow:hidden;
  position: relative !important;
  cursor:pointer;
}
.portfolio-wrapper .label{
	pointer-events: none !important;
}
.portfolio-bg {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
  transform: scale(1)
}
.portfolio-bg img{
	width: 100%;
	object-fit: cover;
}
.portfolio:hover .portfolio-bg{
  transform: scale(1.2)
}

.portfolio .label {
  position: absolute;
  width: 100%;
  height:100%;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden
}

.portfolio .label-bg {
  background: #232323;
  opacity: 0.7;
  width: 100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  transition: 1px;
}
.portfolio .label-text {
  color:#fff;
  position: relative;
  z-index:500;
  padding:50px 20px;
}
.portfolio:hover .label {
  opacity: 1;
  visibility: visible;
}
.portfolio .text-category {
  display:block;
}
.portfolio .template-btn {
  background: #e30b5d;
  border: 1px solid #e30b5d;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 500
}
.odometer.odometer-auto-theme .odometer-digit:last-child{
	position: relative !important;
}
.odometer.odometer-auto-theme .odometer-digit:last-child:after{
	position: absolute !important;
	content: '%';
	width: 100%;
	height: 100%;

}
.portfolio-grid .portfolio{
    overflow: visible;
}
.portfolio-bg{
    height: auto;
}

.portfolio-grid{
    grid-auto-rows: unset;
}
.portfolio-section{
    padding-bottom: 100px;
}
.odometer.odometer-auto-theme .odometer-digit:last-child:after{
    content: unset;
}
.section-brochures .b-wrapper .image{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.section-brochures .b-wrapper .title{
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 22px;
  opacity: 0;
  height: 100%;
  background-color:var(--tg-primary-color) ;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease-in-out;
  transform: translateY(200px);
}
.section-brochures .b-wrapper .image:hover .title{
  opacity: 1;
  transform: translateY(0);
}



@media only screen and (max-width: 768px) {
  .portfolio-grid{
        grid-template-columns: repeat(1, 1fr);
  }
  .portfolio-tab ul li{
          padding: 5px;
    font-size: 12px;
  }
  .portfolio-tab ul{
      padding-left:0;
  }
  .counter-area{
      padding:0;
  }
}