body {
	overflow-x: hidden !important;
}

.animat {
  box-shadow: none;
  transform: translateY(0);
  transition: 0.5s;
}

.animat:hover {
	box-shadow: 0 22px 20px #0000000f;
    	transform: translateY(-10px);
    	transition: 0.5s;
}

.close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: x-large;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    align-content: center;
  }

.orn-1 {
background-image: url(/themes/artstage/assets/images/img/orn-1.png) !important;
    background-repeat: no-repeat  !important;
    background-position: left 0 top 100px  !important;
    background-size: 800px  !important;
}

.orn-2 {
    background-image: url(/themes/artstage/assets/images/img/orn-2.png) !important;
    background-repeat: no-repeat  !important;
    background-position: right 0 top 170px  !important;
    background-size: 800px  !important;
}

.bg-artstage {
    background-image: url(/themes/artstage/assets/images/img/bg-artstage-gradient.jpg) !important;
    background-repeat: no-repeat  !important;
    background-position: top  !important;
    background-size: cover  !important;
}

.bg-texture {
	background-image: url(/themes/artstage/assets/images/img/bg-dark.jpg) !important;
    background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.modal-content  {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important; 
}

.bg-primary-hover:hover {
	background-color: #ff9d00 !important;
}

.title-orn-white {
	position: absolute;
    z-index: 0;
    left: 0;
    bottom: 21px;
    font-size: 2em;
    -webkit-text-stroke: 1px #0000001f !important;
    -webkit-text-fill-color: transparent; 
    transition: 0.5s;
        width: max-content;
}

.title-orn-dark {
	position: absolute;
    z-index: 0;
    left: 0;
    bottom: 21px;
    font-size: 2em;
    -webkit-text-stroke: 1px #ffffff26 !important;
    color: #1f1f1f00 !important;
    transition: 0.5s;
        width: max-content;
}

.title-orn-contact {
	position: absolute;
    z-index: 0;
    left: 0;
    bottom: 21px;
    font-size: 1.5em;
    -webkit-text-stroke: 1px #0000001f !important;
    color: #1f1f1f00 !important;
    width: 100%;
    transition: 0.5s;
        width: max-content;
}

.icon-custom {
	width: 50px;
	height: 50px;
}


.lazyImages {
	  text-align: center;
	  padding: 100px 0;
	}
.lazyImages img {
	  max-width: 50px !important;
	  margin-bottom: 100px;
	}
	
.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}


/* 

Accordion

*/


.accordion {
    display: flex;
    overflow-x: auto;
    height: 90vh;
    text-align: center;
}

.accordion-page {
    display: flex;
    overflow-x: auto;
    height: 40vh;
    text-align: center;
}

.item {
  position: relative;
  overflow: hidden;
  margin-right: 10px;
  margin-left: 10px;
  flex: 1;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.item:hover {
  flex: 10;
  z-index: 1;
}

.item img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.item:hover img {
  transform: scale(1);
}

.item:not(:hover) img {
  transform: scale(1);
  opacity: 0.9;
  filter: grayscale(100%);
}

.item .content {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding-bottom: 40px;
  padding-top: 20px;
  /* background-color: rgb(0 0 0 / 21%); */
  color: #fff;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 10;
}

.item:hover .content {
  transform: translateY(0);
}

.item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.item h2 {
  color: white;
}

/* Media queries */

@media screen and (max-width: 900px) {
  .accordion {
    display: block;
    height: auto;
    overflow: visible;
  }
  
    .accordion-page {
    display: block;
    height: auto;
    overflow: visible;
  }
  
  .item {
    flex: none;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    height: 400px;
  }
  
  .item:hover {
    flex: none;
  }
  
  .item .content {
    position: absolute;
    transform: none;
    padding: 0 20 0 20;
    width: 100%;
  }
  
  .item img {
    position: relative;
    filter: none;
  }
  
  .close-button {
  top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: large;
  }
}





