@charset "utf-8";
/* CSS Document */

/* Sticky-effect */
.sticky-box1 {
	width: 100%;
	float: left;
	margin: 0 0 0;
	position: absolute;
	top: 36px;
	right: 0;
	left: 0;
}

/* Square-effect */
.square-effect1 {
  background: #000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #000000 25%, #fa006f 50%, #fa338b 75%, #a1a4a7 100%);
  background: -webkit-linear-gradient(-45deg, #000000 0%, #000000 25%, #fa006f 50%, #fa338b 75%, #a1a4a7 100%);
  background: linear-gradient(135deg, #000000 0%, #000000 25%, #fa006f 50%, #fa338b 75%, #a1a4a7 100%);
  background-size: 400% 400%;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: .5s all;
}
.square-effect1 img {
	transition:transform 0.8s ease-in-out 0s;
}
.square-effect1:hover img {
	transform:scale(1.08);
	transition:all 1.5s ease 0s;
}
.square-effect1 .square-img {
  width: 100%; 
  float: left;
  position: relative;
  mix-blend-mode: screen;
}
.square-effect1:hover {
  background-position: 100% 100%;
}
/*map-color*/
.map-color {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* hover-effect-css */
.hovereffect {
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  background: #014991;
}
.hovereffect .overlay1 {
  position: absolute;
  overflow: hidden;
  width: 80%;
  left: 10%;
  bottom: 1%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}
.hovereffect:hover .overlay1 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.hovereffect:hover img {
	mix-blend-mode: multiply;
}
.hovereffect h3 {
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight:500;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}
.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h3 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {

}

@media screen and (min-width:481px) and (max-width:600px) {

}

@media screen and (min-width:601px) and (max-width:767px) {

}

@media screen and (min-width:768px) and (max-width:900px) {
.sticky-box1 { width:100%; margin:0 0 0; top:26.6%;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.sticky-box1 { width:100%; margin:0 0 0; top:26.6%;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {

}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
.square-effect1 {
	background: #fa006f;
}
.square-effect1 img {
	transition: transform 0.8s ease-in-out 0s;
}
.square-effect1:hover img {
	transform: scale(1.08);
	transition: all 1.5s ease 0s;
	opacity: 0.5;
}
}