@font-face {
  font-family: 'MainReg';
  src: local('MainReg'),
       url('../fonts/Unbounded-Regular.ttf') format("truetype");
}


html, body{
	padding: 0;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: url('../imgs/backgroundImg.png') no-repeat center center/cover, #003d4d;
	font-family: MainReg, sans-serif;
	overflow-x: hidden;
}

header{
	display: flex;
	margin: 10px auto 10px auto;
}

.logo{
	width: 350px;
}

footer{
	display: flex;
	justify-content: space-around;
	margin: 10px auto 10px auto;
	width: 100vw;
	align-items: baseline;
	flex-wrap: wrap;
}
footer .social{
	width: 25px;
	height: 25px;
	margin: 7px;

}

.body{
	min-height: 70vh;
}

.button1{
	border: 0;
	border-radius: 25px;
	padding: 12px 20px;
	font-size: 17px;
	background-color: #1a9fa6;
	color: white;
	font-weight: bolder;
	outline:0!important;
	-webkit-tap-highlight-color: transparent;
	font-family: MainReg, sans-serif;
}

input{
	border: #95aab2 1px solid;
	border-radius: 25px;
	background-color: #154856;
	color: white;
	outline: 0!important;
	font-size: 17px;
	padding: 12px 20px;
	font-family: MainReg, sans-serif;
}

.pointer{
	cursor: pointer;
}

.grecaptcha-badge {

display: none!important;

}


.m_modal {
	position: fixed; background-color: rgba(0, 0, 0, .8); z-index: 98; width: 100vw; height: 100vh; top: 0;
}
.modal-content{
	background-color: #0d1e25;
	color: white;
	border: #a0a8ac solid 1px;
	border-radius: 20px;
	text-align: center;
	width: 700px;
	max-width: 70vw;
}
.modal-content img{
	display: block;
	margin: auto auto 0 auto;
	position: relative;
  	top: 1.5rem;
	width: 225px;
}
.modal-content p{
	color: #cfd3d5;
	margin-top: 2px;
	line-height: 1.5;
}
.modal-content #infoTitle{
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 35px;
}
.modal-content button{
	width: 200px;
}