.modalOpen3 {
  display: inline-block;
  margin: 0.3em;
  padding: 0 0.2em;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #00a5a0;
  box-shadow: 0 5px 0 #008480;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  border-radius: 10px;
  border: none;
}

.modalOpen3:hover {
  box-shadow: none;
  transform: translateY(5px);
  cursor: pointer;
  }


.modal-btn3 {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  background-color: #00a5a0;
  box-shadow: 0 5px 0 #008480;
  text-align: center;
  text-decoration: none;
  width: 100px;
  height: 30px;
  line-height: 15px;
  border-radius: 40px;
  border: none;
}

.modal-btn3:hover {
  box-shadow: none;
  transform: translateY(5px);
  cursor: pointer;
  }



.modal3 {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.7);
	.modal-box {
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		max-width: 720px;
		text-align: center;
		text-decoration: none;
		background-color: #fff;
		padding: 20px;
		border-radius: 10px;
		animation-name: modalopen;
		animation-duration: 1s;
		}

	.modal-box p{
		margin-top: 1em;
		font-size: 1.6rem;
	}


	}//.modal-box



}//.modal

