/*modal box css Start*/
.h-cstm-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  overflow-y: auto;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 9999999;
}
.h-cstm-modal-content {
  background-color: white;
  padding: 2rem 2.5rem;
  width: calc(100% - 30px);
  max-width: 600px;
  margin: 30px auto 30px;
  position: relative;
}
.h-cstm-modal-content .h-close-button {
  float: right;
  /* width: 1.5rem; */
  font-size: 1.8em;
  line-height: 0.5;
  padding: 0 .2em .15em;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: var(--clr-neutral);
  color: var(--clr-dark);
  transition: color 0.12s ease-in-out;
  position: absolute;
  top: 7px;
  right: 7px;
}
.h-cstm-modal .h-cstm-form .form-title{
  display: none !important;
}
.h-cstm-modal .h-cstm-form .hs-form label {
  color: #1c3534;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.h-cstm-modal .h-cstm-form .hs-input, .h-cstm-modal .h-cstm-form select {
  background-color: #fff;
  border: 1px solid #1c3534;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 100% !important;
  color: #1c3534;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 8px;
}
.h-cstm-modal .h-cstm-form .button--primary, .h-cstm-modal .h-cstm-form .hs-button {
  background-color: #cfff00;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
  color: #1c3534!important;
  font-family: Montserrat;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  padding: 15px 25px;
  text-transform: none;
}
.h-cstm-modal .h-cstm-form .actions{
  text-align: center;
}
.h-cstm-modal .h-cstm-form .form-columns-2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.h-cstm-modal .h-cstm-form .form-columns-2 > div{
  width: calc(100% / 2 - 10px) !important;
}
.h-cstm-modal form.hs-form fieldset .hs-form-field{
  padding: 0;
}
.h-cstm-modal-content .h-close-button:hover {
  color: var(--clr-main);
}
.h-cstm-modal.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.h-cstm-modal-content .hs-main-font-element p br {
  display: none !important;
}
.h-open-modal {
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  -moz-transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  background: rgb(207,255,0);
  border-radius: 6px;
  border-width: 0px;
  color: rgb(255,255,255);
  font-family: sans-serif;
  height: auto;
  transition: all .4s ease;
  padding: 7px 25px;
  text-shadow: none;
  width: auto;
  font-size: 24px;
  line-height: 1.5em;
  border-radius: 0;
/*   padding-bottom: 4px; */
  background-color: #cfff00 !important;
  color: #1c3534;
/*   height: 30px; */
  font-size: 17px;
  font-weight: 600;
}

#override_cta {
  display: none;
}

@media (min-width: 992px) and (max-width: 1360px) {
  .h-open-modal {
    font-size: 14px;
  }
}


/*modal box css End*/

@media (max-width: 575px){
  .h-cstm-modal-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 450px){
  .h-cstm-modal .h-cstm-form .form-columns-2 > div {
    width: calc(100% / 1) !important;
  }
}



/* CUSTOM HEADER */
@media (min-width: 1040px) {
  #hhs-main-nav .hhs-nav-grid {
    justify-content: space-between;
    position: relative;
  }

  #hhs-main-nav .hhs-nav-grid__logo, #hhs-main-nav .hhs-nav-grid__extras {
    position: absolute;
  }

  #hhs-main-nav .hhs-nav-grid__extras {
    right: 0;
  }

  #hhs-main-nav .hhs-nav-grid__menu {
    margin-left: auto;
  }
}