/*page css start*/
body{overflow: auto;}
.fotorama__wrap{
    margin: auto;
}

.studio-banner{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url(../images/banner/studio-banner.jpg) no-repeat center center / cover;
}

.gallery-sec{
    background: #f4f4f4;
    padding:50px 0;
}

.slider-image{
    max-width: 100%;
    margin: auto;
    display: table;
}

.location-icon{
    font-size: 22px;
}

.sec-heading{
    padding-bottom: 30px;
}

/*factsheet section start*/
.factsheet-section{
    background: #f4f4f4;
    padding: 50px 0;
}
.factsheet-ul{
    padding-left: 0;
    list-style: none;
}
.factsheet-ul li{
    cursor: pointer;
    transition: color 1s;
    font-size: 20px;
    line-height: 37px;
}
.factsheet-heading{
    font-size: 25px;
    transition: color 0.5s;
    cursor: pointer;
}
.factsheet-section .factsheet-div:hover .factsheet-heading{
    color: #ff950d;
}
.factsheet-section .factsheet-heading:hover{
    color: #ff950d;
}

.border-1, .border-2{
    height: 1px;
    background: #000;
    transition: background 0.5s;
}

.factsheet-div:hover .border-1, .factsheet-div:hover .border-2{
    background: #ff950d;
}
.factsheet-div:hover .border-1{
    width: 35%;
    transition: width 1s;
}
.factsheet-div:hover .border-2{
    width: 40%;
    transition: width 1s;
}
.border-1{
    margin-top: 10px;
    width: 10%;
}
.border-2{
    margin-top: 3px;
    width: 15%;
}

.video-v{
    width:100% !important;
    height:auto !important;
}

.commonSection {
    padding: 90px 0 !important;
}

.gallery-item a{
    display:inline-block;
}



.layput-section img{
    max-width:100%;
}

.space-cls{
    margin-bottom:30px !important;
    font-size:25px;
}

.fact-a:hover, .fact-a:focus{
    color:#ff950d;
}

/*custom gallery code start*/
.gal-data img{
    margin-bottom: 25px;
    height: 100px;
    transition: transform 0.1s ease-in-out;
}

.gal-data img:hover {
  transform: scale(1.1) rotate(5deg);
}

.center-img-col img{
    width: 100%;
}

.image-col .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}

.image-col .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.center-img-col{
    /*height: 100%;*/
    margin: auto auto;
    display: flex;
}
/*custom gallery code end*/

.video-sec{
    padding:50px 0;
}

.demo{
    width: 100%;
}

.video-div{
    margin: auto;
    display: table;
    float: none;
}

.opening-time{
    margin-bottom: 40px;
    margin-top:30px;
}




/*responsive code start*/
/*For Mobile */
@media screen and (max-width:480px){
    .demo {
        width: 100%;
        height: 168px;
    }
    
    .factsheet-heading {
        font-size: 23px;
    }

    .factsheet-div {
        margin-bottom: 40px;
    }

    .center-img-col{
        margin-bottom:20px;
    }

    .gal-data img {
        height: auto; 
        width: 100%;
    }
}

/*****Mobile Horizontal view******/
@media screen and (min-width:490px) and (max-width:767px){
    .demo {
        width: 100%;
        height: 280px;
    }

    .factsheet-div {
        margin-bottom: 40px;
    }

    .center-img-col{
        margin-bottom:20px;
    }

    .gal-data img {
        height: auto; 
        width: 100%;
    }
}


/*********Ipad*************/
@media screen and (min-width:768px) and (max-width:991px){
    .demo {
        width: 100%;
        height: 292px;
    }

    .factsheet-div {
        margin-bottom: 40px;
    }

    .center-img-col{
        margin-bottom:20px;
    }
}   


/*********Ipad Pro*************/
@media screen and (min-width:991px) and (max-width:1024px){

}
/*responsive code end*/
/*page css end*/
/*collection gallery css start*/
.hello {
  opacity: 1 !important;
}
.full {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.full .content {
  background-color: rgba(0,0,0,0.75) !important;
  height: 100%;
  width: 100%;
  display: grid;
}
.full .content img {
  left: 50%;
  transform: translate3d(0, 0, 0);
  animation: zoomin 1s ease;
  max-width: 80%;
  max-height: 100%;
  margin: auto;
}
.byebye {
  opacity: 1;
}
/*.byebye:hover {*/
/*  transform: scale(0.2) !important;*/
/*}*/
.gallery {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 8px;
}
.gallery img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 16px #333;
  transition: all 1.5s ease;
}
.gallery img:hover {
  box-shadow: 0 0 32px #333;
}
.gallery .content {
  padding: 4px;
}
.gallery .gallery-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.gallery .gallery-item:hover {
  transform: scale(1.025);
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}
@media (max-width: 400px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
@-moz-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@-o-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}