@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
.price__title {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.025em;
    color: #17262f;
    margin-bottom: 30px;
	text-align: center;
}

.price-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-form__tel-label,
.price-form__email-label,
.price-form__name-label {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.price-form__tel,
.price-form__email,
.price-form__name {
    width: 100%;
    position: relative;
    border: none;
    border-bottom: 2px solid rgba(23,38,47,.2);
    font-size: 20px;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

.price-form__name:focus,
.price-form__email:focus,
.price-form__tel:focus {
    outline: none;
    border-bottom: 2px solid #0090f0;
}

.price-form__name:focus + .price-form__name__placeholder,
.price-form__email:focus + .price-form__email__placeholder,
.price-form__tel:focus + .price-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.price-form__name.hasValue + .price-form__name__placeholder,
.price-form__email.hasValue + .price-form__email__placeholder,
.price-form__tel.hasValue + .price-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.price-form__name__placeholder,
.price-form__email__placeholder,
.price-form__tel__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    color: #334c5c;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
	font-style: normal;
}

.price-form__checkbox-label {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.price-form__checkbox {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.price-form__checkbox__text {
    margin-left: 10px;
    font-size: 12px;
    line-height: 14px;
    color: #334c5c;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.price-form__checkbox__text > a {
    color: #ee3239;
}

.price-form__button {
    width: fit-content;
    padding: 10px 40px;
    font-size: 18px;
    border: 2px solid #ee3239;
    cursor: pointer;
    background-color: #fff;
    margin-top: 40px;
    border-radius: 22px;
    color: #ee3239;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease-in-out;
}

.price-form__button:hover {
    background-color: #ee3239;
    color: #ffffff;
}


/****************************************/


.task {
    width: 100%;
    max-width: 590px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 75px 60px;
    background-color: #fff;
    margin-top: 50px;
}

.task__title {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.025em;
    color: #17262f;
    margin-bottom: 30px;
}

.task__text {
    color: #334c5c;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 20px;
}

.task-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.task-form__message-label,
.task-form__tel-label,
.task-form__email-label,
.task-form__name-label {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.task-form__message,
.task-form__tel,
.task-form__email,
.task-form__name {
    width: 100%;
    position: relative;
    border: none;
    border-bottom: 2px solid rgba(23,38,47,.2);
    font-size: 20px;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

.task-form__message:focus,
.task-form__name:focus,
.task-form__email:focus,
.task-form__tel:focus {
    outline: none;
    border-bottom: 2px solid #0090f0;
}

.task-form__message:focus + .task-form__message__placeholder,
.task-form__name:focus + .task-form__name__placeholder,
.task-form__email:focus + .task-form__email__placeholder,
.task-form__tel:focus + .task-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.task-form__message.hasValue + .task-form__message__placeholder,
.task-form__name.hasValue + .task-form__name__placeholder,
.task-form__email.hasValue + .task-form__email__placeholder,
.task-form__tel.hasValue + .task-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.task-form__message__placeholder,
.task-form__name__placeholder,
.task-form__email__placeholder,
.task-form__tel__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    color: #334c5c;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
	font-style: normal;
}

.task-form__file-label {
    width: 100%;
    position: relative;
    border: 2px solid rgba(23,38,47,.2);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #f3f9ff;
}

.task-form__file-label > img {
    width: 50px;
    margin-right: 10px;
}

.task-form__file-label > p {
    line-height: 20px;
    color: rgba(23,38,47,.8);
    font-size: 16px;
}

.task-form__file-label > p > span {
    border-bottom: 1px dashed #8b9297;
    font-weight: 700;
}

.task-form__file {
    display: none;
}

.task-form__button {
    width: fit-content;
    padding: 10px 40px;
    font-size: 18px;
    border: 2px solid #ee3239;
    cursor: pointer;
    background-color: #fff;
    margin-top: 20px;
    border-radius: 22px;
    color: #ee3239;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease-in-out;
}

.task-form__button:hover {
    background-color: #ee3239;
    color: #fff;
}



/************************************/

.call {
    width: 100%;
    max-width: 900px;
    position: relative;
    display: flex;
    flex-direction: row;
}

.call-left {
    width: 65%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 80px 70px;
}

.call-left__title {
    font-size: 18px;
    font-weight: 900;
}

.call-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}


.call-form__tel-label,
.call-form__email-label,
.call-form__name-label {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.call-form__tel,
.call-form__email,
.call-form__name {
    width: 100%;
    position: relative;
    border: none;
    border-bottom: 2px solid rgba(23,38,47,.2);
    font-size: 20px;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

.call-form__name:focus,
.call-form__email:focus,
.call-form__tel:focus {
    outline: none;
    border-bottom: 2px solid #0090f0;
}

.call-form__name:focus + .call-form__name__placeholder,
.call-form__email:focus + .call-form__email__placeholder,
.call-form__tel:focus + .call-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.call-form__name.hasValue + .call-form__name__placeholder,
.call-form__email.hasValue + .call-form__email__placeholder,
.call-form__tel.hasValue + .call-form__tel__placeholder {
    font-size: 12px;
    color: rgba(23,38,47,.4);
    top: -15px;
}

.call-form__name__placeholder,
.call-form__email__placeholder,
.call-form__tel__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    color: #334c5c;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

.price-form__checkbox-label {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.call-form__checkbox {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.call-form__checkbox__text {
    margin-left: 10px;
    font-size: 12px;
    line-height: 14px;
    color: #334c5c;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.price-form__checkbox__text > a {
    color: #ee3239;
}

.call-form__button {
    width: fit-content;
    padding: 10px 40px;
    font-size: 18px;
    background-color: #ffffff;
    color: #ee3239;
    border: 2px solid #ee3239;
    cursor: pointer;
    margin-top: 40px;
    border-radius: 22px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease-in-out;
}

.call-form__button:hover {
    background-color: #ee3239;
    color: #fff;
}

.call-right {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    background-color: #f6f9fc;
}

.call-right__text {
    color: rgba(51,76,92,.8);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.call-right__link {
    color: rgba(51,76,92);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.333;
    font-weight: 700;
    margin-bottom: 20px;
}


@media only screen and (max-width: 768px) {

    .price,
    .task {
        padding: 45px;
    }

    .task__text {
        font-size: 18px;
    }

    .call {
        max-width: 590px;
        flex-direction: column;
        align-items: center;
    }

    .call-left,
    .call-right {
        width: 100%;
        align-items: center;
        padding: 45px;
    }

}

@media only screen and (max-width: 450px) {

    .price, .task, .call-left, .call-right {
        padding: 30px 20px;
    }

    .price__title,
    .task__title,
    .call-left__title {
        font-size: 24px;
    }

    .task__text {
        font-size: 16px;
    }

}

