

/* -Шалом- */

.contact_row{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
}

.contact_row h2{
  margin-bottom: 30px;
  font-weight: 500;
}

.contact_col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contact_block {
    width: 310px;
    height: 160px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #E1EAF9;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    margin: 0px 25px 25px 0px;
}

.contact_block p{
  color: #E2E6ED;
  font-size: 16px;
  margin-bottom: 30px;
}

.contact_block h3 {
    color: #303844;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 5px;
}

.contact_block h4 {
    color: #303844;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact_block h5{
  color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
  font-size: 14px;
  margin-bottom: 30px;
}

.form_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 30px 0px;
    justify-content: space-between;
}

.form_text{
  width: 50%;
  display: flex;
  flex-direction: column;
}

.form_text h4{
  color: #989CA2;
}

.form_text p{
  color: #989CA2;
}

.ft_row{
  display: flex;
  width: 100%;
  flex-direction: row;
  margin: 20px 0px;
}

.ft_icon {
    width: 75px;
    height: 75px;
    display: flex;
    background: #F5F7FA;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    cursor: pointer;
}

.ft_icon img{
  width: 40px;
  height: 40px;
}

.form{
  width: 50%;
  max-width: 485px;
  height: 450px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 25px;
  background: #F5F7FA;
  border-radius: 20px;
}

.fi_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.all_btn{
  max-width: 100%;
  width: 100%;
  height: 65px;
  margin-bottom: 25px;
}

@media (max-width: 1200px){

.form_row {
    flex-direction: column;
}

.form_text {
    margin-bottom: 30px;
}

.form {
    width: 100%;
}

}


@media (max-width: 990px){




}


@media (max-width: 550px){

.form_text {
    width: 100%;
}

.form {
    width: 100%;
    height: auto;
    padding: 15px;
}

.fi_row {
    flex-direction: column;
}

}











































