section.cs-quote-hero {
    display: flex;
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 40vw;
    max-height: 400px;
}

section.cs-quote-hero:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.4);
}

section.cs-quote-hero .container {
    max-width: 1080px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9;
}

section.cs-quote-hero .container h1  {
    color: #FFFFFF;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    margin: 0;
}

@media (max-width: 520px) {
    section.cs-quote-hero { 
        height: 60vw;
        max-height: 600px;
    }
    
    section.cs-quote-hero .container h1  {
        font-size: 32px;
    }
}

section.four-steps {
    display: flex;
    background: #FFFFFF;
    padding: 2rem 0;
}

section.four-steps .container {
    width: 100%;
    padding: 1rem 2rem;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
    max-width: 1080px;
}

section.four-steps .container h2 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

section.four-steps .icon-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
}

section.four-steps .icon-group .icon-and-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1 0 calc(25% - 2rem);
}

@media (min-width: 520px) and (max-width: 768px) {
    section.four-steps .icon-group {
        flex-wrap: wrap;
    }
    
    section.four-steps .icon-group .icon-and-text {
        flex: 1 0 calc(50% - 2rem);
    }
}

@media (max-width: 520px) {
    section.four-steps .icon-group {
        flex-wrap: wrap;
    }
    
    section.four-steps .icon-group .icon-and-text {
        flex: 1 0 calc(100% - 2rem);
    }
}

section.four-steps .icon-group .icon-and-text .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

section.four-steps .icon-group .icon-and-text .step-icon img {
    max-width: 100px;
    max-height: 85px;
}

section.four-steps .icon-group .icon-and-text h3 {
    text-transform: uppercase;
    font-size: 24px;
    color: #212121;
    margin: 0;
}

section.four-steps .icon-group .icon-and-text p {
    font-size: 16px;
    color: #212121;
    margin: 0;
}

section.form-area {
    background: #F8F8F8;
    padding: 1rem 2rem;
    margin: 0 auto;
}

section.form-area .container {
    width: 100%;
    padding: 1rem 0;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
    max-width: 1080px;
}

section.form-area .container h2 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    section.form-area .container h2 {
        margin-bottom: 1rem;
    }
}

section.usp-area {
    background: #FFFFFF;
    padding: 2rem 0;
}

section.usp-area .container {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: 100%;
    max-width: 1600px;
    padding: 1rem 2rem;
    margin: 0 auto;
}

section.usp-area .usp-group {
    display: flex;
    flex-direction: row;
    gap: 2rem
}

section.usp-area .usp-group .usp {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    flex: 1 0 calc(25% - 4rem);
}

@media (min-width: 520px) and (max-width: 768px) {
    section.usp-area .usp-group {
        flex-wrap: wrap;
    }
    
    section.usp-area .usp-group .usp {
        flex: 1 0 calc(50% - 4rem);
    }
}

@media (max-width: 520px) {
    section.usp-area .usp-group {
        flex-wrap: wrap;
    }
    
    section.usp-area .usp-group .usp {
        flex: 1 0 calc(100% - 4rem);
    }
}

section.usp-area .usp-group .usp .usp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

section.usp-area .usp-group .usp .usp-icon img {
    max-width: 100px;
    max-height: 85px;
}

section.usp-area .usp-group .usp h3 {
    text-transform: uppercase;
    font-size: 18px;
    color: #212121;
    margin: 0;
}

section.usp-area .usp-group .usp p {
    font-size: 14px;
    color: #212121;
    margin: 0;
}

/* Form */

section.form-area .frm_fields_container .form-field.frm_section_heading {
    padding: 1rem;
    border: 1px solid #BFC3C8;
    margin-bottom: 3rem;
    position: relative;
}

section.form-area .frm_fields_container .form-field.frm_section_heading > h3 {
    position: absolute;
    background: #F8F8F8;
    padding: 1rem;
    top: -2rem;
    left: 1rem;
}

section.form-area .frm_form_fields select,
section.form-area .frm_form_fields textarea {
    width: 100% !important;
}

section.form-area .frm_form_fields .with_frm_style input[type=text] {
    margin-bottom: 0 !important;
}

section.form-area .frm_fields_container .form-field.vertical_radio .frm_primary_label {
    height: 10px;
    margin: 0;
}

section.form-area .frm_fields_container .form-field.vertical_radio .frm_opt_container .frm_checkbox label {
    position: relative;    
    padding-left: 2rem;
}

section.form-area .frm_fields_container .form-field.vertical_radio .frm_opt_container .frm_checkbox input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 3px;
}

/* Autosuggest */

section.form-area .with_frm_style input[type=text] {
    margin-bottom: 0 !important;
}

.cs-autosuggest-wrapper {
  position: relative;
}

.cs-autosuggest-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-top: 0;
  box-sizing: border-box;
}

.cs-autosuggest-list.active {
  display: block;
}

.cs-autosuggest-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: #f8f8f8;
  border-radius: 0;
  border-bottom: 1px solid #CCCCCC;    
  box-shadow: 0px 1px 6px rgba(0,0,0,0.16);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.cs-autosuggest-option.is-active {
  background: #25408F;
  color: #FFFFFF;
}

.cs-autosuggest-option:last-child {
  border-bottom: 0;
}

.cs-autosuggest-option:hover,
.cs-autosuggest-option:focus {
  background: #f3f3f3;
}

section.form-area .frm_fields_container .form-field.frm_section_heading:nth-of-type(3) {
    margin-bottom: 1rem !important;
}

section.form-area .with_frm_style .frm_submit.frm_flex {
    justify-content: flex-end;
}

section.form-area .with_frm_style .frm_submit.frm_flex button {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0 !important;
}

/* Confirm Message */

section.form-area .with_frm_style .frm_message, .frm_success_style {
    background: #F9F9F9;
    border: 4px double #212121;
}

section.form-area .with_frm_style .frm_message p, .frm_success_style p {
    color: #212121;
    margin-bottom: 0.5rem;
}

section.form-area .frm_style_formidable-style.with_frm_style .frm_error_style {
    position: relative;
    z-index: 9;
}