.consultation {
  width: 100%;
  padding: 40px 15px 120px;
}

.consultation .container {
  position: relative;
  padding: 40px 60px 45px 60px;
  display: flex;
  border-radius: 20px;
  background: var(--Gray);
  max-width: 1200px;
  justify-content: space-between;
  gap: 30px;
}

.consultation_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 490px);
  gap: 11px;
  height: min-content;
  margin: 40px 0;
  max-width: 564px;
}

.consultation_messengers {
  display: flex;
  gap: 20px;
  align-items: center;
}

.consultation_messengers a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition-duration: .5s;
}

.consultation_messengers a:hover {
  opacity: .5;
  transform: scale(0.93);
}

.consultation_title {
  color: var(--Dark-blue);
 font-size: clamp(
  24px,
  calc(24px + 2 * ((100vw - 375px) / (1920 - 375))),
  26px
);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 140%;
}

.consultation_title span {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 140%;
  text-transform: none;
  font-weight: 400;
}

.consultation_desc {
  font-size: calc(18px + 2 * ((100vw - 375px) / (1920 - 375)));
  font-weight: 400;
  line-height: 140%;
}

.consultation_desc span {
  color: var(--Dark-blue);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 130%;
}

.consultation img {
  position: absolute;
  bottom: 0;
  border-radius: 0  0 20px 20px;
  right: 0;
}

@media (max-width: 1200px) {

  .consultation .container {
    padding: 50px 30px;
  }

  .consultation_content {
    width: calc(100% - 350px);
  }

  .consultation img {

    object-position: bottom center;
    max-height: 145px;
  }

  .consultation .block_form {
    max-width: 350px;
  }
}


/*.consultation_content{*/
/*  padding: 0 15px 20px;*/
/*  border-radius: 0 0 20px 20px ;*/
/*  z-index: 2;*/
/*  background: var(--Gray);*/
/*}*/
@media (max-width: 992px) {
  .consultation {
    padding: 0 15px;
    margin: 80px 0;
  }

  .consultation .container {
    padding: 60px 20px;
  }

  .consultation_content {
    width: calc(100% - 300px);
  }

}

@media (max-width: 768px) {
  .consultation_content {
    width: 100%;
    margin: 0;
  }
  .consultation .container {
  align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .consultation img {

    object-position: bottom center;
    max-height: 170px;
  }

  .consultation_btn {
    max-width: 450px;
    width: 100%;
    justify-content: center;
  }
}