/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
@import url('https://rsms.me/inter/inter-ui.css');

/****************************************/
/* HubSpot Style Boilerplate            */
/****************************************/

/* These includes are optional, but helpful. */



/*****************************************/
/* Start your style declarations here    */
/*****************************************/

html,
body {
  height: 100%;
  line-height: 1.5;
  font-family: 'Inter UI', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1 {
	font-weight: 900;
	font-size: 42px;
    line-height: 1.25;
    margin: 0 0 .3em 0;
    letter-spacing: -0.02em;
}
@media (max-width: 920px) {
	h1 {
		font-size: 32px;
	}
}
p {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
}
@media (min-width: 920px) {
  p {
		font-size: 16px;
	}
}
.subHeading {
	font-size: 16px;
  margin-top: 0;
}
@media (min-width: 920px) {
  .subHeading {
    font-size: 18px;
  }
}

.videoWrap {
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 0 24px 42px -16px rgba(0, 0, 0, 0.6), 0 -2px 12px 1px rgba(26, 27, 31, 0.1);
	box-shadow: 0 24px 42px -16px rgba(0, 0, 0, 0.6), 0 -2px 12px 1px rgba(26, 27, 31, 0.1);
	max-width: 600px;
	margin: 2.25em auto;
}
.mobileLogo {
  background-color: white;
  display: flex;
  justify-content: space-between;
  position: fixed;
/*   position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  padding: .8em 0;
  border-bottom: 1px solid #dcdcdc;
}
@media (min-width: 920px) {
  .mobileLogo {
		position: relative;
    display: block;
		padding: 0 0 .5em 0;
    border-bottom: 0;
	}
}
.mobileLogo img {
	width: 80%;
	max-width: 150px;
	margin: 0 0 0 .5rem;
}
@media (min-width: 920px) {
  .mobileLogo img {
    max-width: 190px;
    margin: 0;
  }
}
.mobileLogo a {
    font-size:  12px;
    text-transform: uppercase;
    text-decoration:  none;
    font-weight:  900;
    color: #CE4B28 !important;
    border: 2px solid #CE4B28;
    border-radius: 2px;
    padding: 4px 6px;
    margin-right: .5rem;
}
@media (min-width: 920px) {
  .mobileLogo a {
    display: none;
  }
}
.formWrap {
  max-width: 500px;
  margin: 2em auto;
}



.pageWrap {
  height: 100vh;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
main {
  -o-box-flex: 1;
  box-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
@media (max-width: 920px) {
  main {
    -o-box-orient: vertical;
    flex-direction: column;
  }
}
.splitPane--left,
.splitPane--right {
  overflow-y: scroll;
  text-align: center;
}
@media (max-width: 920px) {
	.splitPane--left,
	.splitPane--right {
		overflow-y: visible;
	}
}
.splitPane--left {
  -o-box-flex: 1.3;
  box-flex: 1.3;
  flex: 1.3;
  background: linear-gradient(to top, #1F80CE, #094e86);
  color: white;
  padding: 5em 1em 1.5em;
}
@media (min-width: 920px) {
	.splitPane--left {
    padding: 2.25em;
	}
}
.splitPane--right {
  -o-box-flex: 1;
  box-flex: 1;
  flex: 1;
  padding: 1.5em 1em;
}
@media (min-width: 920px) {
	.splitPane--right {
    padding: 2.25em;
	}
}




/* Form Styling */
      /* All HubSpot Forms
   ========================================================================== */
.hs-form {
/*   text-align: left; */
}

/* Form Field (selector for form field wrapper) */
.hs-form .hs-form-field {
  text-align: left;
}
.hs-form .hs-form-field + .hs-form-field,
.hs-form .hs-dependent-field + .hs-form-field {
  margin-top: 12px;
}

/* Descriptions (targets class applied to Help Text divs) */
.hs-form .hs-field-desc {}

/* Labels (selects field labels and error messages) */
.hs-form label {
  padding-bottom: 0;
  font-size: 14px;
  text-align: left;
}
.hs-form .hs-form-field > label {}

/* Inputs (selectors for all inputs)  */
.hs-form input[type="text"],
.hs-form input[type="password"],
.hs-form input[type="datetime"],
.hs-form input[type="datetime-local"],
.hs-form input[type="date"],
.hs-form input[type="month"],
.hs-form input[type="time"],
.hs-form input[type="week"],
.hs-form input[type="number"],
.hs-form input[type="email"],
.hs-form input[type="url"],
.hs-form input[type="search"],
.hs-form input[type="tel"],
.hs-form input[type="color"],
.hs-form input[type="file"],
.hs-form textarea,
.hs-form select {
  margin: 6px 0;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #aeaeae;
}

/* Inputs in focus (selectors for all inputs when clicked)  */
.hs-form input[type="text"]:focus,
.hs-form input[type="password"]:focus,
.hs-form input[type="datetime"]:focus,
.hs-form input[type="datetime-local"]:focus,
.hs-form input[type="date"]:focus,
.hs-form input[type="month"]:focus,
.hs-form input[type="time"]:focus,
.hs-form input[type="week"]:focus,
.hs-form input[type="number"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="url"]:focus,
.hs-form input[type="search"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form input[type="color"]:focus,
.hs-form input[type="file"]:focus,
.hs-form textarea:focus,
.hs-form select:focus {
	outline: 0;
}

/* Multi-line inputs (selectors to target multi-line fields */
.hs-form textarea {}
.hs-form textarea:focus {}

/* Dropdowns (selectors for dropdowns) */
.hs-form select {}
.hs-form select:focus {}
.hs-form select {
    width: 100%;
    border: 1px solid #aeaeae;
    /*border-radius: 2px;*/
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    /* Hide arrow on FF */
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    padding: 4px 10px;
    /* You can style text of the active select option */
    font-size: 16px;
    font-weight: normal;
    height:initial;
  }
.hs-form select {
    width: 100%;
    max-width: 100%;
    margin: 6px 0;
    overflow: hidden;
    border-radius: 4px !important;
    /* <svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><path d="M4.33 8.5L0 1L8.66 1z" fill="#666"/></svg> */
    background: #fff url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%3E%3Cpath%20d%3D%22M4.33%208.5L0%201L8.66%201z%22%20fill%3D%22%23666%22%2F%3E%3C%2Fsvg%3E') right 10px center no-repeat;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
  }
  .hs-form select:hover {
    /* <svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><path d="M4.33 8.5L0 1L8.66 1z" fill="#666"/></svg> */
    background: white url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%3E%3Cpath%20d%3D%22M4.33%208.5L0%201L8.66%201z%22%20fill%3D%22%23666%22%2F%3E%3C%2Fsvg%3E') right 10px center no-repeat;
    border-color: rgba(81, 203, 238, 1);
  }

  /* Hide arrow on IE10*/
  .hs-form select::-ms-expand {
    display: none;
  }
  .StandardForm-select optgroup {
    color: inherit;
    font: inherit;
  }
  /* IE9: To hide select arrow we make the select overflow on the right side there is not another way :( */
  @media screen and (min-width:0\0) {
    .StandardForm-select select {
      width: calc( 100% + 58px );
    }
  }




/* Multi-select (selectors for multi-select fields) */
.hs-form form.hs-form .hs-form-field ul.inputs-list {}

.hs-form form.hs-form .hs-form-field ul.inputs-list li input {}
.hs-form input[type="radio"] {}
.hs-form input[type="checkbox"] {}

/* Required (selectors for fields, when they do not pass validation) */
.hs-form input:focus:required:invalid,
.hs-form textarea:focus:required:invalid,
.hs-form select:focus:required:invalid {
  border: 1px rgb(255, 135, 135) solid !important;
}

.hs-form input:focus:required:invalid:focus,
.hs-form textarea:focus:required:invalid:focus,
.hs-form select:focus:required:invalid:focus {
  border: 1px rgb(255, 135, 135) solid !important;
}

/* Error message (selector for validation messages) */
.hs-form .hs-error-msgs label{
  color: rgb(255, 135, 135);
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  padding-top: 0;
}

/* Placeholder Text (styles the placeholder attribute text) */
::-webkit-input-placeholder { /* Webkit Browsers */}
:-moz-placeholder { /* Firefox 18- */}
::-moz-placeholder { /* Firefox 19+ */}
:-ms-input-placeholder { /* IE10 */}

/* Multi Column Form (selectors for fieldsets and field wrappers)
   ========================================================================== */

.hs-form .hs-form fieldset.form-columns-1 {}
.hs-form .hs-form fieldset.form-columns-1 .hs-form-field {}

.hs-form .hs-form fieldset.form-columns-2 {}
.hs-form .hs-form fieldset.form-columns-2 .hs-form-field {}

.hs-form .hs-form fieldset.form-columns-3 {}
.hs-form .hs-form fieldset.form-columns-3 .hs-form-field {}

/* Submit buttons (selectors for all non-CTA buttons)
   ========================================================================== */

input.hs-button.primary,
body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
  margin-top: 30px;
  background-color: #3acfa7;
    padding: 15px 20px;
    border-radius: 4px;
    text-transform: inherit;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid transparent;
    display: inline-block;
    -webkit-transition: ease all .25s;
    transition: ease all .25s;
    text-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.15), 0 0 1px 0 rgba(26, 27, 31, 0.05);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.15), 0 0 1px 0 rgba(26, 27, 31, 0.05);
  	text-decoration: none;
}


input.hs-button.primary:hover,
body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
  opacity: .8;
}

body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {}


/*ADDITIONAL CSS ADDED FOR SR IMPLEMENTATION*/
.hs-form-required {
  color: rgb(255, 135, 135);
  padding-left: 2px;
}
.hs_error_rollup {
  padding: 15px;
  margin: 25px 0 0;
  background-color: #f1f1f1;
  /*border: 1px solid #dcdcdc;*/
  border-radius: 2px;
}
.hs_error_rollup label {
    font-size: 14px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    text-align: center;
  }
  ul.hs-error-msgs.inputs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
