@charset "UTF-8";
/* CSS Document */

.box {
	border: 1px solid;
}
.box a {
    display: inline-block;
    background-color: #7399A4;
    color:white;
    padding: 15px;
    border-radius: 25px;
	font-size: 1.7em;
	width: 100px;
	text-align: center;
}
.modal {
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(154,154,154,0.70);
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
	z-index: 999999;
}
.contactForm {
    position: absolute;
    background: white;
    border-radius: 4px;
	max-width: 600px;
	width:85vw;
	padding-bottom: 20px;
}

.modal:target {
    visibility: visible;
    opacity: 1;
}
 
.box-close {
    position: absolute;
    top: 0;
	right:15px;
    color: #BABABA;
    text-decoration: none;
    font-size: 5em;
	font-weight: 700;
}

.button2{
	border-radius: 25px;
	background-color:#7399A4;
	color:white!important;
	line-height: 2em;
	padding:10px 30px;
	font-weight: 700;
}

@media screen and (max-width: 640px){
	.contactForm{
		max-width:330px;
	}
	.contactForm p{
		padding:0!important;
		margin-bottom: 5px;
}
}




