.projectMessage{

	height: 43vw;
	position: relative;
	margin-bottom: 6vw;

}
.projectMessage .green{

	width: 100%;
    height: 75%;
    bottom: 0;
    position: absolute;


}

.projectMessage .mes{

    right: 0;
    width: 30%;
    height: 80%;
    z-index: 99;
    position: absolute;

}
.projectMessage .mes .titleword{
	font-size: 20px;
	font-weight:bolder;



}

.projectMessage .mes .miaoshu{
	padding: 20px 0;
	color: #3f6d5c;

}
.projectMessage .mes .border-s{
  width: 10vw;
  border-bottom:thin solid #ccc;
  display: none;

}
.projectMessage .img{
	box-shadow: 1px 1px 5px #3a3a3a;
	width: 65%;
	position: absolute;


}


.cards {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 18px;
	padding-bottom: 22vh;
  }

  .card {
	transition: 0.3s;
	background: #fff;
	color: hsl(233, 13%, 49%);
	border-radius: 0.8rem;
  }
  .cards .card:hover {
	background: linear-gradient(135deg, rgb(113 181 150) 0%, rgb(88 148 123) 100% );
	color: #fff;
	display: flex;
	align-items: center;
	transform: scale(1.1);
	z-index: 1;
  }
  .cards ul {
	margin: 2.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
  }
  .cards ul li {
	list-style-type: none;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 1rem 0;
  }
  .cards ul li.price {
	font-size: 3rem;
	color: hsl(232, 13%, 33%);
	padding-bottom: 2rem;
  }
  .cards .shadow {

  }

  .cards .card:hover .price {
	color: #fff;
  }

  .cards .btn {
	margin-top: 1rem;
	height: 2.6rem;
	width: 13.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background: linear-gradient(135deg, rgb(113 181 150) 0%, rgb(88 148 123) 100% );
	color: #fff;
	outline: none;
	border: 0;
	font-weight: bold;
  }
  .cards .active-btn {
	background: #fff;
	color: hsl(237, 63%, 64%);
  }
  .cards .bottom-bar {
	border-bottom: 2px solid hsla(240, 8%, 85%, 0.582);
  }
  .cards .card:hover .bottom-bar {
	border-bottom: 2px solid hsla(240, 8%, 85%, 0.253);
  }
  .cards .pack {
	font-size: 2rem;
  }

  @media (max-width: 280px) {
	.cards ul {
	  margin: 1rem;
	}
	.cards h1 {
	  font-size: 1.2rem;
	}
	.cards .toggle {
	  display: flex;
	  flex-direction: column;
	  justify-content: space-around;
	  align-items: center;
	  height: 80px;
	}
	.cards .cards {
	  margin: 0;
	  display: flex;
	  flex-direction: column;
	}

	.cards .card {
	  transform: scale(0.8);
	  margin-bottom: 1rem;
	}
	.cards .cards .card:hover {
	  transform: scale(0.8);
	}
  }

  @media (min-width: 280px) and (max-width: 320px) {
	.cards ul {
	  margin: 20px;
	}
	.cards {
	  display: flex;
	  flex-direction: column;
	}
	.card {
	  margin-bottom: 1rem;
	}
	.cards .card:hover {
	  transform: scale(1);
	}
  }

  @media (min-width: 320px) and (max-width: 414px) {
	.cards {
	  display: flex;
	  flex-direction: column;
	}
	.card {
	  margin-bottom: 1rem;
	}
	.cards .card:hover {
	  transform: scale(1);
	}
  }
  @media (min-width: 414px) and (max-width: 768px) {
	.card {
	  margin-bottom: 1rem;
	  margin-right: 1rem;
	}
	.cards .card:hover {
	  transform: scale(1);
	}
  }
  @media (min-width: 768px) and (max-width: 1046px) {
	.cards {
	  display: flex;
	}
	.card {
	  margin-bottom: 1rem;
	  margin-right: 1rem;
	}
	.cards .card:hover {
	  transform: scale(1);
	}
}

/* =============================================== */




.ia-container {
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.08);
	/* border: 3px solid rgba(255,255,255,0.6); */
}

.ia-container figure {
    position: absolute;
	top: 0;
	left: 50px; /* width of visible piece */
	width: 700px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ia-container > figure {
    position: relative;
	left: 0 !important;
}

.ia-container img {
	display: block;
	width: 100%;
}

.ia-container input {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px; /* just cover visible part */
	height: 100%;
	cursor: pointer;
	border: 0;
	padding: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
	z-index: 100;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.ia-container input:checked{
	width: 5px;
	left: auto;
	right: 0px;
}
.ia-container input:checked ~ figure {
	-webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
	left: 700px;
}

.ia-container figcaption {
	width: 100%;
	height: 100%;
	background: rgba(87, 73, 81, 0.1);
	position: absolute;
	top: 0px;
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ia-container figcaption span {
	position: absolute;
	top: 40%;
	margin-top: -30px;
	right: 20px;
	left: 20px;
	overflow: hidden;
	text-align: center;
	background: rgba(87, 73, 81, 0.3);
	line-height: 20px;
	font-size: 18px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 700;
	padding: 20px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.ia-container input:checked + figcaption,
.ia-container input:checked:hover + figcaption{
	background: rgba(87, 73, 81, 0);
}

.ia-container input:checked + figcaption span {
	-webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;

	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
    filter: alpha(opacity=99);
	opacity: 1;

	top: 50%;
}

.ia-container #ia-selector-last:checked + figcaption span {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.ia-container input:hover + figcaption {
	background: rgba(87, 73, 81, 0.03);
}

.ia-container input:checked ~ figure input{
    z-index: 1;
}

@media screen and (max-width: 720px) {
    .ia-container {
		width: 540px;
	}

	.ia-container figure {
		left: 40px;
		width: 260px;
	}

	.ia-container input {
		width: 40px;
	}

	.ia-container input:checked ~ figure {
		left: 260px;
	}

	.ia-container figcaption span {
		font-size: 16px;
	}
}

@media screen and (max-width: 520px) {
    .ia-container {
		width: 320px;
	}

	.ia-container figure {
		left: 20px;
		width: 180px;
	}

	.ia-container input {
		width: 20px;
	}

	.ia-container input:checked ~ figure {
		left: 180px;
	}

	.ia-container figcaption span {
		font-size: 12px;
		letter-spacing: 2px;
		padding: 10px;
		margin-top: -20px;
	}

}
