::-moz-selection {
  color: #000;
  background: #EA944D;
}

::selection {
  color: #000;
  background: #EA944D;
}


/* Zoom Effect on Various Galleries */

.thumb_element {
	transform: scale(0);
	-webkit-transform: scale(0);
  transform-origin: center;
	-webkit-transform-origin: center;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
	opacity: 0;
}

  .thumb_container:hover .thumb_element {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: center;
    -webkit-transform-origin: center;
    opacity: 1;
  }



/* 
  ///////
  ///////
|||||||||||| Ripple Out - Button Animation 
  ///////
  ///////
*/



@-webkit-keyframes ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.ripple-out:before {
  content: '';
  position: absolute;
  border: #cccccc solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.ripple-out:hover:before, .ripple-out:focus:before, .ripple-out:active:before {
  -webkit-animation-name: ripple-out;
  animation-name: ripple-out;
}



/* 
  ///////
  ///////
||||||||||||  Radial Out - Navigation Menu Widget Animations
  ///////
  ///////
*/



.radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: none;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ededed;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.radial-out:hover, .radial-out:focus, .radial-out:active {
  color: white;
}
.radial-out:hover:before, .radial-out:focus:before, .radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}



/* 
  ///////
  ///////
|||||||||||| What we offer boxes animation
  ///////
  ///////
*/



.pulldown {
  transform: scaleY(0.3);
  -webkit-transform: scaleY(0.3);
  transform-origin: top;
  -webkit-transform-origin: top;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  opacity: 0;
}

  .pulldown-container:hover .pulldown {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform-origin: top;
    -webkit-transform-origin: top;
    opacity: 1;
  }



/* 
  ///////
  ///////
|||||||||||| Lightbox Gallery Zoom Animation
  ///////
  ///////
*/



/*.SSSlideLink img {
	transform-origin: center;
	transition-duration: 0.5s;
}

  .SSSlideLink img:hover {
  	-webkit-transform: scale(1.3);
  	transform: scale(1.3);
    transform-origin: center;
  	-webkit-transform-origin: center;
    transition-duration: 0.5s;
  	-webkit-transition-duration: 0.5s;
  	opacity: 0.3;
  }*/



/* 
  ///////
  ///////
|||||||||||| Scrolling Animation
  ///////
  ///////
*/



/*.scroll {
	transform-origin: center;
}

.hide {
  visibility: hidden !important;
}

.show {
  visibility: visible !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;

  100% {
    opacity: 1;
  }
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	visibility: visible !important;
} */


/* 
  ///////
  ///////
|||||||||||| Thumbnail Gallery
  ///////
  ///////
*/


.work_container, .work_container * {
  transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
}

.work_container {
  overflow: hidden;
}

.work_caption_container {
  margin-top: 0px !important;
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute !important;
}

.work_container img, .work_caption h6 {
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
}
  .work_container:hover img {
    opacity: 0.03;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
  }

.work_caption h6, .work_caption p {
  transform: translateY(75%);
  -webkit-transform: translateY(75%);
  opacity: 0;
}

  .work_container:hover .work_caption h6, .work_container:hover .work_caption p {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    opacity: 1;
  } 

  .work_container:hover .work_caption p, .work_caption p {
    transition-delay: 0.15s;
    -webkit-transition-delay: 0.15s;
  }

  .work_container:hover .work_caption H6 {
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
  }

.work_caption_container .work_caption_line {
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: center;
  -webkit-transform-origin: center;
  opacity: 0;
}
  .work_container:hover .work_caption_container .work_caption_line {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition-delay: 0.35s;
    -webkit-transition-delay: 0.35s;
    opacity: 1;
  }


/* 
  ///////
  ///////
|||||||||||| Mobile Navigation
  ///////
  ///////
*/


.Side-Menu {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  height: 100% !important;
  width: 100% !important;
  left: 100% !important;
}

.Side-Menu-to-left {
  transform: translate3d(-100%,0,0);
  -webkit-transform: translate3d(-100%,0,0);
}

.Side-Menu-to-right {
  transform: translate3d(100%,0,0);
  -webkit-transform: translate3d(100%,0,0);
}

.Side-Menu-Btn, .Side-Menu-Close {
  cursor: pointer;
}


/* 
  ///////
  ///////
|||||||||||| MenuBar Submenu animation
  ///////
  ///////
*/


.SubMenuView .MenuItemLabel {
  left: 30px !important;
}


/* 
  ///////
  ///////
|||||||||||| News
  ///////
  ///////
*/


.news_sidebar_container {
  overflow: hidden;
  height: 100vh !important;
  position: absolute !important;
}

.news_sidebar {
  overflow: auto;
}

.news_container * {
  transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
}
  .news_container:hover img {
    opacity: 0.2;
  }

.news_container p {
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: center;
  -webkit-transform-origin: center;
  }
  .news_container:hover p {
    transform: scale(1);
    -webkit-transform: scale(1);
  }