.contact--content {
    display: flex;
    row-gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.contact--ways {
    width: 40%;
}

.contact--ways>p {
    margin-block: 1rem 2rem;
}

.contact--ways ul {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contact--ways ul li {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius10);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("../img/bg-contact-ways.png");
}

.contact--ways ul li img {
    width: 60px;
    height: 60px;
}

.contact--ways ul li span {
    color: var(--text-color);
}

.contact--ways ul li p {
    font-weight: 700;
    margin-block-start: 0.5rem;
    color: var(--primary-color);
}

.contact--form {
    width: 55%;
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius10);
    background-color: var(--box-color);
}

.contact--form label {
    color: var(--text-color);
    font-size: var(--text-lg);
    line-height: var(--line-height150);
    font-weight: 500;
    margin-block-end: 0.25rem;
	display: block;
	width: 100%;
}

.wpcf7-form-control-wrap{
	display: block;
	width: 100%;
}

.contact--form input[type="text"],
.contact--form input[type="tel"],
.contact--form input[type="email"],
.contact--form textarea {
	width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius10);
    padding: 0.5rem 0.75rem;
    background-color: var(--baseLight-color);
	margin-block-end: 2rem;
}

.contact--form input[type="submit"]{
	background-color: var(--primary-color);
    color: var(--baseLight-color);
    padding: 0.75rem 3rem;
    border-radius: var(--border-radius10);
    border: none;
	font-weight: 600;
	font-size: var(--text-lg);
}


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1320px) and (max-width:1439px) {}

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


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

@media screen and (max-width: 992px) {
    .contact--content {
        flex-direction: column;
    }

    .contact--ways,
    .contact--form {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
	.contact--form{
		padding:2rem 2.5rem;
	}
}

@media screen and (max-width: 576px) {
	.contact--form{
		padding:1.5rem 2rem;
	}
}

@media screen and (max-width: 425px) {
	.contact--form{
		padding:1.5rem 1rem;
	}
}

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

/*********************
END: MEDIA
*********************/