
/** gallery-section **/

.gallery-section{
  position: relative;
  padding-bottom: 60px;
}

.gallery-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e0f0;
  box-shadow: 0 2px 12px rgba(90,45,156,0.08);
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.gallery-block-one .inner-box:hover{
  border-color: #c9a0f0;
  box-shadow: 0 6px 24px rgba(90,45,156,0.18);
}

.gallery-block-one .inner-box .image-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-block-one .inner-box .image-box img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
  opacity: 0.45;
}

.gallery-block-one .inner-box .content-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  padding: 20px 40px;
}

.gallery-block-one .inner-box .content-box:before{
  position: absolute;
  content: '';
  background: linear-gradient(160deg, rgba(30,10,60,0.55) 0%, rgba(90,45,156,0.45) 100%);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 400ms ease;
}

.gallery-block-one .inner-box:hover .content-box:before{
  opacity: 1;
}

.gallery-block-one .inner-box .content-box span{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  background: #142458;
  padding: 8px 15px;
  border-radius: 5px;
  margin-bottom: 25px;
  top: -15px;
  opacity: 0;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .content-box span{
  top: 0px;
  opacity: 1;
}

.gallery-block-one .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
  top: 15px;
  opacity: 0;
  transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .content-box h3{
  top: 0px;
  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 .content-box .inner{
  position: relative;
}


/** gallery carousel nav **/

.gallery-section .owl-nav{
  margin-top: 20px;
  text-align: center;
}

.gallery-section .owl-nav button.owl-prev,
.gallery-section .owl-nav button.owl-next{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid #e0d4f5 !important;
  box-shadow: 0 2px 10px rgba(90,45,156,0.12);
  color: #5a2d9c !important;
  margin: 0 5px;
  transition: all 250ms ease;
}

.gallery-section .owl-nav button.owl-prev:hover,
.gallery-section .owl-nav button.owl-next:hover{
  background: #8B2FC9 !important;
  border-color: #8B2FC9 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(139,47,201,0.35);
}


/** gallery-style-two **/

.gallery-style-two{
  position: relative;
}

.gallery-style-two .gallery-block-one .inner-box{
  border-radius: 5px;
  margin-bottom: 30px;
}




/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){


@media only screen and (max-width: 767px){
  .gallery-section{
    padding-top: 65px;
  }

  .gallery-style-two{
    padding: 65px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){
  
}









































