/* BROCHURE CSS START*/

#brochure{
    position: absolute;
    margin-top: 4rem;
    top: 95%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#brochure a {
    display: inherit;
    width: 180px;
    height: 50px;
    color: #b21e8e;
    border: 1px solid #b21e8e;
    border-radius: 8px;
    background: transparent;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 1;
    transition: .5s;
    transition-delay: 0s;
    font-size: 1.6rem;
    /* font-size: 1.4rem; */
    line-height: 5.5rem;
    font-family: Oswald,sans-serif;
    letter-spacing: .05rem;
}


#brochure a:before,
#brochure a:after{
    content: '';
    position: absolute;
    top: 30%;
    transform: translate(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b21e8e;
    opacity: 0;
    transition: .3s;
    z-index: -1;
    overflow: hidden;
}

#brochure a:before{
    left: 0;
    box-shadow: -100px 0 0 #b21e8e;
}
#brochure a:after{
    right: 0;
    box-shadow: 100px 0 0 #b21e8e;
}

#brochure a:hover:before{
    left: calc(55% - 10px);
    opacity: 1;
    box-shadow: 30px 0 0 #b21e8e;
}
#brochure a:hover:after{
    right: calc(45% - 10px);
    opacity: 1;
    box-shadow: -30px 0 0 #b21e8e;
}
span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #b21e8e;
    z-index: -2;
    transform: scale(0);
    transition: .3s;
    opacity: 0;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0,0,0,.5);
}
#brochure a:hover span{
    opacity: 1;
    transform: scale(1);
    transition-delay: .3s;
}
#brochure a:hover{
    color: #fff;
    transition-delay: .3s;
}

/* BROCHURE CSS END */

/* GALLERY CSS START */

.galleryFilters 
{
  margin: 20px auto;
  align-content: center;
}
.galleryFilters .filterList 
{
    display: flex;
    /*justify-content: space-between;*/
    margin: 0; 
    float: left;
}
.galleryFilters .filterList .filterListItem 
{
      margin-right: 10px; 
}
.galleryFilters .filterList .filterListItem.active 
{
        background-color: #9517c3; 
}
.galleryFilters .violetBtn 
{
    background-color: #610f7f;
    color: #ffffff; 
}
.galleryFilters .searchBar 
{
    float: left;
    flex-grow: 1;
    width: auto;
    border-color: #610f7f; 
}
.galleryFilters .searchBar:focus 
{
      box-shadow: 0px 0px 5px #610f7f; 
}

.galleryContainer .thumbnail 
{
  padding-bottom: 20px;
  position: relative;
  border-radius: 5px; 
}
  .galleryContainer .thumbnail img 
{
    max-width: 100%;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
}
  .galleryContainer .thumbnail .item-desc 
{
    position: absolute;
    top: 10px;
    right: 15px;
    display: inline-block;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #610f7f;
    padding: 5px 10px;
    border-radius: 5px; 
}
/* GALLERY CSS END */


#services{
  padding: 100px 0;
  background: #9e02c5;
}
.price-table{
  text-align: center;
  overflow: hidden;
  margin: 20px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: inset 0 0 40px rgba(0,0,0,.2), 0 20px 50px rgba(0,0,0,.5);
  border-radius: 20px;
  transition: .6s;
}
.price-table:hover{
  transform: scale(1.1);
}
/*.col-sm-4:nth-child(2) .price-table{
  transform: scale(1.1);
}*/

.price-table .price-head{
  padding: 50px;
  background: linear-gradient(45deg, #f321d6, #5121f3);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%; 
}
.price-table .price-head h4{
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 700;
}

.price-table .price-head h2{
  margin: 0;
  padding: 20px 0 0;
  font-size: 36px;
  color: #fff;
}

.price-content{
  position: relative;
}

.price-content ul{
  position: relative;
  margin: 0;
  padding: 20px 0;
}

.price-content ul li{
  list-style: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 0;
  color: #777;
  cursor: pointer;
  border-left:15px solid transparent;
  border-right:15px solid transparent;
  transform: .5s;
  transition: .6s;
}

.price-content ul li:hover{
  border-left: 25px solid #9e02c5;
  border-right: 25px solid #9e02c5;
}
.price-button{
  padding: 0 0 30px;
}
.price-button a{
  padding: 10px 40px;
  background: linear-gradient(45deg, #f321d6, #5121f3);
  color: #fff;
  border-radius: 25px;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}
.price-button a:hover{
    color: #fff;
}

/*  New CSS */