@media only screen and (min-width: 2000px) {
  .heroSection {
   background-size: contain !important;   
  }
}

.heroSection.eventHero {
  background-color: #333444;
  background-position: right center;
  min-height: 500px;
  display: flex;
  align-items: center;
  width: 100%;
}
.heroSection.eventHero .container {
  width: 100%;
}
.heroSection.eventHero .heroHeadingBoxWrap {
  max-width: 380px;
}
.heroSection {
  background-size: cover;
  padding: 90px 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #2b2c32;
}
.heroSection .heroSecWrap {
  display: flex;
  align-items: center;
}
.heroSection .heroHeadingBox {
  width: 50%;
  color: #fff;
}
.heroHeadingBoxWrap {
  max-width: 580px;
}
.heroHeadingBoxWrap h6 {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}
.heroHeadingBoxWrap h1 {
  font-size: 46px;
  line-height: 54px;
  font-weight: 500;
}
.heroHeadingBoxWrap h1 span, .heroHeadingBoxWrap h6 span {
  color: #FCEC6B;
}
.heroHeadingBoxWrap p {
  margin: 24px 0;
  max-width: 500px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.heroSection .heroFormBox  {
  width: 50%;
}
.heroFormBox .heroFormBoxWrap {
  background-color: #CADCD5;
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  margin: 0 0 0 auto;
}
.heroFormBoxWrap .formHeading {
  color: #27282A;
  margin-bottom: 16px;
}
.formHeading h3 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 12px;
}
.formHeading p {
  color: #1B2424;
  font-size: 16px;
  line-height: 24px;
  max-width: 380px;
}
.heroBtn {
  display: flex;
  gap: 16px;
}
.heroFormBox form fieldset {
  margin-top: 12px; 
}
.heroFormBox form li {
  list-style: none;
}
.heroFormBox form .form-columns-1 .input .hs-input {
  width: 100% !important;
}
.heroFormBox form .form-columns-1 .input .hs-input[type="checkbox"] {
  width: auto !important;
  margin-right: 5px
}
.heroFormBox form label {
  font-size: 12px;
  line-height: 20px;
  color: #1B1B1B;
  margin-bottom: 6px;
  display: block;
}
.heroFormBox form label.hs-error-msg {
  color: #e10000;
}
.heroFormBox form .input input, .heroFormBox form .input select, .heroFormBox form .input textarea {
  padding: 12px 14px;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  box-sizing: border-box;
  width: 100% !important;
  height: 40px;
}
.heroFormBox form .hs_submit input[type="submit"] {
  background: #2a2b33;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 0 26px;
  text-align: center;
  width: 100%;
  box-shadow: none;
  outline: none;
  border: none;
  height: 40px;
  margin-top: 16px;
  cursor: pointer;
  -webkit-transition: opacity .45s cubic-bezier(.25,1,.33,1), transform .45s cubic-bezier(.25,1,.33,1), border-color .45s cubic-bezier(.25,1,.33,1), color .45s cubic-bezier(.25,1,.33,1), background-color .45s cubic-bezier(.25,1,.33,1), box-shadow .45s cubic-bezier(.25,1,.33,1);
  transition: opacity .45s cubic-bezier(.25,1,.33,1), transform .45s cubic-bezier(.25,1,.33,1), border-color .45s cubic-bezier(.25,1,.33,1), color .45s cubic-bezier(.25,1,.33,1), background-color .45s cubic-bezier(.25,1,.33,1), box-shadow .45s cubic-bezier(.25,1,.33,1);
}
.heroFormBox form .hs_submit input[type="submit"]:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16) !important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.heroFormBox form  .legal-consent-container {
  margin: 8px 0 20px;
}
.heroFormBox form  .legal-consent-container .hs-richtext {
      font-size: 12px;
}

.radioWrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radioOption {
  align-items: center;
  color: #333;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  position: relative;
}

.radioOption input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}  

.radioOption label {
  padding-left: 28px;
  position: relative;
  line-height: 20px;
  cursor: pointer;
}
.radioOption label::before {
  background: #fff;
  border: 2px solid #999;
  border-radius: 50%;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border-color .3s;
  width: 16px;
}

.radioOption input[type="radio"]:checked + label::before {
  border-color: #ffcd1c;
}

.radioOption label::after {
  background: #ffcd1c;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transition: opacity .2s;
  width: 12px;
}

.radioOption input[type="radio"]:checked + label::after {
  opacity: 1;
}

.radioOption input[type="radio"]:checked + label {
  color: #000;
}

@media only screen and (min-width: 991px) {
  .springIntoSaltboxHero .heroHeadingBoxWrap h1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 64px;
  }
}
@media only screen and (max-width: 1200px) {
  
}
@media only screen and (max-width: 991px) {
  .heroSection {
    padding: 64px 0;
  }
  .heroSection .heroSecWrap {
    flex-direction: column;
    gap: 40px;
  }  
  .heroSection .heroHeadingBox, .heroSection .heroFormBox {
    width: 100%;
  }
  .heroFormBox .heroFormBoxWrap {
    margin: 0 auto;
  }
  .heroSection.eventPlanners {
    padding-top: 148px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .heroSection.eventPlanners:before {
    background: linear-gradient(0deg, #2b2c32 70%, rgba(237, 221, 83, 0));
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;rgba(237, 221, 83, 0) 100%);
  }
  .heroSection.eventPlanners .heroSecWrap {
    position: relative;
  }
  .heroSection.eventPlanners .heroHeadingBoxWrap ul {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 680px) {
  .heroSection {
    padding: 48px 0;
  }
  .heroHeadingBoxWrap h6 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .heroHeadingBoxWrap h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .heroHeadingBoxWrap p {
    margin: 12px 0;
  }
  .heroFormBox form .input {
    margin-right: 0 !important;
  }
  .heroFormBox form fieldset .hs_lastname {
    margin-top: 12px !important;
  }
  .heroFormBox .heroFormBoxWrap {
    padding: 24px;
  }
  .formHeading p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .springIntoSaltboxHero {
    padding: 225px 0 40px 0;
  }
}

@media only screen and (max-width: 480px) {
  .heroSection.eventPlanners:before {
    background: linear-gradient(0deg, #2b2c32 85%, rgba(237, 221, 83, 0));
  }
  .heroFormBox form fieldset.form-columns-2 >div:first-child {
    margin-bottom: 12px;
  }
}