:root {
  --roboto: 'Roboto', sans-serif;
  --inter: 'Inter', sans-serif;
  --white: #fff;
  --lightgrey: #EEF1F5;
  --orange: #ff5a02;
  --yellow: #ffd700;
  --mint: #b5e3d8;
  --pink: #f5cabf;
  --blue: #6996cc;
  --navy: #0c2340;
  --black: #000;
  --green: #46b99d;
}

html {
  font-size: 18px;
}

body {
    margin: 0;
}

body * {
    box-sizing: border-box;
}

body, p, li, div {
  color: var(--navy);
  font-family: var(--roboto);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-family: var(--inter);
  font-weight: 600;
}

p {
  line-height: 30px;
}

.font-light li, .font-light li, .font-light h1, .font-light h2, .font-light h3, .font-light h4, .font-light h5, .font-light h6, .font-light div, .font-light, .font-light span {
    color: var(--white);
}

.hs-inline-edit p, .hs-inline-edit span {
    font-size: 14px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
   margin-top: 0;
}

h3, h4, h5 {
  font-size: 1.4rem;
}

h6 {
  font-weight: 300
  font-size: 0.5rem;
}

.white-bg {
  background: var(--white);
}

.lightgrey-bg {
  background: var(--lightgrey);
}

.orange-bg {
  background: var(--orange);
}

.yellow-bg {
  background: var(--yellow);
}

.mint-bg {
  background: var(--mint);
}

.pink-bg {
  background: var(--pink);
}

.blue-bg {
  background: var(--blue);
}

.navy-bg {
  background: var(--navy);
}

.black-bg {
  background: var(--black);
}

.text-center {
  text-align: center;
}

.container {
    max-width: 1440px;
    padding: 0 2.4rem;
    margin: 0 auto;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.cta_button {
    display: inline-block;
    color: var(--white);
    background: var(--navy);
    font-weight: bold;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 0.4rem;
    margin-top: 2rem; 
    transition: .4s ease;
    border: solid 2px var(--navy);
}

.cta_button:hover {
    background: transparent;
    border: solid 2px var(--navy);
    color: var(--navy);
}

.cta-bg--orange .cta_button {
    background: var(--orange);
    border: solid 2px var(--orange);
}

.cta-bg--orange .cta_button:hover {
    color: var(--orange);
    border: solid 2px var(--orange);
    background: transparent;
}

.cta-bg--green .cta_button {
    background: var(--green);
    border: solid 2px var(--green);
}

.cta-bg--green .cta_button:hover {
    color: var(--green);
    border: solid 2px var(--green);
    background: transparent;
}

.navy-bg .cta-bg--orange .cta_button:hover {
    color: var(--white);
}

.container.dxl-full-w {
    max-width: 100%;
    padding: 0;
}

.container.dxl-small-w, .dxl-small-w {
    max-width: 980px;
    margin: 0 auto;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.d-flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.flex-justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.flex-justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.flex-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.flex-justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.flex-justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.flex-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.flex-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.flex-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
}

.flex-items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}

.flex-items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.padding {
    padding: 5rem 0;
}
.padding-cta-2x2 {
    padding: 20px 80px 40px 80px;
}
.padding-top-none {
  padding-top: 0;
}

.column-half {
    width: 50%;
}

.column-half.column-left {
    padding-right: 4rem;
}

.column-half.column-right {
    padding-left: 4rem;
}

.column-full {
    width: 100%;
}

.container.dxl-small-w {
    max-width: 980px;
}

.flex-row-reverse .column-half.column-left {
    padding-right: 0;
    padding-left: 4rem;
}

.flex-row-reverse .column-half.column-right {
    padding-left: 0;
    padding-right: 4rem;
}



.column-half.column-left-cta-2x2 {
    justify-content: center;
    align-items: center;
    display: flex;

}

.column-half.column-right-cta-2x2 {
    justify-content: center;
    align-items: center;
    display: flex;
}

.flex-row-reverse .column-half.column-left-cta-2x2 {
    justify-content: center;
    align-items: center;
    display: flex;

}

.flex-row-reverse .column-half.column-right-cta-2x2 {
    justify-content: center;
    align-items: center;
    display: flex;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

#main-content .dxl-form-wrapper form input,
#main-content .dxl-form-wrapper form textarea,
#main-content .dxl-form-wrapper form select {
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--inter);
    width: 100%;
    border: none;
}

#main-content form .hs-button {
    border: solid 2px var(--orange);
}

#main-content .hs-input.hs-fieldtype-intl-phone {
    width: 100%;
    margin-right: 0;
}

#main-content form fieldset {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

#main-content form fieldset .input {
    margin-right: 0;
}

#main-content form .hs-fieldtype-booleancheckbox input {
    width: auto;
  margin-top:8px;
}

.dxl-form-wrapper form select,
.dxl-form-wrapper form input::placeholder {
    color: var(--navy);
}

.dxl-form-wrapper form select {
  -webkit-appearance: none;
}

#main-content form select {
    background-image: url(https://1614934.fs1.hubspotusercontent-na1.net/hubfs/1614934/Axon%20Garside/SVG/Asset%201.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 2.4rem !important;
    cursor: pointer;
}

#main-content form fieldset.form-columns-2 .hs-form-field:first-of-type {
    margin-right: .5rem;
    width: calc(50% - .5rem);
}

#main-header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 100%;
    box-shadow: 0 0 40px #0000002b;
    background: #fff;
}

#main-header .lp-header-logo img {
    width: 80px !important;
}

#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

#main-content {
    padding-top: 70px;
}

.footer-content a, a {
    color: var(--navy);
}

.footer-bottom img {
    width: 50px;
    margin: 0 auto;
}

.hs-fieldtype-radio ul.inputs-list {
        display: flex;
    margin-top: 0.4rem;
    margin-bottom: 0.2rem;
flex-direction: column;
}

.hs-fieldtype-radio ul.inputs-list li {
 padding-bottom:5px;
}

.hs-fieldtype-radio ul.inputs-list li:nth-last-child(1) {
    margin-right: 0;
}

#main-content .hs-fieldtype-radio ul.inputs-list li input {
height: initial;
width: auto;
padding: 0;
left: 0;
top: 0;
margin: 0 12px 0 0;
cursor: pointer;
}

.hs-fieldtype-radio ul.inputs-list li span {
    font-size: 12px;
    font-weight: bold;
}


.hs-fieldtype-booleancheckbox label span, #main-content form label {
  font-size: 13px;
}

.form-submitted>h3 {
    display: none;
}

.padding-top-xl {
    padding-top: 10rem;
}

#main-content .dxl-form-wrapper .hs-button.primary {
    border: solid 2px var(--orange);
}

#main-content .hs-fieldtype-intl-phone.hs-input select {
    width: 40% !important;
}

#main-content .hs-fieldtype-intl-phone.hs-input input {
    width: 58% !important;
}

.footer-tp {
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .padding-top-xl {
    padding-top: 5rem;
  }
}

@media (max-width: 767px) {
  h2 {
      font-size: 1.8rem;
  }

  h1 {
      font-size: 2rem;
  }

  .padding {
      padding: 2.4rem 0;
  }
  
  .padding-top-xl {
    padding-top: 2.4rem;
  }
  
  .text-center .column-full h2 {
      padding: 0 2rem;
  }
  
  .dxl-hero .dxl-form-wrapper {
    padding: 2rem;
}
  
  .hs-fieldtype-radio ul.inputs-list li {
    width: calc(25% - 0.5rem);
    margin-bottom: 0.5rem;
    padding: 16px 10px;    
    text-align: center;
    display: inline-flex;
    align-items: center;
}

.hs-fieldtype-radio ul.inputs-list {
    flex-flow: row wrap;
}
  
  section .container.d-flex {
    flex-direction: column;
}

.container.d-flex>.column {
    width: 100%;
    padding: 0;
}
  
#main-content .dxl-hero form fieldset.form-columns-2 .hs-form-field {
    margin-right: 0;
    width: 100%;
}
  
  #main-content form fieldset.form-columns-2 .hs-form-field:first-of-type {
    margin-bottom: 0.5rem;
}
  
  .hs-fieldtype-radio ul.inputs-list li {
    width: calc(33.3% - 0.4rem);
    margin-bottom: 0.5rem;
}

.hs-fieldtype-radio ul.inputs-list {
    flex-flow: row wrap;
}

.hs-fieldtype-radio ul.inputs-list li:nth-child(3n) {
    margin-right: 0;
}
}

#main-content {
padding-top: 70px;
max-width: 1400px;
margin: 0 auto;
  padding-left: 10px;
    padding-right: 10px;
}