@charset "UTF-8";
/* CSS Document */
/*CUSTOM CSS*/
body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.header{
	text-align: center;
	margin: 0 auto;
	padding-top: 1em;
}
.profile{
	width: 8em;
	height: 8em;
	border-radius: 50%;
	margin-top: 1em;
}
h1{
	margin-top: 0.1em;
	font-family: "Degular-Variable", sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #0161fe;
}
h2{
	font-family: "Inter Tight", sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #0161fe;
}
.contacts-buttons{
	display: block;
}
.contacts-buttons a{
	display: block;
	text-decoration: none;
	color: #0161fe;
	font-family: "Inter Tight", sans-serif;
	font-size: 21px;
	font-weight: 500;
	margin: 0.5em 0; 
	border: 3px solid #0161fe;
	border-radius: 30px;
	padding: 0.5em 0;
}
.contacts-buttons a:hover{
	background-color: #0161fe;
	color: #fff;
}
.contacts-buttons a:hover .contact-img {
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease-in-out;
  }
.focus{
	color: #fff !important;
	border-color: #0161fe;
	background-color: #0161fe;
}
.focus:hover{
	border-color: #2a30ab;
	background-color: #2a30ab !important;
	transition: 0.3s ease-in-out;
}
.contact-img{
	width: 1.25em;
	margin-right: 0.5em;
}
.vat{
	color: #0161fe !important;
	font-family: "Inter Tight", sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin: 2em 0;
}
.logo-bottom{
	margin-bottom: 2em;
	text-align: center;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.logo-bottom img{
	width: 50%;
	margin-bottom: 2em;
}
@media screen and (max-width: 768px)
{
	.space{
		padding: 0 0.5em;
	}
	h1{
		font-size: 48px;
		margin-top: 0.25em;
	}
	.contacts-buttons a{
		font-size: 18px;
	}
	.logo-bottom img{
		width: 90%;
		margin-bottom: 2em;
	}
}