/* pricing  */
.contact__banner{
   width: 100%;
   height: 40vh;
   background-size: cover;
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
}

.contact__banner__inside{
    background-color: black;
    opacity: 0.8;
    padding: 10px 30px;
    position: absolute;
    top: 20%;
    left: 5%;
    color: #fff;
    border-radius: 99px;
}

.contact__banner__links{
    position: absolute;
    top: 70%;
    left: 5%;
}

.contact__banner__links a{
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    transition: 0.5s all ease;
}
.contact__banner__links a:hover{
    color: rgb(221, 6, 131);
    text-decoration: none;
}





/* filter  */
.section-glry {
    padding: 30px 0;
    color: #333;
  }
  .section-glry .top-side {
    text-align: center;
  }
  .section-glry .top-side .title {
    font-weight: 500;
    font-size: 20px;
    display: inline-block;
  }
  .section-glry .top-side .title:after {
    content: "";
    display: block;
    width: 50%;
    border-bottom: 1px solid #494949;
    margin: 8px auto;
  }
  .section-glry .top-side h2 {
    font-weight: 700;
  }
  .section-glry.portfolio .filters {
    text-align: center;
    margin-top: 50px;
  }
  .section-glry.portfolio .filters ul {
    padding: 0;
  }
  .section-glry.portfolio .filters ul li {
    color: white;
    font-size: 15px;
    list-style: none;
    display: inline-block;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
  }
  .section-glry.portfolio .filters ul li:after {
    content: "";
    display: block;
    width: calc(0% - 60px);
    position: absolute;
    height: 2px;
    background: white;
    transition: width 350ms ease-out;
  }
  .section-glry.portfolio .filters ul li:hover:after {
    width: calc(100% - 60px);
    transition: width 350ms ease-out;
  }
  .section-glry.portfolio .filters ul li.active:after {
    width: calc(100% - 60px);
  }
  .section-glry.portfolio .filters-content {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .section-glry.portfolio .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
  }
  .section-glry.portfolio .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
  }
  .section-glry.portfolio .filters-content .item {
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
  }
  .section-glry.portfolio .filters-content .item .p-inner {
    border-radius: 5px;
    /* border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; */
    padding: 10px 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    margin-top: -15px;
    background: white;
  }
  .section-glry.portfolio .filters-content .item .p-inner h5 {
    font-size: 17px;
    font-weight: 600;
  }
  .section-glry.portfolio .filters-content .item .p-inner .cat {
    font-size: 15px;
    color: #a04732;
    text-transform: uppercase;
  }
  .section-glry.portfolio .filters-content .item img {
    height: 270px;
    width: 100%;
  }






/* Start Gallery CSS */
.thumb {
	margin-bottom: 15px;
}
.thumb:last-child {
	margin-bottom: 0;
}
/* CSS Image Hover Effects: https://www.nxworld.net/tips/css-image-hover-effects.html */
.thumb 
figure img {
  /* -webkit-filter: grayscale(100%); */
  /* filter: grayscale(100%); */
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.thumb 
figure:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}





.img-thumbnail{
  padding: 0em;
  border: none;
  margin-bottom: 3px;
}


.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close{
  font-size: 40px;
  padding-bottom: 15px;
}






/* View more button stle */
.cta {
  /*padding-top: 7px;*/
  border: none;
  background: none;
  cursor: pointer;
}

.cta span {
  padding-bottom: 7px;
  letter-spacing: 1px;
  font-size: 14px;
  /* padding-right: 15px; */
  text-transform: uppercase;
}

.cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: #a04732;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #a04732;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}



.gllry-p{
  padding-top: 10px;
  text-align: justify;
  color: #a04732;
  line-height: 24px;
  font-size: 14px;

  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
           line-clamp: 4; 
   -webkit-box-orient: vertical;
}














