@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
body {
    background: #000;
    margin: 0;
	font-family: 'Poppins', sans-serif;
}
.container {
    width: 100%;
    text-align: center;
    height: 92vh;
    display: flex;
	justify-content: center;
}
.inner-block {
    display: flex;
    align-items: center;
    margin: auto 0;
    flex-direction: column;
	padding:30px;
}
img.logo {
    width: 80%;
}
a.btn {
    padding: 16px 50px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid #fff;
    border-radius: 30px;
	animation: 1s ease-out 0s 1 slideInFromLeft;
	margin-top:40px;
}
.footer {
    width: 100%;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 12px;
    font-weight:400;
}
.inner-footer {
    padding: 10px;
}
.container-contact img.logo {
    width: 40%;
	margin-bottom:20px;
}
.container-contact {
    max-width: 600px;
    margin: 0 auto;
	text-align:center;
}
.inner-block-contact {
    padding: 20px;
}
.mb-3 {
    margin-bottom: 15px;
}
.contact-form label {
    color: #fff;
    width: 100%;
    float: left;
	margin-bottom: 5px;
}
.contact-form input {
    width: 85%;
    padding: 20px 12px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 30px;
	color:#fff;
	font-family: 'Poppins', sans-serif;
}
.contact-form textarea {
    background: #000;
    border: 2px solid #fff;
    border-radius: 30px;
    width: 85%;
    height: 120px;
	padding: 20px 12px;
	color: #fff;
	font-family: 'Poppins', sans-serif;
}
.g-recaptcha {
    display: inline-block;
}
h2 {
    font-size: 3vw;
    color: #fff;
}
@keyframes slideInFromLeft {
  100% {
    transform: translateY(0%);
  }
  0% {
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 1024px) {
img.logo {
    width: 100%;
}
.container-contact img.logo {
    width: 80%;
}
}
@media only screen and (max-width: 767px) {
img.logo {
    width: 100%;
}
}