.order{
    display: flex;
    background: var(--blue-3);
}

.order__service{
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px 0 0px 105px;
    box-sizing: border-box;
}

.order__service-title{
    font-size: 64px;
    line-height: 64px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 45px 0;
}

.order__service-text{
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.order__service-text_weight{
    font-weight: 400;
}

.order__service-href{
    font-size: 18px;
    line-height: 23.4px;
    text-decoration: none;
    color: var(--blue-2);
    font-weight: 700;
}

.order__service-text_mb-30{
    margin-bottom: 30px;
}

.order__block-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 180px 75px 0 0;
    box-sizing: border-box;
}

.order__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 120px;
}

.order__form-input {
    font-size: 18px;
    line-height: 23.4px;
    padding: 20px 30px;
    margin-bottom: 30px;
    border: none;
    border-radius: 60px;
    outline:none;
}

.order__form-group {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.order__form-input_width{
    width: 50%;
}

.order__form-textarea {
    font-size: 18px;
    line-height: 23.4px;
    padding: 20px 30px;
    margin-bottom: 30px;
    border: none;
    border-radius: 30px;
    min-height: 270px;
    outline:none;
}

.order__form-second-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1023px) {

    .order{
        flex-wrap: wrap;
    }

    .order__service {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 60px 105px 0px 105px;
        align-items: center;
    }

    .order__block-form{
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 75px 0 75px;
    }

}

@media screen and (max-width: 767px) {

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

@media screen and (min-width: 575px) {

    .order__form-input_mr{
		margin-right: 27px;
	}
}

@media screen and (max-width: 575px) {

    .order__form-second-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .order__service-title{
        font-size: 32px;
        line-height: 32px;
    }

    .order__service{
        padding: 60px 30px 0px 30px;
    }

    .order__service-text_mb-30{
        text-align: center;
    }

    .order__block-form{
        padding: 30px 30px 0 30px;
    }

    .order__form-group{
        flex-direction: column;
        gap: 0px;
    }

    .order__form-input_width{
        width: auto;
    }

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

}