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

.blk-free-quote-form {
    position: relative;
    border-radius: 15px;
    border: 1px solid rgba(82, 122, 85, 0.30);
    display: flex;
    height: 497px;
    width: 541px;
}

.form-quote {
    position: relative;
    padding: 48px 16px 48px 24px;
}

.form-quote form {
    position: relative;
}

.form-quote__inputs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.form-quote__title {
    color: #042B0B;
    font-size: clamp(40px, 1rem + 2vw, 48px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    width: 124px;
    height: 100%;
    padding-left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(82, 122, 85, 0.30);
}

.form-quote__title b {
    text-transform: uppercase;
    font-weight: 600;
}

.form-quote__title span {
    position: absolute;
    top: auto;
    left: auto;
    transform: rotate(-90deg);
    width: 377px;
}

.form-quote__legend {
    color: #042B0B;
    font-size: clamp(20px, 1rem + 0.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.form-quote .form-group {
    position: relative;
    margin-bottom: 0;
}

.form-quote .form-group button {
    font-family: "Montserrat", sans-serif;
    color: #527A55;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: auto;
    font-style: normal;
    padding: 8px 16px;
    border-radius: 5px;
    border: 2px solid rgba(82, 122, 85, 0.30);
    background-color: transparent;
    height: 50px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    letter-spacing: normal;
    text-align: left;
    overflow: hidden;
}

.form-quote .form-group button span {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-quote .form-group button.active,
.form-quote .form-group button:hover,
.form-quote .form-group button:focus {
    outline: none;
    color: #527A55;
    border-top: 6px solid rgba(82, 122, 85, 0.30);
    background-color: transparent;

}

.form-quote .form-group button.active *,
.form-quote .form-group button:hover *,
.form-quote .form-group button:focus * {
    color: #527A55;
}


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

.contact-form {
    position: relative;
}

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

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

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

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

.contact-form .form-group.contact-form__note {
    color: #042B0B;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.02em;
}

.contact-form .form-group .contact-form__send {
    margin-left: 16px;
}

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


/** Blk contact form **/

.blk-contact-form {
    position: relative;
    max-width: 564px;
}