.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc(100% - 2rem);
  height: 100%;
  max-width: 1068px;
}
@media (min-width: 768px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2.125rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}
@media (min-width: 1024px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    margin-left: 3rem;
    margin-right: 3rem;
    width: calc(100% - 6rem);
  }
}
@media (min-width: 1440px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 1288px;
  }
}

.spoke-grid {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .spoke-grid {
    grid-column: 1/span calc(var(--grid-content-base-tablet-span) + 3);
  }
}
@media (min-width: 1440px) {
  .spoke-grid {
    grid-column: var(--grid-content-start-on-desktop)/span calc(var(--grid-content-base-desktop-span) + 4);
  }
}
.spoke-grid .grid-container {
  --grid-content-base-desktop-span: 4;
}

.hubspot-form-section .hs-form .hs-form-field {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  gap: 6px;
  padding-bottom: 1rem;
}
.hubspot-form-section .hs-form .hs-form-field label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.hubspot-form-section .hs-form .hs-form-field .hs-error-msg {
  font-size: 14px;
  font-weight: unset;
  color: red;
}
.hubspot-form-section .hs-form .hs-form-field legend {
  font-size: 13px;
  line-height: 20px;
}
.hubspot-form-section .hs-form .hs-form-field .input {
  width: 100%;
}
.hubspot-form-section .hs-form .hs-form-field .input .hs-input,
.hubspot-form-section .hs-form .hs-form-field .input .hs-dropdown-container {
  width: 100%;
  max-width: 537px;
  height: 40px;
  -webkit-padding-start: 0.5rem;
          padding-inline-start: 0.5rem;
  -webkit-padding-end: 0.5rem;
          padding-inline-end: 0.5rem;
  font-size: 14px;
  font-weight: 500px;
  background: #fafafa;
  border: 1px solid #cccccc;
  border-radius: 6px;
}
.hubspot-form-section .hs-form .hs-form-field .input .hs-dropdown-container {
  position: relative;
}
.hubspot-form-section .hs-form .hs-form-field .input .hs-dropdown-container .dropdown-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  text-wrap: nowrap;
  overflow-y: hidden;
}
.hubspot-form-section .hs-form .hs-form-field .input .hs-dropdown-container .dropdown-arrow {
  height: 50%;
  color: black;
  position: absolute;
  right: 5px;
}
.hubspot-form-section .hs-form .hs-form-field .input .hs-dropdown-container .dropdown-list {
  position: absolute;
  left: 0;
  margin-top: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 0.375rem;
  background: #fafafa;
  z-index: 10;
}
.hubspot-form-section .hs-form .hs-form-field .input textarea.hs-input {
  height: 56px;
  padding-top: 0.375rem;
}
.hubspot-form-section .hs-form .hs-submit {
  padding: 10px;
  color: white;
  background: #3053ff;
  border: 1px solid #3053ff;
  border-radius: 0.375rem;
  display: inline-block;
}
.hubspot-form-section .hs-form .hs-submit .hs-button {
  font-size: 14px;
  font-weight: 600;
}

.hs_error_rollup {
  display: none !important;
}