.containers {
    width: 1140px;
    height: 400px;
    margin: auto;
    position: relative;
}

.content {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.info{
	position: absolute;
	left: 0;
}
.info p {
    color: #222222;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 26px;
    font-family: 'auto';
}
.info span {
    display: block;
    position: relative;
    padding-left: 25px;
    margin: 20px 0;
    color: #222222;
    font-family: 'dejavu_sansbook';
}
.info span i {
    position: absolute;
    left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #70c04f;
}
.form-block {
    width: 480px;
    height: 390px;
    background-color: #fff;
    box-shadow: 0 0 45px 0 rgb(0 0 0 / 15%);
    padding: 25px 15px;
    position: absolute;
    right: 0;
    float: right;
   
}

.form-block input {
    width: 410px;
    height: 30px;
    padding: 11px 55px 11px 10px;
    border-radius: 5px;
    background-color: #eee;
    border: none;
    font-size: 13px;
    color: #1e1f21;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 15px;
}
.form-block input:focus {
    box-shadow: 0 0 0 2px #000;
    border-radius: 2px;
}
.form-block textarea {
     width: 410px;
    height: 120px;
    padding: 11px 55px 11px 10px;
    background-color: #eee;
    border: none;
    font-size: 13px;
    color: #1e1f21;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 20px;
    resize: vertical;
}
.form-block textarea:focus {
    box-shadow: 0 0 0 2px #000;
    border-radius: 2px;
}
.form-block button{
    width: 97%;
    height: 40px;
    color: #fff;
    background-color: #70c04f;
    border: 1px solid #70c04f;
    cursor: pointer;
    margin-left: 1%;
    margin-top: 5px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'bpg_nino_medium_capsregular';
    font-weight: bold;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.form-block button:hover{
   background-color: transparent;
   color: #000;
}
.recaptcha{
	margin-top: -20px;
}
::placeholder {
  color: #4d4d4d;
  font-size: 13px;
  font-family: 'bpg_nino_medium_capsregular';
  font-weight: bold;
}