/******************************************************************************
* Free quote form 
*******************************************************************************/
.free-quote-section {
    padding: 61px 0;
}

.free-quote__inner {
    position: relative;
}

.form-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 40px 40px 40px 0;
    background: #E0D9C2;
}

.intern .form-quote {
    position: relative;
    padding: 0;
}

.form-quote:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #E0D9C2;
}

.form-quote form {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    gap: 20px;
    max-width: 570px;
}

.intern .form-quote form {
    max-width: 100%;
}

.form-quote__inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.intern .form-quote__inputs {
    justify-content: center;
}

.form-quote-title {
    color: #88BD3A;
    font-size: 1.625em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-quote form .nice-select,
.form-quote form input.form-control,
.form-quote form select {
    vertical-align: middle;
    width: 100%;
    outline: none;
    height: 44px;
    width: 245px;
    padding: 13px 20px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: #FFF;
    font-family: "trebuchet-ms", sans-serif;
    color: #191818;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
}

.intern .form-quote form .nice-select,
.intern .form-quote form input.form-control,
.intern .form-quote form select {
    width: 330px;
}

.form-quote input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #191818 !important;
}

.form-quote input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #191818 !important;
    opacity: 1;
    /* Firefox */
}

.form-quote input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #191818 !important;
}

.form-quote textarea::placeholder {
    color: #191818 !important;
}

.nice-select .option {
    font-family: "trebuchet-ms", sans-serif;
    color: #191818;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    line-height: 19px;
    min-height: 19px;
    padding: 5px 0;
}

.form-quote form .nice-select {
    z-index: 3;
}

.form-quote form #typeRealiseSelect+.nice-select {
    z-index: 4;
}

.form-quote form .nice-select:after {
    right: 30px;
    border: 0;
    background: url('../images/icons/ico-select.svg') no-repeat top left;
    background-size: cover;
    width: 10px;
    height: 6px;
    margin-top: 0;
    z-index: 3;
    -webkit-transform-origin: inherit;
    -ms-transform-origin: inherit;
    transform-origin: inherit;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.form-quote form .nice-select.open:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.form-quote form .nice-select .list {
    width: 100%;
    box-shadow: none;
    border-radius: 10px;
    border: 1px solid #6C6C6C;
    background: #FFF;
    margin-top: 4px;
    z-index: 2;
    transform: none;
    padding: 12px 20px;
}

.form-quote form .nice-select.open .current {
    z-index: 3;
    position: relative;
}

.form-quote form .nice-select.open .list {
    transform: none;
    height: auto;
}

.nice-select .option:hover {
    background: none;
    color: #88BD3A;
}

.nice-select .option:first-child,
.nice-select .option:hover:first-child {
    color: transparent !important;
    background: none !important;
    height: 44px;
    display: none !important;
}

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

.form-quote .form-quote__send button {
    width: 47px;
    height: 47px;
    border: 0;
    padding: 0;
    margin: 0 0 0 5px;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/layer-shape-icon.svg') no-repeat top left;
    background-size: cover;
}

.form-quote .form-quote__send button:hover {
    background: url('../images/layer-shape-icon-hover.svg') no-repeat top left;
    background-size: cover;
}


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

.contact-form {
    position: relative;
}

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

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

.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;
}

.contact-form .form-group.contact-form__note {
    color: #191818;
    text-align: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.57143em;
    margin-bottom: 25px;
    margin-top: -20px;
}

.contact-form .form-group .contact-form__send button {
    height: 76px;
    padding: 14px 58px;
}

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

/** Blk contact form **/

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