
/** gallery-section **/

.gallery-section{
  position: relative;
}

.gallery-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 325px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.gallery-section .inner-container{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-section .small-column{
  float: left;
  width: 25.5%;
}

.gallery-section .big-column{
  float: left;
  width: 49%;
}

.gallery-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(#051036CC, #051036B2, #05103600);
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .image-box:before{
  opacity: 1;
}

.gallery-block-one .inner-box img{
  width: 100%;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover img{
  transform: scale(1.05);
}

.gallery-block-one .inner-box .content-box{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}

.gallery-block-one .inner-box .content-box h3{
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  top: -15px;
  opacity: 0;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .content-box h3{
  top: 0;
  opacity: 1;
}

.gallery-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

.gallery-block-one .inner-box .content-box h3 a:hover{
  text-decoration: underline;
}

.gallery-block-one .inner-box .btn-box{
  position: relative;
  top: 15px;
  opacity: 0;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .btn-box{
  top: 0;
  opacity: 1;
}


/** gallery-page-section **/

.gallery-page-section{
  position: relative;
}

.gallery-page-section .gallery-block-one .inner-box .image-box,
.gallery-page-section .gallery-block-one .inner-box .image-box img{
  border-radius: 10px;
}

.gallery-page-section .gallery-block-one .inner-box{
  margin-bottom: 30px;
}



/** RTL **/

.rtl .gallery-section .small-column,
.rtl .gallery-section .big-column{
  float: right;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .gallery-section .small-column{
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    float: none !important;
  }

  .gallery-section .big-column{
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    float: none !important;
  }
}

@media only screen and (max-width: 767px){
  .gallery-page-section{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}










































