.contact{
    padding: 10rem 0;
}

.tel{
    text-align: center;
    margin-bottom: 10rem;
}

.tel_header h2{
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

.tel_header p{
    line-height: 1.8;
    margin: 3rem 0 6rem;
}

.tel_content{
    background: #fff;
    padding: 4rem;
}

.tel_content h3{
    font-size: 2rem;
    font-weight: 500;
}

.tel_content a{
    color: var(--mainColor);
    font-size: 4.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.form_header {
    text-align: center;
}

.form_header h2{
    color: var(--mainColor);
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.form_header h2 span{
    font-size: 3rem;
}

.form_content{
    display: flex;
    flex-flow: column;
    gap: 3rem;
    margin-top: 8rem;
}

.form_item label{
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form_item label .required{
    color: var(--mainColor);
    background: #D8F2EA;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 0.2rem;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea,select {
    width: 100%;
    border: none;
    background: #fff;
    padding: 1.5rem 2rem;
}

input::placeholder,
textarea::placeholder {
    opacity: 0.6;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path d="M11.7998 1L6.39988 7L0.999804 1" stroke="%233E3E3E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

select::-ms-expand {
    display: none;
}

.send{
    text-align: center;
    margin-top: 6rem;
}

.wpcf7-list-item{
    margin: 0;
}

.policy{
    font-weight: 500;
}

.policy a{
    transition: 0.3s;
}

.policy a:hover{
    opacity: 0.6;
}

.policy_attention{
    color: var(--mainColor);
}

.policy svg{
    display: inline;
}

.send_btn{
    width: fit-content;
    margin: 3rem auto 0;
    position: relative;
}

.send_btn input[type="submit"]{
    color: #fff;
    background: var(--mainColor);
    font-weight: 500;
    border: none;
    padding: 2rem 8rem 2rem 4rem;
    cursor: pointer;
    transition: 0.3s;
}

.send_btn:hover input[type="submit"]{
    background: var(--black);
}

.send_btn svg{
    position: absolute;
    right: 4rem;
    top: 45%;
    transition: 0.3s;
}

.send_btn:hover svg{
    right: 3.5rem;
}

.wpcf7-spinner{
    display: none;
}

@media (max-width: 767px) {
    .contact{
        padding: 6rem 0;
    }

    .tel{
        margin-bottom: 4rem;
    }

    .tel_header h2{
        font-size: 2.2rem;
    }

    .tel_header p{
        margin: 3rem 0 4rem;
    }

    .tel_content{
        padding: 3.5rem 3rem;
    }

    .tel_content h3{
        font-size: 1.8rem;
    }

    .tel_content a{
        font-size: 3rem;
        gap: 1rem;
        margin: 2rem 0;
    }

    .tel_content a svg{
        width: 1.8rem;
    }

    .tel_content p{
        font-size: 1.4rem;
    }

    .form_header h2{
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .form_header h2 span{
        font-size: 2rem;
    }

    .form_content{
        margin-top: 4rem;
    }

    .form_item label{
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .send{
        margin-top: 4rem;
    }

    .send_btn input[type="submit"]{
        padding: 1.5rem 8rem 1.5rem 4rem;
    }
}