.fullWidth {
  margin-left: -2.25vw;
  margin-right: -2.25vw;
}
@media (max-width: 1080px) {
  .fullWidth {
    margin-left: -2.963vw;
    margin-right: -2.963vw;
  }
}
@media (max-width: 580px) {
  .fullWidth {
    margin-left: -6.897vw;
    margin-right: -6.897vw;
  }
}
.contactFormBlock {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  -webkit-transform: translate(0, 12.5vw);
  -moz-transform: translate(0, 12.5vw);
  -o-transform: translate(0, 12.5vw);
  -ms-transform: translate(0, 12.5vw);
  transform: translate(0, 12.5vw);
}
.contactFormBlock.inView {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: opacity 0.6s 0.3s, transform 1s 0s;
  -moz-transition: opacity 0.6s 0.3s, transform 1s 0s;
  -ms-transition: opacity 0.6s 0.3s, transform 1s 0s;
  -o-transition: opacity 0.6s 0.3s, transform 1s 0s;
  transition: opacity 0.6s 0.3s, transform 1s 0s;
}
.contactFormBlock .col {
  display: inline-block;
  width: calc((6.8125vw * 6) + (1.25vw * 5));
}
.contactFormBlock .col.right {
  margin: auto;
  width: calc((6.8125vw * 4) + (1.25vw * 3));
}
.contactFormBlock .col.right .formTitle {
  display: none;
}
.contactFormBlock .imageWrapper {
  position: relative;
  width: calc((6.8125vw * 6) + (1.25vw * 5));
  height: 100%;
}
.contactFormBlock .imageWrapper .innerImage {
  padding-bottom: 119.23076923%;
  height: 0;
  width: 100%;
}
.contactFormBlock .imageWrapper .innerImage img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media all and (max-width: 1080px) {
  .contactFormBlock {
    grid-template-columns: 1fr;
  }
  .contactFormBlock .col {
    width: unset;
  }
  .contactFormBlock .col.left {
    display: none;
  }
  .contactFormBlock .col.right {
    width: 100%;
  }
}
