/******************************************************************************
* Free quote form 
*******************************************************************************/

.blk-form-free-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 8px;
    max-width: 713px;
    margin: -102px auto 0;
    z-index: 3;
}

.intern .blk-form-free-quote {
    margin: 0 auto;
}

.blk-form-free-quote form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 26px 40px;
    background: #93878A;
}

.blk-form-free-quote .form-quote__title {
    color: #FFF;
    text-align: center;
    font-family: "paralucent", sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2em;
}

.intern .blk-form-free-quote .form-quote__title {
    color: #93878A;
}

.blk-form-free-quote .form-group.form-quote__legend {
    color: #FFF;
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.444444em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.form-quote__inputs {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blk-form-free-quote .list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    background: #E20F16;
}

.blk-form-free-quote .form-group {
    position: relative;
    margin-bottom: 0;
    text-align: center;
}

.blk-form-free-quote .form-group button {
    font-family: "Lexend", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.33333em;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    letter-spacing: normal;
    align-items: center;
    gap: 8px;
    width: auto;
    text-align: center;
    height: auto;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    margin: 0;
    min-width: 100px;
}

.blk-form-free-quote .form-group button:before {
    display: none;
}

.blk-form-free-quote .form-group button span:first-child {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFF;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blk-form-free-quote .form-group button.active,
.blk-form-free-quote .form-group button:hover,
.blk-form-free-quote .form-group button:focus {
    outline: none;
    color: #fff;
}

.blk-form-free-quote .form-group button.active span:first-child,
.blk-form-free-quote .form-group button:hover span:first-child,
.blk-form-free-quote .form-group button:focus span:first-child {
    color: #fff;
    background: #191516;
}

.blk-form-free-quote .form-group button.active span:first-child svg path,
.blk-form-free-quote .form-group button:hover span:first-child svg path,
.blk-form-free-quote .form-group button:focus span:first-child svg path {
    fill: #fff !important;
}

.blk-form-free-quote .next-step button {
    width: 61px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: #191516;
    border-color: 1px solid #191516;
    box-shadow: none;
    padding: 12px;
}

.blk-form-free-quote .next-step button:hover {
    background: #2F292A;
    border-color: #93878A;
}

.blk-form-free-quote .next-step button span {
    border-radius: 20px;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


/******************************************************************************
* Contact form
*******************************************************************************/

.contact-form {
    position: relative;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-group textarea.form-control {
    height: 130px;
}

.contact-form .form-group .form-control.error {
    border: 1px solid #ff0000;
    margin-bottom: 18px;
}

.contact-form .form-group label.error {
    font-size: 12px;
    color: #ff0000;
    line-height: normal;
    text-transform: none;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
}

.contact-form .contact-form__inputs .input-group-prepend {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    height: 100%;
    margin: 0;
    padding: 0;
}

.contact-form .contact-form__inputs .input-group .input-group-prepend .input-group-text {
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: none;
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.contact-form .contact-form__inputs .form-group .form-control {
    padding-left: 46px;
}

.contact-form .form-group.contact-form__note {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}


/** Blk contact form **/

.blk-contact-form {
    position: relative;
    max-width: 685px;
    margin-left: auto;
}