.module-home-form {
  padding: 60px 0;
}
.module-home-form .container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}
.module-home-form .heading {
  text-align: center;
}
.module-home-form .heading .title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 5vw, 55px);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.module-home-form #gform_fields_2, .module-home-form #gform_fields_5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-areas: "item1 item2 item3 item4 item5" "wide wide wide wide wide" "wide2 wide2 wide2 wide2 wide2";
  gap: 20px;
}
@media (max-width: 991px) {
  .module-home-form #gform_fields_2, .module-home-form #gform_fields_5 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "item1" "item2" "item3" "item4" "item5" "wide" "wide2";
  }
}
.module-home-form #gform_fields_2 li:nth-child(1), .module-home-form #gform_fields_5 li:nth-child(1) {
  grid-area: item1;
}
.module-home-form #gform_fields_2 li:nth-child(2), .module-home-form #gform_fields_5 li:nth-child(2) {
  grid-area: item2;
}
.module-home-form #gform_fields_2 li:nth-child(3), .module-home-form #gform_fields_5 li:nth-child(3) {
  grid-area: item3;
}
.module-home-form #gform_fields_2 li:nth-child(4), .module-home-form #gform_fields_5 li:nth-child(4) {
  grid-area: item4;
}
.module-home-form #gform_fields_2 li:nth-child(5), .module-home-form #gform_fields_5 li:nth-child(5) {
  grid-area: item5;
}
.module-home-form #gform_fields_2 li:nth-child(6), .module-home-form #gform_fields_5 li:nth-child(6) {
  grid-area: wide;
}
.module-home-form #gform_fields_2 li:nth-child(7), .module-home-form #gform_fields_5 li:nth-child(7) {
  grid-area: wide2;
}
.module-home-form #gform_fields_2 li > .gfield_label, .module-home-form #gform_fields_5 li > .gfield_label {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.module-home-form #gform_fields_2 input[type=text],
.module-home-form #gform_fields_2 input[type=email],
.module-home-form #gform_fields_2 input[type=tel],
.module-home-form #gform_fields_2 select,
.module-home-form #gform_fields_2 textarea, .module-home-form #gform_fields_5 input[type=text],
.module-home-form #gform_fields_5 input[type=email],
.module-home-form #gform_fields_5 input[type=tel],
.module-home-form #gform_fields_5 select,
.module-home-form #gform_fields_5 textarea {
  height: 60px;
  padding: 0px 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.module-home-form #gform_fields_2 textarea, .module-home-form #gform_fields_5 textarea {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 20px 20px 0px 20px;
  height: 250px;
}
.module-home-form #gform_fields_2 .gchoice, .module-home-form #gform_fields_5 .gchoice {
  position: relative;
  padding-left: 40px !important;
  font-size: 16px;
  line-height: 24px;
}
.module-home-form #gform_fields_2 .gchoice label::before, .module-home-form #gform_fields_5 .gchoice label::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  left: 9px;
  top: 5px;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
  transition: all 100ms;
}
.module-home-form #gform_fields_2 .gchoice label::after, .module-home-form #gform_fields_5 .gchoice label::after {
  content: "";
  background: #E0E2EB;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.module-home-form #gform_fields_2 .gchoice input, .module-home-form #gform_fields_5 .gchoice input {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
  position: absolute;
  appearance: none;
  cursor: pointer;
  margin: 0 5px 0 0;
}
.module-home-form #gform_fields_2 .gchoice input:checked + label::before, .module-home-form #gform_fields_5 .gchoice input:checked + label::before {
  opacity: 1;
}
.module-home-form #gform_fields_2 .gchoice input:checked + label::after, .module-home-form #gform_fields_5 .gchoice input:checked + label::after {
  background: var(--primaryColor);
}
.module-home-form .gform_button {
  width: max-content;
  height: 71px;
  border: none;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondaryColor);
  transition: color 0.5s cubic-bezier(0.17, 0.66, 0.34, 0.98), background-color 0.5s cubic-bezier(0.17, 0.66, 0.34, 0.98);
  margin: 0 auto;
}
.module-home-form .gfield_description {
  display: block;
  font-family: "Lato", sans-serif;
  margin: 10px 0 0 0;
}
